Author Topic: Tumble?  (Read 5235 times)

Is there a Tumble mod that you can key bind so you can press when you want to Tumble?

not right now, but it WOULD be useful for more realistic mirror's edge maps.

not right now, but it WOULD be useful for more realistic mirror's edge maps.
Agreed!

There is an tumble mod that makes you tumble when you die.

There is an tumble mod that makes you tumble when you die.
Link pl0x

Link pl0x
Private modded. But there's some people with it, so it's not impossible to find. There's at least one person nice enough to give it to you I bet.


Guys I'm saying key binding.

Private modded. But there's some people with it, so it's not impossible to find. There's at least one person nice enough to give it to you I bet.
A Twig has it.

Tumble mod is Banned

Why tumble-on-death was removed and should never be re-created


It makes it look like the game is broken.  It looks fine when you're by yourself in a single player server, but in a multiplayer game when you're connected over the internet there is a huge delay between when you die and when you tumble making the game look broken.  Often the vehicle has moved several meters before it is ghosted to you, so when the player is mounted on it they warp to it or simply disappear if the vehicle is out of view.   

Often times if a player is killed while standing still, the tumble vehicle remains upright and the player just stands there after they are died and the game looks broken.  If someone is killed in a doorway, the doorway is blocked for several seconds.


It lags the game to stuff.  Vehicles are not exactly the most efficient things in in torque, especially when you're creating a bunch of them at once and cramming them into piles of bricks like what happens with tumble on death in a heated deathmatch.  It simply creates too much of a strain on the cpu to be justified for a cutesy effect.

Vehicles are given priority network updates.  In a death match there are many people dying and tumbling all the time and there are so many vehicles bouncing around that there isn't enough bandwidth left for you to see normal player movement smoothly.  You start seeing people warp around and appear in front of you mysteriously and the whole experience just goes down hill.


I understand that rag-doll effects are cool but this is not the way to create them.  Please stop fighting me on this issue. 


Stop with the Tumble On Death.

The OP is asking for a keybinding, not the aforementioned addon.

Rerail....

Rerail....
Tumble is a server-side function, so you wouldn't be able to do it on any server
You could make a slash command rather easily:
Code: [Select]
function serverCmdTumble(%client)
{
    tumble(%client.player,5000);
}


Tumble mod is Banned

Off topic: How do you quote old messages for other topics? When I quoted Badspot's old post one time, I had to manually rebuild the quote. Is that what you did? Do you have it saved somewhere?

Tumble is a server-side function, so you wouldn't be able to do it on any server
You could make a slash command rather easily:
Code: [Select]
function serverCmdTumble(%client)
{
    tumble(%client.player,5000);
}

Code: [Select]
function serverCmdTumble(%client) {
%player = %client.player;
if(!%player.tumbleStop)
tumble(%player, 5000);
cancel($tumbleCrap[%player]);
%player.tumbleStop = 1;
$tumbleCrap[%player] = schedule(10, eval, %player @ ".tumbleStop = 0;");
}

Tried to make a working script, but that one is crap. Just want to protect from spamming tumbles.