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
-
@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 i dont know how to cancel this packets
-
@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 still detected
-
@commandblock2 i dont know how to cancel this packets
-
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
-
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
@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(); -
@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
-
@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 /// 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(); -
@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 the module not showing in LB b73
-
@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();@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 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
-
@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"); -
@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
-
@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) { -
@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 hm, ok
-
@potatot f alkq exsb qeb qfjb ql al fq
-
@potatot f alkq exsb qeb qfjb ql al fq
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login