Timer

[X] Definitive
Timer / Boost / TickBase detector (delta-based surrogate) — the cheat accelerates the local tick rate, observable as horizontal bps far above the sprint-jump envelope sustained for several ticks. Conservative surrogate flagging the blatant sustained-overspeed tier (>14 bps) distinct from SpeedEnvelope's cap.
id: timerRate  ·  class: TimerRateCheck  ·  group: Packet

What it detects

Timer / Boost / TickBase detector (delta-based surrogate) — the cheat accelerates the local tick rate, observable as horizontal bps far above the sprint-jump envelope sustained for several ticks. Conservative surrogate flagging the blatant sustained-overspeed tier (>14 bps) distinct from SpeedEnvelope's cap.

Observer signature

bps = hypot(delta.x, delta.z) * 20.0; flags when bps > threshold (14) for streak >= 3.

False-positive guards

  • Vehicle/gliding/riptide/swimming exempt
  • Teleport exempt (tick - lastTeleportTick < 10)
  • Hurt exempt (tick - hurtTick < 5)
  • Velocity exempt (tick - velocityTick < 40)
  • Server-lag exempt (LAG_WINDOW=8 / BURST_WINDOW=3, resets streak and skips)

Configuration

Defaults (editable in-game via the YACL config screen or /ius config):

FieldDefault
enabledtrue
setbackVL5.0
decay0.5
threshold14.0
streak3 ticks
LAG_WINDOW8
BURST_WINDOW3

Source

src/main/kotlin/dev/iustitia/checks/movement/TimerRateCheck.kt  ↗