Spoof Manager
Setup
spoofManager.setPriority(10);Intercepting Packets
onPacketSend
spoofManager.onPacketSend((packet) => {
if (packet instanceof C0BPacketEntityAction) {
if (packet.getAction() === "START_SNEAKING") {
return "CANCEL"; // block sneak packets from reaching the server
}
}
return "PROCESS"; // let everything else through
});onPacketReceive
SpoofAction Values
Value
Description
Releasing Delayed Packets
onUpdate
Property / Method
Description
Flushing Packets
Sending Packets Manually
Last updated