EpicGuard

โญ โญ (110 endorsements) ๐Ÿ“ฅ 16,590 downloads ๐Ÿ“Œ v7.6.1 ๐Ÿ“… 2/17/2023
๐ŸŸ  Updated over a year ago

By 4drian3d ยท folia

โฌ‡ Download Mod Source: Modrinth โ†— ๐Ÿ“… Updated: 8/29/2025 ๐Ÿ“… Created: 2/17/2023

๐Ÿ” Analysis

  • ๐Ÿ‘ 0.7% endorsement rate
  • ๐Ÿ† #26 of 169 folia mods in this game by downloads

๐Ÿ“‹ About This Mod

# ๐Ÿ›ก EpicGuard (https://img.shields.io/github/stars/4drian3d/EpicGuard)](https://github.com/4drian3d/EpicGuard/stargazers) (https://img.shields.io/github/forks/4drian3d/EpicGuard)](https://github.com/4drian3d/EpicGuard/network) (https://img.shields.io/github/issues/4drian3d/EpicGuard)](https://github.com/4drian3d/EpicGuard/issues) (https://img.shields.io/github/license/4drian3d/EpicGuard)](https://github.com/4drian3d/EpicGuard/blob/master/LICENSE) (https://github.com/4drian3d/EpicGuard/actions/workflows/gradle.yml/badge.svg)](https://github.com/4drian3d/EpicGuard/actions/workflows/gradle.yml) !(https://img.shields.io/github/downloads/4drian3d/EpicGuard/total?logo=GitHub&style=flat-square) A simple AntiBot plugin for newest Minecraft versions. ## โœ… Supported platforms / Latest release requirements * (https://papermc.io/) *(all paper forks are supported)* * (https://papermc.io/software/velocity) * Java **17** ## โœจ Features * A total of **8** configurable antibot checks: * Geographical check - country/city blacklist or whitelist. * VPN/Proxy check - configurable services and caching. * Nickname check - block certain nickname patterns using regex. * Reconnect check - require re-joining the server with an identical pair of address and nickname. * Server list check - require pinging the server before connecting (adding it to the server list). * Settings check - make sure that player sends a settings packet after joining (vanilla client behaviour). * Lockdown - temporarily block incoming connections if there are too many of them. * Name similarity check (BETA) * Account limit. * SQLite/MySQL support. * Live actionbar statistics. * Automatic whitelisting. * Console filter. (https://www.bisecthosting.com/partners/custom-banners/6fa909d5-ad2b-42c2-a7ec-1c51f8b6384f.webp)](https://www.bisecthosting.com/4drian3d?r=ModEpicGuard) ## ๐Ÿ“š Commands & Permissions To be able to use commands, give yourself the **epicguard.admin** permission. On different platforms there are additional aliases available, such as **/guardvelocity** or **/epicguardpaper** | Command | Description | |----------------------------------------------|------------------------------------------------------------------------| | /guard help | Displays all available commands. | | /guard reload | Reloads config and messages. | | /guard whitelist <add/remove> <nick/address> | Whitelist/unwhitelist an address or nickname. | | /guard blacklist <add/remove> <nick/address> | Blacklist/unblacklist an address or nickname. | | /guard analyze <nick/address> | Displays detailed information about the specified address or nickname. | | /guard status | Toggles live attack information on actionbar. | | /guard save | Forces save to the database. | ## ๐Ÿ”ง Using EpicGuard API in your project: The api is not very advanced, and there is not much you can do with it for now. <details> <summary>Gradle (Kotlin)</summary> ```kotlin repositories { // Snapshots maven("https://s01.oss.sonatype.org/content/repositories/snapshots/") // Releases mavenCentral() } dependencies { compileOnly("com.github.4drian3d:epicguard-api:") } ``` </details> <details> <summary>Gradle (Groovy)</summary> ```groovy repositories { maven { url = 'https://s01.oss.sonatype.org/content/repositories/snapshots/' } mavenCentral() } dependencies { compileOnly 'com.github.4drian3d:epicguard-api:' } ``` </details> <details> <summary>Maven</summary> ```xml <repositories> <!-- Only for Snapshots--> <repository> <id>sonatype-oss-snapshots1</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> </repository> </repositories> <dependencies> <dependency> <groupId>com.github.4drian3d</groupId> <artifactId>epicguard-api</artifactId> <version></version> <scope>provided</scope> </dependency> </dependencies> ``` </details> <details> <summary>Using the API</summary> Make sure that EpicGuard is fully loaded before your plugin. (https://github.com/4drian3d/EpicGuard/blob/master/core/src/main/java/me/xneox/epicguard/core/EpicGuardAPI.java) ```java // Importing the API class. import me.xneox.epicguard.core.EpicGuardAPI; import me.xneox.epicguard.core.manager.AttackManager; public class EpicGuardAPIExample { // Accessing the EpicGuardAPI in

