minecraft-cheat-detection

Detect Minecraft cheat clients and configure server-side anticheat protections for Paper and Spigot servers.

4|Updated May 16, 2026
One-click install
npx skills add https://github.com/reason-machines/devtools-skills --skill minecraft-cheat-detection-reason-machines
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: minecraft-cheat-detection
Source: https://github.com/reason-machines/devtools-skills/tree/main/skills/minecraft-cheat-detection
Command: npx skills add https://github.com/reason-machines/devtools-skills --skill minecraft-cheat-detection-reason-machines

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Minecraft server administrators face cheaters using clients like Vape V4 with KillAura, ESP, and speed hacks that ruin gameplay, and this Skill provides detection patterns and protection configurations to identify and block them. ## Core Features & Use Cases - Behavioral Detection: Java plugin examples that flag impossible movement speeds, excessive reach, and attacks without proper head rotation to catch KillAura and speed hacks. - Anticheat Configuration: Ready-to-adapt YAML configs for checks like killaura, speed, and fly, plus Paper anti-xray settings to mitigate ESP and ore-tracking cheats. - Packet Analysis: A Python packet analyzer pattern for detecting rapid rotations and packet flooding at the proxy level. - Use Case: A server owner notices players hitting others from impossible distances; use this Skill to implement reach and angle checks, log violations to a database, and configure Paper's anti-xray engine mode 2. ## Quick Start Ask the AI to help you set up KillAura and speed hack detection for your Paper Minecraft server, including violation logging and anti-xray configuration.

Frequently Asked Questions about minecraft-cheat-detection

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I detect KillAura on my Minecraft server?▼

Detect KillAura by checking attack reach beyond 4.5 blocks and verifying the attacker's view direction angles toward the target. Hits without proper head rotation or instant target switching are strong indicators to flag or kick the player.

What anticheat plugins work for Paper and Spigot servers?▼

Established anticheat plugins include NoCheatPlus (free) and Matrix, Vulcan, or Spartan (paid). Combine them with Paper or Purpur server software, which includes built-in exploit protections and anti-xray engine modes.

Can ESP or x-ray cheats be detected server-side?▼

ESP and x-ray cannot be detected directly because they are client-side only. Mitigate them by enabling Paper's anti-xray engine mode 2, reducing entity-broadcast-range-percentage, and lowering view-distance in server.properties.

How to detect speed and fly hacks in Minecraft?▼

Monitor PlayerMoveEvent distances per tick and flag movement exceeding roughly 0.7 blocks per tick for non-flying players. Vertical movement without jump packets and missing fall damage after high-altitude movement also indicate fly hacks.

Why is client-side cheat detection unreliable?▼

Modern cheat clients obfuscate class names and can detect inspection attempts, making signature-based client checks easy to evade. Server-side behavioral detection of movement, reach, and rotation anomalies is more reliable.