quest::safemove
quest::safemove
Explaination: Moves the player to the safe coordinates on the zone they are in.
Full Command: quest::safemove( )
Example:
# After hailing the NPC the player is move to the safe coordinates of the same zone.
sub EVENT_SAY
{
if($text=~/hail/i)
{
quest::safemove()
}
}
|