View Single Post
  #3  
Old 03-04-2010, 07:05 PM
nenelan
Hill Giant
 
Join Date: Feb 2008
Posts: 116
Default

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.
Reply With Quote