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(); -
@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) {
-
@suicidemouse can you try it in liquidbounce ? its not working
-
@suicidemouse xd