Funcraft Destroyer
-
var module = registerModule("Funcraft Fast Fly", 0, "MOVEMENT"); var moveSpeed; module.registerEvent("onEnable", function(event) { if(player.onGround()) player.jump(); moveSpeed = 1.7; }); module.registerEvent("onDisable", function(event) { player.setSpeed(0); }); module.registerEvent("onMotion", function(event) { //player.setTimer(1.75) (more faster but not smooth) event.setOnGround(true); player.setJumpMovementFactor(0); if(!player.isMoving()) moveSpeed = 0.25; if(moveSpeed > 0.25) { moveSpeed -= moveSpeed / 159; } if(event.isPre()) { if(player.isMoving()) player.setSpeed(moveSpeed); player.setMotionY(0); player.setPosition(player.posX(), player.posY() - 8E-6, player.posZ()); } });
-
@notautismatall Wow, thanks. I played a bedwars match but I had to wait like 10 mins for the match to start because there weren't enough players lol.
And btw are they using NCP like from 2015 or something? Almost everything bypasses -
SIGMER PING
-
@sigmer
Bruh Moment – 00:49
— Hunter171 -
@sigmer yes i can send more clips
-
@fart-cheese Hikabrain? Why would someone pick such a weird name?
-
-
@fart-cheese said in Funcraft Destroyer:
What? -
@rimul
Works really well. Quick demo.var script = registerScript({ name: 'Flight', version: '1.0', authors: [''] }); var MoveUtils = Java.type("net.ccbluex.liquidbounce.utils.MovementUtils"); var moveSpeed = 0; script.registerModule({ name: 'Flight', category: 'Fun', description: 'Insert something helpful here please', tag: 'Funcraft' }, function (module) { module.on('enable', function() { moveSpeed = 1.7; if (mc.thePlayer.onGround) mc.thePlayer.jump(); }); module.on('motion', function(e) { mc.thePlayer.motionY = 0; mc.thePlayer.jumpMovementFactor = 0; mc.thePlayer.setPosition(mc.thePlayer.posX, mc.thePlayer.posY - 0.000008, mc.thePlayer.posZ); if (!MoveUtils.isMoving() || mc.thePlayer.isCollidedHorizontally) moveSpeed = 0.25; if (moveSpeed > 0.25) moveSpeed -= moveSpeed / 159; MoveUtils.strafe(moveSpeed); }); module.on('disable', function() { if (moveSpeed > 0.25) MoveUtils.strafe(0.0); }); });
-
@notautismatall wtf actually fly
-
@plumer-man how do I get the mosmt basic js knowledge
-
This post is deleted!
-
-
@notautismatall https://streamable.com/nt0l80 client samples
-
@notautismatall what client is that
-
@fartcheese it's a shit client, loading takes 10m and crashes randomly