exp.conf 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. //--------------------------------------------------------------
  2. // rAthena Battle Configuration File
  3. // Originally Translated by Peter Kieser <pfak@telus.net>
  4. // Made in to plainer English by Ancyker
  5. //--------------------------------------------------------------
  6. // Note 1: Value is a config switch (on/off, yes/no or 1/0)
  7. // Note 2: Value is in percents (100 means 100%)
  8. // Note 3: The max level of classes is stored in the exp table.
  9. // See files db/exp.txt and db/exp2.txt to change them.
  10. //--------------------------------------------------------------
  11. // Rate at which exp. is given. (Note 2)
  12. base_exp_rate: 100
  13. // Rate at which job exp. is given. (Note 2)
  14. job_exp_rate: 100
  15. // Turn this on to allow a player to level up more than once from a kill. (Note 1)
  16. multi_level_up: no
  17. // Setting this can cap the max experience one can get per kill specified as a
  18. // % of the current exp bar. (Every 10 = 1.0%)
  19. // For example, set it to 500 and no matter how much exp the mob gives,
  20. // it can never give you above half of your current exp bar.
  21. max_exp_gain_rate: 0
  22. // Method of calculating earned experience when defeating a monster:
  23. // 0 = uses damage given / total damage as damage ratio
  24. // 1 = uses damage given / max_hp as damage ratio
  25. // NOTE: Using type 1 disables the bonus where the first attacker gets
  26. // his share of the exp doubled when multiple people attack the mob.
  27. exp_calc_type: 0
  28. // Experience increase per attacker. That is, every additional attacker to the
  29. // monster makes it give this much more experience
  30. // (eg: 5 people attack with 25 here, +(25*4)% -> +100% exp)
  31. exp_bonus_attacker: 25
  32. // Max number of attackers at which exp bonus is capped
  33. // (eg: if set at 5, the max bonus is 4*bonus-per-char regardless of attackers)
  34. exp_bonus_max_attacker: 12
  35. // MVP bonus exp rate. (Note 2)
  36. mvp_exp_rate: 100
  37. // Rate of base/job exp given by NPCs. (Note 2)
  38. quest_exp_rate: 100
  39. // The rate of job exp. from using Heal skill (100 is the same as the heal amount, 200 is double.
  40. // The balance of the exp. rate is best used with 5 to 10)
  41. heal_exp: 0
  42. // The rate of exp. that is gained by the process of resurrection, a unit is 0.01%.
  43. // Experience calculations for the experience value * level difference of the person revived / 100 * resurrection_exp/10000 which the revived player has can be got.
  44. resurrection_exp: 0
  45. // The rate of job exp. when using discount and overcharge on an NPC
  46. // (in 0.01% increments - 100 is 1%, 10000 is normal, 20000 is double.)
  47. // The way it is calculated is (money received * skill lv) * shop_exp / 10000.
  48. shop_exp: 0
  49. // PVP exp. Do players get exp in PvP maps
  50. // (Note: NOT exp from players, but from normal leveling)
  51. pvp_exp: yes
  52. // When a player dies, how should we penalize them?
  53. // 0 = No penalty.
  54. // 1 = Lose % of current level when killed.
  55. // 2 = Lose % of total experience when killed.
  56. death_penalty_type: 1
  57. // Base exp. penalty rate (Each 100 is 1% of their exp)
  58. death_penalty_base: 100
  59. // Job exp. penalty rate (Each 100 is 1% of their exp)
  60. death_penalty_job: 100
  61. // When a player dies (to another player), how much zeny should we penalize them with?
  62. // NOTE: It is a percentage of their zeny, so 100 = 1%
  63. zeny_penalty: 0
  64. // Will display experience gained from killing a monster. (Note 1)
  65. disp_experience: no
  66. // Will display zeny earned (from mobs, trades, etc) (Note 1)
  67. disp_zeny: no
  68. // Use the contents of db/statpoint.txt when doing a stats reset and leveling up? (Note 1)
  69. // If no, an equation will be used which preserves statpoints earned/lost
  70. // through external means (ie: stat point buyers/sellers)
  71. use_statpoint_table: yes