summaryrefslogtreecommitdiff
path: root/world/map/npc/magic/level2-summon-spiky-mushroom.txt
diff options
context:
space:
mode:
authormekolat <mekolat@users.noreply.github.com>2015-10-29 11:48:34 -0400
committermekolat <mekolat@users.noreply.github.com>2016-03-30 11:22:49 -0400
commitafb8f6982d9a6458197faeb9c035b0a882b5b7fa (patch)
treef3287778500006e11d1f39ac94b703c4dda682ae /world/map/npc/magic/level2-summon-spiky-mushroom.txt
parentbc4deaf81d9701261baac6a10d762b0f40e7f65f (diff)
downloadserverdata-afb8f6982d9a6458197faeb9c035b0a882b5b7fa.tar.gz
serverdata-afb8f6982d9a6458197faeb9c035b0a882b5b7fa.tar.bz2
serverdata-afb8f6982d9a6458197faeb9c035b0a882b5b7fa.tar.xz
serverdata-afb8f6982d9a6458197faeb9c035b0a882b5b7fa.zip
use call
Diffstat (limited to 'world/map/npc/magic/level2-summon-spiky-mushroom.txt')
-rw-r--r--world/map/npc/magic/level2-summon-spiky-mushroom.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/world/map/npc/magic/level2-summon-spiky-mushroom.txt b/world/map/npc/magic/level2-summon-spiky-mushroom.txt
index 182bbda5..59cc295d 100644
--- a/world/map/npc/magic/level2-summon-spiky-mushroom.txt
+++ b/world/map/npc/magic/level2-summon-spiky-mushroom.txt
@@ -3,7 +3,7 @@
end;
OnCast:
- callfunc "magic_checks"; if(@failed) end; // << I wish we had functions that could return >>
+ if(call("magic_checks")) end; // << I wish we had functions that could return >>
if (Sp < 33) end;
if (getskilllv(SKILL_MAGIC) < .level) end;
if (getskilllv(.school) < .level) end;
@@ -46,7 +46,7 @@ S_SummonAll:
OnInit:
set .school, SKILL_MAGIC_ASTRAL;
set .invocation$, chr(MAGIC_SYMBOL) + "kalrenk"; // used in npcs that refer to this spell
- callfunc "magic_register2";
+ void call("magic_register", "OnCast");
set .level, 2;
set .exp_gain, 1;
end;