summaryrefslogtreecommitdiff
path: root/world/map/npc/magic/event-summon-managuardian.txt
diff options
context:
space:
mode:
Diffstat (limited to 'world/map/npc/magic/event-summon-managuardian.txt')
-rw-r--r--world/map/npc/magic/event-summon-managuardian.txt17
1 files changed, 15 insertions, 2 deletions
diff --git a/world/map/npc/magic/event-summon-managuardian.txt b/world/map/npc/magic/event-summon-managuardian.txt
index bad1213c..4e91ee06 100644
--- a/world/map/npc/magic/event-summon-managuardian.txt
+++ b/world/map/npc/magic/event-summon-managuardian.txt
@@ -10,10 +10,16 @@ OnCast:
if (getskilllv(SKILL_MAGIC) < .level) end;
if (countitem("TinyManaElixir") < 1) end;
if (!$DOOMSDAY_SUMMON) end;
- if (@ddcooldown > gettimetick(2)) goto L_Cooldown;
+// if (@ddcooldown > gettimetick(2)) goto L_Cooldown;
+ if (sc_check(SC_COOLDOWN_MG)) goto L_Cooldown;
+ if (getmap() == "033-1") goto L_SpecialRules6;
+ goto L_Pay;
+
+L_Pay:
delitem "TinyManaElixir", 1;
set @_M_BLOCK, 1; // block casting, until the timer clears it
addtimer 15000, "Magic Timer::OnClear"; // set the new debuff
+ sc_start SC_COOLDOWN, 15000, 0, BL_ID;
callfunc "adjust_spellpower";
set Sp, Sp - 100;
misceffect FX_MAGIC_MAGGOT_CAST, strcharinfo(0);
@@ -23,7 +29,8 @@ OnCast:
if (.@puppet < 1) end;
set .master, BL_ID, .@puppet;
set .lifetime, (@spellpower*9)+60000, .@puppet;
- set @ddcooldown, gettimetick(2)+70; // This is measured in seconds
+// set @ddcooldown, gettimetick(2)+70; // This is measured in seconds
+ sc_start SC_COOLDOWN_MG, (@spellpower*9)+70000, 0, BL_ID; // .lifetime + OnSummon
addnpctimer 10000, .@puppet$+"::OnSummon";
addnpctimer 11000, .@puppet$+"::OnDestroy";
end;
@@ -50,6 +57,12 @@ L_Cooldown:
message strcharinfo(0), "This skill is in forced cooldown; Please wait your first summon to expire.";
end;
+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) + "jande"; // used in npcs that refer to this spell