Use player.pl.
Code:
sub EVENT_ENTERZONE {
quest::settimer("healself",10);
}
sub EVENT_TIMER {
quest::selfcast(13);
quest::selfcast(13);
quest::selfcast(13);
quest::stoptimer("healself");
}
Used a timer as just on ENTER_ZONE did not work, think it has to do with the lock up delay. Also, $client DOES work in player.pl if you need it for other things.