View Single Post
  #5  
Old 08-27-2007, 05:09 AM
leslamarch
Discordant
 
Join Date: Sep 2006
Location: Green Bay, WI
Posts: 436
Default

ok i found i think what i'm trying to do, Its similar to what Angelox did with ships.
But when i copy and paste his proximity quest and name it after an npc there it does nothing? this is the one I used from his quest

Code:
# Zone to Timorous event
# Zone: Oasis
# AngeloX

sub EVENT_SPAWN
{
	$x = $npc->GetX();
	$y = $npc->GetY();
	quest::set_proximity($x - 50, $x + 50, $y - 50, $y + 50);
}

sub EVENT_ENTER
{
	quest::movepc(96,3335.5,7121.4,-5.5);
}
any way i could make this work for my application?
Thanks so Much
~LL~
Reply With Quote