It would be a servercmd so you can use it as a slash.
function serverCmdMove(%name)
{
for(%i = 0; %i < ClientGroup.getCount(); %i++) //Go through all clients, find one matching the name
{
%cl.ClientGroup.getObject(%i);
if(%cl.name $= %name) { //If a name match has been found
%trans = %cl.player.getTransform(); //get the position and other things about the player
//Here you put your stuff for moving it, i think it's just getting the position out of the transform, editing it to the new position, and //resetting it.
}
}
}