Out of the newestcoserver it wasentt that hard
PHP Code:
if (Cmd[0] == "/recall")
{
if (GC.AuthInfo.Status == "[PM]" ||GC.AuthInfo.Status == "[GM]")
{
Game.Character C = Game.World.CharacterFromName(Cmd[1]);
if (C != null)
C.Teleport(GC.MyChar.Loc.Map, GC.MyChar.Loc.X, GC.MyChar.Loc.Y);
}
}