summaryrefslogtreecommitdiff
path: root/world/map/npc/magic/level2-protect.txt
diff options
context:
space:
mode:
authorHoraK-FDF <horak-fdf@web.de>2023-08-28 23:47:21 +0000
committerLed Mitz <smoothshifter@tuta.io>2023-08-28 23:47:21 +0000
commitb10524face925526ebc59c07b1697a5eb038d332 (patch)
tree7e9042063c620f5b6e9c4bae98236a8cb07e6ebd /world/map/npc/magic/level2-protect.txt
parent00177e5144edc700489a510c57b2dea87bd6856d (diff)
downloadserverdata-b10524face925526ebc59c07b1697a5eb038d332.tar.gz
serverdata-b10524face925526ebc59c07b1697a5eb038d332.tar.bz2
serverdata-b10524face925526ebc59c07b1697a5eb038d332.tar.xz
serverdata-b10524face925526ebc59c07b1697a5eb038d332.zip
asorm betsanc plugh fix
Diffstat (limited to 'world/map/npc/magic/level2-protect.txt')
-rw-r--r--world/map/npc/magic/level2-protect.txt13
1 files changed, 6 insertions, 7 deletions
diff --git a/world/map/npc/magic/level2-protect.txt b/world/map/npc/magic/level2-protect.txt
index 98380d7b..25cb7c50 100644
--- a/world/map/npc/magic/level2-protect.txt
+++ b/world/map/npc/magic/level2-protect.txt
@@ -7,8 +7,9 @@
if (getskilllv(SKILL_MAGIC) < .level) end;
if (.@level <= 3 && countitem("HardSpike") < 1) end;
set @target_id, getcharid(3, @args$);
- if (@target_id < 1 || !(isloggedin(@target_id)) || get(INVISIBLE, @target_id))
+ if (@target_id < 1 || !(isloggedin(@target_id)) || get(INVISIBLE, @target_id) == 1)
set @target_id, BL_ID; // fallback to self
+ callfunc "adjust_spellpower";
if (distance(BL_ID, @target_id) >= (@spellpower/30)+2) set @target_id, BL_ID;
if (BL_ID == @target_id) set @args$, strcharinfo(0);
if (get(GM, @target_id) == 1) end;
@@ -23,17 +24,15 @@ L_Pay:
set @_M_BLOCK, 1; // block casting, until the timer clears it
addtimer 1500, "Magic Timer::OnClear"; // set the new debuff
sc_start SC_COOLDOWN, 1500, 0, BL_ID;
- callfunc "adjust_spellpower";
set Sp, Sp - 14;
misceffect FX_MAGIC_SHIELD_CAST, strcharinfo(0);
callfunc "magic_exp";
misceffect FX_MAGIC_SHIELD, @args$;
- set .@time, (@spellpower*1000)+5000;
- set @betsanc_time, .@time, @target_id;
- sc_start SC_PHYS_SHIELD, .@time, max(15,(@spellpower/20))+5, @target_id;
+ set .@betsanc_time, (@spellpower*1000)+5000;
+ sc_start SC_PHYS_SHIELD, .@betsanc_time, max(15,(@spellpower/20))+5, @target_id;
message @args$, "Shield : You feel more protected.";
- set @betsanc_future, gettimetick(0) + @betsanc_time - 100, @target_id;
- addtimer @betsanc_time - 100, strnpcinfo(0)+"::OnEnd", @target_id;
+ set @betsanc_future, gettimetick(0) + .@betsanc_time - 100, @target_id;
+ addtimer .@betsanc_time - 100, strnpcinfo(0)+"::OnEnd", @target_id;
end;
OnEnd: