I know im doing something wrong my plan is to setup translocators all over the world (eq world that is) and have them teleport people to east commons tunnel, have it as a meeting place.
Now this is my code
I've even tried reversing the co-ords but this code teleports peeps instead -9700 -1200 30
sub EVENT_SAY{
if ($text=~/Hail/i){
quest::emote("Greetings, Do you wish to travel to the [mainland] or to [Kunark] and do remember to seek out the soul binder to anchor your body to the new location");
}
if($text=~/mainland/i)
{
quest::movepc(22, -193.43, -1600.6, 3.127);
}
}
|