Character.properties 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761
  1. # ---------------------------------------------------------------------------
  2. # Alternative Character Settings
  3. # ---------------------------------------------------------------------------
  4. # This properties file is solely for the purpose of Character modifications that directly influence them.
  5. # The defaults are set to be retail-like. If you modify any of these settings your server will deviate from being retail-like.
  6. # Warning:
  7. # Please take extreme caution when changing anything. Also please understand what you are changing before you do so on a live server.
  8. # ---------------------------------------------------------------------------
  9. # AccessLevel
  10. # ---------------------------------------------------------------------------
  11. # This option will set the default AccessLevel for MasterAccess.
  12. # Please be careful with this setting. Characters set to this AccessLevel will have the right to execute every AdminCommand in game.
  13. # Default: 127 (Maximum value: 255)
  14. MasterAccessLevel = 127
  15. # Name color for those matching the above MasterAccess AccessLevel.
  16. # Default: 00CCFF
  17. MasterNameColor = 00CCFF
  18. # Title color for those matching the above MasterAccess AccessLevel.
  19. # Default: 00CCFF
  20. MasterTitleColor = 00CCFF
  21. # ---------------------------------------------------------------------------
  22. # Statistics
  23. # ---------------------------------------------------------------------------
  24. # This option, if enabled, will force a character to de-level if the characters' experience is below their level after losing experience on death. If this is set to False, the character will not de-level even if their Experience is below their level after death.
  25. # Default: True
  26. Delevel = True
  27. # This option enable check for all player skills for skill level.
  28. # If player level is lower than skill learn level - 9, skill level is decreased to next possible level.
  29. # If there is no possible level, skill is removed from player.
  30. DecreaseSkillOnDelevel = True
  31. # Weight limit multiplier. Example: Setting this to 5 will give players 5x the normal weight limit.
  32. # Default: 1
  33. AltWeightLimit = 1
  34. # Run speed modifier. Example: Setting this to 5 will give players +5 to their running speed.
  35. # Default: 0
  36. RunSpeedBoost = 0
  37. # Chance of receiving the Death Penalty debuff when killed by a mob.
  38. # Default: 20
  39. DeathPenaltyChance = 20
  40. # Percent of HP, MP, and CP which is restored on character revival.
  41. # Use 0 to disable restore
  42. # Default: 0, 65, 0
  43. RespawnRestoreCP = 0
  44. RespawnRestoreHP = 65
  45. RespawnRestoreMP = 0
  46. # Percent of HP, MP, and CP regeneration for players.
  47. # Example: Setting HP to 10 will cause player HP to regenerate 90% slower than normal.
  48. # Default: 100, 100, 100
  49. HpRegenMultiplier = 100
  50. MpRegenMultiplier = 100
  51. CpRegenMultiplier = 100
  52. # Decrease CP by 10 every normal hit a player do
  53. # Default: False
  54. AltGameTiredness = False
  55. # ---------------------------------------------------------------------------
  56. # Skills & Effects
  57. # ---------------------------------------------------------------------------
  58. # When this is enabled it will read the "SkillDurationList" option.
  59. # This will basically overlook the "time = x" in the skill XMLs so that you do not need to modify the L2J Datapack XMLs to increase skill duration.
  60. # Default: False
  61. EnableModifySkillDuration = False
  62. # Skill duration list
  63. # Format: skillid,newtime;skillid2,newtime2...
  64. # Example:
  65. # This enable 1h(3600) duration for songs, the "\"indicates new line,
  66. # and is only set for formating purposes.
  67. # SkillDurationList = 264,3600;265,3600;266,3600;267,3600;268,3600;\
  68. # 269,3600;270,3600;304,3600;305,1200;306,3600;308,3600;349,3600;\
  69. # 363,3600;364,3600
  70. SkillDurationList =
  71. # When this is enabled it will read the "SkillReuseList" option.
  72. EnableModifySkillReuse = False
  73. # Format: skillid,newDelayTime;skillid,newDelayTime2 (See skillDuration for examples)
  74. SkillReuseList =
  75. # If it's true all class skills will be delivered upon level up and login.
  76. # Default: False
  77. AutoLearnSkills = False
  78. # If it's true skills from forgotten scrolls will be delivered upon level up and login, require AutoLearnSkills.
  79. # Default: False
  80. AutoLearnForgottenScrollSkills = False
  81. # Default: False
  82. AutoLootHerbs = False
  83. # Maximum number of buffs and songs/dances.
  84. # Remember that Divine Inspiration will give players 4 additional buff slots on top of the number specified in "maxbuffamount".
  85. # Default: 20, 12, 12
  86. MaxBuffAmount = 20
  87. MaxTriggeredBuffAmount = 12
  88. MaxDanceAmount = 12
  89. # Allow players to cancel dances/songs via Alt+click on buff icon
  90. # Default: False
  91. DanceCancelBuff = False
  92. # This option enables/disables additional MP consume for dances and songs.
  93. # Default: True
  94. DanceConsumeAdditionalMP = True
  95. # This option allows a player to automatically learn Divine Inspiration.
  96. # This is not included in AutoLearnSkills above.
  97. # Default: False
  98. AutoLearnDivineInspiration = False
  99. # This is to allow a character to be canceled during bow use, skill use, or both.
  100. # Available Options: bow, cast, all
  101. # Default: cast
  102. AltGameCancelByHit = cast
  103. # If True, when effects of the same stack group are used, lesser effects will be canceled if stronger effects are used. Otherwise stacking of things like multiple levels of the same buff will be allowed.
  104. # Default: True
  105. CancelLesserEffect = True
  106. # This option, if enabled, will allow magic to fail, and if disabled magic damage will always succeed with a 100% chance.
  107. # Default: True
  108. MagicFailures = True
  109. # Protection from aggressive mobs after getting up from fake death.
  110. # The value is specified in seconds.
  111. # Default: 0
  112. PlayerFakeDeathUpProtection = 0
  113. # This option is to enable or disable the storage of buffs/debuffs among other effects.
  114. # Default: True
  115. StoreSkillCooltime = True
  116. # This option is to enable or disable the storage of buffs/debuffs among other effects during
  117. # a subclass change
  118. # Default: False
  119. SubclassStoreSkillCooltime = False
  120. # These are alternative rules for shields.
  121. # If True and they block:
  122. # The damage is powerAtk-shieldDef,
  123. # If False and they block:
  124. # The damage is powerAtk / (shieldDef + powerDef)
  125. # Default: False
  126. AltShieldBlocks = False
  127. # This is the percentage for perfect shield block rate.
  128. # DEFAULT NEEDS TO BE VERIFIED, MUST BE CHANGED HERE AND IN CONFIG.JAVA IF NOT CORRECT
  129. # Default: 10
  130. AltPerfectShieldBlockRate = 10
  131. # ---------------------------------------------------------------------------
  132. # Class, Sub-class and skill learning options
  133. # ---------------------------------------------------------------------------
  134. # Allow use of Event Managers for changing occupation without any quests.
  135. # Default: False
  136. AllowClassMasters = False
  137. # ConfigClassMaster=1;[57(100000)];[];2;[57(1000000)];[];3;[57(10000000)],[5575(1000000)];[6622(1)]
  138. # 1st occupation change for 100.000 Adena (item id 57)
  139. # 2nd occupation change for 1.000.0000 Adena (item id 57)
  140. # 3rd occupation change for 10.000.0000 Adena (item id 57) and 1.000.000 Ancient Adena (item id 5575)
  141. # on 3rd occupation change player will be rewarded with 1 Book of Giants (item id 6622)
  142. # ConfigClassMaster=1;[];[];2;[];[];3;[];[]
  143. # 1st, 2nd, 3rd occupation change for free, without rewards.
  144. # ConfigClassMaster=1;[];[];2;[];[]
  145. # Allow only first and second change.
  146. ConfigClassMaster = 1;[];[];2;[];[];3;[];[]
  147. # Class Masters will allow changing to any occupation on any level inside class tree
  148. # For example, Dwarven Fighter will be able to advance to:
  149. # Artisan, Scavenger, Warsmith, Bounty Hunter, Maestro, Fortune Seeker.
  150. # But Warsmith will be able to change only to Maestro.
  151. # Default = False
  152. AllowEntireTree = False
  153. # When character reach levels 20,40,76 he will receive tutorial page
  154. # with list of the all possible variants, and can select and immediately
  155. # change to the new occupation, or decide to choose later (on next login).
  156. # Can be used with or without classic Class Masters.
  157. # Default = False
  158. AlternateClassMaster = False
  159. # Require life crystal needed to learn clan skills.
  160. # Default: True
  161. LifeCrystalNeeded = True
  162. # Require book needed to enchant skills.
  163. # Default: True
  164. EnchantSkillSpBookNeeded = True
  165. # Require spell book needed to learn Divine Inspiration.
  166. # Default: True
  167. DivineInspirationSpBookNeeded = True
  168. # When enabled, the following will be true:
  169. # All classes can learn all skills.
  170. # Skills of another class costs x2 SP to learn.
  171. # Skills of another race costs x2 SP to learn.
  172. # Skills of fighters/mages costs x3 SP to learn.
  173. # Default: False
  174. AltGameSkillLearn = False
  175. # Allow player to sub-class without checking for unique quest items.
  176. # Default: False
  177. AltSubClassWithoutQuests = False
  178. # Allow player to add/change subclass at all village master
  179. # Default: False
  180. AltSubclassEverywhere = False
  181. # Allow player to learn transformations without quest.
  182. # Default: False
  183. AltTransformationWithoutQuest = False
  184. # Fee to remove Transfer skills.
  185. # Default: 10000000
  186. FeeDeleteTransferSkills = 10000000
  187. # Fee to remove Sub-Class skills.
  188. # Default: 10000000
  189. FeeDeleteSubClassSkills = 10000000
  190. # ---------------------------------------------------------------------------
  191. # Summons configuration
  192. # ---------------------------------------------------------------------------
  193. # This option is to enable or disable the storage of buffs/debuffs among other effects on pets/invocations
  194. # Default: True
  195. SummonStoreSkillCooltime = True
  196. # Servitor summons on login if player had it summoned before logout
  197. # Default: True
  198. RestoreServitorOnReconnect = True
  199. # Pet summons on login if player had it summoned before logout
  200. # Default: True
  201. RestorePetOnReconnect = True
  202. # ---------------------------------------------------------------------------
  203. # Vitality configuration
  204. # ---------------------------------------------------------------------------
  205. # Enables vitality system
  206. # Default: True
  207. EnableVitality = True
  208. # Do you want players to recover their vitality when they reconnect?
  209. # This is calculated with the time they've been offline
  210. # Actual Time - Last Time Online / 1000 x rate recovery on reconnect
  211. # Notes:
  212. # Works only if EnableVitality = True
  213. # Default: True
  214. RecoverVitalityOnReconnect = True
  215. # Option to set a lower vitality at character creation.
  216. # Vitality needs to be enabled, and startingpoints needs to be lower
  217. # than max-vitality points.
  218. # Default: 20000
  219. StartingVitalityPoints = 20000
  220. # ---------------------------------------------------------------------------
  221. # Limits
  222. # ---------------------------------------------------------------------------
  223. # Maximum Exp Bonus.
  224. # Default: 3.5
  225. MaxExpBonus = 3.5
  226. # Maximum character running speed.
  227. # Default: 300
  228. MaxRunSpeed = 300
  229. # Maximum character Physical Critical Rate. (10 = 1%)
  230. # Default: 500
  231. MaxPCritRate = 500
  232. # Maximum character Magic Critical Rate. (10 = 1%)
  233. # Default: 200
  234. MaxMCritRate = 200
  235. # Maximum character Attack Speed.
  236. # Default: 1500
  237. MaxPAtkSpeed = 1500
  238. # Maximum character Cast Speed.
  239. # Default: 1999
  240. MaxMAtkSpeed = 1999
  241. # Maximum character Evasion.
  242. # Default: 250
  243. MaxEvasion = 250
  244. # Minimum and maximum debuff land rate by default.
  245. # This will affect all skills except those with min and max chance defined in the skills XML
  246. # Default: 10% for min, 90% for max.
  247. MinDebuffChance = 10
  248. MaxDebuffChance = 90
  249. # Maximum number of allowed subclasses for every player.
  250. # Default: 3
  251. MaxSubclass = 3
  252. # Starting level for subclasses.
  253. # Default: 40
  254. BaseSubclassLevel = 40
  255. # Maximum subclass level.
  256. # Default: 80
  257. MaxSubclassLevel = 80
  258. # Maximum number of allowed slots for Private Stores Sell.
  259. # Other means all the other races aside from Dwarf.
  260. # Default: 4, 3
  261. MaxPvtStoreSellSlotsDwarf = 4
  262. MaxPvtStoreSellSlotsOther = 3
  263. # Maximum number of allowed slots for Private Stores Buy.
  264. # Other means all the other races aside from Dwarf.
  265. # Default: 5, 4
  266. MaxPvtStoreBuySlotsDwarf = 5
  267. MaxPvtStoreBuySlotsOther = 4
  268. # This will control the inventory space limit (NOT WEIGHT LIMIT).
  269. # Default: 80, 100, 250
  270. MaximumSlotsForNoDwarf = 80
  271. MaximumSlotsForDwarf = 100
  272. MaximumSlotsForGMPlayer = 250
  273. MaximumSlotsForQuestItems = 100
  274. # This will control a character's warehouse capacity.
  275. # Notes:
  276. # This must be LESS then 300 or the client will crash.
  277. # Default: 120, 100, 200, 20
  278. MaximumWarehouseSlotsForDwarf = 120
  279. MaximumWarehouseSlotsForNoDwarf = 100
  280. MaximumWarehouseSlotsForClan = 200
  281. # Freight
  282. # Maximum items that can be placed in Freight
  283. # Default: 200
  284. MaximumFreightSlots = 200
  285. # The priece for each item that's deposited
  286. # Default: 1000
  287. FreightPriece = 1000
  288. # Npc talk blockage. When a player talks to a NPC, he must wait some secs
  289. # before being able to walk again. In seconds
  290. # Default: 3
  291. # Set to 0 to disable it
  292. NpcTalkBlockingTime = 3
  293. # ---------------------------------------------------------------------------
  294. # Enchanting
  295. # ---------------------------------------------------------------------------
  296. # This controls the chance an item has to break if it is enchanted.
  297. # This chance is in %, so if you set this to 100%, enchants will always succeed.
  298. # DEFAULT NEEDS TO BE VERIFIED, MUST BE CHANGED HERE AND IN CONFIG.JAVA IF NOT CORRECT
  299. # Default: 66,66,66
  300. EnchantChanceWeapon = 66
  301. EnchantChanceArmor = 66
  302. EnchantChanceJewelry = 66
  303. EnchantChanceElementStone = 50
  304. EnchantChanceElementCrystal = 30
  305. EnchantChanceElementJewel = 20
  306. EnchantChanceElementEnergy = 10
  307. # DEFAULT NEEDS TO BE VERIFIED, MUST BE CHANGED HERE AND IN CONFIG.JAVA IF NOT CORRECT
  308. # Default: 66,66,66
  309. BlessedEnchantChanceWeapon = 66
  310. BlessedEnchantChanceArmor = 66
  311. BlessedEnchantChanceJewelry = 66
  312. # This is the enchant limit, if set to 0, there will be no limit.
  313. # Example: If this is set to 10, the maximum enchant will be 10.
  314. # Default: 0, 0, 0
  315. EnchantMaxWeapon = 0
  316. EnchantMaxArmor = 0
  317. EnchantMaxJewelry = 0
  318. # This is the maximum safe enchant.
  319. # Notes:
  320. # If EnchantSafeMax is set to for 8 the item will be safely enchanted to 8 regardless of the max enchant value set above.
  321. # EnchantSafeMaxFull is for full body armor (upper and lower).
  322. # These values should always be greater than 0.
  323. # Default: 3, 4
  324. EnchantSafeMax = 3
  325. EnchantSafeMaxFull = 4
  326. # List of non-enchantable items.
  327. # Currently apprentice, travelers weapons and Pailaka items
  328. # Default: 7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,13293,13294,13296
  329. EnchantBlackList = 7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,13293,13294,13296
  330. # ---------------------------------------------------------------------------
  331. # Augmenting
  332. # ---------------------------------------------------------------------------
  333. # These control the chance to get a skill in the augmentation process.
  334. # Default: 15, 30, 45, 60
  335. AugmentationNGSkillChance = 15
  336. AugmentationMidSkillChance = 30
  337. AugmentationHighSkillChance = 45
  338. AugmentationTopSkillChance = 60
  339. # Accessory augmentation skills currently disabled
  340. AugmentationAccSkillChance = 0
  341. # This controls the chance to get a base stat modifier in the augmentation process.
  342. # Notes:
  343. # This has no dependancy on the grade of Life Stone.
  344. # Default: 1
  345. AugmentationBaseStatChance = 1
  346. # These control the chance to get a glow effect in the augmentation process.
  347. # Notes:
  348. # No/Mid Grade Life Stone can not have glow effect if you do not get a skill or base stat modifier.
  349. # Default: 0, 40, 70, 100
  350. AugmentationNGGlowChance = 0
  351. AugmentationMidGlowChance = 40
  352. AugmentationHighGlowChance = 70
  353. AugmentationTopGlowChance = 100
  354. # List of non-augmentable items, currently contains only Grand Boss jewels
  355. # Shadow, common, time-limited, hero, pvp, wear items are hardcoded, as well as all etcitems.
  356. # Rods can't be augmented too.
  357. # Default: 6656,6657,6658,6659,6660,6661,6662,8191,10170,10314,13740,13741,13742,13743,13744,13745,13746,13747,13748,14592,14593,14594,14595,14596,14597,14598,14599,14600,14664,14665,14666,14667,14668,14669,14670,14671,14672,14801,14802,14803,14804,14805,14806,14807,14808,14809,15282,15283,15284,15285,15286,15287,15288,15289,15290,15291,15292,15293,15294,15295,15296,15297,15298,15299,16025,16026,21712,22173,22174,22175
  358. AugmentationBlackList = 6656,6657,6658,6659,6660,6661,6662,8191,10170,10314,13740,13741,13742,13743,13744,13745,13746,13747,13748,14592,14593,14594,14595,14596,14597,14598,14599,14600,14664,14665,14666,14667,14668,14669,14670,14671,14672,14801,14802,14803,14804,14805,14806,14807,14808,14809,15282,15283,15284,15285,15286,15287,15288,15289,15290,15291,15292,15293,15294,15295,15296,15297,15298,15299,16025,16026,21712,22173,22174,22175
  359. # ---------------------------------------------------------------------------
  360. # Karma
  361. # ---------------------------------------------------------------------------
  362. # Karma player can be killed in Peace zone.
  363. # Default: False
  364. AltKarmaPlayerCanBeKilledInPeaceZone = False
  365. # Karma player can use GateKeeper.
  366. # Default: False
  367. AltKarmaPlayerCanUseGK = False
  368. # Karma player can use escape and recall skills.
  369. # Default: True
  370. AltKarmaPlayerCanTeleport = True
  371. # Karma player can shop.
  372. # Default: True
  373. AltKarmaPlayerCanShop = True
  374. # Karma player can trade.
  375. # Default: True
  376. AltKarmaPlayerCanTrade = True
  377. # Karma player can use warehouse.
  378. # Default: True
  379. AltKarmaPlayerCanUseWareHouse = True
  380. # ---------------------------------------------------------------------------
  381. # Fame
  382. # ---------------------------------------------------------------------------
  383. # The maximum number of Fame points a player can have
  384. # Default: 100000
  385. MaxPersonalFamePoints = 100000
  386. # How frequently the player gets Fame points while in a Fortress Siege zone
  387. # Default: 300s (5 min)
  388. FortressZoneFameTaskFrequency = 300
  389. # How much Fame aquired while in a Fortress Siege Zone
  390. # Default: 31
  391. FortressZoneFameAquirePoints = 31
  392. # How frequently the player gets Fame points while in a Castle Siege zone
  393. # Default: 300s (5 min)
  394. CastleZoneFameTaskFrequency = 300
  395. # How much Fame aquired while in a Castle Siege Zone
  396. # Default: 125
  397. CastleZoneFameAquirePoints = 125
  398. # Dead players can receive fame.
  399. # Default: True
  400. FameForDeadPlayers = True
  401. # ---------------------------------------------------------------------------
  402. # Crafting
  403. # ---------------------------------------------------------------------------
  404. # Option to enable or disable crafting.
  405. # Default: True
  406. CraftingEnabled = True
  407. # Enable/Disable crafting of Masterwork items (If set to true, masterwork items can be created when crafting).
  408. # Default: True
  409. CraftMasterwork = True
  410. # Limits for recipes
  411. # Default: 50, 50
  412. DwarfRecipeLimit = 50
  413. CommonRecipeLimit = 50
  414. # Alternative crafting rules. If enabled, the following will be true:
  415. # Crafting takes time.
  416. # Players get EXP/SP for crafting.
  417. # Default: False
  418. AltGameCreation = False
  419. # Crafting Time multiplier.
  420. # The higher the number, the more time the crafting process takes. XP/SP reward increases with time.
  421. # Default: 1
  422. AltGameCreationSpeed = 1
  423. # Additional crafting XP/SP rate multiplier.
  424. # Default: 1, 1
  425. AltGameCreationXpRate = 1
  426. AltGameCreationSpRate = 1
  427. # Additional XP/SP rate multiplier when creating rare item.
  428. # Default: 2
  429. AltGameCreationRareXpSpRate = 2
  430. # If set to False, blacksmiths don't take recipes from players inventory when crafting.
  431. # Default: True
  432. AltBlacksmithUseRecipes = True
  433. # Store/Restore Dwarven Manufacture list
  434. # Keep manufacture shoplist after relog
  435. # Default: False
  436. StoreRecipeShopList = False
  437. # ---------------------------------------------------------------------------
  438. # Clan
  439. # ---------------------------------------------------------------------------
  440. # Number of days you have to wait before joining another clan.
  441. # Default: 1
  442. DaysBeforeJoinAClan = 1
  443. # Number of days you have to wait before creating a new clan.
  444. # Default: 10
  445. DaysBeforeCreateAClan = 10
  446. # Number of days it takes to dissolve a clan.
  447. # Default: 7
  448. DaysToPassToDissolveAClan = 7
  449. # Number of days before joining a new alliance when clan voluntarily leave an alliance.
  450. # DEFAULT NEEDS TO BE VERIFIED, MUST BE CHANGED HERE AND IN CONFIG.JAVA IF NOT CORRECT
  451. # Default: 1
  452. DaysBeforeJoinAllyWhenLeaved = 1
  453. # Number of days before joining a new alliance when clan was dismissed from an alliance.
  454. # DEFAULT NEEDS TO BE VERIFIED, MUST BE CHANGED HERE AND IN CONFIG.JAVA IF NOT CORRECT
  455. # Default: 1
  456. DaysBeforeJoinAllyWhenDismissed = 1
  457. # Number of days before accepting a new clan for alliance when clan was dismissed from an alliance.
  458. # DEFAULT NEEDS TO BE VERIFIED, MUST BE CHANGED HERE AND IN CONFIG.JAVA IF NOT CORRECT
  459. # Default: 1
  460. DaysBeforeAcceptNewClanWhenDismissed = 1
  461. # Number of days before creating a new alliance after dissolving an old alliance.
  462. # DEFAULT NEEDS TO BE VERIFIED, MUST BE CHANGED HERE AND IN CONFIG.JAVA IF NOT CORRECT
  463. # Default: 1
  464. DaysBeforeCreateNewAllyWhenDissolved = 1
  465. # Maximum number of clans in alliance.
  466. # Default: 3
  467. AltMaxNumOfClansInAlly = 3
  468. # Allow clan members to withdraw from the clan warehouse.
  469. # Default: False
  470. AltMembersCanWithdrawFromClanWH = False
  471. # Remove castle circlets after a clan loses their castle or a player leaves a clan.
  472. # Default: True
  473. RemoveCastleCirclets = True
  474. # Number of members needed to request a clan war.
  475. # Default: 15
  476. AltClanMembersForWar = 15
  477. # ---------------------------------------------------------------------------
  478. # Party
  479. # ---------------------------------------------------------------------------
  480. # CONFUSING(nothing todo with party) -> When you made damage to a mob
  481. # and are inside this range, you will be considered as player to reward.
  482. # Checks for party range to mob to calculate rewards(exp, items).
  483. # Default: 1600
  484. AltPartyRange = 1600
  485. # 1. Used for adena distribution in party
  486. # 2. Used to handle random and by turn party loot
  487. # Default: 1400
  488. AltPartyRange2 = 1400
  489. # If true, when party leader leaves party, next member in party will be the leader.
  490. # If false the party be will dispersed.
  491. # Default: False
  492. AltLeavePartyLeader = False
  493. # ---------------------------------------------------------------------------
  494. # Random
  495. # ---------------------------------------------------------------------------
  496. # This is the amount of adena that a new character starts their character with.
  497. # Default: 0
  498. StartingAdena = 0
  499. # This is the starting level of the new character.
  500. # Default: 1
  501. StartingLevel = 1
  502. # This is the amount of SP that a new character starts their character with.
  503. # Default: 0
  504. StartingSP = 0
  505. # This option, when set to True, will enable automatically picking up items.
  506. # If set False it will force the player to pickup dropped items from mobs.
  507. # This excludes herbs mentioned above and items from Raid/GrandBosses with minions.
  508. # Default: False
  509. AutoLoot = False
  510. # This option, when set to True, will enable automatically picking up items from Raid/GrandBosses with minions.
  511. # If set False it will force the player to pickup dropped items from bosses.
  512. # This excludes herbs mentioned above and items from mobs.
  513. # Default: False
  514. AutoLootRaids = False
  515. # Delay for raid drop items loot privilege
  516. # Require Command Channel , check next option
  517. # Value is in seconds
  518. # Default: 900 (15min)
  519. RaidLootRightsInterval = 900
  520. # Minimal size of Command Channel for apply raid loot privilege
  521. # Default: 45
  522. RaidLootRightsCCSize = 45
  523. # This is the time in seconds that it will take for the player command "/unstuck" to activate.
  524. # Default: 300
  525. UnstuckInterval = 300
  526. # Teleport Watchdog Timeout (seconds)
  527. # Player forced to appear if remain in teleported state longer than timeout
  528. # Does not set too low, recommended value 60s.
  529. # This time is in seconds, leave it at 0 if you want this feature disabled.
  530. # Default: 0
  531. TeleportWatchdogTimeout = 0
  532. # After a player teleports, this is the time the player is protected.
  533. # This time is in seconds, leave it at 0 if you want this feature disabled.
  534. # Retail (Since GE): 600 (10 minutes)
  535. # Default: 600
  536. PlayerSpawnProtection = 600
  537. # Spawn protection should disappear with any action with the exception
  538. # of the item usage from items in this list.
  539. # Format: itemId,itemId,itemId,....
  540. # Default: 0
  541. PlayerSpawnProtectionAllowedItems = 0
  542. # Teleport spawn protection time. It will protect the player in the
  543. # teleport spawn for the given time. 0 to disable feature
  544. PlayerTeleportProtection = 0
  545. # If enabled, players respawn in town on different locations defined in zone.xml for given town.
  546. # If disabled the first spawn location from zone.xml is used.
  547. # Default: True
  548. RandomRespawnInTownEnabled = True
  549. # This will allow a random offset from the base teleport location coordinates based on a maximum offset.
  550. # Default: True
  551. OffsetOnTeleportEnabled = True
  552. # Maximum offset for base teleport location when OffsetOnTeleportEnabled is enabled .
  553. # Default: 50
  554. MaxOffsetOnTeleport = 50
  555. # Restores the player to their previous instance (ie. an instanced area/dungeon) on EnterWorld.
  556. # Default: False
  557. RestorePlayerInstance = False
  558. # Set whether summon skills can be used to summon players inside an instance.
  559. # When enabled individual instances can have summoning disabled in instance xml's.
  560. # DEFAULT NEEDS TO BE VERIFIED, MUST BE CHANGED HERE AND IN CONFIG.JAVA IF NOT CORRECT
  561. # Default: ?
  562. AllowSummonToInstance = True
  563. # This option is to enable or disable the use of in game petitions.
  564. # The MaxPetitionsPerPlayer is the amount of petitions a player can make.
  565. # The MaximumPendingPetitions is the total amount of petitions in the server.
  566. # Note:
  567. # Logically, MaximumPendingPetitions must be higher then MaxPetitionsPerPlayer.
  568. # Default: True, 5, 25
  569. PetitioningAllowed = True
  570. MaxPetitionsPerPlayer = 5
  571. MaxPetitionsPending = 25
  572. # Free teleporting around the world.
  573. # Default: False
  574. AltFreeTeleporting = False
  575. # Allow character deletion after days set below. To disallow character deletion, set this equal to 0.
  576. # Default: 7
  577. DeleteCharAfterDays = 7
  578. # Alternative Xp/Sp rewards, if not 0, then calculated as 2^((mob.level-player.level) / coef). Coef are the 2 numbers set below.
  579. # A few examples for "AltGameExponentXp = 5." and "AltGameExponentSp = 3.":
  580. # diff = 0 (player and mob has the same level), XP bonus rate = 1, SP bonus rate = 1
  581. # diff = 3 (mob is 3 levels above), XP bonus rate = 1.52, SP bonus rate = 2
  582. # diff = 5 (mob is 5 levels above), XP bonus rate = 2, SP bonus rate = 3.17
  583. # diff = -8 (mob is 8 levels below), XP bonus rate = 0.4, SP bonus rate = 0.16
  584. # Default: 0, 0
  585. AltGameExponentXp = 0
  586. AltGameExponentSp = 0
  587. # PARTY XP DISTRIBUTION
  588. # With "auto method" member is cut from Exp/SP distribution when his share is lower than party bonus acquired for him (30% for 2 member party).
  589. # In that case he will not receive any Exp/SP from party and is not counted for party bonus.
  590. # If you don't want to have a cutoff point for party members' XP distribution, set the first option to "none".
  591. # Available Options: auto, level, percentage, none
  592. # Default: level
  593. PartyXpCutoffMethod = level
  594. # This option takes effect when "percentage" method is chosen. Don't use high values for this!
  595. # Default: 3.0
  596. PartyXpCutoffPercent = 3.0
  597. # This option takes effect when "level" method is chosen. Don't use low values for this!
  598. # Default: 20
  599. PartyXpCutoffLevel = 20
  600. # Disable tutorial on new player enter into Game
  601. # Please remember its sometimes important to novice players
  602. # Default: False
  603. DisableTutorial = False
  604. # Expertise penalty
  605. # If disabled, player will not receive penalty for equip higher grade items
  606. # Default: True
  607. ExpertisePenalty = True
  608. # Player can in client define his own key mapping and for save it must be stored server side.
  609. # Disabled until confirmed as working.
  610. # Default: False
  611. StoreCharUiSettings = False
  612. # Character name restriction
  613. # Disallow characters to have a name which contains the words.
  614. # Split them with ",". Example: announcements,announce...
  615. ForbiddenNames = annou,ammou,amnou,anmou,anou,amou
  616. # If enabled, when character in silence (block PMs) mode sends a PM to a character, silence mode no longer blocks this character,
  617. # allowing both characters send each other PMs even with enabled silence mode.
  618. # The exclude list is cleared each time the character goes into silence mode.
  619. SilenceModeExclude = False