HomeJavaModsVoid AntiCheat
Void AntiCheat
ModsJava

Void AntiCheat

by SomeOneDay · on Modrinth

VoidAC is a powerful, multi-module anti-cheat plugin for Paper 1.16.5 servers. It features a unique confidence-based punishment system, comprehensive…

⬇ Download on Modrinth

VoidAC — Advanced Anti-Cheat for Paper 1.16.5

VoidAC is a powerful, multi-module anti-cheat plugin for Paper 1.16.5 servers. It features a unique confidence-based punishment system, comprehensive cheat detection, and an extensive toolkit for server administrators.

Unlike traditional anti-cheats that ban instantly, VoidAC builds a confidence score per player over time, eliminating false positives while catching even the most careful cheaters.


Features

Detection Modules

Administrative Tools

Notifications & Integration

Database

Commands

Command Description Permission
/vac help Show help vac.admin
/vac ban <player> Ban with animation vac.command.ban
/vac profile <player> Player profile vac.command.profile
/vac lags <player> [type] Fake lag vac.command.lags
/vac confidence <player> <action> [value] Manage confidence vac.command.confidence
/vac crash <player> [method] Crash client vac.command.crash
/vac alerts [on/off] Toggle alerts vac.alerts
/vac spectate <player/stop> Spectate player vac.command.spectate
/vac report <player> <reason> Report player vac.report
/vac check <player> Provocation check vac.command.check
/vac checkvpn <player> VPN check vac.command.checkvpn
/vac history <player> Violation history vac.command.history
/vac freeze <player> [off] Freeze player vac.command.freeze
/vac cps <player> Show CPS stats vac.command.cps
/vac reach <player> Show reach stats vac.command.reach
/vac hits <player> Show detailed hit stats vac.command.hits
/vac update Check for updates vac.command.update
/vac version Show plugin version vac.command.version
/vac replay <player> [save] Replay recorded data vac.command.replay
/vac settings Settings GUI vac.admin
/vac reload Reload config vac.command.reload
/vac stats Server statistics vac.admin

Installation

  1. Download the latest jar from Releases
  2. Place VoidAC.jar in your server's plugins/ folder
  3. Restart your server (or /reload)
  4. Configure plugins/VoidAC/config.yml to your needs

Requirements


Configuration

All settings are in plugins/VoidAC/config.yml. Key sections:

MySQL (optional, SQLite used by default)

mysql:
  enabled: false
  host: localhost
  port: 3306
  database: vac_anticheat
  username: root
  password: ""

Confidence System

confidence:
  increment_per_violation: 2.0
  max_confidence: 100.0
  ban_threshold: 100.0
  decay_per_second: 0.5
  decay_delay_seconds: 30
  decay_min_confidence: 5.0
  spike_window_seconds: 10
  spike_multiplier: 2.5
  auto_ban: true

Language

language: en  # "en" or "ru"
# Messages editable under messages.en.* / messages.ru.*

Discord Bot

discord:
  enabled: false
  token: "YOUR_BOT_TOKEN"
  channel_id: "YOUR_CHANNEL_ID"

KillAura Detection

killaura:
  threshold: 60.0
  confidence_increment: 3.0
  max_cps: 8.0
  max_reach: 3.5
  min_aim_deviation: 0.8
  max_wall_ratio: 5.0

Building from Source

git clone https://github.com/SomeOneDay01/VoidAC.git
cd VoidAC
mvn clean package

The compiled jar will be in target/VoidAC-1.0.3.jar.


How the Confidence System Works

  1. Violations → each detected cheat action increments the player's violation counter for that check
  2. Confidence → each violation adds confidence percentage (configurable), multiplied by repeat-offense multiplier and spike detection
  3. Decay → confidence decays linearly over time if no new violations occur (configurable delay, rate, and minimum floor)
  4. Spike Detection — rapid violations within spike_window_seconds trigger spike_multiplier boost
  5. Auto-Ban → when confidence reaches ban_threshold, the player is automatically banned
  6. False Positive Protection → minimum sample sizes, multi-factor scoring, cooldowns prevent hasty flags

This means:


Permissions

Permission Default Description
vac.admin OP Full access to all commands
vac.alerts OP Receive and manage alerts
vac.report OP Report players
vac.command.* OP Individual command permissions

Discord Bot Setup

  1. Create a bot at Discord Developer Portal
  2. Enable Message Content Intent in Bot settings
  3. Invite bot with applications.commands and bot scopes
  4. Set discord.token and discord.channel_id in config.yml
  5. Restart the server — slash commands register automatically

Available Discord Commands


API for Developers

VoidAC exposes its managers via VAC.getInstance():

VAC vac = VAC.getInstance();

// Access player data
PlayerData data = vac.getPlayerDataManager().getOrCreate(player);
data.addViolation("Speed", 1);

// Confidence
data.getConfidence();
data.addConfidence(5.0);

// Ban
vac.getPunishmentManager().banPlayer(player, "Console", true);

// Profiling
vac.getPlayerProfiler().getCpsAnomalyScore(player);
vac.getAimAnalyzer().getOverallAimScore(player);
vac.getReplayRecorder().saveReplay(player);

Support


License

This project is licensed under the MIT License.

Verified by MCModsHub

These come from our own check of the pack file, not from the source page.

Explore more