diff options
author | Kenpachi Developer <Kenpachi.Developer@gmx.de> | 2020-05-10 03:05:29 +0200 |
---|---|---|
committer | Kenpachi Developer <Kenpachi.Developer@gmx.de> | 2020-05-13 05:18:02 +0200 |
commit | 9a64eca5235da46655ca64ba5916c6fd4d90208a (patch) | |
tree | a11a4aa10060e7b32553000dcbaf5c9fc52dd59b /conf | |
parent | cfe2d8527ecc8eb8e6dfacc7e661c5ed1f08ddd9 (diff) | |
download | hercules-9a64eca5235da46655ca64ba5916c6fd4d90208a.tar.gz hercules-9a64eca5235da46655ca64ba5916c6fd4d90208a.tar.bz2 hercules-9a64eca5235da46655ca64ba5916c6fd4d90208a.tar.xz hercules-9a64eca5235da46655ca64ba5916c6fd4d90208a.zip |
Add skill_enabled_npc battle flag and implement usage
Diffstat (limited to 'conf')
-rw-r--r-- | conf/map/battle/skill.conf | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/conf/map/battle/skill.conf b/conf/map/battle/skill.conf index a40b52124..fe9ca638a 100644 --- a/conf/map/battle/skill.conf +++ b/conf/map/battle/skill.conf @@ -347,3 +347,11 @@ stormgust_knockback: true // 0 : (official) Magic Rod's animation occurs every time it is used. // 1 : Magic Rod's animation would not occur unless a spell was absorbed. (old behavior) magicrod_type: 0 + +// Which skills are allowed to use while interacting with NPC? +// 0 (SKILLENABLEDNPC_NONE) - Don't allow using skills. +// 1 (SKILLENABLEDNPC_SELF) - Allow using non-damaging self skills. +// 2 (SKILLENABLEDNPC_ALL) - Allow using all skills. +// Official RE: 0 (Default value.) +// Official Pre-RE: 1 +skill_enabled_npc: 0 |