AimWrap

[!] Inferential
Max-rotation-rate / snap detector — flags a single-tick yaw rotation larger than threshold (150deg) coming out of a near-still tick (previous wrapped delta < 30deg): a classic aimbot snap from rest.
id: aimWrap  ·  class: AimWrapCheck  ·  group: Rotation

What it detects

Max-rotation-rate / snap detector — flags a single-tick yaw rotation larger than threshold (150deg) coming out of a near-still tick (previous wrapped delta < 30deg): a classic aimbot snap from rest.

Observer signature

wrappedDelta = wrapDegrees(yaw - lastYaw); flags when |wrappedDelta| > threshold && |lastWrappedDelta| < 30.0. Delta measured as shortest angular distance so legit boundary crossings (179deg -> -179deg, actual 2deg) do NOT false-flag.

False-positive guards

  • Wrapped (shortest-path) delta eliminates +-180deg boundary-crossing FPs
  • Near-still previous-tick gate (lastWrappedDelta < 30deg)
  • Threshold must stay < 180

Configuration

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

FieldDefault
enabledtrue
setbackVL5.0
decay0.5
threshold165.0
near-still gate30deg

Source

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