diff options
Diffstat (limited to 'world/map/npc/magic/level1-experience.txt')
-rw-r--r-- | world/map/npc/magic/level1-experience.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/world/map/npc/magic/level1-experience.txt b/world/map/npc/magic/level1-experience.txt index 9492b6f2..0d6b5459 100644 --- a/world/map/npc/magic/level1-experience.txt +++ b/world/map/npc/magic/level1-experience.txt @@ -1,6 +1,6 @@ -|script|spell-experience|32767 { - 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 < 1) end; set MAGIC_CAST_TICK, gettimetick(2) + 1; // set the new debuff set @level, getskilllv(.school); @@ -35,7 +35,7 @@ OnInit: set .invocation$, chr(MAGIC_SYMBOL) + "abizit"; // used in npcs that refer to this spell set .level, 1; set .exp_gain, 0; - callfunc "magic_register"; + void call("magic_register"); setarray .MAX_MAGIC_EXP[0], 0, 100, 1200, 8000, 40000, 65535; end; } |