spoofManager
Example
const delay = new IntSetting(script, "Delay", "The amount of ms to delay each packet for", 500, 0, 5000);
spoofManager.onPacketSend(packet => {
return "DELAY";
});
spoofManager.onUpdate((packets) => {
for (let packet of packets) {
if (packet.hasAged(delay.getValue())) {
spoofManager.release(packet);
}
}
});Functions
Last updated