-
Notifications
You must be signed in to change notification settings - Fork 0
Commands
Divesh Gupta edited this page Jul 31, 2026
·
1 revision
All four require permission level 2 (gamemaster), the same level as /gamemode.
-
/culltag enableturns culling on and writesenabled=trueto the config file. Hidden nametags start disappearing on the next sweep, withincheck_interval_ticks. -
/culltag disableturns culling off, writesenabled=false, and restores every nametag straight away. It does not just clear what the server is tracking: it restores everything in its own records and then blasts every player pair regardless, so a client left holding an override by an older jar is corrected too. The message reports how many packets that took. -
/culltag reloadre-readsconfig/culltag.propertiesand reports the settings it ended up with. If the reload turnsenabledoff, it restores everything exactly asdisabledoes. -
/culltag statsreports sweep and ray counts, the last and average sweep time in milliseconds, and how many nametags are currently hidden. It is sent only to whoever ran it.
Reading /culltag stats:
- Sweeps and rays both climb while the mod is working. Sweeps that climb with rays stuck at zero means nothing is in range, in the same dimension, or visible in the first place.
-
Average sweep is over the last 100 sweeps. On a normal server it stays well under a
millisecond; a sweep only runs every
check_interval_ticks, so the tick budget it eats is that number divided by the interval. - Nametags hidden is a live count of overrides currently applied, summed across every viewer. A pair blocked in both directions counts twice, once per viewer.