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:
function serverCmdTumble(%client)
{
tumble(%client.player,5000);
}
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.