skill.conf 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. // ______ __ __
  2. // /\ _ \/\ \__/\ \
  3. // __\ \ \L\ \ \ ,_\ \ \___ __ ___ __
  4. // /'__`\ \ __ \ \ \/\ \ _ `\ /'__`\/' _ `\ /'__`\
  5. ///\ __/\ \ \/\ \ \ \_\ \ \ \ \/\ __//\ \/\ \/\ \L\.\_
  6. //\ \____\\ \_\ \_\ \__\\ \_\ \_\ \____\ \_\ \_\ \__/.\_\
  7. // \/____/ \/_/\/_/\/__/ \/_/\/_/\/____/\/_/\/_/\/__/\/_/
  8. // _ _ _ _ _ _ _ _ _ _ _ _ _
  9. // / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \
  10. //( e | n | g | l | i | s | h ) ( A | t | h | e | n | a )
  11. // \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/
  12. //
  13. //--------------------------------------------------------------
  14. // eAthena Battle Configuration File
  15. // Originally Translated by Peter Kieser <pfak@telus.net>
  16. // Made in to plainer English by Ancyker
  17. //--------------------------------------------------------------
  18. //Note 1: Directives can be set using on/off, yes/no or 1/0.
  19. //Note 2: All rates are in percents, 100 would mean 100%, 200
  20. // would mean 200%, etc
  21. //Note 3: Value is not limited to 60K (see below)
  22. //Note 4: Use bitmask values to specify who is affected
  23. // (1: Pc, 2: Mob, 4: Pet, 8: Homonculus)
  24. // Other Information:
  25. // All options are limited to a max of 60K (aprox) which is 600%
  26. // or 60secs as appropiate.
  27. // 1000 miliseconds is 1 second.
  28. // Unless otherwise specified, the minimum value is 0 for all
  29. // features.
  30. //--------------------------------------------------------------
  31. // The rate of time it takes to cast a spell (Note 2, 0 = No casting time)
  32. casting_rate: 100
  33. // Delay time after casting (Note 2)
  34. delay_rate: 100
  35. // Is the delay time is dependent on the caster's DEX? (Note 1)
  36. // Note: On Official servers Dex does NOT affect delay time
  37. delay_dependon_dex: no
  38. // Minimum allowed delay for ANY skills after casting (in miliseconds) (Note 1)
  39. // Note: Setting this to anything above 0 can stop speedhacks.
  40. min_skill_delay_limit: 100
  41. // Default skill delay for non-weapon based skills which have no delay specified.
  42. // This delay is also the min can't walk delay of all skills.
  43. // NOTE: Do not set this too low, if a character starts moving too soon after
  44. // doing a skill, the client will not update this, and the player/mob will
  45. // appear to "teleport" afterwards.
  46. default_skill_delay: 300
  47. //Completely disable skill delay of the following types (Note 4)
  48. //NOTE: By default mobs don't have the skill delay as specified in the skill
  49. // database, but follow their own 'reuse' skill delay which is specified on
  50. // the mob skill db. When set, the delay for all skills become
  51. // min_skill_delay_limit.
  52. no_skill_delay: 2
  53. // At what dex does the cast time become zero (instacast)
  54. castrate_dex_scale: 150
  55. // Will normal attacks be able to ignore the delay after skills? (Note 1)
  56. skill_delay_attack_enable: yes
  57. // Range added to skills after their cast time finishes.
  58. // Decides how far away the target can walk away after the skill began casting before the skill fails.
  59. // 0 disables this range checking (default)
  60. //skill_add_range: 15
  61. // If the target moves out of range while casting, do we take the items and SP for the skill anyway? (Note 1)
  62. skill_out_range_consume: no
  63. // Does the distance between caster and target define if the skill is a ranged skill? (Note 4)
  64. // If set, when the distance between caster and target is greater than 3 the skill is considered long-range, otherwise it's a melee range.
  65. // If not set, then the range is determined by the skill (eg: Double Strafe is always long-ranged).
  66. // Default 14 (mobs + pets + homun)
  67. skillrange_by_distance: 14
  68. // Should the equipped weapon's range override the skill's range defined in the skill_db for most weapon-based skills? (Note 4)
  69. // NOTE: Skills affected by this option are those whose range in the skill_db are negative.
  70. skillrange_from_weapon: 14
  71. // Should a check on the caster's status be performed in all skill attacks?
  72. // When set to yes, meteors, storm gust and any other ground skills will have
  73. // no effect while the caster is unable to fight (eg: stunned).
  74. skill_caster_check: yes
  75. // Should ground placed skills be removed as soon as the caster dies? [Note 4]
  76. clear_skills_on_death: 0
  77. // Should ground placed skills be removed when the caster changes maps? [Note 4]
  78. clear_skills_on_warp: 15
  79. //Setting this to YES will override the target mode of ground-based skills with the flag 0x01 to "No Enemies"
  80. //The two skills affected by default are Pneuma and Safety Wall (if set to yes, those two skills will not protect everyone, but only allies)
  81. //See db/skill_unit_db.txt for more info.
  82. defunit_not_enemy: no
  83. // Do skills do at least 'hits' damage when they don't miss/are blocked?
  84. //(for example, will firebolts always do "number of bolts" damage versus plants?)
  85. //Values (add as appropiate): 1 for weapon-based attacks, 2 for magic attacks, 4 for misc attacks.
  86. skill_min_damage: 6
  87. // The delay rate of monk's combo (Note 2)
  88. combo_delay_rate: 100
  89. // Use alternate auto Counter Attack Skill Type? (Note 4)
  90. // For those characters on which it is set, 100% Critical,
  91. // Otherwise it disregard DEF and HIT+20, CRI*2
  92. auto_counter_type: 15
  93. // Can ground skills be placed on top of each other? (Note 4)
  94. // By default, skills with UF_NOREITERATION set cannot be stacked on top of
  95. // other skills, this setting will override that. (skill_unit_db)
  96. skill_reiteration: 0
  97. // Can ground skills NOT be placed underneath/near players/monsters? (Note 4)
  98. // If set, only skills with UF_NOFOOTSET set will be affected (skill_unit_db)
  99. skill_nofootset: 1
  100. // Should traps (hunter traps + quagmire) change their target to "all" inside gvg/pvp grounds? (Note 4)
  101. // Default on official servers: yes for player-traps
  102. gvg_traps_target_all: 1
  103. // Some traps settings (add as necessary):
  104. // 1: Traps are invisible to those who come into view of it. When unset, all traps are visible at all times.
  105. // (Invisible traps can be revealed through Hunter's Detecting skill)
  106. traps_setting: 0
  107. // Whether placed down skills will check walls (Note 1)
  108. // (Makes it so that Storm Gust/Lord of Vermillion/etc when casted next to a wall, won't hit on the other side)
  109. skill_wall_check: yes
  110. // When cloaking, Whether the wall is checked or not. (Note 1)
  111. // Note: When the skill does not checks for walls, you will always be considered
  112. // as if you had a wall-next to you (you always get the wall-based speed).
  113. // When "cloaking lasts forever" is set, it means attacking or using skills
  114. // won't uncloak you, but being hit does.
  115. // 0 = doesn't check for walls
  116. // 1 = it checks for walls
  117. // 2 = it doesn't checks for walls + your cloaking lasts forever
  118. // 3 = it checks for walls + your cloaking lasts forever
  119. player_cloak_check_type: 1
  120. monster_cloak_check_type: 0
  121. // Can't place unlimited land skills at the same time (Note 4)
  122. land_skill_limit: 1
  123. //Determines which kind of skill-failed messages should be sent:
  124. // 1 - Disable all skill-failed messages.
  125. // 2 - Disable skill-failed messages due to can-act delays.
  126. // 4 - Disable failed message from Snatcher
  127. // 8 - Disable failed message from Envenom
  128. display_skill_fail: 0
  129. // Can a player in chat room (in-game), be warped by a warp portal? (Note 1)
  130. chat_warpportal: no
  131. // What should the wizard's "Sense" skill display on the defense fields?
  132. // 0: Do not show defense
  133. // 1: Base defense
  134. // 2: Vit/Int defense
  135. // 3: Both (the addition of both) [default]
  136. sense_type: 3
  137. // Which finger offensive style can be used?
  138. // 0 = Aegis style
  139. // 1 = Athena style
  140. finger_offensive_type: 0
  141. // Number of hits at a time that undead/fire elemental enemies receive from firewall.
  142. // NOTE: Officially, it is one hit at a time on a very fast rate, however eA's timer system
  143. // doesn't triggers enough "hits" to exhaust the firewall before the mob walks through it.
  144. // A value of 5 would suffice for a vertical firewall to take full effect on undead.
  145. firewall_hits_on_undead: 5
  146. // Grandcross Settings (Dont mess with these)
  147. // If set to no, hit interval is increased based on the amount of mobs standing on the same cell
  148. // (means that when there's stacked mobs in the same cell, they won't receive all hits)
  149. gx_allhit: no
  150. // Grandcross display type (Default 1)
  151. // 0: Yellow character
  152. // 1: White character
  153. gx_disptype: 1
  154. // Max Level Difference for Devotion
  155. devotion_level_difference: 10
  156. // If no than you can use the ensemble skills alone. (Note 1)
  157. player_skill_partner_check: yes
  158. // Remove trap type
  159. // 0 - Aegis system : Returns 1 'Trap' item
  160. // 1 - Athena system : Allows the returned item and amount to be defined
  161. skill_removetrap_type: 0
  162. // Does using bow to do a backstab give a 50% damage penalty? (Note 1)
  163. backstab_bow_penalty: yes
  164. // Use kRO new steal formula?
  165. skill_steal_type: yes
  166. // How many times you could try to steal from a mob.
  167. // Note: It helps to avoid stealing exploit on monstewrs with few rare items
  168. // 0..254 = number of tries +1
  169. skill_steal_max_tries: 15
  170. // Can Rogues plagiarize advanced job skills
  171. // 0 = no restriction
  172. // 1 = only stalker may plagiarize advanced skills
  173. // 2 = advanced skills cannot be plagiarized by anyone
  174. // Official servers setting: 2
  175. copyskill_restrict: 2
  176. // Does Berserk/Frenzy cancel other self-buffs when used?
  177. berserk_cancels_buffs: no
  178. // Level and Strength of "MVP heal". When someone casts a heal of this level or
  179. // above, the heal formula is bypassed and this value is used instead.
  180. max_heal: 9999
  181. max_heal_lv: 11
  182. // Emergency Recall Guild Skill setting (add as appropiate).
  183. // Note that for the skill to be usable at all,
  184. // you need at least one of 1/2 and 4/8
  185. // 1: Skill is usable outside of woe.
  186. // 2: Skill is usable during woe.
  187. // 4: Skill is usable outside of GvG grounds
  188. // 8: Skill is usable on GvG grounds
  189. //16: Disable skill from "nowarpto" maps
  190. // (note that by default all Castles have the nowarpto flag)
  191. emergency_call: 15
  192. // Guild Aura Skills setting (add as appropiate).
  193. // (This affects GD_LEADERSHIP, GD_GLORYWOUNDS, GD_SOULCOLD and GD_HAWKEYES)
  194. // Note that for the skill to be usable at all,
  195. // you need at least one of 1/2 and 4/8
  196. // 1: Skill works outside of woe.
  197. // 2: Skill works during woe.
  198. // 4: Skill works outside of GvG grounds
  199. // 8: Skill works on GvG grounds
  200. //16: Disable skill from affecting Guild Master
  201. guild_aura: 31
  202. // Max Possible Level of Monster skills
  203. // Note: If your MVPs are too tough, reduce it to 10.
  204. mob_max_skilllvl: 100
  205. // Allows players to skip menu when casting Teleport level 1
  206. // Menu contains two options. "Random" and "Cancel"
  207. skip_teleport_lv1_menu: no
  208. // Allow use of SG skills without proper day (Sun/Moon/Star) ?
  209. allow_skill_without_day: no
  210. // Allow use of ES-type magic on players?
  211. allow_es_magic_player: no
  212. //Miracle of the Sun, Moon and Stars skill ratio (100% = 10000)
  213. sg_miracle_skill_ratio: 1
  214. //Miracle of the Sun, Moon and Stars skill duration in milisecons
  215. sg_miracle_skill_duration: 3600000
  216. //Angel of the Sun, Moon and Stars skill ratio (100% = 10000)
  217. sg_angel_skill_ratio: 1