//Some Lost World Abilitites! (Run Button + Double Jump) //By Fres //Not all of the abilities are included, just the Run Button and Double Jump. (R.I.P Infini-Spindash. Maybe someday...) //Behold...the run button! Throttles your speed until you press, well, a button! addHook("ThinkFrame", do for player in players.iterate if not (player.mo and player.mo.skin == "sonic") then continue end //You must become one with the Sonic! player.normalspeed = 22*FRACUNIT //The actual throttling, which leaves you moving at a speed off 22 FRACUNITS. if player.cmd.buttons & BT_CUSTOM1 //You holding C1 bro? player.normalspeed = 36*FRACUNIT //Your true running speed, restored as long as you're holding C1. else player.normalspeed = 22*FRACUNIT //If not holding C1, you'll still move at 22 FRACS. end end end) //The Double Jump! You jump....and then you jump! addHook("ThinkFrame", do for player in players.iterate if player.mo and player.mo.skin == "sonic" player.charability = CA_DOUBLEJUMP end end end)