diff options
Diffstat (limited to 'npc/custom/healer.txt')
-rw-r--r-- | npc/custom/healer.txt | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/npc/custom/healer.txt b/npc/custom/healer.txt index 9b1bacfbe..b8873d6b9 100644 --- a/npc/custom/healer.txt +++ b/npc/custom/healer.txt @@ -16,19 +16,21 @@ set .@Buffs,0; // Also buff players? (1: yes / 0: no) set .@Delay,0; // Heal delay, in seconds + callfunc "F_ClearGarbage",0; if (@HD > gettimetick(2)) end; if (.@Price) { message strcharinfo(0),"Healing costs "+.@Price+" Zeny."; if (Zeny < .@Price) end; if(select("^0055FFHeal^000000:^777777Cancel^000000")==2) close; - set Zeny, Zeny-.@Price; } + set Zeny, Zeny-.@Price; + } specialeffect2 313; percentheal 100,100; if (.@Buffs) { specialeffect2 37; sc_start SC_INCREASEAGI,240000,10; - specialeffect2 42; sc_start SC_BLESSING,240000,10; } + specialeffect2 42; sc_start SC_BLESSING,240000,10; + } if (.@Delay) set @HD, gettimetick(2)+.@Delay; - if (.@Price) close; - end; + close; } alberta,185,144,5 duplicate(Healer) Healer#alb 742 @@ -46,4 +48,4 @@ payon,180,105,5 duplicate(Healer) Healer#pay 742 prontera,150,184,5 duplicate(Healer) Healer#pront 742 umbala,94,162,5 duplicate(Healer) Healer#umb 742 xmas,149,136,5 duplicate(Healer) Healer#xmas 742 -yuno,152,186,5 duplicate(Healer) Healer#yuno 742
\ No newline at end of file +yuno,152,186,5 duplicate(Healer) Healer#yuno 742 |