Blockland Forums > Modification Help
I need tumble to work for an old V8 banana add-on.
otto-san:
Oh yeah, that's fairly simple to do.
Lørd Tøny:
Here, can someone modify this script for me?
Munkey:
--- Code: ---function player::tripover(%player)
{
if(isObject(%player) && %player.getClassName() $= "Player")
{
%player.playAudio(0, bananaTripSound);
schedule(100, 0, tumble, %player, 0.1); //Tumbles the player.
%player.setWhiteOut(0.25);
%player.schedule(5*1000, playThread, 2, root);
return;
}
error("Object not found, or object is not a player!");
}
--- End code ---
Lørd Tøny:
So is that going to work?
Bloxxed:
--- Quote from: ChappersTeddy on October 07, 2011, 01:53:51 PM ---
--- End quote ---
You obviously have no loving clue on what to do.