What Is Blink in Minecraft? The Packet-Buffer Module

Blink is a Minecraft utility client module that buffers your outgoing packets so the server sees you frozen in place, then releases them all in one burst.

Modulesby trqUpdated July 13, 2026
Key takeaways
  • Blink buffers your outgoing packets so the server keeps showing your last known position.
  • You keep moving and fighting locally; the server sees nothing until you release it.
  • Releasing it sends every held packet at once, landing your real position in a single jump.
  • It's a use-at-own-risk feature: detectable, and shipped in clients including Opal.

Blink is a network module found in some Minecraft utility clients that buffers your outgoing packets instead of sending them the moment they're generated. While the buffer holds, the server keeps rendering you at whatever position it last actually received, even though your client is still moving, fighting, or building in real time. When the buffer releases, every packet you generated during the hold lands on the server in one shot, and your real position catches up in a single jump. It's packet manipulation, not a display trick, and servers with decent logging can tell the difference.

How Blink works

A normal client sends a steady stream of movement and action packets, and the server updates your state from each one the instant it arrives. Blink intercepts that stream and stops it from leaving the client for a stretch of time. Locally, nothing changes: you keep moving, swinging, placing blocks, whatever you're doing, and your own screen renders all of it. The server just has nothing new to work with, so it keeps you pinned at the last position it actually received. Let go of the buffer, and every packet that queued up during the hold reaches the server at once, snapping your real state into place in a single jump instead of a smooth catch-up.

Blink vs. Fake Lag

Both modules hold packets back, but they don't do it the same way or for the same reason.

Fake LagBlink
What happens to packetsDelayed, then flushed in a burstSuspended entirely, not trickled
ConnectionStays active throughoutHeld still for the duration
Typical useShort combat desyncsLonger holds, disappearing from view
GoalA brief edge mid-fightVanishing from the server's read on you

The practical difference is duration and intent. Fake Lag is built to buy a half-second in a fight. Blink is built to make you not exist on the server's end for longer than that.

Blink in Opal

Opal's own module list carries this under the exact same name. The catalog description is blunt about it: Blink holds your network connection so packets queue up. Same mechanism as above, same tradeoff, no dressing it up.

This one gets you caught, sometimes

A frozen server-side position followed by a sudden jump doesn't look like an ordinary connection hiccup, and anticheats watch for exactly that shape. A real drop produces uneven packet flow and eventually times out; a module suspending and resuming packets on command produces a cleaner, more convenient pattern, especially when the resume lines up with combat or an escape. Servers that log packet timing, or flag long position holds followed by a jump, can catch it, and repeated use is a signal on its own. Blink is use-at-own-risk on every client that ships it, Opal included: nothing about it is guaranteed to slip past a given server's checks.

FAQ