Thread: npcid command
View Single Post
  #3  
Old 12-11-2006, 02:59 PM
Cripp's Avatar
Cripp
Discordant
 
Join Date: Oct 2003
Location: The Shire
Posts: 474
Default

if you want the npc to spawn lying down you can do this..

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

sub EVENT_TIMER
{
	if ($timer eq "L1")
	{
		$npc->SetAppearance(16);
		quest::stoptimer("L1");
	}
}
__________________
Nug Blazers - ServerOP / founder
^^comming... later!

www.nugblazers.com
Reply With Quote