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. Bug Reports
  3. taking 0 kb with any settings in hypixel

taking 0 kb with any settings in hypixel

Scheduled Pinned Locked Moved Bug Reports
32 Posts 9 Posters 7.2k 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.
  • ? A Former User

    @mems i just want to take less kb i get no shit of coding

    V Offline
    V Offline
    vinci
    wrote on last edited by vinci
    #19

    @vapeisexpensive
    here you go

    /// 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);
           };
       });
    });
    
    ? 3 Replies Last reply
    0
    • V vinci

      @vapeisexpensive
      here you go

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

      @nvinci how can i add it ?

      V 1 Reply Last reply
      0
      • ? A Former User

        @nvinci how can i add it ?

        V Offline
        V Offline
        vinci
        wrote on last edited by
        #21

        @vapeisexpensive it's a script, if you don't how to add scripts, follow this tutorial here

        1 Reply Last reply
        0
        • V vinci

          @vapeisexpensive
          here you go

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

          @nvinci this dont work lmfao i try it

          ENDER1355E V 0 3 Replies Last reply
          0
          • ? A Former User

            @nvinci this dont work lmfao i try it

            ENDER1355E Offline
            ENDER1355E Offline
            ENDER1355
            wrote on last edited by
            #23

            @vapeisexpensive

            lmfao

            not cool bro

            ? 1 Reply Last reply
            0
            • ENDER1355E ENDER1355

              @vapeisexpensive

              lmfao

              not cool bro

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

              @ender1355 ???

              ENDER1355E 1 Reply Last reply
              0
              • ? A Former User

                @ender1355 ???

                ENDER1355E Offline
                ENDER1355E Offline
                ENDER1355
                wrote on last edited by
                #25

                @vapeisexpensive u swore, its not cool

                1 Reply Last reply
                0
                • ? A Former User

                  @nvinci this dont work lmfao i try it

                  V Offline
                  V Offline
                  vinci
                  wrote on last edited by
                  #26

                  @nvinci this dont work lmfao i try it

                  can you be more specific?

                  ENDER1355E ? 2 Replies Last reply
                  1
                  • V vinci

                    @nvinci this dont work lmfao i try it

                    can you be more specific?

                    ENDER1355E Offline
                    ENDER1355E Offline
                    ENDER1355
                    wrote on last edited by
                    #27

                    @nvinci nice pfp 😃

                    1 Reply Last reply
                    1
                    • V vinci

                      @nvinci this dont work lmfao i try it

                      can you be more specific?

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

                      @nvinci there is only horiz and it dont work like i take full kb with any settings

                      1 Reply Last reply
                      0
                      • ? A Former User

                        @nvinci this dont work lmfao i try it

                        0 Offline
                        0 Offline
                        00
                        wrote on last edited by
                        #29

                        @vapeisexpensive bRo 2 SwEaR LiMiT

                        ? 1 Reply Last reply
                        0
                        • 0 00

                          @vapeisexpensive bRo 2 SwEaR LiMiT

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

                          @00 stfu

                          ? 1 Reply Last reply
                          0
                          • ? A Former User

                            @00 stfu

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

                            @vapeisexpensive wat

                            1 Reply Last reply
                            0
                            • V vinci

                              @vapeisexpensive
                              here you go

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

                              @nvinci does that work ?
                              i test it in B73 and it didnt

                              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