View Single Post
  #3  
Old 01-31-2005, 07:43 PM
canehdian
Sarnak
 
Join Date: Nov 2004
Location: Windsor, Ontario, Canada
Posts: 59
Default

heres a quest that works,

sub EVENT_SAY
{
if($text=~ /Hail/i)
{
quest::say("If you with to return to the [nexus] just say so.");
}
if($text=~ /nexus/i)
{
quest::say("Well, off you go to the crossroads...come back anytime.");
quest::movepc(152,0,0,0);
}

}

when your putting in the xyz coords, use #loc, not /loc cause /loc give you the wrong ones if found anyway
Reply With Quote