You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var scriptName="Speed walk";var scriptVersion=1.0;var scriptAuthor="soulplexis";var exampleModule=new ExampleModule();var exampleModuleClient;function ExampleModule(){this.getName=function(){return "SpeedWalk";};this.getDescription=function(){return "Makes you walk forward very quickly.";};this.getCategory=function(){return "Movement";};this.onMotion=function(){if(mc.gameSettings.keyBindForward.isKeyDown()||mc.gameSettings.keyBindLeft.isKeyDown()||mc.gameSettings.keyBindRight.isKeyDown()||mc.gameSettings.keyBindBack.isKeyDown()){mc.thePlayer.moveEntityWithHeading(0.0,12.0);}}
function onLoad(){};function onEnable(){exampleModuleClient=moduleManager.registerModule(exampleModule);};function onDisable(){moduleManager.unregisterModule(exampleModuleClient);};