Speed Mode
-
@_simonclient_ watchdog.kt
@mike-melony send me your watchdog.kt file or open it
-
@mike-melony send me your watchdog.kt file or open it
@_simonclient_ Maybe something is wrong with the watchdog.kt file:)
/* * 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.ncp; import net.ccbluex.liquidbounce.event.MoveEvent; import net.ccbluex.liquidbounce.features.module.modules.movement.speeds.SpeedMode; import net.ccbluex.liquidbounce.utils.MovementUtils; public class Watchdog extends SpeedMode { public Watchdog() { super("Watchdog"); } @Override public void onMotion() { if(mc.thePlayer.isInWater()) return; if(MovementUtils.isMoving()) { if(mc.thePlayer.onGround) mc.thePlayer.jump(); else MovementUtils.strafe(MovementUtils.getSpeed() * 1.311F); }else{ mc.thePlayer.motionX = 0D; mc.thePlayer.motionZ = 0D; } } @Override public void onUpdate() { } @Override public void onMove(MoveEvent event) { } }
-
@_simonclient_ Maybe something is wrong with the watchdog.kt file:)
/* * 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.ncp; import net.ccbluex.liquidbounce.event.MoveEvent; import net.ccbluex.liquidbounce.features.module.modules.movement.speeds.SpeedMode; import net.ccbluex.liquidbounce.utils.MovementUtils; public class Watchdog extends SpeedMode { public Watchdog() { super("Watchdog"); } @Override public void onMotion() { if(mc.thePlayer.isInWater()) return; if(MovementUtils.isMoving()) { if(mc.thePlayer.onGround) mc.thePlayer.jump(); else MovementUtils.strafe(MovementUtils.getSpeed() * 1.311F); }else{ mc.thePlayer.motionX = 0D; mc.thePlayer.motionZ = 0D; } } @Override public void onUpdate() { } @Override public void onMove(MoveEvent event) { } }
@mike-melony oh i know where you add this speed in aac ncp other or spartan folder??
-
@mike-melony oh i know where you add this speed in aac ncp other or spartan folder??
@_simonclient_ ncp:(
-
@_simonclient_ ncp:(
@mike-melony oh my :v
-
@mike-melony oh my :v
@_simonclient_ I don't understand skid:(
-
@_simonclient_ I don't understand skid:(
@mike-melony wait i compile a little bit and i will answer you that coul it work later
-
@_simonclient_ I don't understand skid:(
@mike-melony hey why my Liquidbounce work
-
@mike-melony hey why my Liquidbounce work
@_simonclient_ Wuwuwu idk
-
@mike-melony hey why my Liquidbounce work
@_simonclient_ How did you do it
-
@_simonclient_ How did you do it
@mike-melony ukm when i add Watchdog.kt in it said want to change to kotin i choose yes and fix the problem and then i can easily add it
-
@mike-melony hey why my Liquidbounce work
@_simonclient_ do u have discord?
-
@_simonclient_ do u have discord?
This post is deleted! -
This post is deleted!
-
How to add speed mode? I have many modes, but as soon as I modify speed.kt, I will report an error. I also want to delete some modes. How can I do it?
@mike-melony Sorry for the necro, but the problem is that the speed is in Java, not Kotlin.
Try to change the file extension to ".java", and register the speed mode in Speed.java or Speed.kt (Depending on what it shows)