diff options
author | HoraK-FDF <horak-fdf@web.de> | 2022-10-24 23:39:58 +0000 |
---|---|---|
committer | Jesusalva Jesusalva <jesusalva@themanaworld.org> | 2022-10-24 23:39:58 +0000 |
commit | 58e4b21b96d2bc4dae2c7132ec675faef0538bee (patch) | |
tree | 4a84a9f5711b6da10ac1e2552863a21f1a40ad0f /world/map/npc/magic/level2-summon-fluffies.txt | |
parent | b2522339a26f153a1214fd57d9b0a7c83fd3c6f2 (diff) | |
download | serverdata-58e4b21b96d2bc4dae2c7132ec675faef0538bee.tar.gz serverdata-58e4b21b96d2bc4dae2c7132ec675faef0538bee.tar.bz2 serverdata-58e4b21b96d2bc4dae2c7132ec675faef0538bee.tar.xz serverdata-58e4b21b96d2bc4dae2c7132ec675faef0538bee.zip |
magic use cooldown symbols. Also, restrict magic on Kimarr.
Diffstat (limited to 'world/map/npc/magic/level2-summon-fluffies.txt')
-rw-r--r-- | world/map/npc/magic/level2-summon-fluffies.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/world/map/npc/magic/level2-summon-fluffies.txt b/world/map/npc/magic/level2-summon-fluffies.txt index b614e4a3..942f48d4 100644 --- a/world/map/npc/magic/level2-summon-fluffies.txt +++ b/world/map/npc/magic/level2-summon-fluffies.txt @@ -9,10 +9,15 @@ OnCast: if (getskilllv(SKILL_MAGIC) < .level) end; if (getskilllv(.school) < .level) end; if (countitem("WhiteFur") < 1 || countitem("Root") < 1) end; + if (getmap() == "033-1") goto L_SpecialRules6; + goto L_Pay; + +L_Pay: delitem "WhiteFur", 1; delitem "Root", 1; set @_M_BLOCK, 1; // block casting, until the timer clears it addtimer 20000, "Magic Timer::OnClear"; // set the new debuff + sc_start SC_COOLDOWN, 20000, 0, BL_ID; callfunc "adjust_spellpower"; set Sp, Sp - 39; misceffect FX_MAGIC_FLUFFY_CAST, strcharinfo(0); @@ -48,6 +53,12 @@ S_SummonAll: if (.@i < .count) goto S_SummonAll; destroy; +L_SpecialRules6: + if ($@KIMARR_EVENT < 1) goto L_Pay; + if ($@Fluffy_FighterID == BL_ID) goto L_Pay; + message strcharinfo(0), "You can't summon here unless hunting fluffies."; + end; + OnInit: set .school, SKILL_MAGIC_ASTRAL; set .invocation$, chr(MAGIC_SYMBOL) + "kalakarenk"; // used in npcs that refer to this spell |