Hi al,
Just a work in progress for Kerafyrm The Sleeper in the Sleepers tomb.
When I paid a visit to Kerafyrm I noticed that she was up.. well the sleeper cant be awake in the sleepers tomb! :P
So heres just a little script which makes her go to sleep after she spawns.
Ill be workign on her rampage script also (she goes on a rampage though skyshrine and such).
Enjoy for now!
	Quote:
	
	
		
			
				sub EVENT_SPAWN 
{ 
quest::settimer(1,1); 
 
} 
  
sub EVENT_TIMER 
{ 
	if($timer eq "1") 
	{ 
		$npc->SetAppearance(1); 
		quest::stoptimer(1); 
	} 
}
			
		 |