27-09-2010, 06:41 PM
|
#3 (permalink)
|
|
Membro - Veterano
Registrado em: Dec 2009
Posts: 1,335
Agradecido 803 Vezes em 427 Posts
Achei Ruim:
Acharam ruim Vezes em Posts
Rate
Designer:
Meu Estado:
|
No Caso Voce Adiciono Essa Parte ?
Config.java
@@ -973,6 +973,8 @@
public static String PM_TEXT1;
public static String PM_TEXT2;
+ public static String ABORT_RR;
public static boolean ENABLE_ONLINE_COMMAND;
public static boolean ENABLE_STATINFO_COMMAND;
+
/** L2J Mods Custom - End */
@@ -1287,4 +1289,5 @@
PM_TEXT1 = L2JMods.getProperty("PMText1", "Welcome to our server");
PM_TEXT2 = L2JMods.getProperty("PMText2", "Visit our web http://Your.Web.Adress");
+ ABORT_RR = L2JMods.getProperty("AbortRestart", "Server");
ENABLE_ONLINE_COMMAND = Boolean.parseBoolean(L2JMods.getProperty("EnableOnlinePlayersCommand", "False"));
ENABLE_STATINFO_COMMAND = Boolean.parseBoolean(L2JMods.getProperty("EnableStatusInfoCommand", "False"));
@@ -2652,5 +2655,7 @@
else if (pName.equalsIgnoreCase("TvTEventRunningTime")) TVT_EVENT_RUNNING_TIME = Integer.parseInt(pValue);
else if (pName.equalsIgnoreCase("TvTEventParticipationNpcId")) TVT_EVENT_PARTICIPATION_NPC_ID = Integer.parseInt(pValue);
+ else if (pName.equalsIgnoreCase("AbortRestart")) ABORT_RR = (pValue);
// PvP settings
else if (pName.equalsIgnoreCase("MinKarma")) KARMA_MIN_KARMA = Integer.parseInt(pValue);
|
|
|