View Single Post
  #2  
Old 02-03-2013, 08:25 PM
Zamthos
Discordant
 
Join Date: Jan 2013
Posts: 284
Default

Do you just want it to lay there like a trampled slave? If so, code below:

Link to guide here: NPC Appearances

Code:
sub EVENT_SPAWN 
{ 
	quest::settimer("dead",1);
} 

sub EVENT_TIMER 
{ 
	if($timer = "dead") 
	{ 
		$npc->SetAppearance(3); 
		quest::stoptimer("dead");
	}
}

Last edited by Zamthos; 02-03-2013 at 08:30 PM.. Reason: Posted link to guide.
Reply With Quote