Table of Contents

How to: Block packets

To block a packet from reaching the client or server, call Block on the Intercept event arguments passed to the intercept handler:

ext.Intercept(Out.MoveAvatar, e => {
    // Block the packet.
    e.Block();
});

Once a packet has been flagged as blocked, it cannot be reset.