Verus hitbox
-
@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 -
@commandblock2 VERUS BEST /s
-
@commandblock2 i dont know how to cancel this packets
-
@commandblock2 still detected
-
@batata said in Verus hitbox:
case "C03 Cancel":
if(e.getPacket() instanceof C02PacketUseEntity) {
if(mc.thePlayer.ticksExisted % 3 != 0) {
e.cancelEvent();
idk, try thiscase "C03 Cancel": if(e.getPacket() instanceof C02PacketUseEntity && e.getPacket().getAction() == C02PacketUseEntity.Action.INTERACT_AT) { // INTERACT_AT or INTERACT or idk e.cancelEvent();
-
@commandblock2 lol can you write for me full module script my brain dead
-
@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(); -
@commandblock2 the module not showing in LB b73
-
@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
-
@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
-
@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");
-
@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
-
@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) {