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. ScriptAPI
  3. Velocity modifier not working in hypixel

Velocity modifier not working in hypixel

Scheduled Pinned Locked Moved Unsolved ScriptAPI
13 Posts 6 Posters 1.7k 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.
  • Make Joke OfM Make Joke Of

    The antikb works. It gives me 0 knockback but its blatant. If i, for example watned to use 100 60 then it would still give me 0 knockback. It works on other servers tho. Any scripts to fix the issue?

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

    @make-joke-of Please search a bit next time before making the same topic on the wrong category.

    Make Joke OfM 1 Reply Last reply
    0
    • ? A Former User

      @make-joke-of Please search a bit next time before making the same topic on the wrong category.

      Make Joke OfM Offline
      Make Joke OfM Offline
      Make Joke Of
      wrote on last edited by
      #5

      @mems
      ik. Its just there was a script called scriptotl and i cant find it anywhere so i thought that someone will link me the script so i didnt mention anything about it. It's not that big of a deal.

      Make Joke OfM 1 Reply Last reply
      0
      • Make Joke OfM Make Joke Of

        @mems
        ik. Its just there was a script called scriptotl and i cant find it anywhere so i thought that someone will link me the script so i didnt mention anything about it. It's not that big of a deal.

        Make Joke OfM Offline
        Make Joke OfM Offline
        Make Joke Of
        wrote on last edited by
        #6

        @make-joke-of
        @mems help me??

        exit scammedE 1 Reply Last reply
        0
        • Make Joke OfM Make Joke Of

          @make-joke-of
          @mems help me??

          exit scammedE Offline
          exit scammedE Offline
          exit scammed
          wrote on last edited by
          #7
          This post is deleted!
          1 Reply Last reply
          0
          • Make Joke OfM Make Joke Of

            The antikb works. It gives me 0 knockback but its blatant. If i, for example watned to use 100 60 then it would still give me 0 knockback. It works on other servers tho. Any scripts to fix the issue?

            exit scammedE Offline
            exit scammedE Offline
            exit scammed
            wrote on last edited by exit scammed
            #8

            @make-joke-of

            /// api_version=2
            var script = registerScript({
               name: "HypikleVelo",
               version: "1.0",
               authors: ["nvinci"]
            });
            
            var S27 = Java.type("net.minecraft.network.play.server.S27PacketExplosion");
            var S12 = Java.type("net.minecraft.network.play.server.S12PacketEntityVelocity");
            
            script.registerModule({
               name: "HypikleVelo",
               category: "Combat",
               description: "grr",
               settings: {
                   horizontal: Setting.float({
                       name: "Horizontal",
                       default: 100.0,
                       min: 0.0,
                       max: 100.0
                   })
               }
            }, function(module) {
               module.on('packet', function(e) {
                   try {
                       packet = e.getPacket();
                       if (packet instanceof S12) {
                           packet.motionX *= module.settings.horizontal.get() / 100.0;
                           packet.motionZ *= module.settings.horizontal.get() / 100.0;
                       } else if (packet instanceof S27) {
                           // too lazy to use core's reflector
                           var motionX_fid = packet.class.getDeclaredField("field_149152_f");
                           var motionZ_fid = packet.class.getDeclaredField("field_149159_h");
            
                           motionX_fid.setAccessible(true);
                           motionZ_fid.setAccessible(true);
            
                           motionX_fid.setFloat(packet, motionX_fid.get(packet) * (module.settings.horizontal.get() / 100.0));
                           motionZ_fid.setFloat(packet, motionZ_fid.get(packet) * (module.settings.horizontal.get() / 100.0));
            
                           motionX_fid.setAccessible(false);
                           motionZ_fid.setAccessible(false);
            
                       }
                   } catch (err) {
                       Chat.print(err);
                   };
               });
            });
            

            scripts (2).zip for the scriptolotl zip file, including the hypixel velocity (extract all of them into the scripts folder).

            I tested on b72, working well. Not sure about b73.

            ? 1 Reply Last reply
            0
            • exit scammedE exit scammed

              @make-joke-of

              /// api_version=2
              var script = registerScript({
                 name: "HypikleVelo",
                 version: "1.0",
                 authors: ["nvinci"]
              });
              
              var S27 = Java.type("net.minecraft.network.play.server.S27PacketExplosion");
              var S12 = Java.type("net.minecraft.network.play.server.S12PacketEntityVelocity");
              
              script.registerModule({
                 name: "HypikleVelo",
                 category: "Combat",
                 description: "grr",
                 settings: {
                     horizontal: Setting.float({
                         name: "Horizontal",
                         default: 100.0,
                         min: 0.0,
                         max: 100.0
                     })
                 }
              }, function(module) {
                 module.on('packet', function(e) {
                     try {
                         packet = e.getPacket();
                         if (packet instanceof S12) {
                             packet.motionX *= module.settings.horizontal.get() / 100.0;
                             packet.motionZ *= module.settings.horizontal.get() / 100.0;
                         } else if (packet instanceof S27) {
                             // too lazy to use core's reflector
                             var motionX_fid = packet.class.getDeclaredField("field_149152_f");
                             var motionZ_fid = packet.class.getDeclaredField("field_149159_h");
              
                             motionX_fid.setAccessible(true);
                             motionZ_fid.setAccessible(true);
              
                             motionX_fid.setFloat(packet, motionX_fid.get(packet) * (module.settings.horizontal.get() / 100.0));
                             motionZ_fid.setFloat(packet, motionZ_fid.get(packet) * (module.settings.horizontal.get() / 100.0));
              
                             motionX_fid.setAccessible(false);
                             motionZ_fid.setAccessible(false);
              
                         }
                     } catch (err) {
                         Chat.print(err);
                     };
                 });
              });
              

              scripts (2).zip for the scriptolotl zip file, including the hypixel velocity (extract all of them into the scripts folder).

              I tested on b72, working well. Not sure about b73.

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

              @wysi i tried it in hypixel and it dont work for me

              exit scammedE 1 Reply Last reply
              0
              • ? A Former User

                @wysi i tried it in hypixel and it dont work for me

                exit scammedE Offline
                exit scammedE Offline
                exit scammed
                wrote on last edited by
                #10

                @vapeisexpensive which script?

                ? 1 Reply Last reply
                0
                • exit scammedE exit scammed

                  @vapeisexpensive which script?

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

                  @wysi the 1st one
                  name: "HypikleVelo",
                  version: "1.0",
                  authors: ["nvinci"]

                  1 Reply Last reply
                  0
                  • 6Sence6 Offline
                    6Sence6 Offline
                    6Sence
                    wrote on last edited by
                    #12

                    @a-former-user yes, that's what I said.

                    1 Reply Last reply
                    1
                    • 6Sence6 Offline
                      6Sence6 Offline
                      6Sence
                      wrote on last edited by
                      #13

                      @a-former-user of course we do, we have a 25 block longjump, the scaffold is sprint and we have the fastest speed with strafe, yeah.

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