Here is what I use to move my char around from PoTimeA to PoTimeB.
#Zone - Plane of Time A
#Type - Teleport
#Class - ALL
#mob - Teleporter of Time
sub EVENT_SAY
{
if($text=~/Hail/i)
{
quest::say("Greetings! Ready to move on to Plane of Time B?");
}
if($text=~/yes/i && $ulevel>=65)
{
quest::say("Okay, off you go then.");
quest::movegrp(223,-45,1636,500);
}
}
I used portals/doors also. But this is something I use that I prefer.
#Zone - Plane of Time B
#Type - Teleport
#Class - ALL
#mob - Teleporter of Time
sub EVENT_SAY
{
if($text=~/Hail/i)
{quest::say("Greetings! Would you like to go to Tier 1, Tier 2, or Quarm?");}
if($text=~/tier 1/i && $ulevel>=65)
{
quest::say("Okay, off you go then.");
quest::movegrp(223,-0,0,400);
}
if($text=~/tier 2/i && $ulevel>=65)
{
quest::say("Okay, off you go then.");
quest::movegrp(223,-0,0,50);
}
if($text=~/quarm/i && $ulevel>=65)
{
quest::say("Okay, off you go then.");
quest::movegrp(223,247,-1117,2);
}
}
|