I saw Badspot do an Admin jump in Age of Time so I thought I will try to make one. It's not the best way to do it but it works. I only made this for the players that cannot script.
Simply make an add-on or something for it.
function servercmdAdminJump(%client, %height)
{
if(%client.isSuperAdmin)
{
%error["Same Spot"] = echo("Player wants to jump to the same spot!");
%id = %client.player;
%trans = %id.getTransform();
%x = getWord(%trans,0);
%y = getWord(%trans,1);
%z = getWord(%trans,2);
%z[1] = getWord(%trans,2);
%z+=%hight;
$trans[1] = %x SPC %y SPC %z;
if(%z[1] == %height)
{
messageClient(%client,"Jump Error","\c3Silly you, how can you jump to the same spot?");
return %error["Same Spot"];
}
%id.setTransform($trans[1]);
messageClient(%client,"Jump","Jumping...");
}
else
{
error("Error: Player" SPC "(" SPC %client.getAddress() SPC "\c2)" SPC " called an admin command!\nThis player is not an admin!");
}
}
I will have to post a updated code later to get the player from jumping below the terrain and stuff. It's 4AM here now.