two verus speeds
-
hi
Hop
/* * LiquidBounce Hacked Client * A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge. * https://github.com/CCBlueX/LiquidBounce/ */ package net.ccbluex.liquidbounce.features.module.modules.movement.speeds.verus; import net.ccbluex.liquidbounce.event.MoveEvent; import net.ccbluex.liquidbounce.features.module.modules.movement.speeds.SpeedMode; import net.ccbluex.liquidbounce.utils.MovementUtils; public class VerusHop extends SpeedMode { public VerusHop() { super("VerusHop"); } @Override public void onMotion() { } @Override public void onUpdate() { if (!mc.thePlayer.isInWeb && !mc.thePlayer.isInLava() && !mc.thePlayer.isInWater() && !mc.thePlayer.isOnLadder() && mc.thePlayer.ridingEntity == null) { if (MovementUtils.isMoving()) { mc.gameSettings.keyBindJump.pressed = false; if (mc.thePlayer.onGround) { mc.thePlayer.jump(); MovementUtils.strafe(0.48F); } MovementUtils.strafe(); } } } @Override public void onMove(MoveEvent event) { } }
Low Hop / Port
/* * LiquidBounce Hacked Client * A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge. * https://github.com/CCBlueX/LiquidBounce/ */ package net.ccbluex.liquidbounce.features.module.modules.movement.speeds.verus; import net.ccbluex.liquidbounce.event.MoveEvent; import net.ccbluex.liquidbounce.features.module.modules.movement.Strafe; import net.ccbluex.liquidbounce.features.module.modules.movement.speeds.SpeedMode; import net.ccbluex.liquidbounce.utils.MovementUtils; public class VerusLowHop extends SpeedMode { public VerusLowHop() { super("VerusLowHop"); } @Override public void onMotion() { } @Override public void onUpdate() { } @Override public void onMove(MoveEvent event) { if (!mc.thePlayer.isInWeb && !mc.thePlayer.isInLava() && !mc.thePlayer.isInWater() && !mc.thePlayer.isOnLadder() && mc.thePlayer.ridingEntity == null) { if (MovementUtils.isMoving()) { mc.gameSettings.keyBindJump.pressed = false; if (mc.thePlayer.onGround) { mc.thePlayer.jump(); mc.thePlayer.motionY = 0; MovementUtils.strafe(0.61F); event.setY(0.41999998688698); } MovementUtils.strafe(); } } } }
-
@auto-reply-bot thx
-
@auto-reply-bot what is that low hop u sure that doesn't ban