Character.properties 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565
  1. #=========================================================================================================================
  2. # Alternative Character Settings
  3. #=========================================================================================================================
  4. # Purpose:
  5. # This properties file is solely for the purpose of Character modifications that directly influence them.
  6. #
  7. # Note:
  8. # The defaults are set to retail, if you modify any of these settings your server will NOT be "retail-like".
  9. #
  10. # Warning:
  11. # Please take extreme caution when changing anything. Also please understand what you change before you do so on
  12. # a live server.
  13. #=========================================================================================================================
  14. #============================================================#
  15. # AccessLevel #
  16. #============================================================#
  17. # This option will set the default AccessLevel for MasterAccess
  18. # Pls be carefully with that. Chars with this AccessLevel have
  19. # right to execute every AdminCommand ingame.
  20. # Default = 127 - Max. 255
  21. MasterAccessLevel = 127
  22. # This option will set the Default NameColor for MasterAccess
  23. MasterNameColor = 00FF00
  24. # This option will set the Default TitleColor for MasterAccess
  25. MasterTitleColor = 00FF00
  26. #============================================================#
  27. # Statistics #
  28. #============================================================#
  29. # This option if enabled will force a character to de-level if
  30. # the characters' Experience is below their level after losing
  31. # experience on death. If this is set to false, the character
  32. # will not de-level even if their Experience is below their
  33. # level after death.
  34. # Retail: true
  35. Delevel = True
  36. # This is a weight limit multiplier, set the default to 1 if you
  37. # want this option disabled.
  38. # Example:
  39. # Setting this to 10 will increase a characters weight
  40. # capacity 10 times the normal. Say normal is 1000, now
  41. # with this option enabled it is 10000.
  42. AltWeightLimit = 1
  43. # This is a run speed modifier, set the default to 0 if you
  44. # want this option disabled.
  45. # Example:
  46. # Setting this to 10 will increase a characters running
  47. # speed by 10. Say normal is 100, now
  48. # with this option enabled it is 110.
  49. RunSpeedBoost = 0
  50. # If killed by a mob, this is the chance that you will get the
  51. # death penalty.
  52. # This value is in percent, to disable this, set it to 0.
  53. # Example:
  54. # Setting it to 100 will make it a 100% chance you get the penalty.
  55. # Retail: 20
  56. DeathPenaltyChance = 20
  57. # Amount of HP, MP, and CP, which is restored on character revival.
  58. # These values are in percent of max, a value of 100 is 100%.
  59. # Example:
  60. # If you set the CP to 100, it will restore 100% of the players
  61. # CP, likewise for the HP and MP.
  62. # Retail: 0, 70, 70
  63. RespawnRestoreCP = 0
  64. RespawnRestoreHP = 70
  65. RespawnRestoreMP = 70
  66. # Percent regeneration from the normal regeneration speed.
  67. # Example:
  68. # 10 for HP will regenerate 90% slower then normal.
  69. # Retail: 100, 100, 100
  70. HpRegenMultiplier = 100
  71. MpRegenMultiplier = 100
  72. CpRegenMultiplier = 100
  73. # Use tiredness (instead of combat points)
  74. # Retail: false
  75. AltGameTiredness = False
  76. #============================================================#
  77. # Skills & Effects #
  78. #============================================================#
  79. # When this is enabled it will read the config "SkillDurationList"
  80. # This will basically overlook the "time= x" in the skill xml's so that you do
  81. # not need to modify the L2J Datapack XML's to increase skill duration.
  82. # Skill duration list:
  83. # Format : skillid,newtime;skillid2,newtime2;....
  84. # Example:
  85. # This enable 1h(3600) duration for songs, the "\"indicates new line,
  86. # and is only set for formating purposes.
  87. # SkillDurationList = 264,3600;265,3600;266,3600;267,3600;268,3600;\
  88. # 269,3600;270,3600;304,3600;305,1200;306,3600;308,3600;349,3600;\
  89. # 363,3600;364,3600
  90. # Retail: false
  91. EnableModifySkillDuration = false
  92. SkillDurationList =
  93. # Enable to modify skill reuse data
  94. EnableModifySkillReuse = false
  95. # Skill reuse list
  96. # Format : skillid,newDelayTime;skillid,newDelayTime2....
  97. SkillReuseList =
  98. # This option is to enable or disable automatic skill learning.
  99. # To enable this option set it to true, and to disable set it to false.
  100. # Retail: false
  101. AutoLearnSkills = False
  102. # This option is to enable or disable automatic herb use (which means auto-pickup herbs).
  103. # To enable this option set it to true, and to disable set it to false.
  104. # Retail: false
  105. AutoLootHerbs = False
  106. # Maximum number of buffs and songs/dances
  107. # (default buffs = 20 + 4 with divine inspiration skill)
  108. # Retail: 20, 12
  109. maxbuffamount = 20
  110. maxdanceamount = 12
  111. # This option allows a player to automatically learn Divine Inspiration.
  112. # this is not included in AutoLearnSkills above.
  113. # Retail: false
  114. AutoLearnDivineInspiration = False
  115. # This is to allow a character to be canceled during bow use, skill use, or both.
  116. # The correct settings to set below are: "bow" or "cast" or "all"
  117. # Retail: cast
  118. AltGameCancelByHit = cast
  119. # If True, when effects of the same stack group are used, lesser
  120. # effects will be canceled if stronger effects are used. New effects
  121. # that are added will be canceled if they are of lesser priority to the old one.
  122. # If False, they will not be canceled, and it will switch to them after the
  123. # stronger one runs out, if the lesser one is still in effect.
  124. # Retail: true
  125. CancelLesserEffect = True
  126. # This option if enabled will allow magic to fail, and if disabled
  127. # magic damage will always succeed with a 100% chance.
  128. # Retail: true
  129. MagicFailures = True
  130. # Player Protection from aggressive mobs after getting up from fake death.
  131. # This is in seconds, set this to 0 to disable his option.
  132. # Retail: 0
  133. PlayerFakeDeathUpProtection = 0
  134. # This option is to enable or disable the storage of buffs/debuffs
  135. # among other effects.
  136. # To enable, set to true, and to disable, set to false.
  137. # Retail: true
  138. StoreSkillCooltime=True
  139. # These are alternative rules for shields -
  140. # If enabled and they block;
  141. # the damage is powerAtk-shieldDef,
  142. # otherwise the if false and they block;
  143. # the damage is powerAttak / (shieldDef + powerDef)
  144. # Retail: false
  145. AltShieldBlocks = False
  146. # This is the rate value for perfect shield block rate.
  147. # Retail: 5
  148. AltPerfectShieldBlockRate = 5
  149. # Allow use of Event Managers for changing occupation without
  150. # any quests needing completion.
  151. # Retail: false
  152. AllowClassMasters = False
  153. # Life crystal needed to learn clan skills
  154. # Retail: true
  155. LifeCrystalNeeded = True
  156. # Spell Book needed to learn skills
  157. # Retail: true
  158. SpBookNeeded = True
  159. # Book needed to enchant skills
  160. # Retail: true
  161. EnchantSkillSpBookNeeded = True
  162. # Alternative skill learn rules:
  163. # - all classes can learn all skills
  164. # - skills of another class costs x2 SP
  165. # - skills of another race costs x2 SP
  166. # - skills of fighters/mages costs x3 SP
  167. # Retail: false
  168. AltGameSkillLearn = False
  169. # Allow player to sub-class addition without checking for unique quest items.
  170. # Retail: false
  171. AltSubClassWithoutQuests = False
  172. #============================================================#
  173. # Limits #
  174. #============================================================#
  175. # Maximum character running speed.
  176. # Retail: 250
  177. MaxRunSpeed = 250
  178. # Maximum character Physical Critical Rate. (10 = 1%)
  179. # Retail: 500
  180. MaxPCritRate = 500
  181. # Maximum character Magic Critical Rate. (10 = 1%)
  182. # Retail: 300
  183. MaxMCritRate = 200
  184. # Maximum character Attack Speed.
  185. # Retail: 1500
  186. MaxPAtkSpeed = 1500
  187. # Maximum character Cast Speed.
  188. # Retail: 1999
  189. MaxMAtkSpeed = 1999
  190. # Maximum character Evasion.
  191. # Retail: 200
  192. MaxEvasion = 200
  193. # Maximum number of allowed subclasses for every player.
  194. # Retail: 3
  195. MaxSubclass = 3
  196. # Maximum number of allowed slots for Private Stores Sell
  197. # Other means all the other races besides Dwarf (they get an extra one).
  198. # Retail: 4, 3
  199. MaxPvtStoreSellSlotsDwarf = 4
  200. MaxPvtStoreSellSlotsOther = 3
  201. # Maximum number of allowed slots for Private Stores Buy
  202. # Other means all the other races besides Dwarf (they get an extra one).
  203. # Retail: 5, 4
  204. MaxPvtStoreBuySlotsDwarf = 5
  205. MaxPvtStoreBuySlotsOther = 4
  206. # This will control the inventory space limit (NOT WEIGHT LIMIT).
  207. # Retail: 80, 100, 250
  208. MaximumSlotsForNoDwarf = 80
  209. MaximumSlotsForDwarf = 100
  210. MaximumSlotsForGMPlayer = 250
  211. # This will control a characters warehouse capacity.
  212. # Note:
  213. # This must be LESS then 300 or the client will crash.
  214. # Retail: 120, 100, 200, 20
  215. MaximumWarehouseSlotsForDwarf = 120
  216. MaximumWarehouseSlotsForNoDwarf = 100
  217. MaximumWarehouseSlotsForClan = 200
  218. MaximumFreightSlots = 20
  219. # Alternate Gaming
  220. # Usage: True - Restriction enabled
  221. # False - Restriction disabled
  222. # Castle Shield can be equipped by all clan members if they own a castle.
  223. # Retail: true
  224. CastleShieldRestriction = True
  225. # ClanHall Shield can be equipped by all clan members if they own a clan hall.
  226. # Retail: true
  227. ClanHallShieldRestriction = True
  228. # Apella armors can be equipped only by clan members if their class is Baron or higher.
  229. # Retail: true
  230. ApellaArmorsRestriction = True
  231. # Clan Oath Armors can be equipped only by clan members.
  232. # Retail: true
  233. OathArmorsRestriction = True
  234. # Castle Crown can be equipped only by castle lord.
  235. # Retail: true
  236. CastleLordsCrownRestriction = True
  237. # Castle Circlet can be equipped only by clan members if they own a castle.
  238. # Retail: true
  239. CastleCircletsRestriction = True
  240. #============================================================#
  241. # Enchanting & Augmenting #
  242. #============================================================#
  243. # This controls the chance an item has to break if it is enchanted.
  244. # This chance is in %, so if you set this to 100%, enchants will always succeed.
  245. # The chances are in the following order: Weapon, Armor, and Jewelry.
  246. # Retail: 66,66,66,66,66,66
  247. EnchantChanceWeapon = 66
  248. EnchantChanceArmor = 66
  249. EnchantChanceJewelry = 66
  250. BlessedEnchantChanceWeapon = 66
  251. BlessedEnchantChanceArmor = 66
  252. BlessedEnchantChanceJewelry = 66
  253. # This is the enchant limit, if set to 0, there will be no limit.
  254. # If this is set to 10, the maximum enchant will be 10.
  255. # The limits are in the following order: Weapon, Armor, and Jewelry.
  256. # Retail: 0, 0, 0
  257. EnchantMaxWeapon = 0
  258. EnchantMaxArmor = 0
  259. EnchantMaxJewelry = 0
  260. # This is the maximum safe enchant, meaning the chance set above will not
  261. # have an effect on enchants until the enchant # is above the safe enchant
  262. # configured below.
  263. # Example:
  264. # If EnchantSafeMax is set to for 8 the item will be safely enchanted to 8
  265. # regardless of the enchant chance set above.
  266. # EnchantSafeMaxFull is for full body armor (upper and lower)
  267. # Note:
  268. # This should always be greater than 0
  269. # Retail: 3, 4
  270. EnchantSafeMax = 3
  271. EnchantSafeMaxFull = 4
  272. # These controls the chance to get a skill in the augmentation process
  273. # Retail: 15, 30, 45, 60
  274. AugmentationNGSkillChance = 15
  275. AugmentationMidSkillChance = 30
  276. AugmentationHighSkillChance = 45
  277. AugmentationTopSkillChance = 60
  278. # These controls the chance to get a Base Stat Modifier in the augmentation process
  279. # Note:
  280. # No dependancy on LS grade
  281. # Retail: 1
  282. AugmentationBaseStatChance = 1
  283. # These controls the chance to get a glow effect in the augmentation process
  284. # Note:
  285. # No/Mid Grade Life Stone can not have glow effect
  286. # if you do not get a skill or Base Stat Modifier
  287. # On Retail you can not get glow effect with NoGrade LS
  288. # Retail: 0, 40, 70, 100
  289. AugmentationNGGlowChance = 0
  290. AugmentationMidGlowChance = 40
  291. AugmentationHighGlowChance = 70
  292. AugmentationTopGlowChance = 100
  293. #============================================================#
  294. # Karma #
  295. #============================================================#
  296. # Karma player can be killed in Peace zone.
  297. # Retail: false
  298. AltKarmaPlayerCanBeKilledInPeaceZone = False
  299. # Karma player can shop. (Double check please)
  300. # Retail: true
  301. AltKarmaPlayerCanShop = True
  302. # Karma player can use escape and recall skills.
  303. # Retail: true
  304. AltKarmaPlayerCanTeleport = True
  305. # Karma player can use GateKeeper.
  306. # Retail: false
  307. AltKarmaPlayerCanUseGK = False
  308. # Karma player can trade.
  309. # Retail: true
  310. AltKarmaPlayerCanTrade = True
  311. # Karma player can use warehouse.
  312. # Retail: true
  313. AltKarmaPlayerCanUseWareHouse = True
  314. #============================================================#
  315. # Craft #
  316. #============================================================#
  317. # Option to enable or disable crafting.
  318. # Enable -> true, Disable -> false
  319. # Retail: true
  320. CraftingEnabled = True
  321. #Limits for recipes
  322. # Retail: 50, 50
  323. DwarfRecipeLimit = 50
  324. CommonRecipeLimit = 50
  325. # Alternative crafting rules:
  326. # - crafting takes time
  327. # - players get EXP/SP for crafting
  328. # Retail: false
  329. AltGameCreation = False
  330. # Crafting Time multiplier
  331. # Bigger number ===> slower crafting but more XP/SP
  332. # Retail: 1
  333. AltGameCreationSpeed = 1
  334. # Additional XP/SP rate multiplier (for increased XP/SP)
  335. # Retail: 1, 1
  336. AltGameCreationRateXp = 1
  337. AltGameCreationRateSp = 1
  338. # If set to False, blacksmiths don't take recipes from players inventory when crafting.
  339. # Retail: true
  340. AltBlacksmithUseRecipes = True
  341. #============================================================#
  342. # Clan #
  343. #============================================================#
  344. # Number of days you have to wait before :
  345. # - joining another clan
  346. # - creating a new clan
  347. # Retail: 1, 1
  348. DaysBeforeJoinAClan = 1
  349. DaysBeforeCreateAClan = 1
  350. # Number of days it takes to dissolve a clan.
  351. # Retail: 7
  352. DaysToPassToDissolveAClan = 7
  353. # Number of days before joining a new alliance when clan voluntarily leave an alliance.
  354. # Retail: 1
  355. DaysBeforeJoinAllyWhenLeaved = 1
  356. # Number of days before joining a new alliance when clan was dismissed from an alliance.
  357. # Retail: 1
  358. DaysBeforeJoinAllyWhenDismissed = 1
  359. # Number of days before accepting a new clan for alliance when clan was dismissed from an alliance.
  360. # Retail: 1
  361. DaysBeforeAcceptNewClanWhenDismissed = 1
  362. # Number of days before creating a new alliance when dissolved an alliance.
  363. # Retail: 1
  364. DaysBeforeCreateNewAllyWhenDissolved = 1
  365. # Maximum number of clans in alliance.
  366. # Retail: 3
  367. AltMaxNumOfClansInAlly = 3
  368. # Number of members needed to request a clan war.
  369. # Retail: 15
  370. AltClanMembersForWar = 15
  371. # All new characters of the same account are newbies, not only first one.
  372. # Retail: true
  373. AltNewCharAlwaysIsNewbie = True
  374. # Clan members can withdraw from the Clan Warehouse.
  375. # Retail: false
  376. AltMembersCanWithdrawFromClanWH = False
  377. #Remove Castle circlets after a clan lose their castle or a player leaves a clan.
  378. # Retail: true
  379. RemoveCastleCirclets = True
  380. # Reputation Score gained per Kill in Clanwar.
  381. # Retail: 1
  382. ReputationScorePerKill = 1
  383. #============================================================#
  384. # Party #
  385. #============================================================#
  386. # This option controls the party range for the L2Attackable.
  387. # Retail: 1600
  388. AltPartyRange = 1600
  389. # This option controls the party range for an L2Party.
  390. # Retail: 1400
  391. AltPartyRange2 = 1400
  392. #============================================================#
  393. # Random #
  394. #============================================================#
  395. # This is the amount of adena that a new character starts their
  396. # character with.
  397. # Retail: 0
  398. StartingAdena = 0
  399. # This option when set to true will enable automatically picking up
  400. # items. If set false it will force the player to pickup dropped
  401. # items. (This excludes herbs mentioned above)
  402. # Retail: false
  403. AutoLoot = False
  404. # This is the time in seconds that it will take for the player command:
  405. # //unstuck will take.
  406. # Retail: 300
  407. UnstuckInterval = 300
  408. # After a player teleports, this is the time the player is protected.
  409. # This time is in seconds, leave 0 if you want this feature disabled.
  410. # Retail: 0
  411. PlayerSpawnProtection = 0
  412. # This will allow random re-spawning in towns if enabled,
  413. # based on a maximum random offset from the base re-spawn coordinates.
  414. # Retail: true, 20
  415. RespawnRandomInTown = True
  416. RespawnRandomMaxOffset = 20
  417. # This option is to enable or disable the use of in game petitions.
  418. # The MaxPetitionsPerPlayer is the amount of petitions a player can make.
  419. # The MaximumPendingPetitions is the total amount of petitions in the server.
  420. # Note:
  421. # Logically, MaximumPendingPetitions must be higher then MaxPetitionsPerPlayer
  422. # Retail: true, 5, 25
  423. PetitioningAllowed = True
  424. MaxPetitionsPerPlayer = 5
  425. MaxPetitionsPending = 25
  426. # This option is for Freight modes. If true, freights can be withdrawn from any place.
  427. # Also, to change Freight price (in Adena) for each item slot in freight.
  428. # Note:
  429. # AltGameFreightPrice WILL NOT change the value shown to the player, but the
  430. # player will actually get charged for the value set in here.
  431. # Retail: true, 1000
  432. AltGameFreights = True
  433. AltGameFreightPrice = 1000
  434. # Free teleporting around the world.
  435. # Retail: false
  436. AltFreeTeleporting = False
  437. # Allow character to recommend same person more then once per day
  438. # Retail: false
  439. AltRecommend = False
  440. # Allow character deletion after days set below.
  441. # To disallow character deletion, set this equal to 0.
  442. # Retail: 7
  443. DeleteCharAfterDays = 7
  444. # Alternative Xp/Sp rewards, if not 0, then calculated as 2^((mob.level-player.level) / coef),
  445. # coef are the 2 numbers set below.
  446. # A few examples for "AltGameExponentXp = 5." and "AltGameExponentSp = 3."
  447. # diff = 0 (player and mob has the same level), XP bonus rate = 1, SP bonus rate = 1
  448. # diff = 3 (mob is 3 levels above), XP bonus rate = 1.52, SP bonus rate = 2
  449. # diff = 5 (mob is 5 levels above), XP bonus rate = 2, SP bonus rate = 3.17
  450. # diff = -8 (mob is 8 levels below), XP bonus rate = 0.4, SP bonus rate = 0.16
  451. # Retail: 0, 0
  452. AltGameExponentXp = 0
  453. AltGameExponentSp = 0
  454. # PARTY XP DISTRIBUTION
  455. # Set the first option here to one of the (auto, percentage, level, none).
  456. # With "auto method" member is cut from Exp/SP distribution when his share is lower
  457. # then party bonus acquired for him (30% for 2 member party)
  458. # In that case he will not receive any Exp/SP from party and is not counted for party bonus
  459. # The second option takes effect when "percentage" method is chosen. Don't use high values for this!
  460. # The third option takes effect when "level" method is chosen. Don't use low values for this!
  461. # If you don't want to have a cutoff point for party members' XP distribution,
  462. # then just set the first option to "none". Defaults are: percentage , 3.0 , 30 ; respectively.
  463. # Retail: auto, 3.0, 30
  464. PartyXpCutoffMethod = auto
  465. PartyXpCutoffPercent = 3.0
  466. PartyXpCutoffLevel = 30