View Single Post
  #3  
Old 12-14-2006, 02:47 PM
Angelox
AX Classic Developer
 
Join Date: May 2006
Location: filler
Posts: 2,049
Default

Code:
sub EVENT_SPAWN
{
	$x = $npc->GetX();
	$y = $npc->GetY();
	quest::set_proximity($x - 30, $x + 30, $y - 30, $y + 30);
}
EDIT;
I fixed the last line, yours was bad

Last edited by Angelox; 12-14-2006 at 10:51 PM..
Reply With Quote