Navigation

    CCBlueX Forum

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups

    Verus hitbox

    General Discussion
    5
    25
    145
    Loading More Posts
    • 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.
    • PotatoT
      PotatoT last edited by

      verus anticheat detect the hitbox when you blockhit can someone write script when right click hitbox turn off ??

      PotatoT 1 Reply Last reply Reply Quote 0
      • PotatoT
        PotatoT @PotatoT last edited by

        https://streamable.com/6tdzbu
        this is example

        A 1 Reply Last reply Reply Quote 0
        • A
          Ali00035 @PotatoT last edited by

          @batata what client is that

          PotatoT 1 Reply Last reply Reply Quote 0
          • PotatoT
            PotatoT @Ali00035 last edited by

            @stfwissue vape v4/lite disable the hitbox when i right click

            other clients doesnt disable it
            first client sativa v10 and the external vape lite

            C 1 Reply Last reply Reply Quote 0
            • C
              commandblock2 @PotatoT last edited by

              @batata
              idk if verus will detect if you just cancel the C02 interact packet but not the C08/C07 packet. you won't even need to disable hitbox if that works

              A PotatoT 3 Replies Last reply Reply Quote 0
              • A
                Ali00035 @commandblock2 last edited by

                @commandblock2 VERUS BEST /s

                1 Reply Last reply Reply Quote 0
                • PotatoT
                  PotatoT @commandblock2 last edited by

                  @commandblock2 i dont know how to cancel this packets

                  A 1 Reply Last reply Reply Quote 0
                  • PotatoT
                    PotatoT @commandblock2 last edited by

                    @commandblock2 still detected

                    1 Reply Last reply Reply Quote 0
                    • A
                      Ali00035 @PotatoT last edited by

                      @batata cancel deez

                      1 Reply Last reply Reply Quote 0
                      • PotatoT
                        PotatoT last edited by

                        i think i dont know how to cancel

                        		case "C03 Cancel":
                        			if(e.getPacket() instanceof C02PacketUseEntity) {
                        				if(mc.thePlayer.ticksExisted % 3 != 0) {
                        					e.cancelEvent();
                        

                        i used this code i dont know if it cancel this packet or no

                        redmist44 C 2 Replies Last reply Reply Quote 0
                        • redmist44
                          redmist44 @PotatoT last edited by

                          @batata full code?

                          1 Reply Last reply Reply Quote 0
                          • C
                            commandblock2 @PotatoT last edited by

                            @batata said in Verus hitbox:

                            case "C03 Cancel":
                            if(e.getPacket() instanceof C02PacketUseEntity) {
                            if(mc.thePlayer.ticksExisted % 3 != 0) {
                            e.cancelEvent();
                            idk, try this

                            case "C03 Cancel":
                                if(e.getPacket() instanceof C02PacketUseEntity &&
                                    e.getPacket().getAction() == C02PacketUseEntity.Action.INTERACT_AT) {
                            // INTERACT_AT or INTERACT or idk
                            	    e.cancelEvent();
                            
                            PotatoT 3 Replies Last reply Reply Quote 0
                            • PotatoT
                              PotatoT @commandblock2 last edited by

                              @commandblock2 lol can you write for me full module script my brain dead

                              1 Reply Last reply Reply Quote 0
                              • PotatoT
                                PotatoT @commandblock2 last edited by

                                @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();

                                suicidemouse33 1 Reply Last reply Reply Quote 0
                                • PotatoT
                                  PotatoT @commandblock2 last edited by

                                  @commandblock2 the module not showing in LB b73

                                  1 Reply Last reply Reply Quote 0
                                  • suicidemouse33
                                    suicidemouse33 @PotatoT last edited by

                                    @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

                                    PotatoT 1 Reply Last reply Reply Quote 0
                                    • PotatoT
                                      PotatoT @suicidemouse33 last edited by

                                      @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

                                      suicidemouse33 1 Reply Last reply Reply Quote 0
                                      • suicidemouse33
                                        suicidemouse33 @PotatoT last edited by 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");

                                        PotatoT 1 Reply Last reply Reply Quote 0
                                        • PotatoT
                                          PotatoT @suicidemouse33 last edited by

                                          @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

                                          suicidemouse33 1 Reply Last reply Reply Quote 0
                                          • suicidemouse33
                                            suicidemouse33 @PotatoT last edited by 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) {

                                            PotatoT 1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post