View Single Post
  #1  
Old 06-22-2007, 02:58 PM
froglok23's Avatar
froglok23
Hill Giant
 
Join Date: May 2005
Location: Australia
Posts: 113
Default Kerafyrm (The Sleeper)

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);
}
}
Reply With Quote