QuickMine

A very basic module to break blocks at twice the speed.

script.description = "Mine blocks at twice the speed!";

const sendAnimation = new BooleanSetting(script, "SwingPacket", "If this is enabled the module will also send the needed swing packet", true);

script.addListener("PreTickEvent", (event) => {
    if (mc.playerController.isHittingBlock() && mc.objectMouseOver.blockPos != null) {
        if (mc.playerController.damageBlock(mc.objectMouseOver.blockPos, mc.objectMouseOver.sideHit) && sendAnimation.getValue()) {
            spoofManager.sendPacket(new C0APacketAnimation());
        }
    }
});

Last updated