{"id":65066,"date":"2026-06-03T20:52:00","date_gmt":"2026-06-03T17:52:00","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/epicguard\/"},"modified":"2026-06-03T20:52:00","modified_gmt":"2026-06-03T17:52:00","slug":"epicguard","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/epicguard\/","title":{"rendered":"EpicGuard"},"content":{"rendered":"<p># \ud83d\udee1 EpicGuard<br \/>\n![GitHub stars](https:\/\/github.com\/4drian3d\/EpicGuard\/stargazers) ![GitHub forks](https:\/\/github.com\/4drian3d\/EpicGuard\/network) ![GitHub issues](https:\/\/github.com\/4drian3d\/EpicGuard\/issues) ![GitHub license](https:\/\/github.com\/4drian3d\/EpicGuard\/blob\/master\/LICENSE) ![Java CI](https:\/\/github.com\/4drian3d\/EpicGuard\/actions\/workflows\/gradle.yml) ![](https:\/\/img.shields.io\/github\/downloads\/4drian3d\/EpicGuard\/total?logo=GitHub&#038;style=flat-square)<\/p>\n<p>A simple AntiBot plugin for newest Minecraft versions.<\/p>\n<p>## \u2705 Supported platforms \/ Latest release requirements<br \/>\n* Paper 1.20.1+ *(all paper forks are supported)*<br \/>\n* Velocity 3.3+<br \/>\n* Java **17**<\/p>\n<p>## \u2728 Features<br \/>\n* A total of **8** configurable antibot checks:<br \/>\n  * Geographical check &#8211; country\/city blacklist or whitelist.<br \/>\n  * VPN\/Proxy check &#8211; configurable services and caching.<br \/>\n  * Nickname check &#8211; block certain nickname patterns using regex.<br \/>\n  * Reconnect check &#8211; require re-joining the server with an identical pair of address and nickname.<br \/>\n  * Server list check &#8211; require pinging the server before connecting (adding it to the server list).<br \/>\n  * Settings check &#8211; make sure that player sends a settings packet after joining (vanilla client behaviour).<br \/>\n  * Lockdown &#8211; temporarily block incoming connections if there are too many of them.<br \/>\n  * Name similarity check (BETA)<br \/>\n  * Account limit.<br \/>\n* SQLite\/MySQL support.<br \/>\n* Live actionbar statistics.<br \/>\n* Automatic whitelisting.<br \/>\n* Console filter.<\/p>\n<p>![](https:\/\/www.bisecthosting.com\/4drian3d?r=ModEpicGuard)<\/p>\n<p>## \ud83d\udcda Commands &#038; Permissions<br \/>\nTo be able to use commands, give yourself the **epicguard.admin** permission.<br \/>\nOn different platforms there are additional aliases available, such as **\/guardvelocity** or **\/epicguardpaper**<\/p>\n<p>| Command                                      | Description                                                            |<br \/>\n|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;|<br \/>\n| \/guard help                                  | Displays all available commands.                                       |<br \/>\n| \/guard reload                                | Reloads config and messages.                                           |<br \/>\n| \/guard whitelist <add\/remove> <nick\/address> | Whitelist\/unwhitelist an address or nickname.                          |<br \/>\n| \/guard blacklist <add\/remove> <nick\/address> | Blacklist\/unblacklist an address or nickname.                          |<br \/>\n| \/guard analyze <nick\/address>                | Displays detailed information about the specified address or nickname. |<br \/>\n| \/guard status                                | Toggles live attack information on actionbar.                          |<br \/>\n| \/guard save                                  | Forces save to the database.                                           |<\/p>\n<p>## \ud83d\udd27 Using EpicGuard API in your project:<br \/>\nThe api is not very advanced, and there is not much you can do with it for now.<\/p>\n<details>\n<summary>Gradle (Kotlin)<\/summary>\n<p>&#8220;`kotlin<br \/>\nrepositories {<br \/>\n    \/\/ Snapshots<br \/>\n    maven(&#8220;https:\/\/s01.oss.sonatype.org\/content\/repositories\/snapshots\/&#8221;)<br \/>\n    \/\/ Releases<br \/>\n    mavenCentral()<br \/>\n}<br \/>\ndependencies {<br \/>\n    compileOnly(&#8220;com.github.4drian3d:epicguard-api:[VERSION HERE]&#8221;)<br \/>\n}<br \/>\n&#8220;`<br \/>\n<\/details>\n<details>\n<summary>Gradle (Groovy)<\/summary>\n<p>&#8220;`groovy<br \/>\nrepositories {<br \/>\n    maven {<br \/>\n      url = &#8216;https:\/\/s01.oss.sonatype.org\/content\/repositories\/snapshots\/&#8217;<br \/>\n    }<br \/>\n  mavenCentral()<br \/>\n}<br \/>\ndependencies {<br \/>\n    compileOnly &#8216;com.github.4drian3d:epicguard-api:[VERSION OR COMMIT ID HERE]&#8217;<br \/>\n}<br \/>\n&#8220;`<br \/>\n<\/details>\n<details>\n<summary>Maven<\/summary>\n<p>&#8220;`xml<br \/>\n  <repositories><br \/>\n    <!-- Only for Snapshots--><br \/>\n    <repository><br \/>\n      <id>sonatype-oss-snapshots1<\/id><br \/>\n      <url>https:\/\/s01.oss.sonatype.org\/content\/repositories\/snapshots\/<\/url><br \/>\n    <\/repository><br \/>\n  <\/repositories><br \/>\n  <dependencies><br \/>\n      <dependency><br \/>\n         <groupId>com.github.4drian3d<\/groupId><br \/>\n         <artifactId>epicguard-api<\/artifactId><br \/>\n         <version>[VERSION HERE]<\/version><br \/>\n         <scope>provided<\/scope><br \/>\n     <\/dependency><br \/>\n  <\/dependencies><br \/>\n&#8220;`<br \/>\n<\/details>\n<details>\n<summary>Using the API<\/summary>\n<p>Make sure that EpicGuard is fully loaded before your plugin.<\/p>\n<p>Click to see the API class<\/p>\n<p>&#8220;`java<br \/>\n\/\/ Importing the API class.<br \/>\nimport me.xneox.epicguard.core.EpicGuardAPI;<br \/>\nimport me.xneox.epicguard.core.manager.AttackManager;<br \/>\npublic class EpicGuardAPIExample {<br \/>\n  \/\/ Accessing the EpicGuardAPI instance.<br \/>\n  EpicGuardAPI api = EpicGuardAPI.INSTANCE;<br \/>\n  \/\/ Obtaining the AttackManager instance:<br \/>\n  AttackManager attackManager = api.attackManager();<br \/>\n  \/\/ Checking if server is under attack.<br \/>\n  boolean isUnderAttack = attackManager.isUnderAttack();<br \/>\n  \/\/ checking current connections per second.<br \/>\n  int cps = attackManager.connectionCounter();<\/p>\n<p>  \/\/ Checking user&#8217;s country:<br \/>\n  String countryId = api.geoManager().countryCode(&#8220;127.0.0.1&#8221;);<br \/>\n}<br \/>\n&#8220;`<br \/>\n<\/details>\n<p>## \ud83d\udd75\ufe0f Privacy disclaimers<br \/>\n* This plugin connect to various external services, to fully work as intended.<br \/>\n  * MaxMind&#8217;s Geolite2 databases (country and city) are downloaded at the first startup and updated every week. Geolocation of your users is checked locally on your server.<br \/>\n  * *In the default configuration*, IP addresses of connecting users are sent to https:\/\/proxycheck.io\/ to check if they&#8217;re not using a proxy or a VPN.<br \/>\n  * IPs and nicknames associated with them are stored in the local database *(as plain text(!))*.<br \/>\n  * This plugin periodically checks the latest version released in this repository. *This feature can be disabled.*<br \/>\n  * *There is no metrics system or any other kind of data collection.*<\/p>\n<p>This is an updated version of EpicGuard for recent versions of Paper, Waterfall and Velocity. <\/p>\n","protected":false},"excerpt":{"rendered":"<p>Bot protection system for Minecraft servers and proxies<\/p>\n","protected":false},"featured_media":65067,"template":"","meta":{"_minecraft_slug":"epicguard","_minecraft_project_id":"Z5ayyqQS","_minecraft_author":"4drian3d","_minecraft_license":"GPL-3.0-or-later","_minecraft_downloads":14938,"_minecraft_follows":108,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"epicguard.zip","_minecraft_size_bytes":27492821,"_minecraft_version_count":24,"_minecraft_updated_at":"2026-05-16T01:05:52.975834Z","_minecraft_date_created":"2023-02-17T02:02:42.376703Z","_minecraft_date_modified":"2025-08-29T23:04:09.871678Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/epicguard","_minecraft_icon_attachment_id":65067,"_minecraft_imported_at":"2026-06-03T17:52:01+00:00","_minecraft_import_hash":"12cfa5447947de9037edc44235353337","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[125,873,126,90,127,128,123,92,985,992],"mod_loader":[131,132,133,986,993],"minecraft_version":[339,340,341,357,359,360,379,382,385,438,446,449,110,111,112,113,114,115,116,117,118,119,120,46,47,48,49,50,51,52,53,54,55,56,57,58,59,36,60,93,94,101,102,62,37,73,74,38,78,79,80,81,21,13,14,15,16,17,18,19,20,22,23,24,25,26,27,28,29,30,31,860,861,862,863,864],"class_list":["post-65066","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-folia","mod_category-library","mod_category-management","mod_category-optimization","mod_category-paper","mod_category-purpur","mod_category-technology","mod_category-utility","mod_category-velocity","mod_category-waterfall","mod_loader-folia","mod_loader-paper","mod_loader-purpur","mod_loader-velocity","mod_loader-waterfall","minecraft_version-1-10","minecraft_version-1-10-1","minecraft_version-1-10-2","minecraft_version-1-11","minecraft_version-1-11-1","minecraft_version-1-11-2","minecraft_version-1-12","minecraft_version-1-12-1","minecraft_version-1-12-2","minecraft_version-1-13","minecraft_version-1-13-1","minecraft_version-1-13-2","minecraft_version-1-14","minecraft_version-1-14-1","minecraft_version-1-14-2","minecraft_version-1-14-3","minecraft_version-1-14-4","minecraft_version-1-15","minecraft_version-1-15-1","minecraft_version-1-15-2","minecraft_version-1-16","minecraft_version-1-16-1","minecraft_version-1-16-2","minecraft_version-1-16-3","minecraft_version-1-16-4","minecraft_version-1-16-5","minecraft_version-1-17","minecraft_version-1-17-1","minecraft_version-1-18","minecraft_version-1-18-1","minecraft_version-1-18-2","minecraft_version-1-19","minecraft_version-1-19-1","minecraft_version-1-19-2","minecraft_version-1-19-3","minecraft_version-1-19-4","minecraft_version-1-20","minecraft_version-1-20-1","minecraft_version-1-20-2","minecraft_version-1-20-3","minecraft_version-1-20-4","minecraft_version-1-20-5","minecraft_version-1-20-6","minecraft_version-1-21","minecraft_version-1-21-1","minecraft_version-1-21-2","minecraft_version-1-21-3","minecraft_version-1-21-4","minecraft_version-1-21-5","minecraft_version-1-21-6","minecraft_version-1-21-7","minecraft_version-1-21-8","minecraft_version-1-7-10","minecraft_version-1-7-2","minecraft_version-1-7-3","minecraft_version-1-7-4","minecraft_version-1-7-5","minecraft_version-1-7-6","minecraft_version-1-7-7","minecraft_version-1-7-8","minecraft_version-1-7-9","minecraft_version-1-8","minecraft_version-1-8-1","minecraft_version-1-8-2","minecraft_version-1-8-3","minecraft_version-1-8-4","minecraft_version-1-8-5","minecraft_version-1-8-6","minecraft_version-1-8-7","minecraft_version-1-8-8","minecraft_version-1-8-9","minecraft_version-1-9","minecraft_version-1-9-1","minecraft_version-1-9-2","minecraft_version-1-9-3","minecraft_version-1-9-4"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>EpicGuard - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/epicguard\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"EpicGuard - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Bot protection system for Minecraft servers and proxies\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/epicguard\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/epicguard\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/epicguard\\\/\",\"name\":\"EpicGuard - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/epicguard\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/epicguard\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/epicguard-icon-1554b40d0066cf822f881927cc147c1156b3f862.png\",\"datePublished\":\"2026-06-03T17:52:00+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/epicguard\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/epicguard\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/epicguard\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/epicguard-icon-1554b40d0066cf822f881927cc147c1156b3f862.png\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/epicguard-icon-1554b40d0066cf822f881927cc147c1156b3f862.png\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/epicguard\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"EpicGuard\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"EpicGuard - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/epicguard\/","og_locale":"en_US","og_type":"article","og_title":"EpicGuard - Minecraft","og_description":"Bot protection system for Minecraft servers and proxies","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/epicguard\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/epicguard\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/epicguard\/","name":"EpicGuard - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/epicguard\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/epicguard\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/epicguard-icon-1554b40d0066cf822f881927cc147c1156b3f862.png","datePublished":"2026-06-03T17:52:00+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/epicguard\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/epicguard\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/epicguard\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/epicguard-icon-1554b40d0066cf822f881927cc147c1156b3f862.png","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/epicguard-icon-1554b40d0066cf822f881927cc147c1156b3f862.png","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/epicguard\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"EpicGuard"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/65066","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/65067"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=65066"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=65066"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=65066"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=65066"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}