Block ban
-
About
Increases speed if there is a block over your head
Blatant mode bypasses Spartan
Code
var script = registerScript({ name: 'BlockSpeed', version: '0.0.0', authors: ['Shurpe'] }); script.registerModule({ name: 'BlockSpeed', description: 'Increases speed if there is a block over your head', category: 'Fun', settings: { mode: Setting.list({ name: 'Mode', default: 'Blatant', values: ['Blatant', 'Legit'] }) } }, function (module) { module.on('update', function () { if (!mc.theWorld.getCollidingBoundingBoxes(mc.thePlayer, mc.thePlayer.getEntityBoundingBox().offset(0, 1, 0)).isEmpty()) { mc.gameSettings.keyBindJump.pressed = false; if (mc.thePlayer.onGround) { mc.thePlayer.jump(); if (module.settings.mode.get() == 'Blatant') { mc.thePlayer.motionY = 0; } } } }); });
-
@skidma can u do this for stairs too?