From b376c7433420d59afcc36c94cab1f9cb38192ff2 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Fri, 9 Apr 2021 22:46:21 -0300 Subject: Remove magic directory (would need a reimplementation anyway) --- npc/magic/level1-detect-magic.txt | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100755 npc/magic/level1-detect-magic.txt (limited to 'npc/magic/level1-detect-magic.txt') diff --git a/npc/magic/level1-detect-magic.txt b/npc/magic/level1-detect-magic.txt deleted file mode 100755 index 693aeb7e..00000000 --- a/npc/magic/level1-detect-magic.txt +++ /dev/null @@ -1,29 +0,0 @@ -- script detect-magic NPC32767,{ - if(call("magic_checks")) end; - if (Sp < 3) end; - if (getskilllv(SKILL_MAGIC) < .level) end; - set @_M_BLOCK, 1; // block casting, until the timer clears it - addtimer 6000, "Magic Timer::OnClear"; // set the new debuff - callfunc "adjust_spellpower"; - Sp = Sp - 3; - misceffect FX_MAGIC_GENERIC, strcharinfo(0); - .@range = (@spellpower/50)+1; - foreach 1, getmapname(), POS_X - .@range, POS_Y - .@range, POS_X + .@range, POS_Y + .@range, - strnpcinfo(0) + "::OnNearbyNpc"; - callfunc "magic_exp"; - end; - -OnNearbyNpc: - .@e$ = strnpcinfo(2,@target_id); - if(.@e$ == "#_M" || .@e$ == "#MAGIC" || get(.IS_MAGIC, @target_id)) - misceffect FX_MAGIC_DEFAULT, @target_id; - end; - -OnInit: - .school = SKILL_MAGIC; - set .invocation$, chr(MAGIC_SYMBOL) + "miteyo"; // used in npcs that refer to this spell - void call("magic_register"); - .level = 1; - .exp_gain = 0; - end; -} -- cgit v1.2.3-70-g09d2