Author Topic: Command : /tumble (playername) (velocity coordinates)  (Read 2072 times)

Yeah, and in RTB preferences you can choose what you have to have to use it. (Mod, admin super admin, host, ect.)

All it does is send the player flying (Abiding the direction of the velocity coordinates you put in) and tumbling. I know this sounds abusive and useless, but it would be fun.

Sudden idea for player launch cannon. However, sounds like fun, so I support. I am too stupid to do it in a logical way though, and would spend an arbitrary amount of time ironing out stupidities. I won't even attempt to make this.

Sudden idea for player launch cannon. However, sounds like fun, so I support. I am too stupid to do it in a logical way though, and would spend an arbitrary amount of time ironing out stupidities. I won't even attempt to make this.

Yeah, I think it would also be easy to script. Although I have no idea how.

That's in Munks server addon pack I believe...

hehehe.
Some noob is being a noob, FLING!
Now their gone.

hehehe.
Some noob is being a noob, FLING!
Now their gone.

Hahaha, just more uses.

brb writing script for this, i like random tumble scripts


That's in Munks server addon pack I believe...

Not this exact thing.

try this out, i didn't test it much, but it seems to work

Code: [Select]
$Tumble::ConstantScale = 1;
function serverCmdTumble(%client, %t, %x, %y, %z, %s)
{
if(!%client.isSuperAdmin){return;}
if(!%s){%s=1;}
%pos = %x SPC %y SPC %z;
%t = findclientbyname(%t).player;
%velocity = vectorScale(vectorSub(%t.getPosition(), %pos), %s);
%t.addVelocity(vectorScale(%velocity, $Tumble::ConstantScale));
tumble(%t, 10);
}

I'm feeling kinda sleepy though, so no guarantees.
« Last Edit: November 18, 2011, 10:54:05 PM by otto-san »


That's in Munks server addon pack I believe...

It is. It has a command called launchntumble, which launches them up in the air, than tumbles. It also has regular tumble command.
 http://forum.blockland.us/index.php?topic=168567.0#post_MSP

It is. It has a command called launchntumble, which launches them up in the air, than tumbles. It also has regular tumble command.
 http://forum.blockland.us/index.php?topic=168567.0#post_MSP

Can you put in the exact coordinates of velocity?

Can you put in the exact coordinates of velocity?

No, but you can just rip the script out of mine and edit it if you need.

No, but you can just rip the script out of mine and edit it if you need.

I'd do that but I can't script for stuff, also I think otto-san is already making this.