@ASKLL Here's a version of your plugin written with Core.lib and ScriptAPI v2. Hope you like it!
(script = registerScript({ name: "CancelC03", authors: ["ASKLL"], version: "2.0" })).import("Core.lib"); module = { category: "Misc", description: "Cancels the C03 packet", onPacket: function (e) { p = e.getPacket if (p instanceof C03PacketPlayer) { event.cancelEvent() } } }
A
ASKLL
@ASKLL