Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse

LiquidBounce Forum

  1. Home
  2. Kotlin/Java
  3. Speed Mode

Speed Mode

Scheduled Pinned Locked Moved Kotlin/Java
25 Posts 6 Posters 12.0k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • mike melonyM Offline
    mike melonyM Offline
    mike melony
    wrote on last edited by
    #1

    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?

    _SimonClient__ ? G 3 Replies Last reply
    0
    • mike melonyM mike melony

      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?

      _SimonClient__ Offline
      _SimonClient__ Offline
      _SimonClient_
      wrote on last edited by
      #2

      @mike-melony you need to register module speed too

      mike melonyM 2 Replies Last reply
      0
      • mike melonyM mike melony

        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?

        ? Offline
        ? Offline
        A Former User
        wrote on last edited by
        #3

        @mike-melony Bruh Moment

        1 Reply Last reply
        0
        • _SimonClient__ _SimonClient_

          @mike-melony you need to register module speed too

          mike melonyM Offline
          mike melonyM Offline
          mike melony
          wrote on last edited by
          #4

          @_simonclient_ ennn how to register

          _SimonClient__ 1 Reply Last reply
          0
          • mike melonyM mike melony

            @_simonclient_ ennn how to register

            _SimonClient__ Offline
            _SimonClient__ Offline
            _SimonClient_
            wrote on last edited by
            #5

            @mike-melony see this you just need to do like it (name of speed ) (),
            c0789ad7-76ff-40a6-885e-f82d2aef0a7d-image.png

            1 Reply Last reply
            0
            • _SimonClient__ _SimonClient_

              @mike-melony you need to register module speed too

              mike melonyM Offline
              mike melonyM Offline
              mike melony
              wrote on last edited by
              #6

              @_simonclient_ speed.kt?

              _SimonClient__ 1 Reply Last reply
              0
              • mike melonyM mike melony

                @_simonclient_ speed.kt?

                _SimonClient__ Offline
                _SimonClient__ Offline
                _SimonClient_
                wrote on last edited by
                #7

                @mike-melony yes

                mike melonyM 1 Reply Last reply
                0
                • _SimonClient__ _SimonClient_

                  @mike-melony yes

                  mike melonyM Offline
                  mike melonyM Offline
                  mike melony
                  wrote on last edited by
                  #8

                  @_simonclient_ ccce0792-15bb-4e4b-a637-bb4c5ff02050-image.png
                  6b52b6f5-e981-412c-a544-dc053d5367fb-image.png
                  But that's what it looks like after it's registered

                  _SimonClient__ 1 Reply Last reply
                  0
                  • mike melonyM mike melony

                    @_simonclient_ ccce0792-15bb-4e4b-a637-bb4c5ff02050-image.png
                    6b52b6f5-e981-412c-a544-dc053d5367fb-image.png
                    But that's what it looks like after it's registered

                    _SimonClient__ Offline
                    _SimonClient__ Offline
                    _SimonClient_
                    wrote on last edited by _SimonClient_
                    #9

                    @mike-melony wait what do you add any folder in it??

                    mike melonyM 1 Reply Last reply
                    0
                    • _SimonClient__ _SimonClient_

                      @mike-melony wait what do you add any folder in it??

                      mike melonyM Offline
                      mike melonyM Offline
                      mike melony
                      wrote on last edited by
                      #10

                      @_simonclient_ watchdog.kt 😞

                      _SimonClient__ 1 Reply Last reply
                      0
                      • mike melonyM mike melony

                        @_simonclient_ watchdog.kt 😞

                        _SimonClient__ Offline
                        _SimonClient__ Offline
                        _SimonClient_
                        wrote on last edited by _SimonClient_
                        #11

                        @mike-melony send me your watchdog.kt file or open it

                        mike melonyM 1 Reply Last reply
                        0
                        • _SimonClient__ _SimonClient_

                          @mike-melony send me your watchdog.kt file or open it

                          mike melonyM Offline
                          mike melonyM Offline
                          mike melony
                          wrote on last edited by
                          #12

                          @_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__ 1 Reply Last reply
                          0
                          • mike melonyM mike melony

                            @_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__ Offline
                            _SimonClient__ Offline
                            _SimonClient_
                            wrote on last edited by _SimonClient_
                            #13

                            @mike-melony oh i know where you add this speed in aac ncp other or spartan folder??

                            mike melonyM 1 Reply Last reply
                            0
                            • _SimonClient__ _SimonClient_

                              @mike-melony oh i know where you add this speed in aac ncp other or spartan folder??

                              mike melonyM Offline
                              mike melonyM Offline
                              mike melony
                              wrote on last edited by
                              #14

                              @_simonclient_ ncp:(

                              _SimonClient__ 1 Reply Last reply
                              0
                              • mike melonyM mike melony

                                @_simonclient_ ncp:(

                                _SimonClient__ Offline
                                _SimonClient__ Offline
                                _SimonClient_
                                wrote on last edited by
                                #15

                                @mike-melony oh my :v

                                mike melonyM 1 Reply Last reply
                                0
                                • _SimonClient__ _SimonClient_

                                  @mike-melony oh my :v

                                  mike melonyM Offline
                                  mike melonyM Offline
                                  mike melony
                                  wrote on last edited by
                                  #16

                                  @_simonclient_ I don't understand skid:(

                                  _SimonClient__ 2 Replies Last reply
                                  0
                                  • mike melonyM mike melony

                                    @_simonclient_ I don't understand skid:(

                                    _SimonClient__ Offline
                                    _SimonClient__ Offline
                                    _SimonClient_
                                    wrote on last edited by
                                    #17

                                    @mike-melony wait i compile a little bit and i will answer you that coul it work later

                                    1 Reply Last reply
                                    0
                                    • mike melonyM mike melony

                                      @_simonclient_ I don't understand skid:(

                                      _SimonClient__ Offline
                                      _SimonClient__ Offline
                                      _SimonClient_
                                      wrote on last edited by
                                      #18

                                      @mike-melony hey why my Liquidbounce work 259c791a-afb2-491a-9ff5-182603fa2115-image.png

                                      mike melonyM 3 Replies Last reply
                                      0
                                      • _SimonClient__ _SimonClient_

                                        @mike-melony hey why my Liquidbounce work 259c791a-afb2-491a-9ff5-182603fa2115-image.png

                                        mike melonyM Offline
                                        mike melonyM Offline
                                        mike melony
                                        wrote on last edited by
                                        #19

                                        @_simonclient_ Wuwuwu idk

                                        1 Reply Last reply
                                        0
                                        • _SimonClient__ _SimonClient_

                                          @mike-melony hey why my Liquidbounce work 259c791a-afb2-491a-9ff5-182603fa2115-image.png

                                          mike melonyM Offline
                                          mike melonyM Offline
                                          mike melony
                                          wrote on last edited by
                                          #20

                                          @_simonclient_ How did you do it

                                          _SimonClient__ 1 Reply Last reply
                                          0

                                          Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                          Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                          With your input, this post could be even better 💗

                                          Register Login
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          About
                                          • Terms of Service
                                          • Privacy Policy
                                          • Status
                                          • Contact Us
                                          Downloads
                                          • Releases
                                          • Source code
                                          • License
                                          Docs
                                          • Tutorials
                                          • CustomHUD
                                          • AutoSettings
                                          • ScriptAPI
                                          Community
                                          • Forum
                                          • Guilded
                                          • YouTube
                                          • Twitter
                                          • D.Tube
                                          • Login

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Users
                                          • Groups