Thread: quest::movepc()
View Single Post
  #18  
Old 12-29-2009, 04:33 PM
neiv2
Hill Giant
 
Join Date: Mar 2009
Location: CO
Posts: 183
Default

Thanks, Derision; that failed to work as well. My code now looks like this:
Code:
sub EVENT_SPAWN
	{
	$x = $npc->GetX();
	$y = $npc->GetY();
	quest::set_proximity($x - 60, $x + 60, $y - 60, $y + 60);
	}

sub EVENT_ENTER
	{
	$client->SetHeading(0);	
	quest::movepc(16,-63,-802,59,0);
	}
I also tried plugging in your headings, and placing the $client function after the quest::movepc function, and got the same results.
Reply With Quote