- script Healergfd -1,{
set .@Price,0; // Zeny required for heal
set .@Buffs,0; // Also buff players? (1: yes / 0: no)
set .@Delay,30; // Heal delay, in seconds
if ( select("Heal Please","Leave") -1 ) {
warp "prontera",156,179;
close; }
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;
}
specialeffect2 313; percentheal 100,100;
if (.@Buffs) {
specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,240000,10;
specialeffect2 EF_BLESSING; sc_start SC_BLESSING,240000,10;
}
if (.@Delay) set @HD, gettimetick(2)+.@Delay;
close;
}
alberta,25,240,6 duplicate(Healergfd) Healer#albgfd 909
Heal delay : 30 seconds.
Option warp.
I tried it.. the first one goes well.. it heals you.. but the second time you are going to use the npc.. when you try to heal.. it is stucked.. it is like you are stucked in the conversation. can't move.. and also.. can you remove the buffs? i want it also to everytime they try to heal again but it is too early the npc will say that Please wait for 30 seconds before you can use me again.. (this is only for the same player that uses it) but if another player uses it.. he will be healed.. i want the cooldown for an individual.. (player 1 will heal.. then player 1 will heal again but not yet 30seconds.. npc will tell him Please wait for xx seconds before you can use me again.. then player 2 will heal.. he can use it.. but the 2nd time he uses it with the effect of cooldown. he wont be able to use it..)