Use space to jump, and left/right to move. Modding engine built in. The modding engine includes a programming language called "Scratch BASIC", created by donutmaster400. Scratch BASIC was altered a little bit with fewer commands to fit the game. But still, it can make advanced mods. All you have to do is learn Scratch BASIC. Which is pretty simple. Here is a code for a calculator mod: setVar{}* num1 0 setVar{}* num2 0 inputVar{}* num1 Number 1: inputVar{}* num2 Number 2: addVar{}* num1 num2 -------------------------------- Commands: setVar{}* - Adds a variable. On the next line add the name of the variable. On the line after that, add the value you set it to start out with. print{}* - Makes the cat talk. On the next line, add the text you want it to say. inputVar{}* - Asks a question to set a variable. Let's say you have a name variable. Type "inputVar{}*", then on the next line the variable you're setting. Then the line after that is the question you're asking. So the answer you put sets the variable to the answer. addVar{}* - Adds 2 variables together. On the line after, type the first variable. On the next line, type the second variable. wait{}* - Waits. On the next line add how many seconds it waits. printVar{}* - Makes the cat say a variable. On the next line, type the variable. The line after that should be the text before it displays before the variable. Like this: setVar{}* name donutmaster400 printVar{}* name Hello setVarValue{}* - Set's the jump height variable or speed variable. On the next line, type the variable (Jumpheight or Speed). On the next line, type the value you're setting the variable too. goto{}* - Will run the code of the line goto{}* states. On the next line, type the line you want it to run. -------------------------------------------------------------------------------------------- If you don't understand, talk to me in the comments. Super Speed Mod: setVarValue{}* Speed -100 print{}* I'm fast!
Original modding engine by jharris1952. I just made it more advanced.