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. General Discussion
  3. Verus hitbox

Verus hitbox

Scheduled Pinned Locked Moved General Discussion
25 Posts 5 Posters 4.3k 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.
  • PotatoTP PotatoT

    @commandblock2 /// api_version=2
    var script = registerScript({
    name: "MyScript",
    version: "1.0.0",
    authors: ["Ez"]
    });

    script.registerModule({
    name: "CancelPackets",
    category: "Misc", // Movement, Misc, Combat, Fun, Player, Exploit, World, Render
    description: "An example module created with LiquidBounce's script API."
    }, function (module) {

    });

    module.on("enable", function() {
    Chat.print("CancelPacket enabled");

    if(e.getPacket() instanceof C02PacketUseEntity &&
    e.getPacket().getAction() == C02PacketUseEntity.Action.INTERACT_AT) {
    // INTERACT_AT or INTERACT or idk
    e.cancelEvent();

    suicidemouse33S Offline
    suicidemouse33S Offline
    suicidemouse33
    wrote on last edited by
    #16

    @potatot said in Verus hitbox:

    @commandblock2 /// api_version=2
    var script = registerScript({
    name: "MyScript",
    version: "1.0.0",
    authors: ["Ez"]
    });

    script.registerModule({
    name: "CancelPackets",
    category: "Misc", // Movement, Misc, Combat, Fun, Player, Exploit, World, Render
    description: "An example module created with LiquidBounce's script API."
    }, function (module) {

    });

    module.on("enable", function() {
    Chat.print("CancelPacket enabled");

    if(e.getPacket() instanceof C02PacketUseEntity &&
    e.getPacket().getAction() == C02PacketUseEntity.Action.INTERACT_AT) {
    // INTERACT_AT or INTERACT or idk
    e.cancelEvent();

    add double "}" to the end

    PotatoTP 1 Reply Last reply
    0
    • suicidemouse33S suicidemouse33

      @potatot said in Verus hitbox:

      @commandblock2 /// api_version=2
      var script = registerScript({
      name: "MyScript",
      version: "1.0.0",
      authors: ["Ez"]
      });

      script.registerModule({
      name: "CancelPackets",
      category: "Misc", // Movement, Misc, Combat, Fun, Player, Exploit, World, Render
      description: "An example module created with LiquidBounce's script API."
      }, function (module) {

      });

      module.on("enable", function() {
      Chat.print("CancelPacket enabled");

      if(e.getPacket() instanceof C02PacketUseEntity &&
      e.getPacket().getAction() == C02PacketUseEntity.Action.INTERACT_AT) {
      // INTERACT_AT or INTERACT or idk
      e.cancelEvent();

      add double "}" to the end

      PotatoTP Offline
      PotatoTP Offline
      PotatoT
      wrote on last edited by
      #17

      @suicidemouse
      /// api_version=2
      var script = registerScript({
      name: "MyScript",
      version: "1.0.0",
      authors: ["Ez"]
      });

      script.registerModule({
      name: "CancelPackets",
      category: "Misc", // Movement, Misc, Combat, Fun, Player, Exploit, World, Render
      description: "An example module created with LiquidBounce's script API."
      }, function (module) {

      });

      module.on("enable", function () {
      Chat.print("CancelPacket enabled");

      if (e.getPacket() instanceof C02PacketUseEntity &&
          e.getPacket().getAction() == C02PacketUseEntity.Action.INTERACT_AT) {
          e.cancelEvent();
      }
      

      }

      still not

      suicidemouse33S 1 Reply Last reply
      0
      • PotatoTP PotatoT

        @suicidemouse
        /// api_version=2
        var script = registerScript({
        name: "MyScript",
        version: "1.0.0",
        authors: ["Ez"]
        });

        script.registerModule({
        name: "CancelPackets",
        category: "Misc", // Movement, Misc, Combat, Fun, Player, Exploit, World, Render
        description: "An example module created with LiquidBounce's script API."
        }, function (module) {

        });

        module.on("enable", function () {
        Chat.print("CancelPacket enabled");

        if (e.getPacket() instanceof C02PacketUseEntity &&
            e.getPacket().getAction() == C02PacketUseEntity.Action.INTERACT_AT) {
            e.cancelEvent();
        }
        

        }

        still not

        suicidemouse33S Offline
        suicidemouse33S Offline
        suicidemouse33
        wrote on last edited by suicidemouse33
        #18

        @potatot said in Verus hitbox:

        module.on("enable", function () {

        module.on("enable", function (e) {

        you also need to add this
        var C02PacketUseEntity = Java.type("net.minecraft.network.play.client.C02PacketUseEntity");

        PotatoTP 1 Reply Last reply
        0
        • suicidemouse33S suicidemouse33

          @potatot said in Verus hitbox:

          module.on("enable", function () {

          module.on("enable", function (e) {

          you also need to add this
          var C02PacketUseEntity = Java.type("net.minecraft.network.play.client.C02PacketUseEntity");

          PotatoTP Offline
          PotatoTP Offline
          PotatoT
          wrote on last edited by
          #19

          @suicidemouse
          var C02PacketUseEntity = Java.type("net.minecraft.network.play.client.C02PacketUseEntity");
          /// api_version=2
          var script = registerScript({
          name: "MyScript",
          version: "1.0.0",
          authors: ["Ez"]
          });

          script.registerModule({
          name: "CancelPackets",
          category: "Misc", // Movement, Misc, Combat, Fun, Player, Exploit, World, Render
          description: "An example module created with LiquidBounce's script API."
          }, function (module) {

          });

          module.on("enable", function (e) {
          Chat.print("CancelPacket enabled");

          if (e.getPacket() instanceof C02PacketUseEntity &&
              e.getPacket().getAction() == C02PacketUseEntity.Action.INTERACT_AT) {
              e.cancelEvent();
          }
          

          }

          still not if like this

          suicidemouse33S 1 Reply Last reply
          0
          • PotatoTP PotatoT

            @suicidemouse
            var C02PacketUseEntity = Java.type("net.minecraft.network.play.client.C02PacketUseEntity");
            /// api_version=2
            var script = registerScript({
            name: "MyScript",
            version: "1.0.0",
            authors: ["Ez"]
            });

            script.registerModule({
            name: "CancelPackets",
            category: "Misc", // Movement, Misc, Combat, Fun, Player, Exploit, World, Render
            description: "An example module created with LiquidBounce's script API."
            }, function (module) {

            });

            module.on("enable", function (e) {
            Chat.print("CancelPacket enabled");

            if (e.getPacket() instanceof C02PacketUseEntity &&
                e.getPacket().getAction() == C02PacketUseEntity.Action.INTERACT_AT) {
                e.cancelEvent();
            }
            

            }

            still not if like this

            suicidemouse33S Offline
            suicidemouse33S Offline
            suicidemouse33
            wrote on last edited by suicidemouse33
            #20

            @potatot said in Verus hitbox:

            @suicidemouse
            var C02PacketUseEntity = Java.type("net.minecraft.network.play.client.C02PacketUseEntity");
            /// api_version=2
            var script = registerScript({
            name: "MyScript",
            version: "1.0.0",
            authors: ["Ez"]
            });

            script.registerModule({
            name: "CancelPackets",
            category: "Misc", // Movement, Misc, Combat, Fun, Player, Exploit, World, Render
            description: "An example module created with LiquidBounce's script API."
            }, function (module) {

            });

            module.on("enable", function (e) {
            Chat.print("CancelPacket enabled");

            if (e.getPacket() instanceof C02PacketUseEntity &&
                e.getPacket().getAction() == C02PacketUseEntity.Action.INTERACT_AT) {
                e.cancelEvent();
            }
            

            }

            still not if like this

            module.on("packet", function (e) {

            PotatoTP 1 Reply Last reply
            0
            • suicidemouse33S suicidemouse33

              @potatot said in Verus hitbox:

              @suicidemouse
              var C02PacketUseEntity = Java.type("net.minecraft.network.play.client.C02PacketUseEntity");
              /// api_version=2
              var script = registerScript({
              name: "MyScript",
              version: "1.0.0",
              authors: ["Ez"]
              });

              script.registerModule({
              name: "CancelPackets",
              category: "Misc", // Movement, Misc, Combat, Fun, Player, Exploit, World, Render
              description: "An example module created with LiquidBounce's script API."
              }, function (module) {

              });

              module.on("enable", function (e) {
              Chat.print("CancelPacket enabled");

              if (e.getPacket() instanceof C02PacketUseEntity &&
                  e.getPacket().getAction() == C02PacketUseEntity.Action.INTERACT_AT) {
                  e.cancelEvent();
              }
              

              }

              still not if like this

              module.on("packet", function (e) {

              PotatoTP Offline
              PotatoTP Offline
              PotatoT
              wrote on last edited by
              #21

              @suicidemouse can you try it in liquidbounce ? its not working

              suicidemouse33S 2 Replies Last reply
              0
              • PotatoTP PotatoT

                @suicidemouse can you try it in liquidbounce ? its not working

                suicidemouse33S Offline
                suicidemouse33S Offline
                suicidemouse33
                wrote on last edited by
                #22

                @potatot hm, ok

                1 Reply Last reply
                0
                • PotatoTP PotatoT

                  @suicidemouse can you try it in liquidbounce ? its not working

                  suicidemouse33S Offline
                  suicidemouse33S Offline
                  suicidemouse33
                  wrote on last edited by
                  #23

                  @potatot f alkq exsb qeb qfjb ql al fq

                  PotatoTP 1 Reply Last reply
                  0
                  • suicidemouse33S suicidemouse33

                    @potatot f alkq exsb qeb qfjb ql al fq

                    PotatoTP Offline
                    PotatoTP Offline
                    PotatoT
                    wrote on last edited by
                    #24

                    @suicidemouse xd

                    1 Reply Last reply
                    0
                    • Ali00035A Offline
                      Ali00035A Offline
                      Ali00035
                      wrote on last edited by Ali00035
                      #25

                      @suicidemouse said in Verus hitbox:

                      @potatot f alkq exsb qeb qfjb ql al fq

                      @potatot that translates to "i dont have the time to do it"

                      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