PingSpoof

A basic module showcasing the spoof manager

script.description = "Delays all packets by a set amount of time."

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);
        }
    }
});

Last updated