You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
❄️ FrostShield AntiCheat - Freeze every cheat forever.
Freeze every cheat. Forever.
FrostShield is a high-performance, advanced anti-cheat plugin for mMinecraft servers running Spigot 1.16.5. It provides comprehensive cheat detection with minimal performance impact, protecting your server from cheaters.
Quick Start
Requirements
Requirement
Version
Server Software
Spigot 1.16.5 (or Paper/Tuinity forks)
Java
Java 17 or higher
Memory
Minimum 512MB, Recommended 1GB+
Installation
# Copy plugin to server's plugins directory
cp FrostShield-2.0.0.jar /your-server/plugins/
# Restart server to load the plugin
/restart
# Edit configuration file
nano plugins/FrostShield/config.yml
# Reload configuration without server restart
/fs reload
Features
Feature
Description
40+ Detection Checks
Comprehensive coverage of movement, combat, packet and more
Real-time Detection
Instant cheat detection with configurable violation thresholds
Auto-Ban System
Automatic punishment system with customizable messages
Low Performance Impact
Optimized async processing for minimal server lag
Discord Integration
Real-time cheat notifications via Discord webhooks
Configurable Checks
Every check can be individually toggled and fine-tuned
# Clone the repository
git clone https://github.com/KaloudasDev/frostshield.git
# Navigate to project directorycd frostshield
# Compile and package the plugin
mvn clean package
API for Developers
// Get violation level for a specific checkintviolations = FrostShield.getInstance()
.getPlayerDataManager()
.getPlayerData(player)
.getViolations("speed");
// Check if a player is currently bannedbooleanisBanned = FrostShield.getInstance()
.getPunishmentManager()
.isPlayerBanned(player);