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
|