JumpReset

[!] Inferential
JumpReset / JumpOnHurt — auto-jumps the instant the cheater is hit to 'reset' knockback.
id: jumpOnHurt  ·  class: JumpOnHurtCheck  ·  group: Combat

What it detects

JumpReset / JumpOnHurt — auto-jumps the instant the cheater is hit to 'reset' knockback.

Observer signature

On AttackEvent records the hit tick + pendingHit + totalHits into the victim's context. process watches for a jump (deltaY > 0.3) within +/-1 tick of the hit; counts it as coincident (with the KB-hop exemption) and flags at level 1.0 when totalHits >= 5 AND coincidentHits / totalHits >= 0.9.

False-positive guards

  • Vehicle/gliding/riptide exempt
  • Recent-teleport exempt (tick - lastTeleportTick < 5)
  • KB-induced-hop exempt — if a velocity update arrived within 3 ticks the deltaY is server-induced, not counted
  • Higher bar (5 hits / 90%) above the legit anti-KB-hop ceiling (~80%)

Configuration

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

FieldDefault
enabledtrue
setbackVL5.0
decay0.2
threshold0.4
min hits5
coincidence0.9
jump thresholddeltaY > 0.3
velocity exempt3 ticks

Source

src/main/kotlin/dev/iustitia/checks/combat/JumpOnHurtCheck.kt  ↗