View Single Post
  #2  
Old 11-13-2014, 01:21 PM
zerjz3
Banned
 
Join Date: Aug 2010
Location: Sanctuary
Posts: 269
Default

I solved this on my own, by coding it as such:

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

sub EVENT_TIMER 
{
	if($timer eq "Effect") 
	{
		$npc->SendAppearanceEffect(346);
		quest::stoptimer("Effect");
	}
}
Reply With Quote