What is Double Tap (DT) and why HvH servers ban it
May 4, 2026
What is Double Tap (DT) and why HvH servers ban it
If you've joined any HvH server, "NoDT" is probably in the title. Here's what DT is, why it's banned, and where you can still find DT-on rooms.
What Double Tap actually does
CS2's lag compensation lets the server replay a player's recent inputs to compensate for ping. Each tick the client sends one fire command, normally.
A DT cheat sends two fire commands stamped to the same tick window — one in the current tick, one "backed up" to the previous tick. The server processes both, treating them as if they happened in real-time.
Net result: one mouse click, two bullets at full damage, ~50 ms apart.
Why this is unbalanced
- Bypasses normal weapon RPM.
- Statistically doubles your damage-per-engagement.
- Makes scout / AWP one-shot kills near guaranteed.
Even by HvH's loose standards, it removes counterplay. A jitter anti-aim might survive one shot from a resolver — it can't survive two.
The HvH community's response
Around 2018-2019 the HvH community informally agreed DT made servers unfun:
- Most public servers added
nodtplugins. - Server titles started prefixing NO DT so players could filter.
- DT-allowed rooms became a niche subculture (rage 1v1 only).
By 2026, DT-banned is the default expectation. A server without "NoDT" in the title is presumed to allow it, and most rage players will leave within minutes.
How NoDT plugins work
Server-side: track shot timestamps per client. If two fires arrive in <20 ms or in the same tick window, drop the second one server-side.
events:
weapon_fire(slot=4):
if (now - last_fire[slot] < 20ms) drop_event;
last_fire[slot] = now;Modern plugins also enforce that the firing tick matches the current tick, not a backed-up one — closing the lag-compensation door.
Where DT-on servers still exist
A handful of niche communities run DT-allowed:
- Aim-map 1v1 rage rooms (e.g. aim_redline 1v1)
- "Full rage" community Discord servers
- Some legacy CSGO 2018 build rooms (where the exploit was harder to fix)
Browse cs2hvhservers.com with the DT tag filter to see which official servers permit it. Most won't.
TL;DR
DT = one click, two shots. It's a server-side exploit of lag compensation that doubles damage per engagement. Practically all HvH servers in 2026 ban it via NoDT plugins. DT-allowed servers exist but are niche, rage-only rooms — not the default experience.