From the wiki here:
http://www.eqemulator.net/wiki/wikka...a=QuestObjects
This is probably your best option:
MovePC(zoneID, x, y, z, ignorerestrictions= 0, summoned= false)
Something like this should do the trick:
Code:
my $myx = $npc->GetX();
my $myy = $npc->GetY();
my $myz = $npc->GetZ();
$client->MovePC(152, $myx, $myy, $myz);
$client->Message(15, "YOU have been Summoned!");
Depending on where you are using that, you might have to get the client before trying to use this.