{"id":25467,"date":"2026-06-01T12:11:47","date_gmt":"2026-06-01T09:11:47","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/bantools\/"},"modified":"2026-06-01T12:11:47","modified_gmt":"2026-06-01T09:11:47","slug":"bantools","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/bantools\/","title":{"rendered":"BanTools"},"content":{"rendered":"<p># BanTools &#8211; Velocity Ban Management Plugin<\/p>\n<p>![Velocity](https:\/\/img.shields.io\/badge\/Velocity-3.x-blue) ![Java](https:\/\/img.shields.io\/badge\/Java-11-green) ![License](https:\/\/img.shields.io\/badge\/License-GPLv3-green.svg)<\/p>\n<p>**BanTools** is an advanced ban management plugin designed for Minecraft Velocity servers. It supports banning players by UUID, IP address, or username, and provides dynamic configuration reloading and real-time kicking of online players.<\/p>\n<p>> **Note**: This plugin is AI-developed to help server administrators manage player bans more efficiently.<\/p>\n<p>&#8212;<\/p>\n<p>## Features<\/p>\n<p>&#8211; **Ban Functionality**:<br \/>\n    &#8211; Supports banning by UUID, IP address, or player name.<br \/>\n    &#8211; Default ban duration is permanent (if no duration is specified).<br \/>\n    &#8211; Supports specifying ban duration (e.g., `7d` for 7 days, `2024\/1\/10-2025\/01\/10` for a custom date range).<br \/>\n    &#8211; Automatically kicks banned online players.<br \/>\n&#8211; **Unban Functionality**:<br \/>\n    &#8211; Supports unbanning a player using the `\/bantools unban` command.<br \/>\n    &#8211; Unbanning does not delete the ban record but marks the ban status as invalid.<br \/>\n&#8211; **Kick Functionality**:<br \/>\n    &#8211; Supports immediately kicking a player using the `\/bantools kick` command.<br \/>\n    &#8211; A custom kick reason can be specified (default uses the configured reason in the config file).<br \/>\n&#8211; **Automatic Unban Mechanism**:<br \/>\n    &#8211; If a ban duration is specified, the ban will automatically expire when the time ends.<br \/>\n&#8211; **Multi-Condition Matching**:<br \/>\n    &#8211; On login, checks if UUID, IP address, or player name matches any ban records.<br \/>\n    &#8211; If any condition matches, the player is considered banned.<br \/>\n&#8211; **Configuration File Support**:<br \/>\n    &#8211; All ban records are stored in the `config.conf` file, which supports manual editing.<br \/>\n    &#8211; The configuration file allows setting default ban and kick reasons.<br \/>\n&#8211; **Dynamic Configuration Reload**:<br \/>\n    &#8211; Supports dynamically reloading the configuration file via the `\/bantools reload` command without restarting the server.<br \/>\n&#8211; **Real-Time Synchronization**:<br \/>\n    &#8211; All ban, unban, and kick operations are synchronized in real-time across all downstream servers.<\/p>\n<p>&#8212;<\/p>\n<p>## Installation<\/p>\n<p>### 1. Download the Plugin<br \/>\nDownload the latest version of `BanTools.jar` from GitHub or other distribution channels.<\/p>\n<p>### 2. Install the Plugin<br \/>\nPlace the downloaded `BanTools.jar` file into the `plugins\/` directory of your Velocity server.<\/p>\n<p>### 3. Start the Server<br \/>\nStart the Velocity server. The plugin will automatically generate a default configuration file at `plugins\/BanTools\/config.conf`.<\/p>\n<p>## Configuration\uff08`config.conf`\uff09<br \/>\n&#8220;`<br \/>\ndefaults {<br \/>\n  ban_reason = &#8220;\u8fdd\u53cd\u670d\u52a1\u5668\u89c4\u5219&#8221;<br \/>\n  kick_reason = &#8220;\u7ba1\u7406\u5458\u5f3a\u5236\u8e22\u51fa&#8221;<br \/>\n}<\/p>\n<p>bans {<br \/>\n  &#8220;Player1&#8221;: {<br \/>\n    name: &#8220;Player1&#8221;<br \/>\n    uuid: &#8220;069a79f4-44e9-4726-a5be-fca90e38aaf5&#8221;<br \/>\n    ip: &#8220;192.168.1.100&#8221;<br \/>\n    reason: &#8220;\u4f5c\u5f0a\u884c\u4e3a&#8221;<br \/>\n    start_time: 1698765432<br \/>\n    end_time: null  # \u6c38\u4e45\u5c01\u7981<br \/>\n    state: true     # \u5c01\u7981\u72b6\u6001\uff08true\uff1a\u751f\u6548\uff0cfalse\uff1a\u89e3\u9664\uff09<br \/>\n  }<br \/>\n}<br \/>\n&#8220;`<br \/>\n&#8211; `defaults.ban_reason`: Default ban reason.<br \/>\n&#8211; `defaults.kick_reason`: Default kick reason.<br \/>\n&#8211; `bans`: Stores all ban records, each entry contains the following fields:<br \/>\n  &#8211; `name`: Player name.<br \/>\n  &#8211; `uuid`: Player UUID.<br \/>\n  &#8211; `ip`: Player IP address.<br \/>\n  &#8211; `reason`: Ban reason.<br \/>\n  &#8211; `start_time`: Ban start time (Unix timestamp).<br \/>\n  &#8211; `end_time`: Ban end time (Unix timestamp), set to `null` for permanent bans.<br \/>\n  &#8211; `state`: Ban status (true for active, false for unban).<\/p>\n<p>&#8212;<\/p>\n<p>## Usage<\/p>\n<p>### Commands<\/p>\n<p>| Command                             | Permission Node               | 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;&#8211;|<br \/>\n| `\/bantools reload`                  | `bantools.command.reload`     | Reloads the plugin configuration file. |<br \/>\n| `\/bantools ban <type> <value>`      | `bantools.command.ban`        | Bans the specified player.           |<br \/>\n| `\/bantools unban <player>`          | `bantools.command.unban`      | Unbans the specified player.         |<br \/>\n| `\/bantools kick <player>`           | `bantools.command.kick`       | Kicks the specified player.          |<\/p>\n<p>### Examples<br \/>\n1. Ban a player named `Bianpao_xiaohai`: `\/bantools ban Bianpao_xiaohai` (default ban duration is permanent; a reason can be added afterward).<br \/>\n2. Unban a player named `Steve`: `\/bantools unban Steve`.<br \/>\n3. Kick a player named `Steve`: `\/bantools kick Steve`.<\/p>\n<p>&#8212;<\/p>\n<p>### Support &#038; Feedback<br \/>\nIf you encounter issues or have suggestions, please contact us via:<\/p>\n<p>&#8211; **GitHub Issues**: Submit an Issue<\/p>\n<p>&#8212;<\/p>\n<p>### License &#038; Disclaimer<br \/>\n&#8211; **Development Notice**: This plugin is AI-developed to provide efficient ban management tools for the Minecraft Velocity community.<br \/>\n&#8211; **License**: Distributed under the GNU General Public License v3.0. You may use, modify, and distribute it under the license terms.<br \/>\n&#8211; **Disclaimer**: The developer is not responsible for any issues arising from the use of this plugin.<\/p>\n<p>&#8212;<\/p>\n<p>### Acknowledgments<br \/>\nSpecial thanks to the following technologies and tools:<\/p>\n<p>&#8211; Velocity API<br \/>\n&#8211; Typesafe Config<br \/>\n&#8211; Adventure API<\/p>\n","protected":false},"excerpt":{"rendered":"<p>BanTools is an advanced ban management plugin designed for Minecraft Velocity servers. It supports banning players by UUID, IP address, or username, and provides dynamic configuration reloading and real-time kicking of online players.<\/p>\n","protected":false},"featured_media":25468,"template":"","meta":{"_minecraft_slug":"bantools","_minecraft_project_id":"u9OtVM1S","_minecraft_author":"NSrank","_minecraft_license":"GPL-3.0-only","_minecraft_downloads":846,"_minecraft_follows":3,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"bantools.zip","_minecraft_size_bytes":124045,"_minecraft_version_count":6,"_minecraft_updated_at":"2026-05-16T09:08:27.218329Z","_minecraft_date_created":"2025-04-22T21:29:38.775327Z","_minecraft_date_modified":"2026-01-20T00:42:38.527540Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/bantools","_minecraft_icon_attachment_id":25468,"_minecraft_imported_at":"2026-06-01T09:11:47+00:00","_minecraft_import_hash":"a2d90613d0d7125f725771231a353c56","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[126,92,985],"mod_loader":[986],"minecraft_version":[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,40,41,73,74,38,78,79,80,81,82],"class_list":["post-25467","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-management","mod_category-utility","mod_category-velocity","mod_loader-velocity","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-10","minecraft_version-1-21-11","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-21-9"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>BanTools - 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\/bantools\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"BanTools - Minecraft\" \/>\n<meta property=\"og:description\" content=\"BanTools is an advanced ban management plugin designed for Minecraft Velocity servers. It supports banning players by UUID, IP address, or username, and provides dynamic configuration reloading and real-time kicking of online players.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/bantools\/\" \/>\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\\\/bantools\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/bantools\\\/\",\"name\":\"BanTools - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/bantools\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/bantools\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/bantools-icon-8abb70412eed40556b8b435a23bd934c1c35b43f_96.webp\",\"datePublished\":\"2026-06-01T09:11:47+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/bantools\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/bantools\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/bantools\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/bantools-icon-8abb70412eed40556b8b435a23bd934c1c35b43f_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/bantools-icon-8abb70412eed40556b8b435a23bd934c1c35b43f_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/bantools\\\/#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\":\"BanTools\"}]},{\"@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":"BanTools - 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\/bantools\/","og_locale":"en_US","og_type":"article","og_title":"BanTools - Minecraft","og_description":"BanTools is an advanced ban management plugin designed for Minecraft Velocity servers. It supports banning players by UUID, IP address, or username, and provides dynamic configuration reloading and real-time kicking of online players.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/bantools\/","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\/bantools\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/bantools\/","name":"BanTools - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/bantools\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/bantools\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/bantools-icon-8abb70412eed40556b8b435a23bd934c1c35b43f_96.webp","datePublished":"2026-06-01T09:11:47+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/bantools\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/bantools\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/bantools\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/bantools-icon-8abb70412eed40556b8b435a23bd934c1c35b43f_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/bantools-icon-8abb70412eed40556b8b435a23bd934c1c35b43f_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/bantools\/#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":"BanTools"}]},{"@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\/25467","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\/25468"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=25467"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=25467"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=25467"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=25467"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}