# ๐Ÿ›ก EpicGuard [!(https://img.shields.io/github/stars/4drian3d/EpicGuard)](https://github.com/4drian3d/EpicGuard/stargazers) [!(https://img.shields.io/github/forks/4drian3d/EpicGuard)](https://github.com/4drian3d/EpicGuard/network) [!(https://img.shields.io/github/issues/4drian3d/EpicGuard)](https://github.com/4drian3d/EpicGuard/issues) [!(https://img.shields.io/github/license/4drian3d/EpicGuard)](https://github.com/4drian3d/EpicGuard/blob/master/LICENSE) [!(https://github.com/4drian3d/EpicGuard/actions/workflows/gradle.yml/badge.svg)](https://github.com/4drian3d/EpicGuard/actions/workflows/gradle.yml) ![](https://img.shields.io/github/downloads/4drian3d/EpicGuard/total?logo=GitHub&style=flat-square)

A simple AntiBot plugin for newest Minecraft versions.

## โœ… Supported platforms / Latest release requirements (https://papermc.io/) (all paper forks are supported) (https://papermc.io/software/velocity) Java 17

## โœจ Features A total of 8 configurable antibot checks: Geographical check - country/city blacklist or whitelist. VPN/Proxy check - configurable services and caching. Nickname check - block certain nickname patterns using regex. Reconnect check - require re-joining the server with an identical pair of address and nickname. Server list check - require pinging the server before connecting (adding it to the server list). Settings check - make sure that player sends a settings packet after joining (vanilla client behaviour). Lockdown - temporarily block incoming connections if there are too many of them. Name similarity check (BETA) Account limit. SQLite/MySQL support. Live actionbar statistics. Automatic whitelisting. * Console filter.

[![](https://www.bisecthosting.com/partners/custom-banners/6fa909d5-ad2b-42c2-a7ec-1c51f8b6384f.webp)](https://www.bisecthosting.com/4drian3d?r=ModEpicGuard)

## ๐Ÿ“š Commands & Permissions To be able to use commands, give yourself the epicguard.admin permission. On different platforms there are additional aliases available, such as /guardvelocity or /epicguardpaper

| Command | Description | |----------------------------------------------|------------------------------------------------------------------------| | /guard help | Displays all available commands. | | /guard reload | Reloads config and messages. | | /guard whitelist | Whitelist/unwhitelist an address or nickname. | | /guard blacklist | Blacklist/unblacklist an address or nickname. | | /guard analyze | Displays detailed information about the specified address or nickname. | | /guard status | Toggles live attack information on actionbar. | | /guard save | Forces save to the database. |

## ๐Ÿ”ง Using EpicGuard API in your project: The api is not very advanced, and there is not much you can do with it for now.

Gradle (Kotlin)

```kotlin repositories { // Snapshots maven("https://s01.oss.sonatype.org/content/repositories/snapshots/") // Releases mavenCentral() } dependencies { compileOnly("com.github. 4drian3d:epicguard-api:") } ```

Gradle (Groovy)

```groovy repositories { maven { url = 'https://s01.oss.sonatype.org/content/repositories/snapshots/' } mavenCentral() } dependencies { compileOnly 'com.github. 4drian3d:epicguard-api:' } ```

Maven

```xml sonatype-oss-snapshots1 https://s01.oss.sonatype.org/content/repositories/snapshots/ com.github. 4drian3d epicguard-api provided ```

Using the API Make sure that EpicGuard is fully loaded before your plugin.

(https://github.com/4drian3d/EpicGuard/blob/master/core/src/main/java/me/xneox/epicguard/core/EpicGuardAPI.java)

```java // Importing the API class. import me.xneox.epicguard.core. EpicGuardAPI; import me.xneox.epicguard.core.manager. AttackManager; public class EpicGuardAPIExample { // Accessing the EpicGuardAPI in

๐Ÿค– AI-enhanced โ€” based on mod data

๐Ÿ“Š Mod Details

Game
Minecraft Plugins
Author
4drian3d
Version
7.6.1
Downloads
16,590
Endorsements
110
Category
folia
Created
2/17/2023
Updated
8/29/2025
Game Versions
1.7.2, 1.7.3, 1.7.4, 1.7.5, 1.7.6
Tags
library, management, technology

๐Ÿ”ง How to Install Minecraft Plugins Mods

Download from Modrinth. Use Prism Launcher or drop into your mods folder.

๐Ÿ“– Full step-by-step install guide for Minecraft Plugins โ†’

Visit the official mod page for specific installation instructions for this mod.

๐ŸŽฎ Need cheat codes or console commands? Check ur gaming wiki for Minecraft Plugins commands, item IDs, and more.

โ“ Frequently Asked Questions

Which Minecraft Plugins versions does EpicGuard support?

The author lists 1.7.2, 1.7.3, 1.7.4, 1.7.5, 1.7.6, 1.7.7. Other versions may work but are untested by the author.

What is the latest version of EpicGuard?

Version 7.6.1, published 2025-08-29 with 16,590 downloads recorded at the source.

Keep browsing โ€” more Minecraft Plugins mods await

๐Ÿ“‹ All Minecraft Plugins Mods ๐Ÿ† Top 25 ๐Ÿ“‚ More folia ๐Ÿ‘ค More by 4drian3d ๐Ÿ”Ž Similar Mods ๐ŸŒ Best folia (All Games) ๐Ÿ”€ Check Compatibility โš–๏ธ Compare Mods ๐Ÿ†• New Mods