can you give me fasplace, if I jump it will increase the speed,thx lol
-
YEScgfhfgyjyjrfuyj
-
@zkills-gamerz bot it's already on the client, world -> fastplace
-
.t fastbreak
-
@auto-reply-bot op fastplace .t fastbreak
-
var FastPlace = moduleManager.getModule("FastPlace"); module.on("enable", function () { FastPlace.setState(true); }); module.on("disable", function () { FastPlace.setState(false); }); module.on("update", function () { if (mc.thePlayer.onGround) { moduleManager.getModule("FastPlace").getValue("speed").set(SLOWSPEED); } if (!mc.thePlayer.onGround) { moduleManager.getModule("FastPlace").getValue("speed").set(FASTSPEED); } });
-
@faaatpotato thxx
-
@faaatpotato said in can you give me fasplace, if I jump it will increase the speed,thx lol:
var FastPlace = moduleManager.getModule("FastPlace"); module.on("enable", function () { FastPlace.setState(true); }); module.on("disable", function () { FastPlace.setState(false); }); module.on("update", function () { if (mc.thePlayer.onGround) { moduleManager.getModule("FastPlace").getValue("speed").set(SLOWSPEED); } if (!mc.thePlayer.onGround) { moduleManager.getModule("FastPlace").getValue("speed").set(FASTSPEED); } });
ugly codes
-
@sigma-bot
var sigma = moduleManager.getModule("FastPlace"); module.on("enable", function () { sigma.setState(true); }); module.on("disable", function () { sigma.setState(false); }); module.on("update", function () { moduleManager.getModule("FastPlace").getValue("speed").set(!mc.thePlayer.onGround ? FASTSPEED : SLOWSPEED); });
100% worse