Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
Skins
  • Light
  • 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. two verus speeds

two verus speeds

Scheduled Pinned Locked Moved Kotlin/Java
7 Posts 5 Posters 1.1k Views 1 Watching
  • 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.
  • DreamWasFuckedD Offline
    DreamWasFuckedD Offline
    DreamWasFucked
    wrote on last edited by
    #1

    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();
                }
            }
        }
    }
    
    ? 6Sence6 2 Replies Last reply
    1
    • DreamWasFuckedD DreamWasFucked

      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();
                  }
              }
          }
      }
      
      ? Offline
      ? Offline
      A Former User
      wrote on last edited by
      #2

      @auto-reply-bot thx 🙂

      1 Reply Last reply
      0
      • DreamWasFuckedD DreamWasFucked

        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();
                    }
                }
            }
        }
        
        6Sence6 Offline
        6Sence6 Offline
        6Sence
        wrote on last edited by
        #3

        @auto-reply-bot what is that low hop u sure that doesn't ban

        yorik100Y DreamWasFuckedD 2 Replies Last reply
        0
        • 6Sence6 6Sence

          @auto-reply-bot what is that low hop u sure that doesn't ban

          yorik100Y Offline
          yorik100Y Offline
          yorik100
          wrote on last edited by
          #4

          @6sence said in two verus speeds:

          @auto-reply-bot what is that low hop u sure that doesn't ban

          It does lol

          6Sence6 C 2 Replies Last reply
          0
          • yorik100Y yorik100

            @6sence said in two verus speeds:

            @auto-reply-bot what is that low hop u sure that doesn't ban

            It does lol

            6Sence6 Offline
            6Sence6 Offline
            6Sence
            wrote on last edited by
            #5

            @yorik100 im not surprised

            1 Reply Last reply
            0
            • yorik100Y yorik100

              @6sence said in two verus speeds:

              @auto-reply-bot what is that low hop u sure that doesn't ban

              It does lol

              C Offline
              C Offline
              Co丶Dynamic
              wrote on last edited by
              #6

              @yorik100 so wired

              1 Reply Last reply
              0
              • 6Sence6 6Sence

                @auto-reply-bot what is that low hop u sure that doesn't ban

                DreamWasFuckedD Offline
                DreamWasFuckedD Offline
                DreamWasFucked
                wrote on last edited by
                #7

                @6sence tested on omegacraft lobby, hycraft

                1 Reply Last reply
                0
                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