Config.java 160 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376
  1. /*
  2. * This program is free software: you can redistribute it and/or modify it under
  3. * the terms of the GNU General Public License as published by the Free Software
  4. * Foundation, either version 3 of the License, or (at your option) any later
  5. * version.
  6. *
  7. * This program is distributed in the hope that it will be useful, but WITHOUT
  8. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  9. * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  10. * details.
  11. *
  12. * You should have received a copy of the GNU General Public License along with
  13. * this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. package net.sf.l2j;
  16. import java.io.File;
  17. import java.io.FileInputStream;
  18. import java.io.FileOutputStream;
  19. import java.io.InputStream;
  20. import java.io.OutputStream;
  21. import java.math.BigInteger;
  22. import java.util.ArrayList;
  23. import java.util.List;
  24. import java.util.Map;
  25. import java.util.Properties;
  26. import java.util.logging.Logger;
  27. import javolution.util.FastList;
  28. import javolution.util.FastMap;
  29. import net.sf.l2j.gameserver.util.StringUtil;
  30. /**
  31. * This class contains global server configuration.<br>
  32. * It has static final fields initialized from configuration files.<br>
  33. * It's initialized at the very begin of startup, and later JIT will optimize
  34. * away debug/unused code.
  35. *
  36. * @author mkizub
  37. */
  38. public final class Config
  39. {
  40. protected static final Logger _log = Logger.getLogger(Config.class.getName());
  41. /******************************************************************************************************************************************************/
  42. /** L2J Property File Definitions Start Here**/
  43. /******************************************************************************************************************************************************/
  44. /** Properties file for Character Configurations */
  45. public static final String CHARACTER_CONFIG_FILE = "./config/Character.properties";
  46. /** Properties file for Dynamic Extensions*/
  47. public static final String EXTENSIONS_CONFIG_FILE = "./config/extensions.properties";
  48. /** Properties file for Feature Extensions*/
  49. public static final String FEATURE_CONFIG_FILE = "./config/Feature.properties";
  50. /** Properties file for Fortress Siege */
  51. public static final String FORTSIEGE_CONFIGURATION_FILE = "./config/fortsiege.properties";
  52. /** Properties file for General Configurations */
  53. public static final String GENERAL_CONFIG_FILE = "./config/General.properties";
  54. /** Text file containing hexadecimal value of server ID */
  55. public static final String HEXID_FILE = "./config/hexid.txt";
  56. /** Properties file for the ID factory */
  57. public static final String ID_CONFIG_FILE = "./config/idfactory.properties";
  58. /** Properties file for l2j server version configurations */
  59. public static final String SERVER_VERSION_FILE = "./config/l2j-version.properties";
  60. /** Properties file for l2j datapack version configurations */
  61. public static final String DATAPACK_VERSION_FILE = "./config/l2jdp-version.properties";
  62. /** Properties file for the L2J Mod Confirugrations */
  63. public static final String L2JMOD_CONFIG_FILE = "./config/l2jmods.properties";
  64. /** Properties file for login server configurations */
  65. public static final String LOGIN_CONFIGURATION_FILE = "./config/loginserver.properties";
  66. /** Properties file for NPC Configurations */
  67. public static final String NPC_CONFIG_FILE = "./config/NPC.properties";
  68. /** Properties file for PVP Configurations */
  69. public static final String PVP_CONFIG_FILE = "./config/pvp.properties";
  70. /** Properties file for rates Configurations */
  71. public static final String RATES_CONFIG_FILE = "./config/rates.properties";
  72. /** Properties file for game server (connection and ingame) configurations */
  73. public static final String CONFIGURATION_FILE = "./config/server.properties";
  74. /** Properties file for siege Configurations */
  75. public static final String SIEGE_CONFIGURATION_FILE = "./config/siege.properties";
  76. /** Properties file for telnet configuration */
  77. public static final String TELNET_FILE = "./config/telnet.properties";
  78. /******************************************************************************************************************************************************/
  79. /** L2J Property File Definitions End Here**/
  80. /******************************************************************************************************************************************************/
  81. /******************************************************************************************************************************************************/
  82. /** L2J Variable Definitions Start Here**/
  83. /******************************************************************************************************************************************************/
  84. /** ************************************************** **/
  85. /** Character Settings -Begin **/
  86. /** ************************************************** **/
  87. public static int MASTERACCESS_LEVEL;
  88. public static int MASTERACCESS_NAME_COLOR;
  89. public static int MASTERACCESS_TITLE_COLOR;
  90. public static boolean ALT_GAME_DELEVEL;
  91. public static double ALT_WEIGHT_LIMIT;
  92. public static int RUN_SPD_BOOST;
  93. public static int DEATH_PENALTY_CHANCE;
  94. public static double RESPAWN_RESTORE_CP;
  95. public static double RESPAWN_RESTORE_HP;
  96. public static double RESPAWN_RESTORE_MP;
  97. public static boolean ALT_GAME_TIREDNESS;
  98. public static boolean ENABLE_MODIFY_SKILL_DURATION;
  99. public static Map<Integer, Integer> SKILL_DURATION_LIST;
  100. public static boolean ENABLE_MODIFY_SKILL_REUSE;
  101. public static Map<Integer, Integer> SKILL_REUSE_LIST;
  102. public static boolean AUTO_LEARN_SKILLS;
  103. public static boolean AUTO_LOOT_HERBS;
  104. public static byte BUFFS_MAX_AMOUNT;
  105. public static byte DANCES_MAX_AMOUNT;
  106. public static boolean AUTO_LEARN_DIVINE_INSPIRATION;
  107. public static boolean ALT_GAME_CANCEL_BOW;
  108. public static boolean ALT_GAME_CANCEL_CAST;
  109. public static boolean EFFECT_CANCELING;
  110. public static boolean ALT_GAME_MAGICFAILURES;
  111. public static int PLAYER_FAKEDEATH_UP_PROTECTION;
  112. public static boolean STORE_SKILL_COOLTIME;
  113. public static boolean ALT_GAME_SHIELD_BLOCKS;
  114. public static int ALT_PERFECT_SHLD_BLOCK;
  115. public static boolean ALLOW_CLASS_MASTERS;
  116. public static boolean LIFE_CRYSTAL_NEEDED;
  117. public static boolean SP_BOOK_NEEDED;
  118. public static boolean ES_SP_BOOK_NEEDED;
  119. public static boolean ALT_GAME_SKILL_LEARN;
  120. public static boolean ALT_GAME_SUBCLASS_WITHOUT_QUESTS;
  121. public static int MAX_RUN_SPEED;
  122. public static int MAX_PCRIT_RATE;
  123. public static int MAX_MCRIT_RATE;
  124. public static int MAX_PATK_SPEED;
  125. public static int MAX_MATK_SPEED;
  126. public static int MAX_EVASION;
  127. public static byte MAX_SUBCLASS;
  128. public static int MAX_PVTSTORESELL_SLOTS_DWARF;
  129. public static int MAX_PVTSTORESELL_SLOTS_OTHER;
  130. public static int MAX_PVTSTOREBUY_SLOTS_DWARF;
  131. public static int MAX_PVTSTOREBUY_SLOTS_OTHER;
  132. public static int INVENTORY_MAXIMUM_NO_DWARF;
  133. public static int INVENTORY_MAXIMUM_DWARF;
  134. public static int INVENTORY_MAXIMUM_GM;
  135. public static int WAREHOUSE_SLOTS_DWARF;
  136. public static int WAREHOUSE_SLOTS_NO_DWARF;
  137. public static int WAREHOUSE_SLOTS_CLAN;
  138. public static int FREIGHT_SLOTS;
  139. public static boolean ALT_GAME_KARMA_PLAYER_CAN_BE_KILLED_IN_PEACEZONE;
  140. public static boolean ALT_GAME_KARMA_PLAYER_CAN_SHOP;
  141. public static boolean ALT_GAME_KARMA_PLAYER_CAN_TELEPORT;
  142. public static boolean ALT_GAME_KARMA_PLAYER_CAN_USE_GK;
  143. public static boolean ALT_GAME_KARMA_PLAYER_CAN_TRADE;
  144. public static boolean ALT_GAME_KARMA_PLAYER_CAN_USE_WAREHOUSE;
  145. public static boolean IS_CRAFTING_ENABLED;
  146. public static int DWARF_RECIPE_LIMIT;
  147. public static int COMMON_RECIPE_LIMIT;
  148. public static boolean ALT_GAME_CREATION;
  149. public static double ALT_GAME_CREATION_SPEED;
  150. public static double ALT_GAME_CREATION_XP_RATE;
  151. public static double ALT_GAME_CREATION_RARE_XPSP_RATE;
  152. public static double ALT_GAME_CREATION_SP_RATE;
  153. public static boolean ALT_BLACKSMITH_USE_RECIPES;
  154. public static int ALT_CLAN_JOIN_DAYS;
  155. public static int ALT_CLAN_CREATE_DAYS;
  156. public static int ALT_CLAN_DISSOLVE_DAYS;
  157. public static int ALT_ALLY_JOIN_DAYS_WHEN_LEAVED;
  158. public static int ALT_ALLY_JOIN_DAYS_WHEN_DISMISSED;
  159. public static int ALT_ACCEPT_CLAN_DAYS_WHEN_DISMISSED;
  160. public static int ALT_CREATE_ALLY_DAYS_WHEN_DISSOLVED;
  161. public static int ALT_MAX_NUM_OF_CLANS_IN_ALLY;
  162. public static int ALT_CLAN_MEMBERS_FOR_WAR;
  163. public static boolean ALT_GAME_NEW_CHAR_ALWAYS_IS_NEWBIE;
  164. public static boolean ALT_MEMBERS_CAN_WITHDRAW_FROM_CLANWH;
  165. public static boolean REMOVE_CASTLE_CIRCLETS;
  166. public static int ALT_REPUTATION_SCORE_PER_KILL;
  167. public static int ALT_PARTY_RANGE;
  168. public static int ALT_PARTY_RANGE2;
  169. public static int STARTING_ADENA;
  170. public static boolean AUTO_LOOT;
  171. public static int UNSTUCK_INTERVAL;
  172. public static int PLAYER_SPAWN_PROTECTION;
  173. public static boolean RESPAWN_RANDOM_ENABLED;
  174. public static int RESPAWN_RANDOM_MAX_OFFSET;
  175. public static boolean RESTORE_PLAYER_INSTANCE;
  176. public static boolean ALLOW_SUMMON_TO_INSTANCE;
  177. public static boolean PETITIONING_ALLOWED;
  178. public static int MAX_PETITIONS_PER_PLAYER;
  179. public static int MAX_PETITIONS_PENDING;
  180. public static boolean ALT_GAME_FREIGHTS;
  181. public static int ALT_GAME_FREIGHT_PRICE;
  182. public static boolean ALT_GAME_FREE_TELEPORT;
  183. public static boolean ALT_RECOMMEND;
  184. public static int DELETE_DAYS;
  185. public static float ALT_GAME_EXPONENT_XP;
  186. public static float ALT_GAME_EXPONENT_SP;
  187. public static String PARTY_XP_CUTOFF_METHOD;
  188. public static double PARTY_XP_CUTOFF_PERCENT;
  189. public static int PARTY_XP_CUTOFF_LEVEL;
  190. /** ************************************************** **/
  191. /** Character Settings -End **/
  192. /** ************************************************** **/
  193. /** ************************************************** **/
  194. /** ClanHall Settings -Begin **/
  195. /** ************************************************** **/
  196. public static long CH_TELE_FEE_RATIO;
  197. public static int CH_TELE1_FEE;
  198. public static int CH_TELE2_FEE;
  199. public static long CH_ITEM_FEE_RATIO;
  200. public static int CH_ITEM1_FEE;
  201. public static int CH_ITEM2_FEE;
  202. public static int CH_ITEM3_FEE;
  203. public static long CH_MPREG_FEE_RATIO;
  204. public static int CH_MPREG1_FEE;
  205. public static int CH_MPREG2_FEE;
  206. public static int CH_MPREG3_FEE;
  207. public static int CH_MPREG4_FEE;
  208. public static int CH_MPREG5_FEE;
  209. public static long CH_HPREG_FEE_RATIO;
  210. public static int CH_HPREG1_FEE;
  211. public static int CH_HPREG2_FEE;
  212. public static int CH_HPREG3_FEE;
  213. public static int CH_HPREG4_FEE;
  214. public static int CH_HPREG5_FEE;
  215. public static int CH_HPREG6_FEE;
  216. public static int CH_HPREG7_FEE;
  217. public static int CH_HPREG8_FEE;
  218. public static int CH_HPREG9_FEE;
  219. public static int CH_HPREG10_FEE;
  220. public static int CH_HPREG11_FEE;
  221. public static int CH_HPREG12_FEE;
  222. public static int CH_HPREG13_FEE;
  223. public static long CH_EXPREG_FEE_RATIO;
  224. public static int CH_EXPREG1_FEE;
  225. public static int CH_EXPREG2_FEE;
  226. public static int CH_EXPREG3_FEE;
  227. public static int CH_EXPREG4_FEE;
  228. public static int CH_EXPREG5_FEE;
  229. public static int CH_EXPREG6_FEE;
  230. public static int CH_EXPREG7_FEE;
  231. public static long CH_SUPPORT_FEE_RATIO;
  232. public static int CH_SUPPORT1_FEE;
  233. public static int CH_SUPPORT2_FEE;
  234. public static int CH_SUPPORT3_FEE;
  235. public static int CH_SUPPORT4_FEE;
  236. public static int CH_SUPPORT5_FEE;
  237. public static int CH_SUPPORT6_FEE;
  238. public static int CH_SUPPORT7_FEE;
  239. public static int CH_SUPPORT8_FEE;
  240. public static long CH_CURTAIN_FEE_RATIO;
  241. public static int CH_CURTAIN1_FEE;
  242. public static int CH_CURTAIN2_FEE;
  243. public static long CH_FRONT_FEE_RATIO;
  244. public static int CH_FRONT1_FEE;
  245. public static int CH_FRONT2_FEE;
  246. /** ************************************************** **/
  247. /** ClanHall Settings -End **/
  248. /** ************************************************** **/
  249. /** ************************************************** **/
  250. /** Castle Settings -Begin **/
  251. /** ************************************************** **/
  252. public static long CS_TELE_FEE_RATIO;
  253. public static int CS_TELE1_FEE;
  254. public static int CS_TELE2_FEE;
  255. public static long CS_MPREG_FEE_RATIO;
  256. public static int CS_MPREG1_FEE;
  257. public static int CS_MPREG2_FEE;
  258. public static int CS_MPREG3_FEE;
  259. public static int CS_MPREG4_FEE;
  260. public static long CS_HPREG_FEE_RATIO;
  261. public static int CS_HPREG1_FEE;
  262. public static int CS_HPREG2_FEE;
  263. public static int CS_HPREG3_FEE;
  264. public static int CS_HPREG4_FEE;
  265. public static int CS_HPREG5_FEE;
  266. public static long CS_EXPREG_FEE_RATIO;
  267. public static int CS_EXPREG1_FEE;
  268. public static int CS_EXPREG2_FEE;
  269. public static int CS_EXPREG3_FEE;
  270. public static int CS_EXPREG4_FEE;
  271. public static long CS_SUPPORT_FEE_RATIO;
  272. public static int CS_SUPPORT1_FEE;
  273. public static int CS_SUPPORT2_FEE;
  274. public static int CS_SUPPORT3_FEE;
  275. public static int CS_SUPPORT4_FEE;
  276. public static List<String> CL_SET_SIEGE_TIME_LIST;
  277. public static List<Integer> SIEGE_HOUR_LIST_MORNING;
  278. public static List<Integer> SIEGE_HOUR_LIST_AFTERNOON;
  279. /** ************************************************** **/
  280. /** Castle Settings -End **/
  281. /** ************************************************** **/
  282. /** ************************************************** **/
  283. /** Fortress Settings -Begin **/
  284. /** ************************************************** **/
  285. public static long FS_TELE_FEE_RATIO;
  286. public static int FS_TELE1_FEE;
  287. public static int FS_TELE2_FEE;
  288. public static long FS_MPREG_FEE_RATIO;
  289. public static int FS_MPREG1_FEE;
  290. public static int FS_MPREG2_FEE;
  291. public static long FS_HPREG_FEE_RATIO;
  292. public static int FS_HPREG1_FEE;
  293. public static int FS_HPREG2_FEE;
  294. public static long FS_EXPREG_FEE_RATIO;
  295. public static int FS_EXPREG1_FEE;
  296. public static int FS_EXPREG2_FEE;
  297. public static long FS_SUPPORT_FEE_RATIO;
  298. public static int FS_SUPPORT1_FEE;
  299. public static int FS_SUPPORT2_FEE;
  300. /** ************************************************** **/
  301. /** Fortress Settings -End **/
  302. /** ************************************************** **/
  303. /** ************************************************** **/
  304. /** Feature Settings -Begin **/
  305. /** ************************************************** **/
  306. // TODO: Fill this area up!
  307. /** ************************************************** **/
  308. /** Feature Settings -End **/
  309. /** ************************************************** **/
  310. /** ************************************************** **/
  311. /** General Settings -Begin **/
  312. /** ************************************************** **/
  313. public static boolean EVERYBODY_HAS_ADMIN_RIGHTS;
  314. public static boolean SERVER_LIST_BRACKET;
  315. public static boolean SERVER_LIST_CLOCK;
  316. public static boolean SERVER_GMONLY;
  317. public static boolean GM_HERO_AURA;
  318. public static boolean GM_STARTUP_INVULNERABLE;
  319. public static boolean GM_STARTUP_INVISIBLE;
  320. public static boolean GM_STARTUP_SILENCE;
  321. public static boolean GM_STARTUP_AUTO_LIST;
  322. public static boolean GM_STARTUP_DIET_MODE;
  323. public static String GM_ADMIN_MENU_STYLE;
  324. public static boolean GM_ITEM_RESTRICTION;
  325. public static boolean BYPASS_VALIDATION;
  326. public static boolean GAMEGUARD_ENFORCE;
  327. public static boolean GAMEGUARD_PROHIBITACTION;
  328. public static boolean LOG_CHAT;
  329. public static boolean LOG_ITEMS;
  330. public static boolean GMAUDIT;
  331. public static boolean LOG_GAME_DAMAGE;
  332. public static boolean DEBUG;
  333. public static boolean ASSERT;
  334. public static boolean DEVELOPER;
  335. public static boolean ACCEPT_GEOEDITOR_CONN;
  336. public static boolean TEST_SERVER;
  337. public static boolean ALT_DEV_NO_QUESTS;
  338. public static boolean ALT_DEV_NO_SPAWNS;
  339. public static boolean SERVER_LIST_TESTSERVER;
  340. public static int THREAD_P_EFFECTS;
  341. public static int THREAD_P_GENERAL;
  342. public static int GENERAL_PACKET_THREAD_CORE_SIZE;
  343. public static int IO_PACKET_THREAD_CORE_SIZE;
  344. public static int GENERAL_THREAD_CORE_SIZE;
  345. public static int AI_MAX_THREAD;
  346. public static int PACKET_LIFETIME;
  347. public static boolean DEADLOCK_DETECTOR;
  348. public static int DEADLOCK_CHECK_INTERVAL;
  349. public static boolean RESTART_ON_DEADLOCK;
  350. public static int FLOODPROTECTOR_INITIALSIZE;
  351. public static boolean ALLOW_DISCARDITEM;
  352. public static int AUTODESTROY_ITEM_AFTER;
  353. public static int HERB_AUTO_DESTROY_TIME;
  354. public static String PROTECTED_ITEMS;
  355. public static List<Integer> LIST_PROTECTED_ITEMS = new FastList<Integer>();
  356. public static int CHAR_STORE_INTERVAL;
  357. public static boolean LAZY_ITEMS_UPDATE;
  358. public static boolean UPDATE_ITEMS_ON_CHAR_STORE;
  359. public static boolean DESTROY_DROPPED_PLAYER_ITEM;
  360. public static boolean DESTROY_EQUIPABLE_PLAYER_ITEM;
  361. public static boolean SAVE_DROPPED_ITEM;
  362. public static boolean EMPTY_DROPPED_ITEM_TABLE_AFTER_LOAD;
  363. public static int SAVE_DROPPED_ITEM_INTERVAL;
  364. public static boolean CLEAR_DROPPED_ITEM_TABLE;
  365. public static boolean AUTODELETE_INVALID_QUEST_DATA;
  366. public static boolean PRECISE_DROP_CALCULATION;
  367. public static boolean MULTIPLE_ITEM_DROP;
  368. public static boolean FORCE_INVENTORY_UPDATE;
  369. public static boolean LAZY_CACHE;
  370. public static int MIN_NPC_ANIMATION;
  371. public static int MAX_NPC_ANIMATION;
  372. public static int MIN_MONSTER_ANIMATION;
  373. public static int MAX_MONSTER_ANIMATION;
  374. public static int COORD_SYNCHRONIZE;
  375. public static boolean GRIDS_ALWAYS_ON;
  376. public static int GRID_NEIGHBOR_TURNON_TIME;
  377. public static int GRID_NEIGHBOR_TURNOFF_TIME;
  378. public static int GEODATA;
  379. public static boolean GEODATA_CELLFINDING;
  380. public static boolean FORCE_GEODATA;
  381. public static boolean MOVE_BASED_KNOWNLIST;
  382. public static long KNOWNLIST_UPDATE_INTERVAL;
  383. public static int ZONE_TOWN;
  384. public static boolean ACTIVATE_POSITION_RECORDER;
  385. public static String DEFAULT_GLOBAL_CHAT;
  386. public static String DEFAULT_TRADE_CHAT;
  387. public static boolean ALLOW_WAREHOUSE;
  388. public static boolean WAREHOUSE_CACHE;
  389. public static int WAREHOUSE_CACHE_TIME;
  390. public static boolean ALLOW_FREIGHT;
  391. public static boolean ALLOW_WEAR;
  392. public static int WEAR_DELAY;
  393. public static int WEAR_PRICE;
  394. public static boolean ALLOW_LOTTERY;
  395. public static boolean ALLOW_RACE;
  396. public static boolean ALLOW_WATER;
  397. public static boolean ALLOW_RENTPET;
  398. public static boolean ALLOWFISHING;
  399. public static boolean ALLOW_BOAT;
  400. public static boolean ALLOW_CURSED_WEAPONS;
  401. public static boolean ALLOW_MANOR;
  402. public static boolean ALLOW_NPC_WALKERS;
  403. public static boolean ALLOW_PET_WALKERS;
  404. public static boolean SERVER_NEWS;
  405. public static int COMMUNITY_TYPE;
  406. public static boolean BBS_SHOW_PLAYERLIST;
  407. public static String BBS_DEFAULT;
  408. public static boolean SHOW_LEVEL_COMMUNITYBOARD;
  409. public static boolean SHOW_STATUS_COMMUNITYBOARD;
  410. public static int NAME_PAGE_SIZE_COMMUNITYBOARD;
  411. public static int NAME_PER_ROW_COMMUNITYBOARD;
  412. public static int ALT_OLY_START_TIME;
  413. public static int ALT_OLY_MIN;
  414. public static long ALT_OLY_CPERIOD;
  415. public static long ALT_OLY_BATTLE;
  416. public static long ALT_OLY_WPERIOD;
  417. public static long ALT_OLY_VPERIOD;
  418. public static int ALT_OLY_CLASSED;
  419. public static int ALT_OLY_NONCLASSED;
  420. public static int ALT_OLY_BATTLE_REWARD_ITEM;
  421. public static int ALT_OLY_CLASSED_RITEM_C;
  422. public static int ALT_OLY_NONCLASSED_RITEM_C;
  423. public static int ALT_OLY_COMP_RITEM;
  424. public static int ALT_OLY_GP_PER_POINT;
  425. public static int ALT_OLY_MIN_POINT_FOR_EXCH;
  426. public static int ALT_OLY_HERO_POINTS;
  427. public static boolean ALT_OLY_LOG_FIGHTS;
  428. public static boolean ALT_OLY_SHOW_MONTHLY_WINNERS;
  429. public static boolean ALT_OLY_ANNOUNCE_GAMES;
  430. public static List<Integer> LIST_OLY_RESTRICTED_ITEMS = new FastList<Integer>();
  431. public static int ALT_OLY_ENCHANT_LIMIT;
  432. public static int ALT_MANOR_REFRESH_TIME;
  433. public static int ALT_MANOR_REFRESH_MIN;
  434. public static int ALT_MANOR_APPROVE_TIME;
  435. public static int ALT_MANOR_APPROVE_MIN;
  436. public static int ALT_MANOR_MAINTENANCE_PERIOD;
  437. public static boolean ALT_MANOR_SAVE_ALL_ACTIONS;
  438. public static int ALT_MANOR_SAVE_PERIOD_RATE;
  439. public static int ALT_LOTTERY_PRIZE;
  440. public static int ALT_LOTTERY_TICKET_PRICE;
  441. public static float ALT_LOTTERY_5_NUMBER_RATE;
  442. public static float ALT_LOTTERY_4_NUMBER_RATE;
  443. public static float ALT_LOTTERY_3_NUMBER_RATE;
  444. public static int ALT_LOTTERY_2_AND_1_NUMBER_PRIZE;
  445. public static int FS_TIME_ATTACK;
  446. public static int FS_TIME_COOLDOWN;
  447. public static int FS_TIME_ENTRY;
  448. public static int FS_TIME_WARMUP;
  449. public static int FS_PARTY_MEMBER_COUNT;
  450. public static int RIFT_MIN_PARTY_SIZE;
  451. public static int RIFT_SPAWN_DELAY;
  452. public static int RIFT_MAX_JUMPS;
  453. public static int RIFT_AUTO_JUMPS_TIME_MIN;
  454. public static int RIFT_AUTO_JUMPS_TIME_MAX;
  455. public static float RIFT_BOSS_ROOM_TIME_MUTIPLY;
  456. public static int RIFT_ENTER_COST_RECRUIT;
  457. public static int RIFT_ENTER_COST_SOLDIER;
  458. public static int RIFT_ENTER_COST_OFFICER;
  459. public static int RIFT_ENTER_COST_CAPTAIN;
  460. public static int RIFT_ENTER_COST_COMMANDER;
  461. public static int RIFT_ENTER_COST_HERO;
  462. public static int DEFAULT_PUNISH;
  463. public static int DEFAULT_PUNISH_PARAM;
  464. public static boolean ONLY_GM_ITEMS_FREE;
  465. public static boolean JAIL_IS_PVP;
  466. public static boolean JAIL_DISABLE_CHAT;
  467. public static boolean CUSTOM_SPAWNLIST_TABLE;
  468. public static boolean SAVE_GMSPAWN_ON_CUSTOM;
  469. public static boolean DELETE_GMSPAWN_ON_CUSTOM;
  470. public static boolean CUSTOM_NPC_TABLE;
  471. public static boolean CUSTOM_ITEM_TABLES;
  472. public static boolean CUSTOM_ARMORSETS_TABLE;
  473. public static boolean CUSTOM_TELEPORT_TABLE;
  474. public static boolean CUSTOM_DROPLIST_TABLE;
  475. public static boolean CUSTOM_MERCHANT_TABLES;
  476. /** ************************************************** **/
  477. /** General Settings -End **/
  478. /** ************************************************** **/
  479. /** ************************************************** **/
  480. /** L2JMods Settings -Begin **/
  481. /** ************************************************** **/
  482. public static boolean L2JMOD_CHAMPION_ENABLE;
  483. public static boolean L2JMOD_CHAMPION_PASSIVE;
  484. public static int L2JMOD_CHAMPION_FREQUENCY;
  485. public static String L2JMOD_CHAMP_TITLE;
  486. public static int L2JMOD_CHAMP_MIN_LVL;
  487. public static int L2JMOD_CHAMP_MAX_LVL;
  488. public static int L2JMOD_CHAMPION_HP;
  489. public static int L2JMOD_CHAMPION_REWARDS;
  490. public static int L2JMOD_CHAMPION_ADENAS_REWARDS;
  491. public static float L2JMOD_CHAMPION_HP_REGEN;
  492. public static float L2JMOD_CHAMPION_ATK;
  493. public static float L2JMOD_CHAMPION_SPD_ATK;
  494. public static int L2JMOD_CHAMPION_REWARD_LOWER_LVL_ITEM_CHANCE;
  495. public static int L2JMOD_CHAMPION_REWARD_HIGHER_LVL_ITEM_CHANCE;
  496. public static int L2JMOD_CHAMPION_REWARD_ID;
  497. public static int L2JMOD_CHAMPION_REWARD_QTY;
  498. public static boolean TVT_EVENT_ENABLED;
  499. public static String[] TVT_EVENT_INTERVAL;
  500. public static int TVT_EVENT_PARTICIPATION_TIME;
  501. public static int TVT_EVENT_RUNNING_TIME;
  502. public static int TVT_EVENT_PARTICIPATION_NPC_ID;
  503. public static int[] TVT_EVENT_PARTICIPATION_NPC_COORDINATES = new int[3];
  504. public static int TVT_EVENT_MIN_PLAYERS_IN_TEAMS;
  505. public static int TVT_EVENT_MAX_PLAYERS_IN_TEAMS;
  506. public static int TVT_EVENT_RESPAWN_TELEPORT_DELAY;
  507. public static int TVT_EVENT_START_LEAVE_TELEPORT_DELAY;
  508. public static String TVT_EVENT_TEAM_1_NAME;
  509. public static int[] TVT_EVENT_TEAM_1_COORDINATES = new int[3];
  510. public static String TVT_EVENT_TEAM_2_NAME;
  511. public static int[] TVT_EVENT_TEAM_2_COORDINATES = new int[3];
  512. public static List<int[]> TVT_EVENT_REWARDS = new FastList<int[]>();
  513. public static boolean TVT_EVENT_TARGET_TEAM_MEMBERS_ALLOWED;
  514. public static boolean TVT_EVENT_SCROLL_ALLOWED;
  515. public static boolean TVT_EVENT_POTIONS_ALLOWED;
  516. public static boolean TVT_EVENT_SUMMON_BY_ITEM_ALLOWED;
  517. public static List<Integer> TVT_DOORS_IDS_TO_OPEN = new ArrayList<Integer>();
  518. public static List<Integer> TVT_DOORS_IDS_TO_CLOSE = new ArrayList<Integer>();
  519. public static boolean TVT_REWARD_TEAM_TIE;
  520. public static byte TVT_EVENT_MIN_LVL;
  521. public static byte TVT_EVENT_MAX_LVL;
  522. public static boolean L2JMOD_ALLOW_WEDDING;
  523. public static int L2JMOD_WEDDING_PRICE;
  524. public static boolean L2JMOD_WEDDING_PUNISH_INFIDELITY;
  525. public static boolean L2JMOD_WEDDING_TELEPORT;
  526. public static int L2JMOD_WEDDING_TELEPORT_PRICE;
  527. public static int L2JMOD_WEDDING_TELEPORT_DURATION;
  528. public static boolean L2JMOD_WEDDING_SAMESEX;
  529. public static boolean L2JMOD_WEDDING_FORMALWEAR;
  530. public static int L2JMOD_WEDDING_DIVORCE_COSTS;
  531. public static boolean BANKING_SYSTEM_ENABLED;
  532. public static int BANKING_SYSTEM_GOLDBARS;
  533. public static int BANKING_SYSTEM_ADENA;
  534. public static boolean L2JMOD_ENABLE_WAREHOUSESORTING_CLAN;
  535. public static boolean L2JMOD_ENABLE_WAREHOUSESORTING_PRIVATE;
  536. public static boolean L2JMOD_ENABLE_WAREHOUSESORTING_FREIGHT;
  537. public static boolean L2JMOD_ENABLE_MANA_POTIONS_SUPPORT;
  538. /** ************************************************** **/
  539. /** L2JMods Settings -End **/
  540. /** ************************************************** **/
  541. /** ************************************************** **/
  542. /** NPC Settings -Begin **/
  543. /** ************************************************** **/
  544. public static boolean ANNOUNCE_MAMMON_SPAWN;
  545. public static boolean ALT_MOB_AGRO_IN_PEACEZONE;
  546. public static boolean ALT_ATTACKABLE_NPCS;
  547. public static boolean ALT_GAME_VIEWNPC;
  548. public static int MAX_DRIFT_RANGE;
  549. public static boolean DEEPBLUE_DROP_RULES;
  550. public static boolean SHOW_NPC_LVL;
  551. public static boolean GUARD_ATTACK_AGGRO_MOB;
  552. public static boolean ALLOW_WYVERN_UPGRADER;
  553. public static String PET_RENT_NPC;
  554. public static List<Integer> LIST_PET_RENT_NPC = new FastList<Integer>();
  555. public static double RAID_HP_REGEN_MULTIPLIER;
  556. public static double RAID_MP_REGEN_MULTIPLIER;
  557. public static double RAID_PDEFENCE_MULTIPLIER;
  558. public static double RAID_MDEFENCE_MULTIPLIER;
  559. public static double RAID_MINION_RESPAWN_TIMER;
  560. public static float RAID_MIN_RESPAWN_MULTIPLIER;
  561. public static float RAID_MAX_RESPAWN_MULTIPLIER;
  562. public static int INVENTORY_MAXIMUM_PET;
  563. /** ************************************************** **/
  564. /** NPC Settings -End **/
  565. /** ************************************************** **/
  566. /** ************************************************** **/
  567. /** PvP Settings -Begin **/
  568. /** ************************************************** **/
  569. /** Minimum karma gain/loss */
  570. public static int KARMA_MIN_KARMA;
  571. /** Maximum karma gain/loss */
  572. public static int KARMA_MAX_KARMA;
  573. /** Number to divide the xp received by, to calculate karma lost on xp gain/lost */
  574. public static int KARMA_XP_DIVIDER;
  575. /** The Minimum Karma lost if 0 karma is to be removed */
  576. public static int KARMA_LOST_BASE;
  577. /** Can a GM drop item ? */
  578. public static boolean KARMA_DROP_GM;
  579. /** Should award a pvp point for killing a player with karma ? */
  580. public static boolean KARMA_AWARD_PK_KILL;
  581. /** Minimum PK required to drop */
  582. public static int KARMA_PK_LIMIT;
  583. /** List of pet items that cannot be dropped (separated by ",") when PVP */
  584. public static String KARMA_NONDROPPABLE_PET_ITEMS;
  585. /** List of items that cannot be dropped (separated by ",") when PVP*/
  586. public static String KARMA_NONDROPPABLE_ITEMS;
  587. /** List of pet items that cannot be dropped when PVP */
  588. public static List<Integer> KARMA_LIST_NONDROPPABLE_PET_ITEMS = new FastList<Integer>();
  589. /** List of items that cannot be dropped when PVP */
  590. public static List<Integer> KARMA_LIST_NONDROPPABLE_ITEMS = new FastList<Integer>();
  591. /** ************************************************** **/
  592. /** PvP Settings -End **/
  593. /** ************************************************** **/
  594. /** ************************************************** **/
  595. /** Rate Settings -Begin **/
  596. /** ************************************************** **/
  597. /** Rate for eXperience Point rewards */
  598. public static float RATE_XP;
  599. /** Rate for Skill Point rewards */
  600. public static float RATE_SP;
  601. /** Rate for party eXperience Point rewards */
  602. public static float RATE_PARTY_XP;
  603. /** Rate for party Skill Point rewards */
  604. public static float RATE_PARTY_SP;
  605. /** Rate for Quest rewards (XP and SP) */
  606. public static float RATE_QUESTS_REWARD;
  607. /** Rate for drop adena */
  608. public static float RATE_DROP_ADENA;
  609. /** Rate for cost of consumable */
  610. public static float RATE_CONSUMABLE_COST;
  611. /** Rate for fish extrakting */
  612. public static float RATE_EXTR_FISH;
  613. /** Rate for dropped items */
  614. public static float RATE_DROP_ITEMS;
  615. /** Rate for dropped items by Raid Bosses */
  616. public static float RATE_DROP_ITEMS_BY_RAID;
  617. /** Rate for spoiled items */
  618. public static float RATE_DROP_SPOIL;
  619. /** Rate for manor items */
  620. public static int RATE_DROP_MANOR;
  621. /** Rate for quest items */
  622. public static float RATE_DROP_QUEST;
  623. /** Rate for karma and experience lose */
  624. public static float RATE_KARMA_EXP_LOST;
  625. /** Rate siege guards prices */
  626. public static float RATE_SIEGE_GUARDS_PRICE;
  627. /** Rate Common herbs */
  628. public static float RATE_DROP_COMMON_HERBS;
  629. /** Rate MP/HP herbs */
  630. public static float RATE_DROP_MP_HP_HERBS;
  631. /** Rate Common herbs */
  632. public static float RATE_DROP_GREATER_HERBS;
  633. /** Rate Common herbs */
  634. public static float RATE_DROP_SUPERIOR_HERBS;
  635. /** Rate Common herbs */
  636. public static float RATE_DROP_SPECIAL_HERBS;
  637. /** Limit for player drop */
  638. public static int PLAYER_DROP_LIMIT;
  639. /** Rate for drop */
  640. public static int PLAYER_RATE_DROP;
  641. /** Rate for player's item drop */
  642. public static int PLAYER_RATE_DROP_ITEM;
  643. /** Rate for player's equipment drop */
  644. public static int PLAYER_RATE_DROP_EQUIP;
  645. /** Rate for player's equipment and weapon drop */
  646. public static int PLAYER_RATE_DROP_EQUIP_WEAPON;
  647. /** Rate for experience rewards of the pet */
  648. public static float PET_XP_RATE;
  649. /** Rate for food consumption of the pet */
  650. public static int PET_FOOD_RATE;
  651. /** Rate for experience rewards of the Sin Eater */
  652. public static float SINEATER_XP_RATE;
  653. /** Karma drop limit */
  654. public static int KARMA_DROP_LIMIT;
  655. /** Karma drop rate */
  656. public static int KARMA_RATE_DROP;
  657. /** Karma drop rate for item */
  658. public static int KARMA_RATE_DROP_ITEM;
  659. /** Karma drop rate for equipment */
  660. public static int KARMA_RATE_DROP_EQUIP;
  661. /** Karma drop rate for equipment and weapon */
  662. public static int KARMA_RATE_DROP_EQUIP_WEAPON;
  663. /** ************************************************** **/
  664. /** Rate Settings -End **/
  665. /** ************************************************** **/
  666. /** ************************************************** **/
  667. /** SevinSigns Settings -Begin **/
  668. /** ************************************************** **/
  669. public static boolean ALT_GAME_CASTLE_DAWN;
  670. public static boolean ALT_GAME_CASTLE_DUSK;
  671. public static boolean ALT_GAME_REQUIRE_CLAN_CASTLE;
  672. public static int ALT_FESTIVAL_MIN_PLAYER;
  673. public static int ALT_MAXIMUM_PLAYER_CONTRIB;
  674. public static long ALT_FESTIVAL_MANAGER_START;
  675. public static long ALT_FESTIVAL_LENGTH;
  676. public static long ALT_FESTIVAL_CYCLE_LENGTH;
  677. public static long ALT_FESTIVAL_FIRST_SPAWN;
  678. public static long ALT_FESTIVAL_FIRST_SWARM;
  679. public static long ALT_FESTIVAL_SECOND_SPAWN;
  680. public static long ALT_FESTIVAL_SECOND_SWARM;
  681. public static long ALT_FESTIVAL_CHEST_SPAWN;
  682. public static double ALT_SIEGE_DAWN_GATES_PDEF_MULT;
  683. public static double ALT_SIEGE_DUSK_GATES_PDEF_MULT;
  684. public static double ALT_SIEGE_DAWN_GATES_MDEF_MULT;
  685. public static double ALT_SIEGE_DUSK_GATES_MDEF_MULT;
  686. /** ************************************************** **/
  687. /** SevinSigns Settings -End **/
  688. /** ************************************************** **/
  689. /** ************************************************** **/
  690. /** Server Settings -Begin **/
  691. /** ************************************************** **/
  692. /** Game Server ports */
  693. public static int PORT_GAME;
  694. /** Login Server port */
  695. public static int PORT_LOGIN;
  696. /** Login Server bind ip */
  697. public static String LOGIN_BIND_ADDRESS;
  698. /** Number of login tries before IP ban gets activated, default 10*/
  699. public static int LOGIN_TRY_BEFORE_BAN;
  700. /** Number of seconds the IP ban will last, default 10 minutes */
  701. public static int LOGIN_BLOCK_AFTER_BAN;
  702. /** Hostname of the Game Server */
  703. public static String GAMESERVER_HOSTNAME;
  704. /** Driver to access to database */
  705. public static String DATABASE_DRIVER;
  706. /** Path to access to database */
  707. public static String DATABASE_URL;
  708. /** Database login */
  709. public static String DATABASE_LOGIN;
  710. /** Database password */
  711. public static String DATABASE_PASSWORD;
  712. /** Maximum number of connections to the database */
  713. public static int DATABASE_MAX_CONNECTIONS;
  714. /** Maximum number of players allowed to play simultaneously on server */
  715. public static int MAXIMUM_ONLINE_USERS;
  716. /** Character name template */
  717. public static String CNAME_TEMPLATE;
  718. /** Pet name template */
  719. public static String PET_NAME_TEMPLATE;
  720. /** Maximum number of characters per account */
  721. public static int MAX_CHARACTERS_NUMBER_PER_ACCOUNT;
  722. /** Datapack root directory */
  723. public static File DATAPACK_ROOT;
  724. /** Accept alternate ID for server ? */
  725. public static boolean ACCEPT_ALTERNATE_ID;
  726. /** ID for request to the server */
  727. public static int REQUEST_ID;
  728. public static boolean RESERVE_HOST_ON_LOGIN = false;
  729. /** Minimal protocol revision */
  730. public static int MIN_PROTOCOL_REVISION;
  731. /** Maximal protocol revision */
  732. public static int MAX_PROTOCOL_REVISION;
  733. /** Log LoginController.loginValid(...) */
  734. public static boolean LOG_LOGIN_CONTROLLER;
  735. /** ************************************************** **/
  736. /** Server Settings -End **/
  737. /** ************************************************** **/
  738. /******************************************************************************************************************************************************/
  739. /** L2J Variable Definitions End Here**/
  740. /******************************************************************************************************************************************************/
  741. public static int MAX_ITEM_IN_PACKET;
  742. public static boolean CHECK_KNOWN;
  743. /** Game Server login port */
  744. public static int GAME_SERVER_LOGIN_PORT;
  745. /** Game Server login Host */
  746. public static String GAME_SERVER_LOGIN_HOST;
  747. /** Internal Hostname */
  748. public static String INTERNAL_HOSTNAME;
  749. /** External Hostname */
  750. public static String EXTERNAL_HOSTNAME;
  751. public static int PATH_NODE_RADIUS;
  752. public static int NEW_NODE_ID;
  753. public static int SELECTED_NODE_ID;
  754. public static int LINKED_NODE_ID;
  755. public static String NEW_NODE_TYPE;
  756. /** Time between 2 updates of IP */
  757. public static int IP_UPDATE_TIME;
  758. // Server version
  759. /** Server version */
  760. public static String SERVER_VERSION;
  761. /** Date of server build */
  762. public static String SERVER_BUILD_DATE;
  763. // Datapack version
  764. /** Datapack version */
  765. public static String DATAPACK_VERSION;
  766. /** List of items that cannot be dropped (seperated by ",") */
  767. public static String NONDROPPABLE_ITEMS;
  768. /** List of items that cannot be dropped */
  769. public static List<Integer> LIST_NONDROPPABLE_ITEMS = new FastList<Integer>();
  770. /** Duration (in ms) while a player stay in PVP mode after hitting an innocent */
  771. public static int PVP_NORMAL_TIME;
  772. /** Duration (in ms) while a player stay in PVP mode after hitting a purple player */
  773. public static int PVP_PVP_TIME;
  774. // Packet information
  775. /** Count the amount of packets per minute ? */
  776. public static boolean COUNT_PACKETS = false;
  777. /** Dump packet count ? */
  778. public static boolean DUMP_PACKET_COUNTS = false;
  779. /** Time interval between 2 dumps */
  780. public static int DUMP_INTERVAL_SECONDS = 60;
  781. /** Enumeration for type of ID Factory */
  782. public static enum IdFactoryType
  783. {
  784. Compaction,
  785. BitSet,
  786. Stack
  787. }
  788. /** ID Factory type */
  789. public static IdFactoryType IDFACTORY_TYPE;
  790. /** Check for bad ID ? */
  791. public static boolean BAD_ID_CHECKING;
  792. /** Enumeration for type of maps object */
  793. public static enum ObjectMapType
  794. {
  795. L2ObjectHashMap,
  796. WorldObjectMap
  797. }
  798. /** Enumeration for type of set object */
  799. public static enum ObjectSetType
  800. {
  801. L2ObjectHashSet,
  802. WorldObjectSet
  803. }
  804. /** Type of map object */
  805. public static ObjectMapType MAP_TYPE;
  806. /** Type of set object */
  807. public static ObjectSetType SET_TYPE;
  808. /** Chance that an item will successfully be enchanted */
  809. public static int ENCHANT_CHANCE_WEAPON;
  810. public static int ENCHANT_CHANCE_ARMOR;
  811. public static int ENCHANT_CHANCE_JEWELRY;
  812. public static int BLESSED_ENCHANT_CHANCE_WEAPON;
  813. public static int BLESSED_ENCHANT_CHANCE_ARMOR;
  814. public static int BLESSED_ENCHANT_CHANCE_JEWELRY;
  815. /** Maximum level of enchantment */
  816. public static int ENCHANT_MAX_WEAPON;
  817. public static int ENCHANT_MAX_ARMOR;
  818. public static int ENCHANT_MAX_JEWELRY;
  819. /** maximum level of safe enchantment for normal items*/
  820. public static int ENCHANT_SAFE_MAX;
  821. /** maximum level of safe enchantment for full body armor*/
  822. public static int ENCHANT_SAFE_MAX_FULL;
  823. /** Chance to get a skill while using a NoGrade Life Stone*/
  824. public static int AUGMENTATION_NG_SKILL_CHANCE;
  825. /** Chance to get a Glow effect while using a NoGrade Life Stone(only if you get a skill)*/
  826. public static int AUGMENTATION_NG_GLOW_CHANCE;
  827. /** Chance to get a skill while using a MidGrade Life Stone*/
  828. public static int AUGMENTATION_MID_SKILL_CHANCE;
  829. /** Chance to get a Glow effect while using a MidGrade Life Stone(only if you get a skill)*/
  830. public static int AUGMENTATION_MID_GLOW_CHANCE;
  831. /** Chance to get a skill while using a HighGrade Life Stone*/
  832. public static int AUGMENTATION_HIGH_SKILL_CHANCE;
  833. /** Chance to get a Glow effect while using a HighGrade Life Stone*/
  834. public static int AUGMENTATION_HIGH_GLOW_CHANCE;
  835. /** Chance to get a skill while using a TopGrade Life Stone*/
  836. public static int AUGMENTATION_TOP_SKILL_CHANCE;
  837. /** Chance to get a Glow effect while using a TopGrade Life Stone*/
  838. public static int AUGMENTATION_TOP_GLOW_CHANCE;
  839. /** Chance to get a BaseStatModifier in the augmentation process*/
  840. public static int AUGMENTATION_BASESTAT_CHANCE;
  841. // Character multipliers
  842. /** Multiplier for character HP regeneration */
  843. public static double HP_REGEN_MULTIPLIER;
  844. /** Mutilplier for character MP regeneration */
  845. public static double MP_REGEN_MULTIPLIER;
  846. /** Multiplier for character CP regeneration */
  847. public static double CP_REGEN_MULTIPLIER;
  848. /** Is telnet enabled ? */
  849. public static boolean IS_TELNET_ENABLED;
  850. /** Show licence or not just after login (if false, will directly go to the Server List */
  851. public static boolean SHOW_LICENCE;
  852. /** Force GameGuard authorization in loginserver */
  853. public static boolean FORCE_GGAUTH;
  854. /** Accept new game server ? */
  855. public static boolean ACCEPT_NEW_GAMESERVER;
  856. /** Server ID used with the HexID */
  857. public static int SERVER_ID;
  858. /** Hexadecimal ID of the game server */
  859. public static byte[] HEX_ID;
  860. public static int MINIMUM_UPDATE_DISTANCE;
  861. public static int KNOWNLIST_FORGET_DELAY;
  862. public static int MINIMUN_UPDATE_TIME;
  863. /** Allow auto-create account ? */
  864. public static boolean AUTO_CREATE_ACCOUNTS;
  865. public static boolean FLOOD_PROTECTION;
  866. public static int FAST_CONNECTION_LIMIT;
  867. public static int NORMAL_CONNECTION_TIME;
  868. public static int FAST_CONNECTION_TIME;
  869. public static int MAX_CONNECTION_PER_IP;
  870. /**
  871. * This class initializes all global variables for configuration.<br>
  872. * If key doesn't appear in properties file, a default value is setting on by this class.
  873. * @see CONFIGURATION_FILE (propertie file) for configuring your server.
  874. */
  875. public static void load()
  876. {
  877. if(Server.serverMode == Server.MODE_GAMESERVER)
  878. {
  879. _log.info("loading gameserver config");
  880. InputStream is = null;
  881. try
  882. {
  883. try {
  884. Properties serverSettings = new Properties();
  885. is = new FileInputStream(new File(CONFIGURATION_FILE));
  886. serverSettings.load(is);
  887. GAMESERVER_HOSTNAME = serverSettings.getProperty("GameserverHostname");
  888. PORT_GAME = Integer.parseInt(serverSettings.getProperty("GameserverPort", "7777"));
  889. EXTERNAL_HOSTNAME = serverSettings.getProperty("ExternalHostname", "*");
  890. INTERNAL_HOSTNAME = serverSettings.getProperty("InternalHostname", "*");
  891. GAME_SERVER_LOGIN_PORT = Integer.parseInt(serverSettings.getProperty("LoginPort","9014"));
  892. GAME_SERVER_LOGIN_HOST = serverSettings.getProperty("LoginHost","127.0.0.1");
  893. REQUEST_ID = Integer.parseInt(serverSettings.getProperty("RequestServerID","0"));
  894. ACCEPT_ALTERNATE_ID = Boolean.parseBoolean(serverSettings.getProperty("AcceptAlternateID","True"));
  895. DATABASE_DRIVER = serverSettings.getProperty("Driver", "com.mysql.jdbc.Driver");
  896. DATABASE_URL = serverSettings.getProperty("URL", "jdbc:mysql://localhost/l2jdb");
  897. DATABASE_LOGIN = serverSettings.getProperty("Login", "root");
  898. DATABASE_PASSWORD = serverSettings.getProperty("Password", "");
  899. DATABASE_MAX_CONNECTIONS = Integer.parseInt(serverSettings.getProperty("MaximumDbConnections", "10"));
  900. DATAPACK_ROOT = new File(serverSettings.getProperty("DatapackRoot", ".")).getCanonicalFile();
  901. CNAME_TEMPLATE = serverSettings.getProperty("CnameTemplate", ".*");
  902. PET_NAME_TEMPLATE = serverSettings.getProperty("PetNameTemplate", ".*");
  903. MAX_CHARACTERS_NUMBER_PER_ACCOUNT = Integer.parseInt(serverSettings.getProperty("CharMaxNumber", "0"));
  904. MAXIMUM_ONLINE_USERS = Integer.parseInt(serverSettings.getProperty("MaximumOnlineUsers", "100"));
  905. MIN_PROTOCOL_REVISION = Integer.parseInt(serverSettings.getProperty("MinProtocolRevision", "660"));
  906. MAX_PROTOCOL_REVISION = Integer.parseInt(serverSettings.getProperty("MaxProtocolRevision", "665"));
  907. if (MIN_PROTOCOL_REVISION > MAX_PROTOCOL_REVISION)
  908. {
  909. throw new Error("MinProtocolRevision is bigger than MaxProtocolRevision in server configuration file.");
  910. }
  911. }
  912. catch (Exception e)
  913. {
  914. e.printStackTrace();
  915. throw new Error("Failed to Load "+CONFIGURATION_FILE+" File.");
  916. }
  917. // Feature Config File
  918. try
  919. {
  920. Properties Feature = new Properties();
  921. is = new FileInputStream(new File(FEATURE_CONFIG_FILE));
  922. Feature.load(is);
  923. CH_TELE_FEE_RATIO = Long.parseLong(Feature.getProperty("ClanHallTeleportFunctionFeeRatio", "604800000"));
  924. CH_TELE1_FEE = Integer.parseInt(Feature.getProperty("ClanHallTeleportFunctionFeeLvl1", "7000"));
  925. CH_TELE2_FEE = Integer.parseInt(Feature.getProperty("ClanHallTeleportFunctionFeeLvl2", "14000"));
  926. CH_SUPPORT_FEE_RATIO = Long.parseLong(Feature.getProperty("ClanHallSupportFunctionFeeRatio", "86400000"));
  927. CH_SUPPORT1_FEE = Integer.parseInt(Feature.getProperty("ClanHallSupportFeeLvl1", "2500"));
  928. CH_SUPPORT2_FEE = Integer.parseInt(Feature.getProperty("ClanHallSupportFeeLvl2", "5000"));
  929. CH_SUPPORT3_FEE = Integer.parseInt(Feature.getProperty("ClanHallSupportFeeLvl3", "7000"));
  930. CH_SUPPORT4_FEE = Integer.parseInt(Feature.getProperty("ClanHallSupportFeeLvl4", "11000"));
  931. CH_SUPPORT5_FEE = Integer.parseInt(Feature.getProperty("ClanHallSupportFeeLvl5", "21000"));
  932. CH_SUPPORT6_FEE = Integer.parseInt(Feature.getProperty("ClanHallSupportFeeLvl6", "36000"));
  933. CH_SUPPORT7_FEE = Integer.parseInt(Feature.getProperty("ClanHallSupportFeeLvl7", "37000"));
  934. CH_SUPPORT8_FEE = Integer.parseInt(Feature.getProperty("ClanHallSupportFeeLvl8", "52000"));
  935. CH_MPREG_FEE_RATIO = Long.parseLong(Feature.getProperty("ClanHallMpRegenerationFunctionFeeRatio", "86400000"));
  936. CH_MPREG1_FEE = Integer.parseInt(Feature.getProperty("ClanHallMpRegenerationFeeLvl1", "2000"));
  937. CH_MPREG2_FEE = Integer.parseInt(Feature.getProperty("ClanHallMpRegenerationFeeLvl2", "3750"));
  938. CH_MPREG3_FEE = Integer.parseInt(Feature.getProperty("ClanHallMpRegenerationFeeLvl3", "6500"));
  939. CH_MPREG4_FEE = Integer.parseInt(Feature.getProperty("ClanHallMpRegenerationFeeLvl4", "13750"));
  940. CH_MPREG5_FEE = Integer.parseInt(Feature.getProperty("ClanHallMpRegenerationFeeLvl5", "20000"));
  941. CH_HPREG_FEE_RATIO = Long.parseLong(Feature.getProperty("ClanHallHpRegenerationFunctionFeeRatio", "86400000"));
  942. CH_HPREG1_FEE = Integer.parseInt(Feature.getProperty("ClanHallHpRegenerationFeeLvl1", "700"));
  943. CH_HPREG2_FEE = Integer.parseInt(Feature.getProperty("ClanHallHpRegenerationFeeLvl2", "800"));
  944. CH_HPREG3_FEE = Integer.parseInt(Feature.getProperty("ClanHallHpRegenerationFeeLvl3", "1000"));
  945. CH_HPREG4_FEE = Integer.parseInt(Feature.getProperty("ClanHallHpRegenerationFeeLvl4", "1166"));
  946. CH_HPREG5_FEE = Integer.parseInt(Feature.getProperty("ClanHallHpRegenerationFeeLvl5", "1500"));
  947. CH_HPREG6_FEE = Integer.parseInt(Feature.getProperty("ClanHallHpRegenerationFeeLvl6", "1750"));
  948. CH_HPREG7_FEE = Integer.parseInt(Feature.getProperty("ClanHallHpRegenerationFeeLvl7", "2000"));
  949. CH_HPREG8_FEE = Integer.parseInt(Feature.getProperty("ClanHallHpRegenerationFeeLvl8", "2250"));
  950. CH_HPREG9_FEE = Integer.parseInt(Feature.getProperty("ClanHallHpRegenerationFeeLvl9", "2500"));
  951. CH_HPREG10_FEE = Integer.parseInt(Feature.getProperty("ClanHallHpRegenerationFeeLvl10", "3250"));
  952. CH_HPREG11_FEE = Integer.parseInt(Feature.getProperty("ClanHallHpRegenerationFeeLvl11", "3270"));
  953. CH_HPREG12_FEE = Integer.parseInt(Feature.getProperty("ClanHallHpRegenerationFeeLvl12", "4250"));
  954. CH_HPREG13_FEE = Integer.parseInt(Feature.getProperty("ClanHallHpRegenerationFeeLvl13", "5166"));
  955. CH_EXPREG_FEE_RATIO = Long.parseLong(Feature.getProperty("ClanHallExpRegenerationFunctionFeeRatio", "86400000"));
  956. CH_EXPREG1_FEE = Integer.parseInt(Feature.getProperty("ClanHallExpRegenerationFeeLvl1", "3000"));
  957. CH_EXPREG2_FEE = Integer.parseInt(Feature.getProperty("ClanHallExpRegenerationFeeLvl2", "6000"));
  958. CH_EXPREG3_FEE = Integer.parseInt(Feature.getProperty("ClanHallExpRegenerationFeeLvl3", "9000"));
  959. CH_EXPREG4_FEE = Integer.parseInt(Feature.getProperty("ClanHallExpRegenerationFeeLvl4", "15000"));
  960. CH_EXPREG5_FEE = Integer.parseInt(Feature.getProperty("ClanHallExpRegenerationFeeLvl5", "21000"));
  961. CH_EXPREG6_FEE = Integer.parseInt(Feature.getProperty("ClanHallExpRegenerationFeeLvl6", "23330"));
  962. CH_EXPREG7_FEE = Integer.parseInt(Feature.getProperty("ClanHallExpRegenerationFeeLvl7", "30000"));
  963. CH_ITEM_FEE_RATIO = Long.parseLong(Feature.getProperty("ClanHallItemCreationFunctionFeeRatio", "86400000"));
  964. CH_ITEM1_FEE = Integer.parseInt(Feature.getProperty("ClanHallItemCreationFunctionFeeLvl1", "30000"));
  965. CH_ITEM2_FEE = Integer.parseInt(Feature.getProperty("ClanHallItemCreationFunctionFeeLvl2", "70000"));
  966. CH_ITEM3_FEE = Integer.parseInt(Feature.getProperty("ClanHallItemCreationFunctionFeeLvl3", "140000"));
  967. CH_CURTAIN_FEE_RATIO = Long.parseLong(Feature.getProperty("ClanHallCurtainFunctionFeeRatio", "604800000"));
  968. CH_CURTAIN1_FEE = Integer.parseInt(Feature.getProperty("ClanHallCurtainFunctionFeeLvl1", "2000"));
  969. CH_CURTAIN2_FEE = Integer.parseInt(Feature.getProperty("ClanHallCurtainFunctionFeeLvl2", "2500"));
  970. CH_FRONT_FEE_RATIO = Long.parseLong(Feature.getProperty("ClanHallFrontPlatformFunctionFeeRatio", "259200000"));
  971. CH_FRONT1_FEE = Integer.parseInt(Feature.getProperty("ClanHallFrontPlatformFunctionFeeLvl1", "1300"));
  972. CH_FRONT2_FEE = Integer.parseInt(Feature.getProperty("ClanHallFrontPlatformFunctionFeeLvl2", "4000"));
  973. //
  974. CL_SET_SIEGE_TIME_LIST = new FastList<String>();
  975. SIEGE_HOUR_LIST_MORNING = new FastList<Integer>();
  976. SIEGE_HOUR_LIST_AFTERNOON = new FastList<Integer>();
  977. String[] sstl = Feature.getProperty("CLSetSiegeTimeList", "").split(",");
  978. if (sstl.length != 0)
  979. {
  980. boolean isHour = false;
  981. for (String st : sstl)
  982. {
  983. if (st.equalsIgnoreCase("day") || st.equalsIgnoreCase("hour") || st.equalsIgnoreCase("minute"))
  984. {
  985. if (st.equalsIgnoreCase("hour")) isHour = true;
  986. CL_SET_SIEGE_TIME_LIST.add(st.toLowerCase());
  987. }
  988. else
  989. {
  990. _log.warning(StringUtil.concat("[CLSetSiegeTimeList]: invalid config property -> CLSetSiegeTimeList \"", st, "\""));
  991. }
  992. }
  993. if (isHour)
  994. {
  995. String[] shl = Feature.getProperty("SiegeHourList", "").split(",");
  996. for (String st : shl)
  997. {
  998. if (!st.equalsIgnoreCase(""))
  999. {
  1000. int val = Integer.valueOf(st);
  1001. if (val > 23 || val < 0)
  1002. _log.warning(StringUtil.concat("[SiegeHourList]: invalid config property -> SiegeHourList \"", st, "\""));
  1003. else if (val < 12)
  1004. SIEGE_HOUR_LIST_MORNING.add(val);
  1005. else
  1006. {
  1007. val -= 12;
  1008. SIEGE_HOUR_LIST_AFTERNOON.add(val);
  1009. }
  1010. }
  1011. }
  1012. if (Config.SIEGE_HOUR_LIST_AFTERNOON.isEmpty() && Config.SIEGE_HOUR_LIST_AFTERNOON.isEmpty())
  1013. {
  1014. _log.warning("[SiegeHourList]: invalid config property -> SiegeHourList is empty");
  1015. CL_SET_SIEGE_TIME_LIST.remove("hour");
  1016. }
  1017. }
  1018. }
  1019. CS_TELE_FEE_RATIO = Long.parseLong(Feature.getProperty("CastleTeleportFunctionFeeRatio", "604800000"));
  1020. CS_TELE1_FEE = Integer.parseInt(Feature.getProperty("CastleTeleportFunctionFeeLvl1", "7000"));
  1021. CS_TELE2_FEE = Integer.parseInt(Feature.getProperty("CastleTeleportFunctionFeeLvl2", "14000"));
  1022. CS_SUPPORT_FEE_RATIO = Long.parseLong(Feature.getProperty("CastleSupportFunctionFeeRatio", "86400000"));
  1023. CS_SUPPORT1_FEE = Integer.parseInt(Feature.getProperty("CastleSupportFeeLvl1", "7000"));
  1024. CS_SUPPORT2_FEE = Integer.parseInt(Feature.getProperty("CastleSupportFeeLvl2", "21000"));
  1025. CS_SUPPORT3_FEE = Integer.parseInt(Feature.getProperty("CastleSupportFeeLvl3", "37000"));
  1026. CS_SUPPORT4_FEE = Integer.parseInt(Feature.getProperty("CastleSupportFeeLvl4", "52000"));
  1027. CS_MPREG_FEE_RATIO = Long.parseLong(Feature.getProperty("CastleMpRegenerationFunctionFeeRatio", "86400000"));
  1028. CS_MPREG1_FEE = Integer.parseInt(Feature.getProperty("CastleMpRegenerationFeeLvl1", "2000"));
  1029. CS_MPREG2_FEE = Integer.parseInt(Feature.getProperty("CastleMpRegenerationFeeLvl2", "6500"));
  1030. CS_MPREG3_FEE = Integer.parseInt(Feature.getProperty("CastleMpRegenerationFeeLvl3", "13750"));
  1031. CS_MPREG4_FEE = Integer.parseInt(Feature.getProperty("CastleMpRegenerationFeeLvl4", "20000"));
  1032. CS_HPREG_FEE_RATIO = Long.parseLong(Feature.getProperty("CastleHpRegenerationFunctionFeeRatio", "86400000"));
  1033. CS_HPREG1_FEE = Integer.parseInt(Feature.getProperty("CastleHpRegenerationFeeLvl1", "1000"));
  1034. CS_HPREG2_FEE = Integer.parseInt(Feature.getProperty("CastleHpRegenerationFeeLvl2", "1500"));
  1035. CS_HPREG3_FEE = Integer.parseInt(Feature.getProperty("CastleHpRegenerationFeeLvl3", "2250"));
  1036. CS_HPREG4_FEE = Integer.parseInt(Feature.getProperty("CastleHpRegenerationFeeLvl14", "3270"));
  1037. CS_HPREG5_FEE = Integer.parseInt(Feature.getProperty("CastleHpRegenerationFeeLvl15", "5166"));
  1038. CS_EXPREG_FEE_RATIO = Long.parseLong(Feature.getProperty("CastleExpRegenerationFunctionFeeRatio", "86400000"));
  1039. CS_EXPREG1_FEE = Integer.parseInt(Feature.getProperty("CastleExpRegenerationFeeLvl1", "9000"));
  1040. CS_EXPREG2_FEE = Integer.parseInt(Feature.getProperty("CastleExpRegenerationFeeLvl2", "15000"));
  1041. CS_EXPREG3_FEE = Integer.parseInt(Feature.getProperty("CastleExpRegenerationFeeLvl3", "21000"));
  1042. CS_EXPREG4_FEE = Integer.parseInt(Feature.getProperty("CastleExpRegenerationFeeLvl4", "30000"));
  1043. //
  1044. //
  1045. FS_TELE_FEE_RATIO = Long.parseLong(Feature.getProperty("FortressTeleportFunctionFeeRatio", "604800000"));
  1046. FS_TELE1_FEE = Integer.parseInt(Feature.getProperty("FortressTeleportFunctionFeeLvl1", "1000"));
  1047. FS_TELE2_FEE = Integer.parseInt(Feature.getProperty("FortressTeleportFunctionFeeLvl2", "10000"));
  1048. FS_SUPPORT_FEE_RATIO = Long.parseLong(Feature.getProperty("FortressSupportFunctionFeeRatio", "86400000"));
  1049. FS_SUPPORT1_FEE = Integer.parseInt(Feature.getProperty("FortressSupportFeeLvl1", "7000"));
  1050. FS_SUPPORT2_FEE = Integer.parseInt(Feature.getProperty("FortressSupportFeeLvl2", "17000"));
  1051. FS_MPREG_FEE_RATIO = Long.parseLong(Feature.getProperty("FortressMpRegenerationFunctionFeeRatio", "86400000"));
  1052. FS_MPREG1_FEE = Integer.parseInt(Feature.getProperty("FortressMpRegenerationFeeLvl1", "6500"));
  1053. FS_MPREG2_FEE = Integer.parseInt(Feature.getProperty("FortressMpRegenerationFeeLvl2", "9300"));
  1054. FS_HPREG_FEE_RATIO = Long.parseLong(Feature.getProperty("FortressHpRegenerationFunctionFeeRatio", "86400000"));
  1055. FS_HPREG1_FEE = Integer.parseInt(Feature.getProperty("FortressHpRegenerationFeeLvl1", "2000"));
  1056. FS_HPREG2_FEE = Integer.parseInt(Feature.getProperty("FortressHpRegenerationFeeLvl2", "3500"));
  1057. FS_EXPREG_FEE_RATIO = Long.parseLong(Feature.getProperty("FortressExpRegenerationFunctionFeeRatio", "86400000"));
  1058. FS_EXPREG1_FEE = Integer.parseInt(Feature.getProperty("FortressExpRegenerationFeeLvl1", "9000"));
  1059. FS_EXPREG2_FEE = Integer.parseInt(Feature.getProperty("FortressExpRegenerationFeeLvl2", "10000"));
  1060. //
  1061. ALT_GAME_CASTLE_DAWN = Boolean.parseBoolean(Feature.getProperty("AltCastleForDawn", "True"));
  1062. ALT_GAME_CASTLE_DUSK = Boolean.parseBoolean(Feature.getProperty("AltCastleForDusk", "True"));
  1063. ALT_GAME_REQUIRE_CLAN_CASTLE = Boolean.parseBoolean(Feature.getProperty("AltRequireClanCastle", "False"));
  1064. ALT_FESTIVAL_MIN_PLAYER = Integer.parseInt(Feature.getProperty("AltFestivalMinPlayer", "5"));
  1065. ALT_MAXIMUM_PLAYER_CONTRIB = Integer.parseInt(Feature.getProperty("AltMaxPlayerContrib", "1000000"));
  1066. ALT_FESTIVAL_MANAGER_START = Long.parseLong(Feature.getProperty("AltFestivalManagerStart", "120000"));
  1067. ALT_FESTIVAL_LENGTH = Long.parseLong(Feature.getProperty("AltFestivalLength", "1080000"));
  1068. ALT_FESTIVAL_CYCLE_LENGTH = Long.parseLong(Feature.getProperty("AltFestivalCycleLength", "2280000"));
  1069. ALT_FESTIVAL_FIRST_SPAWN = Long.parseLong(Feature.getProperty("AltFestivalFirstSpawn", "120000"));
  1070. ALT_FESTIVAL_FIRST_SWARM = Long.parseLong(Feature.getProperty("AltFestivalFirstSwarm", "300000")); ALT_FESTIVAL_SECOND_SPAWN = Long.parseLong(Feature.getProperty("AltFestivalSecondSpawn", "540000"));
  1071. ALT_FESTIVAL_SECOND_SWARM = Long.parseLong(Feature.getProperty("AltFestivalSecondSwarm", "720000"));
  1072. ALT_FESTIVAL_CHEST_SPAWN = Long.parseLong(Feature.getProperty("AltFestivalChestSpawn", "900000"));
  1073. ALT_SIEGE_DAWN_GATES_PDEF_MULT = Double.parseDouble(Feature.getProperty("AltDawnGatesPdefMult", "1.1"));
  1074. ALT_SIEGE_DUSK_GATES_PDEF_MULT = Double.parseDouble(Feature.getProperty("AltDuskGatesPdefMult", "0.8"));
  1075. ALT_SIEGE_DAWN_GATES_MDEF_MULT = Double.parseDouble(Feature.getProperty("AltDawnGatesMdefMult", "1.1"));
  1076. ALT_SIEGE_DUSK_GATES_MDEF_MULT = Double.parseDouble(Feature.getProperty("AltDuskGatesMdefMult", "0.8"));
  1077. }
  1078. catch (Exception e)
  1079. {
  1080. e.printStackTrace();
  1081. throw new Error("Failed to Load "+FEATURE_CONFIG_FILE+" File.");
  1082. }
  1083. // Character Config File
  1084. try
  1085. {
  1086. Properties Character = new Properties();
  1087. is = new FileInputStream(new File(CHARACTER_CONFIG_FILE));
  1088. Character.load(is);
  1089. MASTERACCESS_LEVEL = Integer.parseInt(Character.getProperty("MasterAccessLevel", "127"));
  1090. MASTERACCESS_NAME_COLOR = Integer.decode(StringUtil.concat("0x", Character.getProperty("MasterNameColor", "00FF00")));
  1091. MASTERACCESS_TITLE_COLOR = Integer.decode(StringUtil.concat("0x", Character.getProperty("MasterTitleColor", "00FF00")));
  1092. ALT_GAME_DELEVEL = Boolean.parseBoolean(Character.getProperty("Delevel", "true"));
  1093. ALT_WEIGHT_LIMIT = Double.parseDouble(Character.getProperty("AltWeightLimit", "1"));
  1094. RUN_SPD_BOOST = Integer.parseInt(Character.getProperty("RunSpeedBoost", "0"));
  1095. DEATH_PENALTY_CHANCE = Integer.parseInt(Character.getProperty("DeathPenaltyChance", "20"));
  1096. RESPAWN_RESTORE_CP = Double.parseDouble(Character.getProperty("RespawnRestoreCP", "0")) / 100;
  1097. RESPAWN_RESTORE_HP = Double.parseDouble(Character.getProperty("RespawnRestoreHP", "70")) / 100;
  1098. RESPAWN_RESTORE_MP = Double.parseDouble(Character.getProperty("RespawnRestoreMP", "70")) / 100;
  1099. HP_REGEN_MULTIPLIER = Double.parseDouble(Character.getProperty("HpRegenMultiplier", "100")) /100;
  1100. MP_REGEN_MULTIPLIER = Double.parseDouble(Character.getProperty("MpRegenMultiplier", "100")) /100;
  1101. CP_REGEN_MULTIPLIER = Double.parseDouble(Character.getProperty("CpRegenMultiplier", "100")) /100;
  1102. ALT_GAME_TIREDNESS = Boolean.parseBoolean(Character.getProperty("AltGameTiredness", "false"));
  1103. ENABLE_MODIFY_SKILL_DURATION = Boolean.parseBoolean(Character.getProperty("EnableModifySkillDuration", "false"));
  1104. // Create Map only if enabled
  1105. if (ENABLE_MODIFY_SKILL_DURATION)
  1106. {
  1107. SKILL_DURATION_LIST = new FastMap<Integer, Integer>();
  1108. String[] propertySplit;
  1109. propertySplit = Character.getProperty("SkillDurationList", "").split(";");
  1110. for (String skill : propertySplit)
  1111. {
  1112. String[] skillSplit = skill.split(",");
  1113. if (skillSplit.length != 2)
  1114. {
  1115. _log.warning(StringUtil.concat("[SkillDurationList]: invalid config property -> SkillDurationList \"", skill, "\""));
  1116. } else
  1117. {
  1118. try
  1119. {
  1120. SKILL_DURATION_LIST.put(Integer.parseInt(skillSplit[0]), Integer.parseInt(skillSplit[1]));
  1121. } catch (NumberFormatException nfe)
  1122. {
  1123. if (!skill.equals(""))
  1124. {
  1125. _log.warning(StringUtil.concat("[SkillDurationList]: invalid config property -> SkillList \"", skillSplit[0], "\"", skillSplit[1]));
  1126. }
  1127. }
  1128. }
  1129. }
  1130. }
  1131. ENABLE_MODIFY_SKILL_REUSE = Boolean.parseBoolean(Character.getProperty("EnableModifySkillReuse", "false"));
  1132. // Create Map only if enabled
  1133. if (ENABLE_MODIFY_SKILL_REUSE)
  1134. {
  1135. SKILL_REUSE_LIST = new FastMap<Integer, Integer>();
  1136. String[] propertySplit;
  1137. propertySplit = Character.getProperty("SkillReuseList", "").split(";");
  1138. for (String skill : propertySplit)
  1139. {
  1140. String[] skillSplit = skill.split(",");
  1141. if (skillSplit.length != 2)
  1142. {
  1143. _log.warning(StringUtil.concat("[SkillReuseList]: invalid config property -> SkillReuseList \"", skill, "\""));
  1144. } else
  1145. {
  1146. try
  1147. {
  1148. SKILL_REUSE_LIST.put(Integer.valueOf(skillSplit[0]), Integer.valueOf(skillSplit[1]));
  1149. } catch (NumberFormatException nfe)
  1150. {
  1151. if (!skill.equals(""))
  1152. {
  1153. _log.warning(StringUtil.concat("[SkillReuseList]: invalid config property -> SkillList \"", skillSplit[0], "\"", skillSplit[1]));
  1154. }
  1155. }
  1156. }
  1157. }
  1158. }
  1159. AUTO_LEARN_SKILLS = Boolean.parseBoolean(Character.getProperty("AutoLearnSkills", "false"));
  1160. AUTO_LOOT_HERBS = Boolean.parseBoolean(Character.getProperty("AutoLootHerbs", "true"));
  1161. BUFFS_MAX_AMOUNT = Byte.parseByte(Character.getProperty("maxbuffamount","20"));
  1162. DANCES_MAX_AMOUNT = Byte.parseByte(Character.getProperty("maxdanceamount","12"));
  1163. AUTO_LEARN_DIVINE_INSPIRATION = Boolean.parseBoolean(Character.getProperty("AutoLearnDivineInspiration", "false"));
  1164. ALT_GAME_CANCEL_BOW = Character.getProperty("AltGameCancelByHit", "Cast").equalsIgnoreCase("bow") || Character.getProperty("AltGameCancelByHit", "Cast").equalsIgnoreCase("all");
  1165. ALT_GAME_CANCEL_CAST = Character.getProperty("AltGameCancelByHit", "Cast").equalsIgnoreCase("cast") || Character.getProperty("AltGameCancelByHit", "Cast").equalsIgnoreCase("all");
  1166. EFFECT_CANCELING = Boolean.parseBoolean(Character.getProperty("CancelLesserEffect", "True"));
  1167. ALT_GAME_MAGICFAILURES = Boolean.parseBoolean(Character.getProperty("MagicFailures", "false"));
  1168. PLAYER_FAKEDEATH_UP_PROTECTION = Integer.parseInt(Character.getProperty("PlayerFakeDeathUpProtection", "0"));
  1169. STORE_SKILL_COOLTIME = Boolean.parseBoolean(Character.getProperty("StoreSkillCooltime", "true"));
  1170. ALT_GAME_SHIELD_BLOCKS = Boolean.parseBoolean(Character.getProperty("AltShieldBlocks", "false"));
  1171. ALT_PERFECT_SHLD_BLOCK = Integer.parseInt(Character.getProperty("AltPerfectShieldBlockRate", "10"));
  1172. ALLOW_CLASS_MASTERS = Boolean.parseBoolean(Character.getProperty("AllowClassMasters", "False"));
  1173. LIFE_CRYSTAL_NEEDED = Boolean.parseBoolean(Character.getProperty("LifeCrystalNeeded", "true"));
  1174. SP_BOOK_NEEDED = Boolean.parseBoolean(Character.getProperty("SpBookNeeded", "true"));
  1175. ES_SP_BOOK_NEEDED = Boolean.parseBoolean(Character.getProperty("EnchantSkillSpBookNeeded","true"));
  1176. ALT_GAME_SKILL_LEARN = Boolean.parseBoolean(Character.getProperty("AltGameSkillLearn", "false"));
  1177. ALT_GAME_SUBCLASS_WITHOUT_QUESTS = Boolean.parseBoolean(Character.getProperty("AltSubClassWithoutQuests", "False"));
  1178. MAX_RUN_SPEED = Integer.parseInt(Character.getProperty("MaxRunSpeed", "250"));
  1179. MAX_PCRIT_RATE = Integer.parseInt(Character.getProperty("MaxPCritRate", "500"));
  1180. MAX_MCRIT_RATE = Integer.parseInt(Character.getProperty("MaxMCritRate", "200"));
  1181. MAX_PATK_SPEED = Integer.parseInt(Character.getProperty("MaxPAtkSpeed", "1500"));
  1182. MAX_MATK_SPEED = Integer.parseInt(Character.getProperty("MaxMAtkSpeed", "1999"));
  1183. MAX_EVASION = Integer.parseInt(Character.getProperty("MaxEvasion", "200"));
  1184. MAX_SUBCLASS = Byte.parseByte(Character.getProperty("MaxSubclass", "3"));
  1185. MAX_PVTSTORESELL_SLOTS_DWARF = Integer.parseInt(Character.getProperty("MaxPvtStoreSellSlotsDwarf", "4"));
  1186. MAX_PVTSTORESELL_SLOTS_OTHER = Integer.parseInt(Character.getProperty("MaxPvtStoreSellSlotsOther", "3"));
  1187. MAX_PVTSTOREBUY_SLOTS_DWARF = Integer.parseInt(Character.getProperty("MaxPvtStoreBuySlotsDwarf", "5"));
  1188. MAX_PVTSTOREBUY_SLOTS_OTHER = Integer.parseInt(Character.getProperty("MaxPvtStoreBuySlotsOther", "4"));
  1189. INVENTORY_MAXIMUM_NO_DWARF = Integer.parseInt(Character.getProperty("MaximumSlotsForNoDwarf", "80"));
  1190. INVENTORY_MAXIMUM_DWARF = Integer.parseInt(Character.getProperty("MaximumSlotsForDwarf", "100"));
  1191. INVENTORY_MAXIMUM_GM = Integer.parseInt(Character.getProperty("MaximumSlotsForGMPlayer", "250"));
  1192. MAX_ITEM_IN_PACKET = Math.max(INVENTORY_MAXIMUM_NO_DWARF, Math.max(INVENTORY_MAXIMUM_DWARF, INVENTORY_MAXIMUM_GM));
  1193. WAREHOUSE_SLOTS_DWARF = Integer.parseInt(Character.getProperty("MaximumWarehouseSlotsForDwarf", "120"));
  1194. WAREHOUSE_SLOTS_NO_DWARF = Integer.parseInt(Character.getProperty("MaximumWarehouseSlotsForNoDwarf", "100"));
  1195. WAREHOUSE_SLOTS_CLAN = Integer.parseInt(Character.getProperty("MaximumWarehouseSlotsForClan", "150"));
  1196. FREIGHT_SLOTS = Integer.parseInt(Character.getProperty("MaximumFreightSlots", "20"));
  1197. ENCHANT_CHANCE_WEAPON = Integer.parseInt(Character.getProperty("EnchantChanceWeapon", "68"));
  1198. ENCHANT_CHANCE_ARMOR = Integer.parseInt(Character.getProperty("EnchantChanceArmor", "52"));
  1199. ENCHANT_CHANCE_JEWELRY = Integer.parseInt(Character.getProperty("EnchantChanceJewelry", "54"));
  1200. BLESSED_ENCHANT_CHANCE_WEAPON = Integer.parseInt(Character.getProperty("BlessedEnchantChanceWeapon", "68"));
  1201. BLESSED_ENCHANT_CHANCE_ARMOR = Integer.parseInt(Character.getProperty("BlessedEnchantChanceArmor", "52"));
  1202. BLESSED_ENCHANT_CHANCE_JEWELRY = Integer.parseInt(Character.getProperty("BlessedEnchantChanceJewelry", "54"));
  1203. ENCHANT_MAX_WEAPON = Integer.parseInt(Character.getProperty("EnchantMaxWeapon", "255"));
  1204. ENCHANT_MAX_ARMOR = Integer.parseInt(Character.getProperty("EnchantMaxArmor", "255"));
  1205. ENCHANT_MAX_JEWELRY = Integer.parseInt(Character.getProperty("EnchantMaxJewelry", "255"));
  1206. ENCHANT_SAFE_MAX = Integer.parseInt(Character.getProperty("EnchantSafeMax", "3"));
  1207. ENCHANT_SAFE_MAX_FULL = Integer.parseInt(Character.getProperty("EnchantSafeMaxFull", "4"));
  1208. AUGMENTATION_NG_SKILL_CHANCE = Integer.parseInt(Character.getProperty("AugmentationNGSkillChance", "15"));
  1209. AUGMENTATION_NG_GLOW_CHANCE = Integer.parseInt(Character.getProperty("AugmentationNGGlowChance", "0"));
  1210. AUGMENTATION_MID_SKILL_CHANCE = Integer.parseInt(Character.getProperty("AugmentationMidSkillChance", "30"));
  1211. AUGMENTATION_MID_GLOW_CHANCE = Integer.parseInt(Character.getProperty("AugmentationMidGlowChance", "40"));
  1212. AUGMENTATION_HIGH_SKILL_CHANCE = Integer.parseInt(Character.getProperty("AugmentationHighSkillChance", "45"));
  1213. AUGMENTATION_HIGH_GLOW_CHANCE = Integer.parseInt(Character.getProperty("AugmentationHighGlowChance", "70"));
  1214. AUGMENTATION_TOP_SKILL_CHANCE = Integer.parseInt(Character.getProperty("AugmentationTopSkillChance", "60"));
  1215. AUGMENTATION_TOP_GLOW_CHANCE = Integer.parseInt(Character.getProperty("AugmentationTopGlowChance", "100"));
  1216. AUGMENTATION_BASESTAT_CHANCE = Integer.parseInt(Character.getProperty("AugmentationBaseStatChance", "1"));
  1217. ALT_GAME_KARMA_PLAYER_CAN_BE_KILLED_IN_PEACEZONE = Boolean.parseBoolean(Character.getProperty("AltKarmaPlayerCanBeKilledInPeaceZone", "false"));
  1218. ALT_GAME_KARMA_PLAYER_CAN_SHOP = Boolean.parseBoolean(Character.getProperty("AltKarmaPlayerCanShop", "true"));
  1219. ALT_GAME_KARMA_PLAYER_CAN_TELEPORT = Boolean.parseBoolean(Character.getProperty("AltKarmaPlayerCanTeleport", "true"));
  1220. ALT_GAME_KARMA_PLAYER_CAN_USE_GK = Boolean.parseBoolean(Character.getProperty("AltKarmaPlayerCanUseGK", "false"));
  1221. ALT_GAME_KARMA_PLAYER_CAN_TRADE = Boolean.parseBoolean(Character.getProperty("AltKarmaPlayerCanTrade", "true"));
  1222. ALT_GAME_KARMA_PLAYER_CAN_USE_WAREHOUSE = Boolean.parseBoolean(Character.getProperty("AltKarmaPlayerCanUseWareHouse", "true"));
  1223. IS_CRAFTING_ENABLED = Boolean.parseBoolean(Character.getProperty("CraftingEnabled", "true"));
  1224. DWARF_RECIPE_LIMIT = Integer.parseInt(Character.getProperty("DwarfRecipeLimit","50"));
  1225. COMMON_RECIPE_LIMIT = Integer.parseInt(Character.getProperty("CommonRecipeLimit","50"));
  1226. ALT_GAME_CREATION = Boolean.parseBoolean(Character.getProperty("AltGameCreation", "false"));
  1227. ALT_GAME_CREATION_SPEED = Double.parseDouble(Character.getProperty("AltGameCreationSpeed", "1"));
  1228. ALT_GAME_CREATION_XP_RATE = Double.parseDouble(Character.getProperty("AltGameCreationXpRate", "1"));
  1229. ALT_GAME_CREATION_RARE_XPSP_RATE = Double.parseDouble(Character.getProperty("AltGameCreationRareXpSpRate", "2"));
  1230. ALT_GAME_CREATION_SP_RATE = Double.parseDouble(Character.getProperty("AltGameCreationSpRate", "1"));
  1231. ALT_BLACKSMITH_USE_RECIPES = Boolean.parseBoolean(Character.getProperty("AltBlacksmithUseRecipes", "true"));
  1232. ALT_CLAN_JOIN_DAYS = Integer.parseInt(Character.getProperty("DaysBeforeJoinAClan", "5"));
  1233. ALT_CLAN_CREATE_DAYS = Integer.parseInt(Character.getProperty("DaysBeforeCreateAClan", "10"));
  1234. ALT_CLAN_DISSOLVE_DAYS = Integer.parseInt(Character.getProperty("DaysToPassToDissolveAClan", "7"));
  1235. ALT_ALLY_JOIN_DAYS_WHEN_LEAVED = Integer.parseInt(Character.getProperty("DaysBeforeJoinAllyWhenLeaved", "1"));
  1236. ALT_ALLY_JOIN_DAYS_WHEN_DISMISSED = Integer.parseInt(Character.getProperty("DaysBeforeJoinAllyWhenDismissed", "1"));
  1237. ALT_ACCEPT_CLAN_DAYS_WHEN_DISMISSED = Integer.parseInt(Character.getProperty("DaysBeforeAcceptNewClanWhenDismissed", "1"));
  1238. ALT_CREATE_ALLY_DAYS_WHEN_DISSOLVED = Integer.parseInt(Character.getProperty("DaysBeforeCreateNewAllyWhenDissolved", "10"));
  1239. ALT_MAX_NUM_OF_CLANS_IN_ALLY = Integer.parseInt(Character.getProperty("AltMaxNumOfClansInAlly", "3"));
  1240. ALT_CLAN_MEMBERS_FOR_WAR = Integer.parseInt(Character.getProperty("AltClanMembersForWar", "15"));
  1241. //ALT_GAME_NEW_CHAR_ALWAYS_IS_NEWBIE = Boolean.parseBoolean(Character.getProperty("AltNewCharAlwaysIsNewbie", "False"));
  1242. ALT_MEMBERS_CAN_WITHDRAW_FROM_CLANWH= Boolean.parseBoolean(Character.getProperty("AltMembersCanWithdrawFromClanWH", "false"));
  1243. REMOVE_CASTLE_CIRCLETS = Boolean.parseBoolean(Character.getProperty("RemoveCastleCirclets", "true"));
  1244. ALT_REPUTATION_SCORE_PER_KILL = Integer.parseInt(Character.getProperty("ReputationScorePerKill", "1"));
  1245. ALT_PARTY_RANGE = Integer.parseInt(Character.getProperty("AltPartyRange", "1600"));
  1246. ALT_PARTY_RANGE2 = Integer.parseInt(Character.getProperty("AltPartyRange2", "1400"));
  1247. STARTING_ADENA = Integer.parseInt(Character.getProperty("StartingAdena", "100"));
  1248. AUTO_LOOT = Boolean.parseBoolean(Character.getProperty("AutoLoot", "true"));
  1249. UNSTUCK_INTERVAL = Integer.parseInt(Character.getProperty("UnstuckInterval", "300"));
  1250. PLAYER_SPAWN_PROTECTION = Integer.parseInt(Character.getProperty("PlayerSpawnProtection", "0"));
  1251. RESPAWN_RANDOM_ENABLED = Boolean.parseBoolean(Character.getProperty("RespawnRandomInTown", "False"));
  1252. RESPAWN_RANDOM_MAX_OFFSET = Integer.parseInt(Character.getProperty("RespawnRandomMaxOffset", "50"));
  1253. RESTORE_PLAYER_INSTANCE = Boolean.parseBoolean(Character.getProperty("RestorePlayerInstance", "False"));
  1254. ALLOW_SUMMON_TO_INSTANCE = Boolean.parseBoolean(Character.getProperty("AllowSummonToInstance", "True"));
  1255. PETITIONING_ALLOWED = Boolean.parseBoolean(Character.getProperty("PetitioningAllowed", "True"));
  1256. MAX_PETITIONS_PER_PLAYER = Integer.parseInt(Character.getProperty("MaxPetitionsPerPlayer", "5"));
  1257. MAX_PETITIONS_PENDING = Integer.parseInt(Character.getProperty("MaxPetitionsPending", "25"));
  1258. ALT_GAME_FREIGHTS = Boolean.parseBoolean(Character.getProperty("AltGameFreights", "false"));
  1259. ALT_GAME_FREIGHT_PRICE = Integer.parseInt(Character.getProperty("AltGameFreightPrice", "1000"));
  1260. ALT_GAME_FREE_TELEPORT = Boolean.parseBoolean(Character.getProperty("AltFreeTeleporting", "False"));
  1261. ALT_RECOMMEND = Boolean.parseBoolean(Character.getProperty("AltRecommend", "False"));
  1262. DELETE_DAYS = Integer.parseInt(Character.getProperty("DeleteCharAfterDays", "7"));
  1263. ALT_GAME_EXPONENT_XP = Float.parseFloat(Character.getProperty("AltGameExponentXp", "0."));
  1264. ALT_GAME_EXPONENT_SP = Float.parseFloat(Character.getProperty("AltGameExponentSp", "0."));
  1265. PARTY_XP_CUTOFF_METHOD = Character.getProperty("PartyXpCutoffMethod", "percentage");
  1266. PARTY_XP_CUTOFF_PERCENT = Double.parseDouble(Character.getProperty("PartyXpCutoffPercent", "3."));
  1267. PARTY_XP_CUTOFF_LEVEL = Integer.parseInt(Character.getProperty("PartyXpCutoffLevel", "30"));
  1268. }
  1269. catch (Exception e)
  1270. {
  1271. e.printStackTrace();
  1272. throw new Error("Failed to Load "+CHARACTER_CONFIG_FILE+" File.");
  1273. }
  1274. /*
  1275. * Load L2J Server Version Properties file (if exists)
  1276. */
  1277. try
  1278. {
  1279. Properties serverVersion = new Properties();
  1280. is = new FileInputStream(new File(SERVER_VERSION_FILE));
  1281. serverVersion.load(is);
  1282. SERVER_VERSION = serverVersion.getProperty("version", "Unsupported Custom Version.");
  1283. SERVER_BUILD_DATE = serverVersion.getProperty("builddate", "Undefined Date.");
  1284. }
  1285. catch (Exception e)
  1286. {
  1287. //Ignore Properties file if it doesnt exist
  1288. SERVER_VERSION = "Unsupported Custom Version.";
  1289. SERVER_BUILD_DATE = "Undefined Date.";
  1290. }
  1291. /*
  1292. * Load L2J Datapack Version Properties file (if exists)
  1293. */
  1294. try
  1295. {
  1296. Properties serverVersion = new Properties();
  1297. is = new FileInputStream(new File(DATAPACK_VERSION_FILE));
  1298. serverVersion.load(is);
  1299. DATAPACK_VERSION = serverVersion.getProperty("version", "Unsupported Custom Version.");
  1300. }
  1301. catch (Exception e)
  1302. {
  1303. //Ignore Properties file if it doesnt exist
  1304. DATAPACK_VERSION = "Unsupported Custom Version.";
  1305. }
  1306. // telnet
  1307. try
  1308. {
  1309. Properties telnetSettings = new Properties();
  1310. is = new FileInputStream(new File(TELNET_FILE));
  1311. telnetSettings.load(is);
  1312. IS_TELNET_ENABLED = Boolean.parseBoolean(telnetSettings.getProperty("EnableTelnet", "false"));
  1313. }
  1314. catch (Exception e)
  1315. {
  1316. e.printStackTrace();
  1317. throw new Error("Failed to Load "+TELNET_FILE+" File.");
  1318. }
  1319. // id factory
  1320. try
  1321. {
  1322. Properties idSettings = new Properties();
  1323. is = new FileInputStream(new File(ID_CONFIG_FILE));
  1324. idSettings.load(is);
  1325. MAP_TYPE = ObjectMapType.valueOf(idSettings.getProperty("L2Map", "WorldObjectMap"));
  1326. SET_TYPE = ObjectSetType.valueOf(idSettings.getProperty("L2Set", "WorldObjectSet"));
  1327. IDFACTORY_TYPE = IdFactoryType.valueOf(idSettings.getProperty("IDFactory", "Compaction"));
  1328. BAD_ID_CHECKING = Boolean.parseBoolean(idSettings.getProperty("BadIdChecking", "True"));
  1329. }
  1330. catch (Exception e)
  1331. {
  1332. e.printStackTrace();
  1333. throw new Error("Failed to Load "+ID_CONFIG_FILE+" File.");
  1334. }
  1335. // General Config File
  1336. try
  1337. {
  1338. Properties General = new Properties();
  1339. is = new FileInputStream(new File(GENERAL_CONFIG_FILE));
  1340. General.load(is);
  1341. EVERYBODY_HAS_ADMIN_RIGHTS = Boolean.parseBoolean(General.getProperty("EverybodyHasAdminRights", "false"));
  1342. SERVER_LIST_BRACKET = Boolean.parseBoolean(General.getProperty("ServerListBrackets", "false"));
  1343. SERVER_LIST_CLOCK = Boolean.parseBoolean(General.getProperty("ServerListClock", "false"));
  1344. SERVER_GMONLY = Boolean.parseBoolean(General.getProperty("ServerGMOnly", "false"));
  1345. GM_HERO_AURA = Boolean.parseBoolean(General.getProperty("GMHeroAura", "False"));
  1346. GM_STARTUP_INVULNERABLE = Boolean.parseBoolean(General.getProperty("GMStartupInvulnerable", "False"));
  1347. GM_STARTUP_INVISIBLE = Boolean.parseBoolean(General.getProperty("GMStartupInvisible", "False"));
  1348. GM_STARTUP_SILENCE = Boolean.parseBoolean(General.getProperty("GMStartupSilence", "False"));
  1349. GM_STARTUP_AUTO_LIST = Boolean.parseBoolean(General.getProperty("GMStartupAutoList", "False"));
  1350. GM_STARTUP_DIET_MODE = Boolean.parseBoolean(General.getProperty("GMStartupDietMode", "False"));
  1351. GM_ADMIN_MENU_STYLE = General.getProperty("GMAdminMenuStyle", "modern");
  1352. GM_ITEM_RESTRICTION = Boolean.parseBoolean(General.getProperty("GmItemRestriction", "False"));
  1353. BYPASS_VALIDATION = Boolean.parseBoolean(General.getProperty("BypassValidation", "True"));
  1354. GAMEGUARD_ENFORCE = Boolean.parseBoolean(General.getProperty("GameGuardEnforce", "False"));
  1355. GAMEGUARD_PROHIBITACTION = Boolean.parseBoolean(General.getProperty("GameGuardProhibitAction", "False"));
  1356. LOG_CHAT = Boolean.parseBoolean(General.getProperty("LogChat", "false"));
  1357. LOG_ITEMS = Boolean.parseBoolean(General.getProperty("LogItems", "false"));
  1358. GMAUDIT = Boolean.parseBoolean(General.getProperty("GMAudit", "False"));
  1359. LOG_GAME_DAMAGE = Boolean.parseBoolean(General.getProperty("LogGameDamage", "False"));
  1360. DEBUG = Boolean.parseBoolean(General.getProperty("Debug", "false"));
  1361. ASSERT = Boolean.parseBoolean(General.getProperty("Assert", "false"));
  1362. DEVELOPER = Boolean.parseBoolean(General.getProperty("Developer", "false"));
  1363. ACCEPT_GEOEDITOR_CONN = Boolean.parseBoolean(General.getProperty("AcceptGeoeditorConn", "false"));
  1364. TEST_SERVER = Boolean.parseBoolean(General.getProperty("TestServer", "false"));
  1365. SERVER_LIST_TESTSERVER = Boolean.parseBoolean(General.getProperty("ListTestServers", "false"));
  1366. ALT_DEV_NO_QUESTS = Boolean.parseBoolean(General.getProperty("AltDevNoQuests", "False"));
  1367. ALT_DEV_NO_SPAWNS = Boolean.parseBoolean(General.getProperty("AltDevNoSpawns", "False"));
  1368. THREAD_P_EFFECTS = Integer.parseInt(General.getProperty("ThreadPoolSizeEffects", "6"));
  1369. THREAD_P_GENERAL = Integer.parseInt(General.getProperty("ThreadPoolSizeGeneral", "15"));
  1370. IO_PACKET_THREAD_CORE_SIZE = Integer.parseInt(General.getProperty("UrgentPacketThreadCoreSize", "2"));
  1371. GENERAL_PACKET_THREAD_CORE_SIZE = Integer.parseInt(General.getProperty("GeneralPacketThreadCoreSize", "4"));
  1372. GENERAL_THREAD_CORE_SIZE = Integer.parseInt(General.getProperty("GeneralThreadCoreSize", "4"));
  1373. AI_MAX_THREAD = Integer.parseInt(General.getProperty("AiMaxThread", "10"));
  1374. PACKET_LIFETIME = Integer.parseInt(General.getProperty("PacketLifeTime", "0"));
  1375. DEADLOCK_DETECTOR = Boolean.parseBoolean(General.getProperty("DeadLockDetector", "False"));
  1376. DEADLOCK_CHECK_INTERVAL = Integer.parseInt(General.getProperty("DeadLockCheckInterval", "20"));
  1377. RESTART_ON_DEADLOCK = Boolean.parseBoolean(General.getProperty("RestartOnDeadlock", "False"));
  1378. FLOODPROTECTOR_INITIALSIZE = Integer.parseInt(General.getProperty("FloodProtectorInitialSize", "50"));
  1379. ALLOW_DISCARDITEM = Boolean.parseBoolean(General.getProperty("AllowDiscardItem", "True"));
  1380. AUTODESTROY_ITEM_AFTER = Integer.parseInt(General.getProperty("AutoDestroyDroppedItemAfter", "0"));
  1381. HERB_AUTO_DESTROY_TIME = Integer.parseInt(General.getProperty("AutoDestroyHerbTime","15"))*1000;
  1382. PROTECTED_ITEMS = General.getProperty("ListOfProtectedItems");
  1383. LIST_PROTECTED_ITEMS = new FastList<Integer>();
  1384. for (String id : PROTECTED_ITEMS.split(","))
  1385. {
  1386. LIST_PROTECTED_ITEMS.add(Integer.parseInt(id));
  1387. }
  1388. CHAR_STORE_INTERVAL = Integer.parseInt(General.getProperty("CharacterDataStoreInterval", "15"));
  1389. LAZY_ITEMS_UPDATE = Boolean.parseBoolean(General.getProperty("LazyItemsUpdate", "false"));
  1390. UPDATE_ITEMS_ON_CHAR_STORE = Boolean.parseBoolean(General.getProperty("UpdateItemsOnCharStore", "false"));
  1391. DESTROY_DROPPED_PLAYER_ITEM = Boolean.parseBoolean(General.getProperty("DestroyPlayerDroppedItem", "false"));
  1392. DESTROY_EQUIPABLE_PLAYER_ITEM = Boolean.parseBoolean(General.getProperty("DestroyEquipableItem", "false"));
  1393. SAVE_DROPPED_ITEM = Boolean.parseBoolean(General.getProperty("SaveDroppedItem", "false"));
  1394. EMPTY_DROPPED_ITEM_TABLE_AFTER_LOAD = Boolean.parseBoolean(General.getProperty("EmptyDroppedItemTableAfterLoad", "false"));
  1395. SAVE_DROPPED_ITEM_INTERVAL = Integer.parseInt(General.getProperty("SaveDroppedItemInterval", "0"))*60000;
  1396. CLEAR_DROPPED_ITEM_TABLE = Boolean.parseBoolean(General.getProperty("ClearDroppedItemTable", "false"));
  1397. AUTODELETE_INVALID_QUEST_DATA = Boolean.parseBoolean(General.getProperty("AutoDeleteInvalidQuestData", "False"));
  1398. PRECISE_DROP_CALCULATION = Boolean.parseBoolean(General.getProperty("PreciseDropCalculation", "True"));
  1399. MULTIPLE_ITEM_DROP = Boolean.parseBoolean(General.getProperty("MultipleItemDrop", "True"));
  1400. FORCE_INVENTORY_UPDATE = Boolean.parseBoolean(General.getProperty("ForceInventoryUpdate", "False"));
  1401. LAZY_CACHE = Boolean.parseBoolean(General.getProperty("LazyCache", "False"));
  1402. MIN_NPC_ANIMATION = Integer.parseInt(General.getProperty("MinNPCAnimation", "10"));
  1403. MAX_NPC_ANIMATION = Integer.parseInt(General.getProperty("MaxNPCAnimation", "20"));
  1404. MIN_MONSTER_ANIMATION = Integer.parseInt(General.getProperty("MinMonsterAnimation", "5"));
  1405. MAX_MONSTER_ANIMATION = Integer.parseInt(General.getProperty("MaxMonsterAnimation", "20"));
  1406. COORD_SYNCHRONIZE = Integer.parseInt(General.getProperty("CoordSynchronize", "-1"));
  1407. GRIDS_ALWAYS_ON = Boolean.parseBoolean(General.getProperty("GridsAlwaysOn", "False"));
  1408. GRID_NEIGHBOR_TURNON_TIME = Integer.parseInt(General.getProperty("GridNeighborTurnOnTime", "1"));
  1409. GRID_NEIGHBOR_TURNOFF_TIME = Integer.parseInt(General.getProperty("GridNeighborTurnOffTime", "90"));
  1410. GEODATA = Integer.parseInt(General.getProperty("GeoData", "0"));
  1411. GEODATA_CELLFINDING = Boolean.parseBoolean(General.getProperty("CellPathFinding", "False"));
  1412. FORCE_GEODATA = Boolean.parseBoolean(General.getProperty("ForceGeoData", "True"));
  1413. MOVE_BASED_KNOWNLIST = Boolean.parseBoolean(General.getProperty("MoveBasedKnownlist", "False"));
  1414. KNOWNLIST_UPDATE_INTERVAL = Long.parseLong(General.getProperty("KnownListUpdateInterval", "1250"));
  1415. ZONE_TOWN = Integer.parseInt(General.getProperty("ZoneTown", "0"));
  1416. ACTIVATE_POSITION_RECORDER = Boolean.parseBoolean(General.getProperty("ActivatePositionRecorder", "False"));
  1417. DEFAULT_GLOBAL_CHAT = General.getProperty("GlobalChat", "ON");
  1418. DEFAULT_TRADE_CHAT = General.getProperty("TradeChat", "ON");
  1419. ALLOW_WAREHOUSE = Boolean.parseBoolean(General.getProperty("AllowWarehouse", "True"));
  1420. WAREHOUSE_CACHE = Boolean.parseBoolean(General.getProperty("WarehouseCache", "False"));
  1421. WAREHOUSE_CACHE_TIME = Integer.parseInt(General.getProperty("WarehouseCacheTime", "15"));
  1422. ALLOW_FREIGHT = Boolean.parseBoolean(General.getProperty("AllowFreight", "True"));
  1423. ALLOW_WEAR = Boolean.parseBoolean(General.getProperty("AllowWear", "False"));
  1424. WEAR_DELAY = Integer.parseInt(General.getProperty("WearDelay", "5"));
  1425. WEAR_PRICE = Integer.parseInt(General.getProperty("WearPrice", "10"));
  1426. ALLOW_LOTTERY = Boolean.parseBoolean(General.getProperty("AllowLottery", "False"));
  1427. ALLOW_RACE = Boolean.parseBoolean(General.getProperty("AllowRace", "False"));
  1428. ALLOW_WATER = Boolean.parseBoolean(General.getProperty("AllowWater", "False"));
  1429. ALLOW_RENTPET = Boolean.parseBoolean(General.getProperty("AllowRentPet", "False"));
  1430. FLOODPROTECTOR_INITIALSIZE = Integer.parseInt(General.getProperty("FloodProtectorInitialSize", "50"));
  1431. ALLOW_DISCARDITEM = Boolean.parseBoolean(General.getProperty("AllowDiscardItem", "True"));
  1432. ALLOWFISHING = Boolean.parseBoolean(General.getProperty("AllowFishing", "False"));
  1433. ALLOW_MANOR = Boolean.parseBoolean(General.getProperty("AllowManor", "False"));
  1434. ALLOW_BOAT = Boolean.parseBoolean(General.getProperty("AllowBoat", "False"));
  1435. ALLOW_CURSED_WEAPONS = Boolean.parseBoolean(General.getProperty("AllowCursedWeapons", "False"));
  1436. ALLOW_MANOR = Boolean.parseBoolean(General.getProperty("AllowManor", "False"));
  1437. ALLOW_NPC_WALKERS = Boolean.parseBoolean(General.getProperty("AllowNpcWalkers", "true"));
  1438. ALLOW_PET_WALKERS = Boolean.parseBoolean(General.getProperty("AllowPetWalkers", "False"));
  1439. SERVER_NEWS = Boolean.parseBoolean(General.getProperty("ShowServerNews", "False"));
  1440. COMMUNITY_TYPE = Integer.parseInt(General.getProperty("CommunityType", "1"));
  1441. BBS_SHOW_PLAYERLIST = Boolean.parseBoolean(General.getProperty("BBSShowPlayerList", "false"));
  1442. BBS_DEFAULT = General.getProperty("BBSDefault", "_bbshome");
  1443. SHOW_LEVEL_COMMUNITYBOARD = Boolean.parseBoolean(General.getProperty("ShowLevelOnCommunityBoard", "False"));
  1444. SHOW_STATUS_COMMUNITYBOARD = Boolean.parseBoolean(General.getProperty("ShowStatusOnCommunityBoard", "True"));
  1445. NAME_PAGE_SIZE_COMMUNITYBOARD = Integer.parseInt(General.getProperty("NamePageSizeOnCommunityBoard", "50"));
  1446. NAME_PER_ROW_COMMUNITYBOARD = Integer.parseInt(General.getProperty("NamePerRowOnCommunityBoard", "5"));
  1447. ALT_OLY_START_TIME = Integer.parseInt(General.getProperty("AltOlyStartTime", "18"));
  1448. ALT_OLY_MIN = Integer.parseInt(General.getProperty("AltOlyMin","00"));
  1449. ALT_OLY_CPERIOD = Long.parseLong(General.getProperty("AltOlyCPeriod","21600000"));
  1450. ALT_OLY_BATTLE = Long.parseLong(General.getProperty("AltOlyBattle","360000"));
  1451. ALT_OLY_WPERIOD = Long.parseLong(General.getProperty("AltOlyWPeriod","604800000"));
  1452. ALT_OLY_VPERIOD = Long.parseLong(General.getProperty("AltOlyVPeriod","86400000"));
  1453. ALT_OLY_CLASSED = Integer.parseInt(General.getProperty("AltOlyClassedParticipants","5"));
  1454. ALT_OLY_NONCLASSED = Integer.parseInt(General.getProperty("AltOlyNonClassedParticipants","9"));
  1455. ALT_OLY_BATTLE_REWARD_ITEM = Integer.parseInt(General.getProperty("AltOlyBattleRewItem","6651"));
  1456. ALT_OLY_CLASSED_RITEM_C = Integer.parseInt(General.getProperty("AltOlyClassedRewItemCount","50"));
  1457. ALT_OLY_NONCLASSED_RITEM_C = Integer.parseInt(General.getProperty("AltOlyNonClassedRewItemCount","30"));
  1458. ALT_OLY_COMP_RITEM = Integer.parseInt(General.getProperty("AltOlyCompRewItem","6651"));
  1459. ALT_OLY_GP_PER_POINT = Integer.parseInt(General.getProperty("AltOlyGPPerPoint","1000"));
  1460. ALT_OLY_MIN_POINT_FOR_EXCH = Integer.parseInt(General.getProperty("AltOlyMinPointForExchange","50"));
  1461. ALT_OLY_HERO_POINTS = Integer.parseInt(General.getProperty("AltOlyHeroPoints","300"));
  1462. ALT_OLY_LOG_FIGHTS = Boolean.parseBoolean(General.getProperty("AlyOlyLogFights","false"));
  1463. ALT_OLY_SHOW_MONTHLY_WINNERS = Boolean.parseBoolean(General.getProperty("AltOlyShowMonthlyWinners","true"));
  1464. ALT_OLY_ANNOUNCE_GAMES = Boolean.parseBoolean(General.getProperty("AltOlyAnnounceGames","true"));
  1465. LIST_OLY_RESTRICTED_ITEMS = new FastList<Integer>();
  1466. for (String id : General.getProperty("AltOlyRestrictedItems","0").split(","))
  1467. {
  1468. LIST_OLY_RESTRICTED_ITEMS.add(Integer.parseInt(id));
  1469. }
  1470. ALT_OLY_ENCHANT_LIMIT = Integer.parseInt(General.getProperty("AltOlyEnchantLimit","-1"));
  1471. ALT_MANOR_REFRESH_TIME = Integer.parseInt(General.getProperty("AltManorRefreshTime","20"));
  1472. ALT_MANOR_REFRESH_MIN = Integer.parseInt(General.getProperty("AltManorRefreshMin","00"));
  1473. ALT_MANOR_APPROVE_TIME = Integer.parseInt(General.getProperty("AltManorApproveTime","6"));
  1474. ALT_MANOR_APPROVE_MIN = Integer.parseInt(General.getProperty("AltManorApproveMin","00"));
  1475. ALT_MANOR_MAINTENANCE_PERIOD = Integer.parseInt(General.getProperty("AltManorMaintenancePeriod","360000"));
  1476. ALT_MANOR_SAVE_ALL_ACTIONS = Boolean.parseBoolean(General.getProperty("AltManorSaveAllActions","false"));
  1477. ALT_MANOR_SAVE_PERIOD_RATE = Integer.parseInt(General.getProperty("AltManorSavePeriodRate","2"));
  1478. ALT_LOTTERY_PRIZE = Integer.parseInt(General.getProperty("AltLotteryPrize","50000"));
  1479. ALT_LOTTERY_TICKET_PRICE = Integer.parseInt(General.getProperty("AltLotteryTicketPrice","2000"));
  1480. ALT_LOTTERY_5_NUMBER_RATE = Float.parseFloat(General.getProperty("AltLottery5NumberRate","0.6"));
  1481. ALT_LOTTERY_4_NUMBER_RATE = Float.parseFloat(General.getProperty("AltLottery4NumberRate","0.2"));
  1482. ALT_LOTTERY_3_NUMBER_RATE = Float.parseFloat(General.getProperty("AltLottery3NumberRate","0.2"));
  1483. ALT_LOTTERY_2_AND_1_NUMBER_PRIZE = Integer.parseInt(General.getProperty("AltLottery2and1NumberPrize","200"));
  1484. FS_TIME_ATTACK = Integer.parseInt(General.getProperty("TimeOfAttack", "50"));
  1485. FS_TIME_COOLDOWN = Integer.parseInt(General.getProperty("TimeOfCoolDown", "5"));
  1486. FS_TIME_ENTRY = Integer.parseInt(General.getProperty("TimeOfEntry", "3"));
  1487. FS_TIME_WARMUP = Integer.parseInt(General.getProperty("TimeOfWarmUp", "2"));
  1488. FS_PARTY_MEMBER_COUNT = Integer.parseInt(General.getProperty("NumberOfNecessaryPartyMembers", "4"));
  1489. if (FS_TIME_ATTACK <= 0)
  1490. FS_TIME_ATTACK = 50;
  1491. if (FS_TIME_COOLDOWN <= 0)
  1492. FS_TIME_COOLDOWN = 5;
  1493. if (FS_TIME_ENTRY <= 0)
  1494. FS_TIME_ENTRY = 3;
  1495. if (FS_TIME_ENTRY <= 0)
  1496. FS_TIME_ENTRY = 3;
  1497. if (FS_TIME_ENTRY <= 0)
  1498. FS_TIME_ENTRY = 3;
  1499. RIFT_MIN_PARTY_SIZE = Integer.parseInt(General.getProperty("RiftMinPartySize", "5"));
  1500. RIFT_MAX_JUMPS = Integer.parseInt(General.getProperty("MaxRiftJumps", "4"));
  1501. RIFT_SPAWN_DELAY = Integer.parseInt(General.getProperty("RiftSpawnDelay", "10000"));
  1502. RIFT_AUTO_JUMPS_TIME_MIN = Integer.parseInt(General.getProperty("AutoJumpsDelayMin", "480"));
  1503. RIFT_AUTO_JUMPS_TIME_MAX = Integer.parseInt(General.getProperty("AutoJumpsDelayMax", "600"));
  1504. RIFT_BOSS_ROOM_TIME_MUTIPLY = Float.parseFloat(General.getProperty("BossRoomTimeMultiply", "1.5"));
  1505. RIFT_ENTER_COST_RECRUIT = Integer.parseInt(General.getProperty("RecruitCost", "18"));
  1506. RIFT_ENTER_COST_SOLDIER = Integer.parseInt(General.getProperty("SoldierCost", "21"));
  1507. RIFT_ENTER_COST_OFFICER = Integer.parseInt(General.getProperty("OfficerCost", "24"));
  1508. RIFT_ENTER_COST_CAPTAIN = Integer.parseInt(General.getProperty("CaptainCost", "27"));
  1509. RIFT_ENTER_COST_COMMANDER = Integer.parseInt(General.getProperty("CommanderCost", "30"));
  1510. RIFT_ENTER_COST_HERO = Integer.parseInt(General.getProperty("HeroCost", "33"));
  1511. DEFAULT_PUNISH = Integer.parseInt(General.getProperty("DefaultPunish", "2"));
  1512. DEFAULT_PUNISH_PARAM = Integer.parseInt(General.getProperty("DefaultPunishParam", "0"));
  1513. ONLY_GM_ITEMS_FREE = Boolean.parseBoolean(General.getProperty("OnlyGMItemsFree", "True"));
  1514. JAIL_IS_PVP = Boolean.parseBoolean(General.getProperty("JailIsPvp", "True"));
  1515. JAIL_DISABLE_CHAT = Boolean.parseBoolean(General.getProperty("JailDisableChat", "True"));
  1516. CUSTOM_SPAWNLIST_TABLE = Boolean.valueOf(General.getProperty("CustomSpawnlistTable", "false"));
  1517. SAVE_GMSPAWN_ON_CUSTOM = Boolean.valueOf(General.getProperty("SaveGmSpawnOnCustom", "false"));
  1518. DELETE_GMSPAWN_ON_CUSTOM = Boolean.valueOf(General.getProperty("DeleteGmSpawnOnCustom", "false"));
  1519. CUSTOM_NPC_TABLE = Boolean.valueOf(General.getProperty("CustomNpcTable", "false"));
  1520. CUSTOM_ITEM_TABLES = Boolean.valueOf(General.getProperty("CustomItemTables", "false"));
  1521. CUSTOM_ARMORSETS_TABLE = Boolean.valueOf(General.getProperty("CustomArmorSetsTable", "false"));
  1522. CUSTOM_TELEPORT_TABLE = Boolean.valueOf(General.getProperty("CustomTeleportTable", "false"));
  1523. CUSTOM_DROPLIST_TABLE = Boolean.valueOf(General.getProperty("CustomDroplistTable", "false"));
  1524. CUSTOM_MERCHANT_TABLES = Boolean.valueOf(General.getProperty("CustomMerchantTables", "false"));
  1525. }
  1526. catch (Exception e)
  1527. {
  1528. e.printStackTrace();
  1529. throw new Error("Failed to Load "+GENERAL_CONFIG_FILE+" File.");
  1530. }
  1531. // NPC settings
  1532. try
  1533. {
  1534. Properties NPC = new Properties();
  1535. is = new FileInputStream(new File(NPC_CONFIG_FILE));
  1536. NPC.load(is);
  1537. ANNOUNCE_MAMMON_SPAWN = Boolean.parseBoolean(NPC.getProperty("AnnounceMammonSpawn", "True"));
  1538. ALT_MOB_AGRO_IN_PEACEZONE = Boolean.parseBoolean(NPC.getProperty("AltMobAgroInPeaceZone", "True"));
  1539. ALT_ATTACKABLE_NPCS = Boolean.parseBoolean(NPC.getProperty("AltAttackableNpcs", "True"));
  1540. ALT_GAME_VIEWNPC = Boolean.parseBoolean(NPC.getProperty("AltGameViewNpc", "False"));
  1541. MAX_DRIFT_RANGE = Integer.parseInt(NPC.getProperty("MaxDriftRange", "300"));
  1542. DEEPBLUE_DROP_RULES = Boolean.parseBoolean(NPC.getProperty("UseDeepBlueDropRules", "True"));
  1543. SHOW_NPC_LVL = Boolean.parseBoolean(NPC.getProperty("ShowNpcLevel", "False"));
  1544. GUARD_ATTACK_AGGRO_MOB = Boolean.parseBoolean(NPC.getProperty("GuardAttackAggroMob", "False"));
  1545. ALLOW_WYVERN_UPGRADER = Boolean.parseBoolean(NPC.getProperty("AllowWyvernUpgrader", "False"));
  1546. PET_RENT_NPC = NPC.getProperty("ListPetRentNpc", "30827");
  1547. LIST_PET_RENT_NPC = new FastList<Integer>();
  1548. for (String id : PET_RENT_NPC.split(","))
  1549. {
  1550. LIST_PET_RENT_NPC.add(Integer.parseInt(id));
  1551. }
  1552. RAID_HP_REGEN_MULTIPLIER = Double.parseDouble(NPC.getProperty("RaidHpRegenMultiplier", "100")) /100;
  1553. RAID_MP_REGEN_MULTIPLIER = Double.parseDouble(NPC.getProperty("RaidMpRegenMultiplier", "100")) /100;
  1554. RAID_PDEFENCE_MULTIPLIER = Double.parseDouble(NPC.getProperty("RaidPDefenceMultiplier", "100")) /100;
  1555. RAID_MDEFENCE_MULTIPLIER = Double.parseDouble(NPC.getProperty("RaidMDefenceMultiplier", "100")) /100;
  1556. RAID_MIN_RESPAWN_MULTIPLIER = Float.parseFloat(NPC.getProperty("RaidMinRespawnMultiplier", "1.0"));
  1557. RAID_MAX_RESPAWN_MULTIPLIER = Float.parseFloat(NPC.getProperty("RaidMaxRespawnMultiplier", "1.0"));
  1558. RAID_MINION_RESPAWN_TIMER = Integer.parseInt(NPC.getProperty("RaidMinionRespawnTime", "300000"));
  1559. INVENTORY_MAXIMUM_PET = Integer.parseInt(NPC.getProperty("MaximumSlotsForPet", "12"));
  1560. }
  1561. catch (Exception e)
  1562. {
  1563. e.printStackTrace();
  1564. throw new Error("Failed to Load "+NPC_CONFIG_FILE+" File.");
  1565. }
  1566. // rates
  1567. try
  1568. {
  1569. Properties ratesSettings = new Properties();
  1570. is = new FileInputStream(new File(RATES_CONFIG_FILE));
  1571. ratesSettings.load(is);
  1572. RATE_XP = Float.parseFloat(ratesSettings.getProperty("RateXp", "1."));
  1573. RATE_SP = Float.parseFloat(ratesSettings.getProperty("RateSp", "1."));
  1574. RATE_PARTY_XP = Float.parseFloat(ratesSettings.getProperty("RatePartyXp", "1."));
  1575. RATE_PARTY_SP = Float.parseFloat(ratesSettings.getProperty("RatePartySp", "1."));
  1576. RATE_QUESTS_REWARD = Float.parseFloat(ratesSettings.getProperty("RateQuestsReward", "1."));
  1577. RATE_DROP_ADENA = Float.parseFloat(ratesSettings.getProperty("RateDropAdena", "1."));
  1578. RATE_CONSUMABLE_COST = Float.parseFloat(ratesSettings.getProperty("RateConsumableCost", "1."));
  1579. RATE_EXTR_FISH = Float.parseFloat(ratesSettings.getProperty("RateExtractFish", "1."));
  1580. RATE_DROP_ITEMS = Float.parseFloat(ratesSettings.getProperty("RateDropItems", "1."));
  1581. RATE_DROP_ITEMS_BY_RAID = Float.parseFloat(ratesSettings.getProperty("RateRaidDropItems", "1."));
  1582. RATE_DROP_SPOIL = Float.parseFloat(ratesSettings.getProperty("RateDropSpoil", "1."));
  1583. RATE_DROP_MANOR = Integer.parseInt(ratesSettings.getProperty("RateDropManor", "1"));
  1584. RATE_DROP_QUEST = Float.parseFloat(ratesSettings.getProperty("RateDropQuest", "1."));
  1585. RATE_KARMA_EXP_LOST = Float.parseFloat(ratesSettings.getProperty("RateKarmaExpLost", "1."));
  1586. RATE_SIEGE_GUARDS_PRICE = Float.parseFloat(ratesSettings.getProperty("RateSiegeGuardsPrice", "1."));
  1587. RATE_DROP_COMMON_HERBS = Float.parseFloat(ratesSettings.getProperty("RateCommonHerbs", "15."));
  1588. RATE_DROP_MP_HP_HERBS = Float.parseFloat(ratesSettings.getProperty("RateHpMpHerbs", "10."));
  1589. RATE_DROP_GREATER_HERBS = Float.parseFloat(ratesSettings.getProperty("RateGreaterHerbs", "4."));
  1590. RATE_DROP_SUPERIOR_HERBS = Float.parseFloat(ratesSettings.getProperty("RateSuperiorHerbs", "0.8"))*10;
  1591. RATE_DROP_SPECIAL_HERBS = Float.parseFloat(ratesSettings.getProperty("RateSpecialHerbs", "0.2"))*10;
  1592. PLAYER_DROP_LIMIT = Integer.parseInt(ratesSettings.getProperty("PlayerDropLimit", "3"));
  1593. PLAYER_RATE_DROP = Integer.parseInt(ratesSettings.getProperty("PlayerRateDrop", "5"));
  1594. PLAYER_RATE_DROP_ITEM = Integer.parseInt(ratesSettings.getProperty("PlayerRateDropItem", "70"));
  1595. PLAYER_RATE_DROP_EQUIP = Integer.parseInt(ratesSettings.getProperty("PlayerRateDropEquip", "25"));
  1596. PLAYER_RATE_DROP_EQUIP_WEAPON = Integer.parseInt(ratesSettings.getProperty("PlayerRateDropEquipWeapon", "5"));
  1597. PET_XP_RATE = Float.parseFloat(ratesSettings.getProperty("PetXpRate", "1."));
  1598. PET_FOOD_RATE = Integer.parseInt(ratesSettings.getProperty("PetFoodRate", "1"));
  1599. SINEATER_XP_RATE = Float.parseFloat(ratesSettings.getProperty("SinEaterXpRate", "1."));
  1600. KARMA_DROP_LIMIT = Integer.parseInt(ratesSettings.getProperty("KarmaDropLimit", "10"));
  1601. KARMA_RATE_DROP = Integer.parseInt(ratesSettings.getProperty("KarmaRateDrop", "70"));
  1602. KARMA_RATE_DROP_ITEM = Integer.parseInt(ratesSettings.getProperty("KarmaRateDropItem", "50"));
  1603. KARMA_RATE_DROP_EQUIP = Integer.parseInt(ratesSettings.getProperty("KarmaRateDropEquip", "40"));
  1604. KARMA_RATE_DROP_EQUIP_WEAPON = Integer.parseInt(ratesSettings.getProperty("KarmaRateDropEquipWeapon", "10"));
  1605. }
  1606. catch (Exception e) {
  1607. e.printStackTrace();
  1608. throw new Error("Failed to Load "+RATES_CONFIG_FILE+" File.");
  1609. }
  1610. try
  1611. {
  1612. Properties L2JModSettings = new Properties();
  1613. is = new FileInputStream(new File(L2JMOD_CONFIG_FILE));
  1614. L2JModSettings.load(is);
  1615. L2JMOD_CHAMPION_ENABLE = Boolean.parseBoolean(L2JModSettings.getProperty("ChampionEnable", "false"));
  1616. L2JMOD_CHAMPION_PASSIVE = Boolean.parseBoolean(L2JModSettings.getProperty("ChampionPassive", "false"));
  1617. L2JMOD_CHAMPION_FREQUENCY = Integer.parseInt(L2JModSettings.getProperty("ChampionFrequency", "0"));
  1618. L2JMOD_CHAMP_TITLE = L2JModSettings.getProperty("ChampionTitle", "Champion");
  1619. L2JMOD_CHAMP_MIN_LVL = Integer.parseInt(L2JModSettings.getProperty("ChampionMinLevel", "20"));
  1620. L2JMOD_CHAMP_MAX_LVL = Integer.parseInt(L2JModSettings.getProperty("ChampionMaxLevel", "60"));
  1621. L2JMOD_CHAMPION_HP = Integer.parseInt(L2JModSettings.getProperty("ChampionHp", "7"));
  1622. L2JMOD_CHAMPION_HP_REGEN = Float.parseFloat(L2JModSettings.getProperty("ChampionHpRegen", "1."));
  1623. L2JMOD_CHAMPION_REWARDS = Integer.parseInt(L2JModSettings.getProperty("ChampionRewards", "8"));
  1624. L2JMOD_CHAMPION_ADENAS_REWARDS = Integer.parseInt(L2JModSettings.getProperty("ChampionAdenasRewards", "1"));
  1625. L2JMOD_CHAMPION_ATK = Float.parseFloat(L2JModSettings.getProperty("ChampionAtk", "1."));
  1626. L2JMOD_CHAMPION_SPD_ATK = Float.parseFloat(L2JModSettings.getProperty("ChampionSpdAtk", "1."));
  1627. L2JMOD_CHAMPION_REWARD_LOWER_LVL_ITEM_CHANCE = Integer.parseInt(L2JModSettings.getProperty("ChampionRewardLowerLvlItemChance", "0"));
  1628. L2JMOD_CHAMPION_REWARD_HIGHER_LVL_ITEM_CHANCE = Integer.parseInt(L2JModSettings.getProperty("ChampionRewardHigherLvlItemChance", "0"));
  1629. L2JMOD_CHAMPION_REWARD_ID = Integer.parseInt(L2JModSettings.getProperty("ChampionRewardItemID", "6393"));
  1630. L2JMOD_CHAMPION_REWARD_QTY = Integer.parseInt(L2JModSettings.getProperty("ChampionRewardItemQty", "1"));
  1631. TVT_EVENT_ENABLED = Boolean.parseBoolean(L2JModSettings.getProperty("TvTEventEnabled", "false"));
  1632. TVT_EVENT_INTERVAL = L2JModSettings.getProperty("TvTEventInterval", "20:00").split(",");
  1633. TVT_EVENT_PARTICIPATION_TIME = Integer.parseInt(L2JModSettings.getProperty("TvTEventParticipationTime", "3600"));
  1634. TVT_EVENT_RUNNING_TIME = Integer.parseInt(L2JModSettings.getProperty("TvTEventRunningTime", "1800"));
  1635. TVT_EVENT_PARTICIPATION_NPC_ID = Integer.parseInt(L2JModSettings.getProperty("TvTEventParticipationNpcId", "0"));
  1636. /** L2JMOD Wedding system */
  1637. L2JMOD_ALLOW_WEDDING = Boolean.parseBoolean(L2JModSettings.getProperty("AllowWedding", "False"));
  1638. L2JMOD_WEDDING_PRICE = Integer.parseInt(L2JModSettings.getProperty("WeddingPrice", "250000000"));
  1639. L2JMOD_WEDDING_PUNISH_INFIDELITY = Boolean.parseBoolean(L2JModSettings.getProperty("WeddingPunishInfidelity", "True"));
  1640. L2JMOD_WEDDING_TELEPORT = Boolean.parseBoolean(L2JModSettings.getProperty("WeddingTeleport", "True"));
  1641. L2JMOD_WEDDING_TELEPORT_PRICE = Integer.parseInt(L2JModSettings.getProperty("WeddingTeleportPrice", "50000"));
  1642. L2JMOD_WEDDING_TELEPORT_DURATION = Integer.parseInt(L2JModSettings.getProperty("WeddingTeleportDuration", "60"));
  1643. L2JMOD_WEDDING_SAMESEX = Boolean.parseBoolean(L2JModSettings.getProperty("WeddingAllowSameSex", "False"));
  1644. L2JMOD_WEDDING_FORMALWEAR = Boolean.parseBoolean(L2JModSettings.getProperty("WeddingFormalWear", "True"));
  1645. L2JMOD_WEDDING_DIVORCE_COSTS = Integer.parseInt(L2JModSettings.getProperty("WeddingDivorceCosts", "20"));
  1646. L2JMOD_ENABLE_WAREHOUSESORTING_CLAN = Boolean.valueOf(L2JModSettings.getProperty("EnableWarehouseSortingClan", "False"));
  1647. L2JMOD_ENABLE_WAREHOUSESORTING_PRIVATE = Boolean.valueOf(L2JModSettings.getProperty("EnableWarehouseSortingPrivate", "False"));
  1648. L2JMOD_ENABLE_WAREHOUSESORTING_FREIGHT = Boolean.valueOf(L2JModSettings.getProperty("EnableWarehouseSortingFreight", "False"));
  1649. if (TVT_EVENT_PARTICIPATION_NPC_ID == 0)
  1650. {
  1651. TVT_EVENT_ENABLED = false;
  1652. _log.warning("TvTEventEngine[Config.load()]: invalid config property -> TvTEventParticipationNpcId");
  1653. }
  1654. else
  1655. {
  1656. String[] propertySplit = L2JModSettings.getProperty("TvTEventParticipationNpcCoordinates", "0,0,0").split(",");
  1657. if (propertySplit.length < 3)
  1658. {
  1659. TVT_EVENT_ENABLED = false;
  1660. _log.warning("TvTEventEngine[Config.load()]: invalid config property -> TvTEventParticipationNpcCoordinates");
  1661. }
  1662. else
  1663. {
  1664. TVT_EVENT_REWARDS = new FastList<int[]>();
  1665. TVT_DOORS_IDS_TO_OPEN = new ArrayList<Integer>();
  1666. TVT_DOORS_IDS_TO_CLOSE = new ArrayList<Integer>();
  1667. TVT_EVENT_PARTICIPATION_NPC_COORDINATES = new int[3];
  1668. TVT_EVENT_TEAM_1_COORDINATES = new int[3];
  1669. TVT_EVENT_TEAM_2_COORDINATES = new int[3];
  1670. TVT_EVENT_PARTICIPATION_NPC_COORDINATES[0] = Integer.parseInt(propertySplit[0]);
  1671. TVT_EVENT_PARTICIPATION_NPC_COORDINATES[1] = Integer.parseInt(propertySplit[1]);
  1672. TVT_EVENT_PARTICIPATION_NPC_COORDINATES[2] = Integer.parseInt(propertySplit[2]);
  1673. TVT_EVENT_MIN_PLAYERS_IN_TEAMS = Integer.parseInt(L2JModSettings.getProperty("TvTEventMinPlayersInTeams", "1"));
  1674. TVT_EVENT_MAX_PLAYERS_IN_TEAMS = Integer.parseInt(L2JModSettings.getProperty("TvTEventMaxPlayersInTeams", "20"));
  1675. TVT_EVENT_MIN_LVL = (byte)Integer.parseInt(L2JModSettings.getProperty("TvTEventMinPlayerLevel", "1"));
  1676. TVT_EVENT_MAX_LVL = (byte)Integer.parseInt(L2JModSettings.getProperty("TvTEventMaxPlayerLevel", "80"));
  1677. TVT_EVENT_RESPAWN_TELEPORT_DELAY = Integer.parseInt(L2JModSettings.getProperty("TvTEventRespawnTeleportDelay", "20"));
  1678. TVT_EVENT_START_LEAVE_TELEPORT_DELAY = Integer.parseInt(L2JModSettings.getProperty("TvTEventStartLeaveTeleportDelay", "20"));
  1679. TVT_EVENT_TEAM_1_NAME = L2JModSettings.getProperty("TvTEventTeam1Name", "Team1");
  1680. propertySplit = L2JModSettings.getProperty("TvTEventTeam1Coordinates", "0,0,0").split(",");
  1681. if (propertySplit.length < 3)
  1682. {
  1683. TVT_EVENT_ENABLED = false;
  1684. _log.warning("TvTEventEngine[Config.load()]: invalid config property -> TvTEventTeam1Coordinates");
  1685. }
  1686. else
  1687. {
  1688. TVT_EVENT_TEAM_1_COORDINATES[0] = Integer.parseInt(propertySplit[0]);
  1689. TVT_EVENT_TEAM_1_COORDINATES[1] = Integer.parseInt(propertySplit[1]);
  1690. TVT_EVENT_TEAM_1_COORDINATES[2] = Integer.parseInt(propertySplit[2]);
  1691. TVT_EVENT_TEAM_2_NAME = L2JModSettings.getProperty("TvTEventTeam2Name", "Team2");
  1692. propertySplit = L2JModSettings.getProperty("TvTEventTeam2Coordinates", "0,0,0").split(",");
  1693. if (propertySplit.length < 3)
  1694. {
  1695. TVT_EVENT_ENABLED= false;
  1696. _log.warning("TvTEventEngine[Config.load()]: invalid config property -> TvTEventTeam2Coordinates");
  1697. }
  1698. else
  1699. {
  1700. TVT_EVENT_TEAM_2_COORDINATES[0] = Integer.parseInt(propertySplit[0]);
  1701. TVT_EVENT_TEAM_2_COORDINATES[1] = Integer.parseInt(propertySplit[1]);
  1702. TVT_EVENT_TEAM_2_COORDINATES[2] = Integer.parseInt(propertySplit[2]);
  1703. propertySplit = L2JModSettings.getProperty("TvTEventReward", "57,100000").split(";");
  1704. for (String reward : propertySplit)
  1705. {
  1706. String[] rewardSplit = reward.split(",");
  1707. if (rewardSplit.length != 2)
  1708. _log.warning(StringUtil.concat("TvTEventEngine[Config.load()]: invalid config property -> TvTEventReward \"", reward, "\""));
  1709. else
  1710. {
  1711. try
  1712. {
  1713. TVT_EVENT_REWARDS.add(new int[]{Integer.parseInt(rewardSplit[0]), Integer.parseInt(rewardSplit[1])});
  1714. }
  1715. catch (NumberFormatException nfe)
  1716. {
  1717. if (!reward.equals(""))
  1718. _log.warning(StringUtil.concat("TvTEventEngine[Config.load()]: invalid config property -> TvTEventReward \"", reward, "\""));
  1719. }
  1720. }
  1721. }
  1722. TVT_EVENT_TARGET_TEAM_MEMBERS_ALLOWED = Boolean.parseBoolean(L2JModSettings.getProperty("TvTEventTargetTeamMembersAllowed", "true"));
  1723. TVT_EVENT_SCROLL_ALLOWED = Boolean.parseBoolean(L2JModSettings.getProperty("TvTEventScrollAllowed", "false"));
  1724. TVT_EVENT_POTIONS_ALLOWED = Boolean.parseBoolean(L2JModSettings.getProperty("TvTEventPotionsAllowed", "false"));
  1725. TVT_EVENT_SUMMON_BY_ITEM_ALLOWED = Boolean.parseBoolean(L2JModSettings.getProperty("TvTEventSummonByItemAllowed", "false"));
  1726. TVT_REWARD_TEAM_TIE = Boolean.parseBoolean(L2JModSettings.getProperty("TvTRewardTeamTie", "false"));
  1727. propertySplit = L2JModSettings.getProperty("TvTDoorsToOpen", "").split(";");
  1728. for (String door : propertySplit)
  1729. {
  1730. try
  1731. {
  1732. TVT_DOORS_IDS_TO_OPEN.add(Integer.parseInt(door));
  1733. }
  1734. catch (NumberFormatException nfe)
  1735. {
  1736. if (!door.equals(""))
  1737. _log.warning(StringUtil.concat("TvTEventEngine[Config.load()]: invalid config property -> TvTDoorsToOpen \"", door, "\""));
  1738. }
  1739. }
  1740. propertySplit = L2JModSettings.getProperty("TvTDoorsToClose", "").split(";");
  1741. for (String door : propertySplit)
  1742. {
  1743. try
  1744. {
  1745. TVT_DOORS_IDS_TO_CLOSE.add(Integer.parseInt(door));
  1746. }
  1747. catch (NumberFormatException nfe)
  1748. {
  1749. if (!door.equals(""))
  1750. _log.warning(StringUtil.concat("TvTEventEngine[Config.load()]: invalid config property -> TvTDoorsToClose \"", door, "\""));
  1751. }
  1752. }
  1753. }
  1754. }
  1755. }
  1756. }
  1757. BANKING_SYSTEM_ENABLED = Boolean.parseBoolean(L2JModSettings.getProperty("BankingEnabled", "false"));
  1758. BANKING_SYSTEM_GOLDBARS = Integer.parseInt(L2JModSettings.getProperty("BankingGoldbarCount", "1"));
  1759. BANKING_SYSTEM_ADENA = Integer.parseInt(L2JModSettings.getProperty("BankingAdenaCount", "500000000"));
  1760. L2JMOD_ENABLE_MANA_POTIONS_SUPPORT = Boolean.parseBoolean(L2JModSettings.getProperty("EnableManaPotionSupport", "false"));
  1761. }
  1762. catch (Exception e)
  1763. {
  1764. e.printStackTrace();
  1765. throw new Error("Failed to Load "+L2JMOD_CONFIG_FILE+" File.");
  1766. }
  1767. // pvp config
  1768. try
  1769. {
  1770. Properties pvpSettings = new Properties();
  1771. is = new FileInputStream(new File(PVP_CONFIG_FILE));
  1772. pvpSettings.load(is);
  1773. /* KARMA SYSTEM */
  1774. KARMA_MIN_KARMA = Integer.parseInt(pvpSettings.getProperty("MinKarma", "240"));
  1775. KARMA_MAX_KARMA = Integer.parseInt(pvpSettings.getProperty("MaxKarma", "10000"));
  1776. KARMA_XP_DIVIDER = Integer.parseInt(pvpSettings.getProperty("XPDivider", "260"));
  1777. KARMA_LOST_BASE = Integer.parseInt(pvpSettings.getProperty("BaseKarmaLost", "0"));
  1778. KARMA_DROP_GM = Boolean.parseBoolean(pvpSettings.getProperty("CanGMDropEquipment", "false"));
  1779. KARMA_AWARD_PK_KILL = Boolean.parseBoolean(pvpSettings.getProperty("AwardPKKillPVPPoint", "true"));
  1780. KARMA_PK_LIMIT = Integer.parseInt(pvpSettings.getProperty("MinimumPKRequiredToDrop", "5"));
  1781. KARMA_NONDROPPABLE_PET_ITEMS = pvpSettings.getProperty("ListOfPetItems", "2375,3500,3501,3502,4422,4423,4424,4425,6648,6649,6650,9882");
  1782. KARMA_NONDROPPABLE_ITEMS = pvpSettings.getProperty("ListOfNonDroppableItems", "57,1147,425,1146,461,10,2368,7,6,2370,2369,6842,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,7694,8181,5575,7694,9388,9389,9390");
  1783. KARMA_LIST_NONDROPPABLE_PET_ITEMS = new FastList<Integer>();
  1784. for (String id : KARMA_NONDROPPABLE_PET_ITEMS.split(",")) {
  1785. KARMA_LIST_NONDROPPABLE_PET_ITEMS.add(Integer.parseInt(id));
  1786. }
  1787. KARMA_LIST_NONDROPPABLE_ITEMS = new FastList<Integer>();
  1788. for (String id : KARMA_NONDROPPABLE_ITEMS.split(",")) {
  1789. KARMA_LIST_NONDROPPABLE_ITEMS.add(Integer.parseInt(id));
  1790. }
  1791. PVP_NORMAL_TIME = Integer.parseInt(pvpSettings.getProperty("PvPVsNormalTime", "120000"));
  1792. PVP_PVP_TIME = Integer.parseInt(pvpSettings.getProperty("PvPVsPvPTime", "60000"));
  1793. }
  1794. catch (Exception e)
  1795. {
  1796. e.printStackTrace();
  1797. throw new Error("Failed to Load "+PVP_CONFIG_FILE+" File.");
  1798. }
  1799. try
  1800. {
  1801. Properties Settings = new Properties();
  1802. is = new FileInputStream(HEXID_FILE);
  1803. Settings.load(is);
  1804. SERVER_ID = Integer.parseInt(Settings.getProperty("ServerID"));
  1805. HEX_ID = new BigInteger(Settings.getProperty("HexID"), 16).toByteArray();
  1806. }
  1807. catch (Exception e)
  1808. {
  1809. _log.warning("Could not load HexID file ("+HEXID_FILE+"). Hopefully login will give us one.");
  1810. }
  1811. }
  1812. finally
  1813. {
  1814. try
  1815. {
  1816. is.close();
  1817. }
  1818. catch (Exception e)
  1819. {
  1820. }
  1821. }
  1822. }
  1823. else if(Server.serverMode == Server.MODE_LOGINSERVER)
  1824. {
  1825. _log.info("loading login config");
  1826. InputStream is = null;
  1827. try
  1828. {
  1829. try
  1830. {
  1831. Properties serverSettings = new Properties();
  1832. is = new FileInputStream(new File(LOGIN_CONFIGURATION_FILE));
  1833. serverSettings.load(is);
  1834. GAME_SERVER_LOGIN_HOST = serverSettings.getProperty("LoginHostname","*");
  1835. GAME_SERVER_LOGIN_PORT = Integer.parseInt(serverSettings.getProperty("LoginPort","9013"));
  1836. LOGIN_BIND_ADDRESS = serverSettings.getProperty("LoginserverHostname", "*");
  1837. PORT_LOGIN = Integer.parseInt(serverSettings.getProperty("LoginserverPort", "2106"));
  1838. DEBUG = Boolean.parseBoolean(serverSettings.getProperty("Debug", "false"));
  1839. DEVELOPER = Boolean.parseBoolean(serverSettings.getProperty("Developer", "false"));
  1840. ASSERT = Boolean.parseBoolean(serverSettings.getProperty("Assert", "false"));
  1841. ACCEPT_NEW_GAMESERVER = Boolean.parseBoolean(serverSettings.getProperty("AcceptNewGameServer","True"));
  1842. REQUEST_ID = Integer.parseInt(serverSettings.getProperty("RequestServerID","0"));
  1843. ACCEPT_ALTERNATE_ID = Boolean.parseBoolean(serverSettings.getProperty("AcceptAlternateID","True"));
  1844. LOGIN_TRY_BEFORE_BAN = Integer.parseInt(serverSettings.getProperty("LoginTryBeforeBan", "10"));
  1845. LOGIN_BLOCK_AFTER_BAN = Integer.parseInt(serverSettings.getProperty("LoginBlockAfterBan", "600"));
  1846. LOG_LOGIN_CONTROLLER = Boolean.parseBoolean(serverSettings.getProperty("LogLoginController", "true"));
  1847. DATAPACK_ROOT = new File(serverSettings.getProperty("DatapackRoot", ".")).getCanonicalFile(); //FIXME: in login?
  1848. INTERNAL_HOSTNAME = serverSettings.getProperty("InternalHostname", "localhost");
  1849. EXTERNAL_HOSTNAME = serverSettings.getProperty("ExternalHostname", "localhost");
  1850. DATABASE_DRIVER = serverSettings.getProperty("Driver", "com.mysql.jdbc.Driver");
  1851. DATABASE_URL = serverSettings.getProperty("URL", "jdbc:mysql://localhost/l2jdb");
  1852. DATABASE_LOGIN = serverSettings.getProperty("Login", "root");
  1853. DATABASE_PASSWORD = serverSettings.getProperty("Password", "");
  1854. DATABASE_MAX_CONNECTIONS = Integer.parseInt(serverSettings.getProperty("MaximumDbConnections", "10"));
  1855. SHOW_LICENCE = Boolean.parseBoolean(serverSettings.getProperty("ShowLicence", "true"));
  1856. IP_UPDATE_TIME = Integer.parseInt(serverSettings.getProperty("IpUpdateTime","15"));
  1857. FORCE_GGAUTH = Boolean.parseBoolean(serverSettings.getProperty("ForceGGAuth", "false"));
  1858. AUTO_CREATE_ACCOUNTS = Boolean.parseBoolean(serverSettings.getProperty("AutoCreateAccounts","True"));
  1859. FLOOD_PROTECTION = Boolean.parseBoolean(serverSettings.getProperty("EnableFloodProtection","True"));
  1860. FAST_CONNECTION_LIMIT = Integer.parseInt(serverSettings.getProperty("FastConnectionLimit","15"));
  1861. NORMAL_CONNECTION_TIME = Integer.parseInt(serverSettings.getProperty("NormalConnectionTime","700"));
  1862. FAST_CONNECTION_TIME = Integer.parseInt(serverSettings.getProperty("FastConnectionTime","350"));
  1863. MAX_CONNECTION_PER_IP = Integer.parseInt(serverSettings.getProperty("MaxConnectionPerIP","50"));
  1864. }
  1865. catch (Exception e)
  1866. {
  1867. e.printStackTrace();
  1868. throw new Error("Failed to Load "+CONFIGURATION_FILE+" File.");
  1869. }
  1870. // telnet
  1871. try
  1872. {
  1873. Properties telnetSettings = new Properties();
  1874. is = new FileInputStream(new File(TELNET_FILE));
  1875. telnetSettings.load(is);
  1876. IS_TELNET_ENABLED = Boolean.parseBoolean(telnetSettings.getProperty("EnableTelnet", "false"));
  1877. }
  1878. catch (Exception e)
  1879. {
  1880. e.printStackTrace();
  1881. throw new Error("Failed to Load "+TELNET_FILE+" File.");
  1882. }
  1883. }
  1884. finally
  1885. {
  1886. try
  1887. {
  1888. is.close();
  1889. }
  1890. catch(Exception e)
  1891. {
  1892. }
  1893. }
  1894. }
  1895. else
  1896. {
  1897. _log.severe("Could not Load Config: server mode was not set");
  1898. }
  1899. }
  1900. /**
  1901. * Set a new value to a game parameter from the admin console.
  1902. * @param pName (String) : name of the parameter to change
  1903. * @param pValue (String) : new value of the parameter
  1904. * @return boolean : true if modification has been made
  1905. * @link useAdminCommand
  1906. */
  1907. public static boolean setParameterValue(String pName, String pValue)
  1908. {
  1909. // Server settings
  1910. if (pName.equalsIgnoreCase("RateXp")) RATE_XP = Float.parseFloat(pValue);
  1911. else if (pName.equalsIgnoreCase("RateSp")) RATE_SP = Float.parseFloat(pValue);
  1912. else if (pName.equalsIgnoreCase("RatePartyXp")) RATE_PARTY_XP = Float.parseFloat(pValue);
  1913. else if (pName.equalsIgnoreCase("RatePartySp")) RATE_PARTY_SP = Float.parseFloat(pValue);
  1914. else if (pName.equalsIgnoreCase("RateQuestsReward")) RATE_QUESTS_REWARD = Float.parseFloat(pValue);
  1915. else if (pName.equalsIgnoreCase("RateDropAdena")) RATE_DROP_ADENA = Float.parseFloat(pValue);
  1916. else if (pName.equalsIgnoreCase("RateConsumableCost")) RATE_CONSUMABLE_COST = Float.parseFloat(pValue);
  1917. else if (pName.equalsIgnoreCase("RateExtractFish")) RATE_EXTR_FISH = Float.parseFloat(pValue);
  1918. else if (pName.equalsIgnoreCase("RateDropItems")) RATE_DROP_ITEMS = Float.parseFloat(pValue);
  1919. else if (pName.equalsIgnoreCase("RateRaidDropItems")) RATE_DROP_ITEMS_BY_RAID = Float.parseFloat(pValue);
  1920. else if (pName.equalsIgnoreCase("RateDropSpoil")) RATE_DROP_SPOIL = Float.parseFloat(pValue);
  1921. else if (pName.equalsIgnoreCase("RateDropManor")) RATE_DROP_MANOR = Integer.parseInt(pValue);
  1922. else if (pName.equalsIgnoreCase("RateDropQuest")) RATE_DROP_QUEST = Float.parseFloat(pValue);
  1923. else if (pName.equalsIgnoreCase("RateKarmaExpLost")) RATE_KARMA_EXP_LOST = Float.parseFloat(pValue);
  1924. else if (pName.equalsIgnoreCase("RateSiegeGuardsPrice")) RATE_SIEGE_GUARDS_PRICE = Float.parseFloat(pValue);
  1925. else if (pName.equalsIgnoreCase("PlayerDropLimit")) PLAYER_DROP_LIMIT = Integer.parseInt(pValue);
  1926. else if (pName.equalsIgnoreCase("PlayerRateDrop")) PLAYER_RATE_DROP = Integer.parseInt(pValue);
  1927. else if (pName.equalsIgnoreCase("PlayerRateDropItem")) PLAYER_RATE_DROP_ITEM = Integer.parseInt(pValue);
  1928. else if (pName.equalsIgnoreCase("PlayerRateDropEquip")) PLAYER_RATE_DROP_EQUIP = Integer.parseInt(pValue);
  1929. else if (pName.equalsIgnoreCase("PlayerRateDropEquipWeapon")) PLAYER_RATE_DROP_EQUIP_WEAPON = Integer.parseInt(pValue);
  1930. else if (pName.equalsIgnoreCase("KarmaDropLimit")) KARMA_DROP_LIMIT = Integer.parseInt(pValue);
  1931. else if (pName.equalsIgnoreCase("KarmaRateDrop")) KARMA_RATE_DROP = Integer.parseInt(pValue);
  1932. else if (pName.equalsIgnoreCase("KarmaRateDropItem")) KARMA_RATE_DROP_ITEM = Integer.parseInt(pValue);
  1933. else if (pName.equalsIgnoreCase("KarmaRateDropEquip")) KARMA_RATE_DROP_EQUIP = Integer.parseInt(pValue);
  1934. else if (pName.equalsIgnoreCase("KarmaRateDropEquipWeapon")) KARMA_RATE_DROP_EQUIP_WEAPON = Integer.parseInt(pValue);
  1935. else if (pName.equalsIgnoreCase("AutoDestroyDroppedItemAfter")) AUTODESTROY_ITEM_AFTER = Integer.parseInt(pValue);
  1936. else if (pName.equalsIgnoreCase("DestroyPlayerDroppedItem")) DESTROY_DROPPED_PLAYER_ITEM = Boolean.parseBoolean(pValue);
  1937. else if (pName.equalsIgnoreCase("DestroyEquipableItem")) DESTROY_EQUIPABLE_PLAYER_ITEM = Boolean.parseBoolean(pValue);
  1938. else if (pName.equalsIgnoreCase("SaveDroppedItem")) SAVE_DROPPED_ITEM = Boolean.parseBoolean(pValue);
  1939. else if (pName.equalsIgnoreCase("EmptyDroppedItemTableAfterLoad")) EMPTY_DROPPED_ITEM_TABLE_AFTER_LOAD = Boolean.parseBoolean(pValue);
  1940. else if (pName.equalsIgnoreCase("SaveDroppedItemInterval")) SAVE_DROPPED_ITEM_INTERVAL = Integer.parseInt(pValue);
  1941. else if (pName.equalsIgnoreCase("ClearDroppedItemTable")) CLEAR_DROPPED_ITEM_TABLE = Boolean.parseBoolean(pValue);
  1942. else if (pName.equalsIgnoreCase("PreciseDropCalculation")) PRECISE_DROP_CALCULATION = Boolean.parseBoolean(pValue);
  1943. else if (pName.equalsIgnoreCase("MultipleItemDrop")) MULTIPLE_ITEM_DROP = Boolean.parseBoolean(pValue);
  1944. else if (pName.equalsIgnoreCase("CoordSynchronize")) COORD_SYNCHRONIZE = Integer.parseInt(pValue);
  1945. else if (pName.equalsIgnoreCase("DeleteCharAfterDays")) DELETE_DAYS = Integer.parseInt(pValue);
  1946. else if (pName.equalsIgnoreCase("AllowDiscardItem")) ALLOW_DISCARDITEM = Boolean.parseBoolean(pValue);
  1947. else if (pName.equalsIgnoreCase("AllowFreight")) ALLOW_FREIGHT = Boolean.parseBoolean(pValue);
  1948. else if (pName.equalsIgnoreCase("AllowWarehouse")) ALLOW_WAREHOUSE = Boolean.parseBoolean(pValue);
  1949. else if (pName.equalsIgnoreCase("AllowWear")) ALLOW_WEAR = Boolean.parseBoolean(pValue);
  1950. else if (pName.equalsIgnoreCase("WearDelay")) WEAR_DELAY = Integer.parseInt(pValue);
  1951. else if (pName.equalsIgnoreCase("WearPrice")) WEAR_PRICE = Integer.parseInt(pValue);
  1952. else if (pName.equalsIgnoreCase("AllowWater")) ALLOW_WATER = Boolean.parseBoolean(pValue);
  1953. else if (pName.equalsIgnoreCase("AllowRentPet")) ALLOW_RENTPET = Boolean.parseBoolean(pValue);
  1954. else if (pName.equalsIgnoreCase("AllowBoat")) ALLOW_BOAT = Boolean.parseBoolean(pValue);
  1955. else if (pName.equalsIgnoreCase("AllowCursedWeapons")) ALLOW_CURSED_WEAPONS = Boolean.parseBoolean(pValue);
  1956. else if (pName.equalsIgnoreCase("AllowManor")) ALLOW_MANOR = Boolean.parseBoolean(pValue);
  1957. else if (pName.equalsIgnoreCase("AllowPetWalkers")) ALLOW_PET_WALKERS = Boolean.parseBoolean(pValue);
  1958. else if (pName.equalsIgnoreCase("BypassValidation")) BYPASS_VALIDATION = Boolean.parseBoolean(pValue);
  1959. else if (pName.equalsIgnoreCase("CommunityType")) COMMUNITY_TYPE = Integer.parseInt(pValue);
  1960. else if (pName.equalsIgnoreCase("BBSShowPlayerList")) BBS_SHOW_PLAYERLIST = Boolean.parseBoolean(pValue);
  1961. else if (pName.equalsIgnoreCase("BBSDefault")) BBS_DEFAULT = pValue;
  1962. else if (pName.equalsIgnoreCase("ShowLevelOnCommunityBoard")) SHOW_LEVEL_COMMUNITYBOARD = Boolean.parseBoolean(pValue);
  1963. else if (pName.equalsIgnoreCase("ShowStatusOnCommunityBoard")) SHOW_STATUS_COMMUNITYBOARD = Boolean.parseBoolean(pValue);
  1964. else if (pName.equalsIgnoreCase("NamePageSizeOnCommunityBoard")) NAME_PAGE_SIZE_COMMUNITYBOARD = Integer.parseInt(pValue);
  1965. else if (pName.equalsIgnoreCase("NamePerRowOnCommunityBoard")) NAME_PER_ROW_COMMUNITYBOARD = Integer.parseInt(pValue);
  1966. else if (pName.equalsIgnoreCase("ShowServerNews")) SERVER_NEWS = Boolean.parseBoolean(pValue);
  1967. else if (pName.equalsIgnoreCase("ShowNpcLevel")) SHOW_NPC_LVL = Boolean.parseBoolean(pValue);
  1968. else if (pName.equalsIgnoreCase("ForceInventoryUpdate")) FORCE_INVENTORY_UPDATE = Boolean.parseBoolean(pValue);
  1969. else if (pName.equalsIgnoreCase("AutoDeleteInvalidQuestData")) AUTODELETE_INVALID_QUEST_DATA = Boolean.parseBoolean(pValue);
  1970. else if (pName.equalsIgnoreCase("MaximumOnlineUsers")) MAXIMUM_ONLINE_USERS = Integer.parseInt(pValue);
  1971. else if (pName.equalsIgnoreCase("ZoneTown")) ZONE_TOWN = Integer.parseInt(pValue);
  1972. else if (pName.equalsIgnoreCase("MaximumUpdateDistance")) MINIMUM_UPDATE_DISTANCE = Integer.parseInt(pValue);
  1973. else if (pName.equalsIgnoreCase("MinimumUpdateTime")) MINIMUN_UPDATE_TIME = Integer.parseInt(pValue);
  1974. else if (pName.equalsIgnoreCase("CheckKnownList")) CHECK_KNOWN = Boolean.parseBoolean(pValue);
  1975. else if (pName.equalsIgnoreCase("KnownListForgetDelay")) KNOWNLIST_FORGET_DELAY = Integer.parseInt(pValue);
  1976. // Other settings
  1977. else if (pName.equalsIgnoreCase("UseDeepBlueDropRules")) DEEPBLUE_DROP_RULES = Boolean.parseBoolean(pValue);
  1978. else if (pName.equalsIgnoreCase("AllowGuards")) GUARD_ATTACK_AGGRO_MOB = Boolean.parseBoolean(pValue);
  1979. else if (pName.equalsIgnoreCase("CancelLesserEffect")) EFFECT_CANCELING = Boolean.parseBoolean(pValue);
  1980. else if (pName.equalsIgnoreCase("MaximumSlotsForNoDwarf")) INVENTORY_MAXIMUM_NO_DWARF = Integer.parseInt(pValue);
  1981. else if (pName.equalsIgnoreCase("MaximumSlotsForDwarf")) INVENTORY_MAXIMUM_DWARF = Integer.parseInt(pValue);
  1982. else if (pName.equalsIgnoreCase("MaximumSlotsForGMPlayer")) INVENTORY_MAXIMUM_GM = Integer.parseInt(pValue);
  1983. else if (pName.equalsIgnoreCase("MaximumWarehouseSlotsForNoDwarf")) WAREHOUSE_SLOTS_NO_DWARF = Integer.parseInt(pValue);
  1984. else if (pName.equalsIgnoreCase("MaximumWarehouseSlotsForDwarf")) WAREHOUSE_SLOTS_DWARF = Integer.parseInt(pValue);
  1985. else if (pName.equalsIgnoreCase("MaximumWarehouseSlotsForClan")) WAREHOUSE_SLOTS_CLAN = Integer.parseInt(pValue);
  1986. else if (pName.equalsIgnoreCase("MaximumFreightSlots")) FREIGHT_SLOTS = Integer.parseInt(pValue);
  1987. else if (pName.equalsIgnoreCase("EnchantChanceWeapon")) ENCHANT_CHANCE_WEAPON = Integer.parseInt(pValue);
  1988. else if (pName.equalsIgnoreCase("EnchantChanceArmor")) ENCHANT_CHANCE_ARMOR = Integer.parseInt(pValue);
  1989. else if (pName.equalsIgnoreCase("EnchantChanceJewelry")) ENCHANT_CHANCE_JEWELRY = Integer.parseInt(pValue);
  1990. else if (pName.equalsIgnoreCase("EnchantMaxWeapon")) ENCHANT_MAX_WEAPON = Integer.parseInt(pValue);
  1991. else if (pName.equalsIgnoreCase("EnchantMaxArmor")) ENCHANT_MAX_ARMOR = Integer.parseInt(pValue);
  1992. else if (pName.equalsIgnoreCase("EnchantMaxJewelry")) ENCHANT_MAX_JEWELRY = Integer.parseInt(pValue);
  1993. else if (pName.equalsIgnoreCase("EnchantSafeMax")) ENCHANT_SAFE_MAX = Integer.parseInt(pValue);
  1994. else if (pName.equalsIgnoreCase("EnchantSafeMaxFull")) ENCHANT_SAFE_MAX_FULL = Integer.parseInt(pValue);
  1995. else if (pName.equalsIgnoreCase("AugmentationNGSkillChance")) AUGMENTATION_NG_SKILL_CHANCE = Integer.parseInt(pValue);
  1996. else if (pName.equalsIgnoreCase("AugmentationNGGlowChance")) AUGMENTATION_NG_GLOW_CHANCE = Integer.parseInt(pValue);
  1997. else if (pName.equalsIgnoreCase("AugmentationMidSkillChance")) AUGMENTATION_MID_SKILL_CHANCE = Integer.parseInt(pValue);
  1998. else if (pName.equalsIgnoreCase("AugmentationMidGlowChance")) AUGMENTATION_MID_GLOW_CHANCE = Integer.parseInt(pValue);
  1999. else if (pName.equalsIgnoreCase("AugmentationHighSkillChance")) AUGMENTATION_HIGH_SKILL_CHANCE = Integer.parseInt(pValue);
  2000. else if (pName.equalsIgnoreCase("AugmentationHighGlowChance")) AUGMENTATION_HIGH_GLOW_CHANCE = Integer.parseInt(pValue);
  2001. else if (pName.equalsIgnoreCase("AugmentationTopSkillChance")) AUGMENTATION_TOP_SKILL_CHANCE = Integer.parseInt(pValue);
  2002. else if (pName.equalsIgnoreCase("AugmentationTopGlowChance")) AUGMENTATION_TOP_GLOW_CHANCE = Integer.parseInt(pValue);
  2003. else if (pName.equalsIgnoreCase("AugmentationBaseStatChance")) AUGMENTATION_BASESTAT_CHANCE = Integer.parseInt(pValue);
  2004. else if (pName.equalsIgnoreCase("HpRegenMultiplier")) HP_REGEN_MULTIPLIER = Double.parseDouble(pValue);
  2005. else if (pName.equalsIgnoreCase("MpRegenMultiplier")) MP_REGEN_MULTIPLIER = Double.parseDouble(pValue);
  2006. else if (pName.equalsIgnoreCase("CpRegenMultiplier")) CP_REGEN_MULTIPLIER = Double.parseDouble(pValue);
  2007. else if (pName.equalsIgnoreCase("RaidHpRegenMultiplier")) RAID_HP_REGEN_MULTIPLIER = Double.parseDouble(pValue);
  2008. else if (pName.equalsIgnoreCase("RaidMpRegenMultiplier")) RAID_MP_REGEN_MULTIPLIER = Double.parseDouble(pValue);
  2009. else if (pName.equalsIgnoreCase("RaidPDefenceMultiplier")) RAID_PDEFENCE_MULTIPLIER = Double.parseDouble(pValue) /100;
  2010. else if (pName.equalsIgnoreCase("RaidMDefenceMultiplier")) RAID_MDEFENCE_MULTIPLIER = Double.parseDouble(pValue) /100;
  2011. else if (pName.equalsIgnoreCase("RaidMinionRespawnTime")) RAID_MINION_RESPAWN_TIMER =Integer.parseInt(pValue);
  2012. else if (pName.equalsIgnoreCase("StartingAdena")) STARTING_ADENA = Integer.parseInt(pValue);
  2013. else if (pName.equalsIgnoreCase("UnstuckInterval")) UNSTUCK_INTERVAL = Integer.parseInt(pValue);
  2014. else if (pName.equalsIgnoreCase("PlayerSpawnProtection")) PLAYER_SPAWN_PROTECTION = Integer.parseInt(pValue);
  2015. else if (pName.equalsIgnoreCase("PlayerFakeDeathUpProtection")) PLAYER_FAKEDEATH_UP_PROTECTION = Integer.parseInt(pValue);
  2016. else if (pName.equalsIgnoreCase("RestorePlayerInstance")) RESTORE_PLAYER_INSTANCE = Boolean.parseBoolean(pValue);
  2017. else if (pName.equalsIgnoreCase("AllowSummonToInstance")) ALLOW_SUMMON_TO_INSTANCE = Boolean.parseBoolean(pValue);
  2018. else if (pName.equalsIgnoreCase("PartyXpCutoffMethod")) PARTY_XP_CUTOFF_METHOD = pValue;
  2019. else if (pName.equalsIgnoreCase("PartyXpCutoffPercent")) PARTY_XP_CUTOFF_PERCENT = Double.parseDouble(pValue);
  2020. else if (pName.equalsIgnoreCase("PartyXpCutoffLevel")) PARTY_XP_CUTOFF_LEVEL = Integer.parseInt(pValue);
  2021. else if (pName.equalsIgnoreCase("RespawnRestoreCP")) RESPAWN_RESTORE_CP = Double.parseDouble(pValue) / 100;
  2022. else if (pName.equalsIgnoreCase("RespawnRestoreHP")) RESPAWN_RESTORE_HP = Double.parseDouble(pValue) / 100;
  2023. else if (pName.equalsIgnoreCase("RespawnRestoreMP")) RESPAWN_RESTORE_MP = Double.parseDouble(pValue) / 100;
  2024. else if (pName.equalsIgnoreCase("MaxPvtStoreSellSlotsDwarf")) MAX_PVTSTORESELL_SLOTS_DWARF = Integer.parseInt(pValue);
  2025. else if (pName.equalsIgnoreCase("MaxPvtStoreSellSlotsOther")) MAX_PVTSTORESELL_SLOTS_OTHER = Integer.parseInt(pValue);
  2026. else if (pName.equalsIgnoreCase("MaxPvtStoreBuySlotsDwarf")) MAX_PVTSTOREBUY_SLOTS_DWARF = Integer.parseInt(pValue);
  2027. else if (pName.equalsIgnoreCase("MaxPvtStoreBuySlotsOther")) MAX_PVTSTOREBUY_SLOTS_OTHER = Integer.parseInt(pValue);
  2028. else if (pName.equalsIgnoreCase("StoreSkillCooltime")) STORE_SKILL_COOLTIME = Boolean.parseBoolean(pValue);
  2029. else if (pName.equalsIgnoreCase("AnnounceMammonSpawn")) ANNOUNCE_MAMMON_SPAWN = Boolean.parseBoolean(pValue);
  2030. // Alternative settings
  2031. else if (pName.equalsIgnoreCase("AltGameTiredness")) ALT_GAME_TIREDNESS = Boolean.parseBoolean(pValue);
  2032. else if (pName.equalsIgnoreCase("AltGameCreation")) ALT_GAME_CREATION = Boolean.parseBoolean(pValue);
  2033. else if (pName.equalsIgnoreCase("AltGameCreationSpeed")) ALT_GAME_CREATION_SPEED = Double.parseDouble(pValue);
  2034. else if (pName.equalsIgnoreCase("AltGameCreationXpRate")) ALT_GAME_CREATION_XP_RATE = Double.parseDouble(pValue);
  2035. else if (pName.equalsIgnoreCase("AltGameCreationRareXpSpRate")) ALT_GAME_CREATION_RARE_XPSP_RATE = Double.parseDouble(pValue);
  2036. else if (pName.equalsIgnoreCase("AltGameCreationSpRate")) ALT_GAME_CREATION_SP_RATE = Double.parseDouble(pValue);
  2037. else if (pName.equalsIgnoreCase("AltWeightLimit")) ALT_WEIGHT_LIMIT = Double.parseDouble(pValue);
  2038. else if (pName.equalsIgnoreCase("AltBlacksmithUseRecipes")) ALT_BLACKSMITH_USE_RECIPES = Boolean.parseBoolean(pValue);
  2039. else if (pName.equalsIgnoreCase("AltGameSkillLearn")) ALT_GAME_SKILL_LEARN = Boolean.parseBoolean(pValue);
  2040. else if (pName.equalsIgnoreCase("RemoveCastleCirclets")) REMOVE_CASTLE_CIRCLETS = Boolean.parseBoolean(pValue);
  2041. else if (pName.equalsIgnoreCase("ReputationScorePerKill")) ALT_REPUTATION_SCORE_PER_KILL = Integer.parseInt(pValue);
  2042. else if (pName.equalsIgnoreCase("AltGameCancelByHit"))
  2043. {
  2044. ALT_GAME_CANCEL_BOW = pValue.equalsIgnoreCase("bow") || pValue.equalsIgnoreCase("all");
  2045. ALT_GAME_CANCEL_CAST = pValue.equalsIgnoreCase("cast") || pValue.equalsIgnoreCase("all");
  2046. }
  2047. else if (pName.equalsIgnoreCase("AltShieldBlocks")) ALT_GAME_SHIELD_BLOCKS = Boolean.parseBoolean(pValue);
  2048. else if (pName.equalsIgnoreCase("AltPerfectShieldBlockRate")) ALT_PERFECT_SHLD_BLOCK = Integer.parseInt(pValue);
  2049. else if (pName.equalsIgnoreCase("Delevel")) ALT_GAME_DELEVEL = Boolean.parseBoolean(pValue);
  2050. else if (pName.equalsIgnoreCase("MagicFailures")) ALT_GAME_MAGICFAILURES = Boolean.parseBoolean(pValue);
  2051. else if (pName.equalsIgnoreCase("AltMobAgroInPeaceZone")) ALT_MOB_AGRO_IN_PEACEZONE = Boolean.parseBoolean(pValue);
  2052. else if (pName.equalsIgnoreCase("AltGameExponentXp")) ALT_GAME_EXPONENT_XP = Float.parseFloat(pValue);
  2053. else if (pName.equalsIgnoreCase("AltGameExponentSp")) ALT_GAME_EXPONENT_SP = Float.parseFloat(pValue);
  2054. else if (pName.equalsIgnoreCase("AllowClassMasters")) ALLOW_CLASS_MASTERS = Boolean.parseBoolean(pValue);
  2055. else if (pName.equalsIgnoreCase("AltGameFreights")) ALT_GAME_FREIGHTS = Boolean.parseBoolean(pValue);
  2056. else if (pName.equalsIgnoreCase("AltGameFreightPrice")) ALT_GAME_FREIGHT_PRICE = Integer.parseInt(pValue);
  2057. else if (pName.equalsIgnoreCase("AltPartyRange")) ALT_PARTY_RANGE = Integer.parseInt(pValue);
  2058. else if (pName.equalsIgnoreCase("AltPartyRange2")) ALT_PARTY_RANGE2 = Integer.parseInt(pValue);
  2059. else if (pName.equalsIgnoreCase("CraftingEnabled")) IS_CRAFTING_ENABLED = Boolean.parseBoolean(pValue);
  2060. else if (pName.equalsIgnoreCase("LifeCrystalNeeded")) LIFE_CRYSTAL_NEEDED = Boolean.parseBoolean(pValue);
  2061. else if (pName.equalsIgnoreCase("SpBookNeeded")) SP_BOOK_NEEDED = Boolean.parseBoolean(pValue);
  2062. else if (pName.equalsIgnoreCase("AutoLoot")) AUTO_LOOT = Boolean.parseBoolean(pValue);
  2063. else if (pName.equalsIgnoreCase("AutoLootHerbs")) AUTO_LOOT_HERBS = Boolean.parseBoolean(pValue);
  2064. else if (pName.equalsIgnoreCase("AltKarmaPlayerCanBeKilledInPeaceZone")) ALT_GAME_KARMA_PLAYER_CAN_BE_KILLED_IN_PEACEZONE = Boolean.parseBoolean(pValue);
  2065. else if (pName.equalsIgnoreCase("AltKarmaPlayerCanShop")) ALT_GAME_KARMA_PLAYER_CAN_SHOP = Boolean.parseBoolean(pValue);
  2066. else if (pName.equalsIgnoreCase("AltKarmaPlayerCanUseGK")) ALT_GAME_KARMA_PLAYER_CAN_USE_GK = Boolean.parseBoolean(pValue);
  2067. else if (pName.equalsIgnoreCase("AltKarmaPlayerCanTeleport")) ALT_GAME_KARMA_PLAYER_CAN_TELEPORT = Boolean.parseBoolean(pValue);
  2068. else if (pName.equalsIgnoreCase("AltKarmaPlayerCanTrade")) ALT_GAME_KARMA_PLAYER_CAN_TRADE = Boolean.parseBoolean(pValue);
  2069. else if (pName.equalsIgnoreCase("AltKarmaPlayerCanUseWareHouse")) ALT_GAME_KARMA_PLAYER_CAN_USE_WAREHOUSE = Boolean.parseBoolean(pValue);
  2070. else if (pName.equalsIgnoreCase("AltCastleForDawn")) ALT_GAME_CASTLE_DAWN = Boolean.parseBoolean(pValue);
  2071. else if (pName.equalsIgnoreCase("AltCastleForDusk")) ALT_GAME_CASTLE_DUSK = Boolean.parseBoolean(pValue);
  2072. else if (pName.equalsIgnoreCase("AltRequireClanCastle")) ALT_GAME_REQUIRE_CLAN_CASTLE = Boolean.parseBoolean(pValue);
  2073. else if (pName.equalsIgnoreCase("AltFreeTeleporting")) ALT_GAME_FREE_TELEPORT = Boolean.parseBoolean(pValue);
  2074. else if (pName.equalsIgnoreCase("AltSubClassWithoutQuests")) ALT_GAME_SUBCLASS_WITHOUT_QUESTS = Boolean.parseBoolean(pValue);
  2075. //else if (pName.equalsIgnoreCase("AltNewCharAlwaysIsNewbie")) ALT_GAME_NEW_CHAR_ALWAYS_IS_NEWBIE = Boolean.parseBoolean(pValue);
  2076. else if (pName.equalsIgnoreCase("AltMembersCanWithdrawFromClanWH")) ALT_MEMBERS_CAN_WITHDRAW_FROM_CLANWH = Boolean.parseBoolean(pValue);
  2077. else if (pName.equalsIgnoreCase("DwarfRecipeLimit")) DWARF_RECIPE_LIMIT = Integer.parseInt(pValue);
  2078. else if (pName.equalsIgnoreCase("CommonRecipeLimit")) COMMON_RECIPE_LIMIT = Integer.parseInt(pValue);
  2079. //ChampionMobs L2JMOD
  2080. else if (pName.equalsIgnoreCase("ChampionEnable")) L2JMOD_CHAMPION_ENABLE = Boolean.parseBoolean(pValue);
  2081. else if (pName.equalsIgnoreCase("ChampionFrequency")) L2JMOD_CHAMPION_FREQUENCY = Integer.parseInt(pValue);
  2082. else if (pName.equalsIgnoreCase("ChampionMinLevel")) L2JMOD_CHAMP_MIN_LVL = Integer.parseInt(pValue);
  2083. else if (pName.equalsIgnoreCase("ChampionMaxLevel")) L2JMOD_CHAMP_MAX_LVL = Integer.parseInt(pValue);
  2084. else if (pName.equalsIgnoreCase("ChampionHp")) L2JMOD_CHAMPION_HP = Integer.parseInt(pValue);
  2085. else if (pName.equalsIgnoreCase("ChampionHpRegen")) L2JMOD_CHAMPION_HP_REGEN = Float.parseFloat(pValue);
  2086. else if (pName.equalsIgnoreCase("ChampionRewards")) L2JMOD_CHAMPION_REWARDS = Integer.parseInt(pValue);
  2087. else if (pName.equalsIgnoreCase("ChampionAdenasRewards")) L2JMOD_CHAMPION_ADENAS_REWARDS = Integer.parseInt(pValue);
  2088. else if (pName.equalsIgnoreCase("ChampionAtk")) L2JMOD_CHAMPION_ATK = Float.parseFloat(pValue);
  2089. else if (pName.equalsIgnoreCase("ChampionSpdAtk")) L2JMOD_CHAMPION_SPD_ATK = Float.parseFloat(pValue);
  2090. else if (pName.equalsIgnoreCase("ChampionRewardLowerLvlItemChance")) L2JMOD_CHAMPION_REWARD_LOWER_LVL_ITEM_CHANCE = Integer.parseInt(pValue);
  2091. else if (pName.equalsIgnoreCase("ChampionRewardHigherLvlItemChance")) L2JMOD_CHAMPION_REWARD_HIGHER_LVL_ITEM_CHANCE = Integer.parseInt(pValue);
  2092. else if (pName.equalsIgnoreCase("ChampionRewardItemID")) L2JMOD_CHAMPION_REWARD_ID = Integer.parseInt(pValue);
  2093. else if (pName.equalsIgnoreCase("ChampionRewardItemQty")) L2JMOD_CHAMPION_REWARD_QTY = Integer.parseInt(pValue);
  2094. // L2JMOD Wedding System
  2095. else if (pName.equalsIgnoreCase("AllowWedding")) L2JMOD_ALLOW_WEDDING = Boolean.parseBoolean(pValue);
  2096. else if (pName.equalsIgnoreCase("WeddingPrice")) L2JMOD_WEDDING_PRICE = Integer.parseInt(pValue);
  2097. else if (pName.equalsIgnoreCase("WeddingPunishInfidelity")) L2JMOD_WEDDING_PUNISH_INFIDELITY = Boolean.parseBoolean(pValue);
  2098. else if (pName.equalsIgnoreCase("WeddingTeleport")) L2JMOD_WEDDING_TELEPORT = Boolean.parseBoolean(pValue);
  2099. else if (pName.equalsIgnoreCase("WeddingTeleportPrice")) L2JMOD_WEDDING_TELEPORT_PRICE = Integer.parseInt(pValue);
  2100. else if (pName.equalsIgnoreCase("WeddingTeleportDuration")) L2JMOD_WEDDING_TELEPORT_DURATION = Integer.parseInt(pValue);
  2101. else if (pName.equalsIgnoreCase("WeddingAllowSameSex")) L2JMOD_WEDDING_SAMESEX = Boolean.parseBoolean(pValue);
  2102. else if (pName.equalsIgnoreCase("WeddingFormalWear")) L2JMOD_WEDDING_FORMALWEAR = Boolean.parseBoolean(pValue);
  2103. else if (pName.equalsIgnoreCase("WeddingDivorceCosts")) L2JMOD_WEDDING_DIVORCE_COSTS = Integer.parseInt(pValue);
  2104. else if (pName.equalsIgnoreCase("TvTEventEnabled")) TVT_EVENT_ENABLED = Boolean.parseBoolean(pValue);
  2105. else if (pName.equalsIgnoreCase("TvTEventInterval")) TVT_EVENT_INTERVAL = pValue.split(",");
  2106. else if (pName.equalsIgnoreCase("TvTEventParticipationTime")) TVT_EVENT_PARTICIPATION_TIME = Integer.parseInt(pValue);
  2107. else if (pName.equalsIgnoreCase("TvTEventRunningTime")) TVT_EVENT_RUNNING_TIME = Integer.parseInt(pValue);
  2108. else if (pName.equalsIgnoreCase("TvTEventParticipationNpcId")) TVT_EVENT_PARTICIPATION_NPC_ID = Integer.parseInt(pValue);
  2109. // L2JMOD Warehouse Sorting
  2110. else if (pName.equalsIgnoreCase("EnableWarehouseSortingClan")) L2JMOD_ENABLE_WAREHOUSESORTING_CLAN = Boolean.parseBoolean(pValue);
  2111. else if (pName.equalsIgnoreCase("EnableWarehouseSortingPrivate")) L2JMOD_ENABLE_WAREHOUSESORTING_PRIVATE = Boolean.parseBoolean(pValue);
  2112. else if (pName.equalsIgnoreCase("EnableWarehouseSortingFreight")) L2JMOD_ENABLE_WAREHOUSESORTING_FREIGHT = Boolean.parseBoolean(pValue);
  2113. // L2JMod Mana potion
  2114. else if (pName.equalsIgnoreCase("EnableManaPotionSupport")) L2JMOD_ENABLE_MANA_POTIONS_SUPPORT = Boolean.parseBoolean(pValue);
  2115. // PvP settings
  2116. else if (pName.equalsIgnoreCase("MinKarma")) KARMA_MIN_KARMA = Integer.parseInt(pValue);
  2117. else if (pName.equalsIgnoreCase("MaxKarma")) KARMA_MAX_KARMA = Integer.parseInt(pValue);
  2118. else if (pName.equalsIgnoreCase("XPDivider")) KARMA_XP_DIVIDER = Integer.parseInt(pValue);
  2119. else if (pName.equalsIgnoreCase("BaseKarmaLost")) KARMA_LOST_BASE = Integer.parseInt(pValue);
  2120. else if (pName.equalsIgnoreCase("CanGMDropEquipment")) KARMA_DROP_GM = Boolean.parseBoolean(pValue);
  2121. else if (pName.equalsIgnoreCase("AwardPKKillPVPPoint")) KARMA_AWARD_PK_KILL = Boolean.parseBoolean(pValue);
  2122. else if (pName.equalsIgnoreCase("MinimumPKRequiredToDrop")) KARMA_PK_LIMIT = Integer.parseInt(pValue);
  2123. else if (pName.equalsIgnoreCase("PvPVsNormalTime")) PVP_NORMAL_TIME = Integer.parseInt(pValue);
  2124. else if (pName.equalsIgnoreCase("PvPVsPvPTime")) PVP_PVP_TIME = Integer.parseInt(pValue);
  2125. else if (pName.equalsIgnoreCase("GlobalChat")) DEFAULT_GLOBAL_CHAT = pValue;
  2126. else if (pName.equalsIgnoreCase("TradeChat")) DEFAULT_TRADE_CHAT = pValue;
  2127. else if (pName.equalsIgnoreCase("MenuStyle")) GM_ADMIN_MENU_STYLE = pValue;
  2128. else return false;
  2129. return true;
  2130. }
  2131. // it has no instances
  2132. private Config() {}
  2133. /**
  2134. * Save hexadecimal ID of the server in the properties file.
  2135. * @param string (String) : hexadecimal ID of the server to store
  2136. * @see HEXID_FILE
  2137. * @see saveHexid(String string, String fileName)
  2138. * @link LoginServerThread
  2139. */
  2140. public static void saveHexid(int serverId, String string)
  2141. {
  2142. Config.saveHexid(serverId, string, HEXID_FILE);
  2143. }
  2144. /**
  2145. * Save hexadecimal ID of the server in the properties file.
  2146. * @param hexId (String) : hexadecimal ID of the server to store
  2147. * @param fileName (String) : name of the properties file
  2148. */
  2149. public static void saveHexid(int serverId, String hexId, String fileName)
  2150. {
  2151. try
  2152. {
  2153. Properties hexSetting = new Properties();
  2154. File file = new File(fileName);
  2155. //Create a new empty file only if it doesn't exist
  2156. file.createNewFile();
  2157. OutputStream out = new FileOutputStream(file);
  2158. hexSetting.setProperty("ServerID",String.valueOf(serverId));
  2159. hexSetting.setProperty("HexID",hexId);
  2160. hexSetting.store(out,"the hexID to auth into login");
  2161. out.close();
  2162. }
  2163. catch (Exception e)
  2164. {
  2165. _log.warning(StringUtil.concat("Failed to save hex id to ", fileName, " File."));
  2166. e.printStackTrace();
  2167. }
  2168. }
  2169. }