{"id":165637,"date":"2026-06-09T20:55:41","date_gmt":"2026-06-09T17:55:41","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/velocityutilsplus\/"},"modified":"2026-06-09T20:55:41","modified_gmt":"2026-06-09T17:55:41","slug":"velocityutilsplus","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/velocityutilsplus\/","title":{"rendered":"VelocityUtilsPlus"},"content":{"rendered":"<p>A comprehensive Velocity proxy plugin that provides intelligent lobby balancing, premium player routing, database-backed player statistics, and advanced moderation features.<\/p>\n<p>![Java Version](https:\/\/www.oracle.com\/java\/)<br \/>\n![Velocity API](https:\/\/papermc.io\/software\/velocity)<\/p>\n<p>**Features**<\/p>\n<p>**Smart Lobby Management**<br \/>\n&#8211; Intelligent Load Balancing: Automatically distributes players across multiple lobby servers based on current player counts<br \/>\n&#8211; Premium Player Routing: Dedicated lobby and challenge servers for premium\/creator players<br \/>\n&#8211; Offline Server Detection: Automatically detects and avoids offline servers when balancing<br \/>\n&#8211; Server Status Caching: Efficient server status checking to minimize performance impact<\/p>\n<p>**Database Integration**<br \/>\n&#8211; Player Playtime Tracking: Track total playtime and per-server statistics<br \/>\n&#8211; Custom Statistics: Track challenges completed and other custom player achievements<br \/>\n&#8211; Database-Backed Bans: Offline ban support with MySQL\/MariaDB backend<br \/>\n&#8211; Connection Pool Management: Efficient HikariCP connection pooling<\/p>\n<p>**Moderation Features**<br \/>\n&#8211; Database Bans: Ban players even when they&#8217;re offline<br \/>\n&#8211; Ban Management Commands: Easy-to-use commands for banning, unbanning, and viewing bans<br \/>\n&#8211; Configurable Permissions: Fine-grained permission system for all commands<\/p>\n<p>**Player Statistics**<br \/>\n&#8211; Leaderboards: View top players by playtime<br \/>\n&#8211; Personal Stats: Players can check their own statistics<br \/>\n&#8211; Challenge Tracking: Track and record challenge completions<\/p>\n<p>**Metrics and Monitoring**<br \/>\n&#8211; bStats Integration: Anonymous usage statistics<br \/>\n&#8211; Comprehensive Logging: Detailed logging for debugging and monitoring<\/p>\n<p>**Requirements**<\/p>\n<p>&#8211; Velocity proxy server version 3.4.0 or higher<br \/>\n&#8211; Java 17 or higher<br \/>\n&#8211; MySQL 8.0+ or MariaDB 10.5+ (optional, required for database features)<\/p>\n<p>**Installation**<\/p>\n<p>1. Download the latest VelocityUtilsPlus.jar from the Releases page<br \/>\n2. Copy the JAR file to your Velocity plugins folder<br \/>\n3. Start your Velocity server to generate the default configuration<br \/>\n4. Stop the server and configure `plugins\/velocityutilsplus\/config.toml`<br \/>\n5. If using database features, set up your database (see Database Setup section below)<br \/>\n6. Restart your Velocity server<\/p>\n<p>## Configuration<\/p>\n<p>The plugin will generate a config.toml file in `plugins\/velocityutilsplus\/`. Key configuration sections include:<\/p>\n<p>**Lobby Configuration**<\/p>\n<p>&#8220;`toml<br \/>\n[lobbies]<br \/>\n# List your regular lobby servers (must match names in velocity.toml)<br \/>\nregular_lobbies = [&#8220;Lobby 1&#8221;, &#8220;Lobby 2&#8221;, &#8220;Lobby 3&#8221;, &#8220;Lobby 4&#8221;]<\/p>\n<p># Premium player servers<br \/>\npremium_lobby = &#8220;Creator Lobby&#8221;<br \/>\npremium_challenge = &#8220;Creator Challenge&#8221;<br \/>\n&#8220;`<\/p>\n<p>**Database Configuration**<\/p>\n<p>&#8220;`toml<br \/>\n[database]<br \/>\n# Enable database integration<br \/>\nenabled = true<br \/>\ntype = &#8220;mysql&#8221;  # or &#8220;mariadb&#8221;<br \/>\naddress = &#8220;127.0.0.1:3306&#8221;<br \/>\ndatabase = &#8220;vup&#8221;<br \/>\nusername = &#8220;vup_user&#8221;<br \/>\npassword = &#8220;your_secure_password&#8221;<\/p>\n<p># Connection pool settings<br \/>\nmax_pool_size = 10<br \/>\nmin_idle = 2<br \/>\nconnection_timeout = 30000<\/p>\n<p>[database.features]<br \/>\nplaytime_tracking = true<br \/>\nstatistics_tracking = true<br \/>\nfriends_system = false  # Not yet implemented<br \/>\ndatabase_bans = true<br \/>\n&#8220;`<\/p>\n<p>**Permissions Configuration**<\/p>\n<p>&#8220;`toml<br \/>\n[permissions]<br \/>\n# Define which permissions are required for each command<br \/>\n# Set to empty string &#8220;&#8221; to allow everyone to use the command<br \/>\ngban = &#8220;vup.admin&#8221;<br \/>\ngunban = &#8220;vup.admin&#8221;<br \/>\nbanlist = &#8220;vup.moderator&#8221;<br \/>\nstats = &#8220;&#8221;  # Everyone can use \/stats<br \/>\nstats_others = &#8220;vup.moderator&#8221;  # Permission to view other players&#8217; stats<br \/>\nleaderboard = &#8220;&#8221;  # Everyone can use \/leaderboard<br \/>\nvup = &#8220;vup.admin&#8221;<br \/>\nlobby = &#8220;&#8221;  # Everyone can use \/lobby<br \/>\ncreator = &#8220;vup.premium&#8221;  # Premium players only<br \/>\ninvite = &#8220;&#8221;  # Everyone can invite<br \/>\naccept = &#8220;&#8221;  # Everyone can accept invites<br \/>\n&#8220;`<\/p>\n<p>See `config.toml.example` for a complete configuration template.<\/p>\n<p>**Database Setup**<\/p>\n<p>If you want to use database features, you need to set up a MySQL or MariaDB database.<\/p>\n<p>**Step 1: Create Database and User**<\/p>\n<p>&#8220;`sql<br \/>\nCREATE DATABASE vup CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;<br \/>\nCREATE USER &#8216;vup_user&#8217;@&#8217;localhost&#8217; IDENTIFIED BY &#8216;your_secure_password&#8217;;<br \/>\nGRANT ALL PRIVILEGES ON vup.* TO &#8216;vup_user&#8217;@&#8217;localhost&#8217;;<br \/>\nFLUSH PRIVILEGES;<br \/>\n&#8220;`<\/p>\n<p>**Step 2: Configure Plugin**<\/p>\n<p>Update the database section in `config.toml` with your credentials. The plugin will automatically create all required tables on first startup when database is enabled.<\/p>\n<p>**Step 3: Optional Manual Schema Import**<\/p>\n<p>If you prefer to create the schema manually, you can import `database-setup.sql`.<\/p>\n<p>For more details, see:<br \/>\n&#8211; DATABASE-GUIDE.md &#8211; Complete database setup and configuration guide<br \/>\n&#8211; DATABASE-IMPLEMENTATION.md &#8211; Technical implementation details<\/p>\n<p>**Commands**<\/p>\n<p>All commands are configurable with permissions in config.toml.<\/p>\n<p>**Navigation Commands**<\/p>\n<p>| Command | Aliases | Description | Default Permission |<br \/>\n|&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;-|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|<br \/>\n| `\/lobby` | None | Connect to a balanced lobby server | None (everyone) |<br \/>\n| `\/creator` | None | Connect to the creator\/premium lobby | `vup.premium` |<br \/>\n| `\/invite <player>` | None | Invite a player to your current server | None (everyone) |<br \/>\n| `\/accept` | None | Accept a pending server invite | None (everyone) |<\/p>\n<p>**Moderation Commands**<\/p>\n<p>| Command | Description | Default Permission | Notes |<br \/>\n|&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;-|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|&#8212;&#8212;-|<br \/>\n| `\/gban <player> <reason>` | Ban a player globally | `vup.admin` | Works offline if database bans enabled |<br \/>\n| `\/gunban <player>` | Unban a player globally | `vup.admin` | Works offline if database bans enabled |<br \/>\n| `\/banlist [page]` | View all active bans | `vup.moderator` | Paginated list |<\/p>\n<p>**Statistics Commands**<\/p>\n<p>| Command | Aliases | Description | Default Permission | Requires Database |<br \/>\n|&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;-|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;|<br \/>\n| `\/stats [player]` | None | View playtime statistics | None (everyone) | Yes |<br \/>\n| `\/leaderboard [limit]` | `\/lb`, `\/top` | View playtime leaderboard | None (everyone) | Yes |<\/p>\n<p>**Admin Commands**<\/p>\n<p>| Command | Description | Default Permission |<br \/>\n|&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;-|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|<br \/>\n| `\/vup` | Plugin information and management | `vup.admin` |<\/p>\n<p>**Statistics Command Details**<\/p>\n<p>**`\/stats [player]`**<br \/>\n&#8211; Without arguments: View your own statistics<br \/>\n&#8211; With player name: View another player&#8217;s statistics (requires `vup.moderator` permission by default)<br \/>\n&#8211; Displays: Total playtime, per-server playtime, challenges completed<\/p>\n<p>**`\/leaderboard [limit]`**<br \/>\n&#8211; Without arguments: Shows top 10 players<br \/>\n&#8211; With number: Shows top N players (maximum 50)<br \/>\n&#8211; Displays players ranked by total playtime<\/p>\n<p>**Permissions**<\/p>\n<p>The plugin uses a flexible permission system where all permissions can be customized in config.toml.<\/p>\n<p>**Default Permission Nodes**<\/p>\n<p>*Navigation Permissions*<br \/>\n&#8211; No permission required for `\/lobby` (configurable via `permissions.lobby`)<br \/>\n&#8211; `vup.premium` for `\/creator` (configurable via `permissions.creator`)<br \/>\n&#8211; No permission required for `\/invite` (configurable via `permissions.invite`)<br \/>\n&#8211; No permission required for `\/accept` (configurable via `permissions.accept`)<\/p>\n<p>*Moderation Permissions*<br \/>\n&#8211; `vup.admin` for `\/gban` (configurable via `permissions.gban`)<br \/>\n&#8211; `vup.admin` for `\/gunban` (configurable via `permissions.gunban`)<br \/>\n&#8211; `vup.moderator` for `\/banlist` (configurable via `permissions.banlist`)<\/p>\n<p>*Statistics Permissions*<br \/>\n&#8211; No permission required for `\/stats` (view own stats) (configurable via `permissions.stats`)<br \/>\n&#8211; `vup.moderator` for `\/stats <player>` (view others&#8217; stats) (configurable via `permissions.stats_others`)<br \/>\n&#8211; No permission required for `\/leaderboard` (configurable via `permissions.leaderboard`)<\/p>\n<p>*Admin Permissions*<br \/>\n&#8211; `vup.admin` for `\/vup` (configurable via `permissions.vup`)<\/p>\n<p>**Configuring Permissions**<\/p>\n<p>Edit the `[permissions]` section in config.toml to customize permission nodes:<\/p>\n<p>&#8220;`toml<br \/>\n[permissions]<br \/>\ngban = &#8220;myserver.admin.ban&#8221;      # Custom permission for \/gban<br \/>\nstats = &#8220;myserver.stats.view&#8221;    # Require permission for \/stats<br \/>\nlobby = &#8220;&#8221;                        # Empty string = no permission required<br \/>\n&#8220;`<\/p>\n<p>**Using with LuckPerms**<\/p>\n<p>Example LuckPerms commands:<\/p>\n<p>&#8220;`<br \/>\n# Grant admin permissions<br \/>\n\/lp group admin permission set vup.admin true<\/p>\n<p># Grant moderator permissions<br \/>\n\/lp group moderator permission set vup.moderator true<\/p>\n<p># Grant premium player access<br \/>\n\/lp user PlayerName permission set vup.premium true<\/p>\n<p># Allow all players to use stats<br \/>\n\/lp group default permission set vup.stats true<br \/>\n&#8220;`<\/p>\n<p>For detailed permission setup with LuckPerms, see the permissions guide.<\/p>\n<p>**Common Issues**<\/p>\n<p>*Database Connection Failures*<br \/>\n&#8211; Verify database credentials in config.toml are correct<br \/>\n&#8211; Ensure the database server is running and accessible<br \/>\n&#8211; Check firewall settings to allow connections on the database port (default 3306)<br \/>\n&#8211; Confirm the database and user have been created<\/p>\n<p>*Players Not Being Balanced*<br \/>\n&#8211; Verify lobby server names in config.toml match exactly with names in velocity.toml (case-sensitive)<br \/>\n&#8211; Confirm that lobby servers are online and responding<br \/>\n&#8211; Check the Velocity proxy logs for connection errors or warnings<\/p>\n<p>*Commands Not Working*<br \/>\n&#8211; Verify the player has the required permission (check config.toml permissions section)<br \/>\n&#8211; For database commands (\/stats, \/leaderboard), ensure database is enabled and connected<br \/>\n&#8211; For ban commands, check if database_bans feature is enabled in config.toml<\/p>\n<p>*Statistics Not Tracking*<br \/>\n&#8211; Ensure database.enabled is set to true in config.toml<br \/>\n&#8211; Verify database.features.playtime_tracking is enabled<br \/>\n&#8211; Check database connection is working<br \/>\n&#8211; Review logs for any database errors<\/p>\n<p>For more detailed troubleshooting steps, see TROUBLESHOOTING.md.<\/p>\n<p>**Contributing**<\/p>\n<p>Contributions are welcome! To contribute to this project:<\/p>\n<p>1. Fork the repository<br \/>\n2. Create a feature branch: `git checkout -b feature\/your-feature-name`<br \/>\n3. Make your changes and commit them: `git commit -m &#8216;Add some feature&#8217;`<br \/>\n4. Push to your branch: `git push origin feature\/your-feature-name`<br \/>\n5. Open a Pull Request<\/p>\n<p>Please ensure your code follows the existing code style and includes appropriate documentation.<\/p>\n<p>**Support**<\/p>\n<p>If you encounter any issues or have questions:<br \/>\n&#8211; Check the documentation files in the repository<br \/>\n&#8211; Open an Issue on GitHub with detailed information about your problem<\/p>\n<p>When reporting issues, please include:<br \/>\n&#8211; Plugin version<br \/>\n&#8211; Velocity version<br \/>\n&#8211; Java version<br \/>\n&#8211; Relevant log excerpts<br \/>\n&#8211; Steps to reproduce the issue<\/p>\n<p>**License**<\/p>\n<p>This project is licensed under the MIT License.<\/p>\n<p>**Credits**<\/p>\n<p>&#8211; Metrics: Powered by bStats<br \/>\n&#8211; Database: HikariCP connection pooling<br \/>\n&#8211; Built for: Velocity Proxy<\/p>\n<p>**Changelog**<\/p>\n<p>**Alpha-0.1 (Current Release)**<br \/>\n&#8211; Database integration with MySQL\/MariaDB support<br \/>\n&#8211; Player playtime tracking with per-server statistics<br \/>\n&#8211; Global ban system with offline support via database<br \/>\n&#8211; Statistics tracking for custom achievements<br \/>\n&#8211; Leaderboard system for playtime rankings<br \/>\n&#8211; Smart lobby balancing with offline detection<br \/>\n&#8211; Premium player routing to dedicated servers<br \/>\n&#8211; Configurable permission system<br \/>\n&#8211; Server invite system<br \/>\n&#8211; bStats metrics integration<\/p>\n<p>**Planned Features**<br \/>\n&#8211; Friends system (database structure ready)<br \/>\n&#8211; Additional statistics tracking options<br \/>\n&#8211; Enhanced admin tools<\/p>\n<p>&#8212;<\/p>\n<p>Made with \u2764\ufe0f for the Minecraft community<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Utils that improve Velocity like load balancing, invites and improved perms. Including premium \/ priority balancing!<\/p>\n","protected":false},"featured_media":165638,"template":"","meta":{"_minecraft_slug":"velocityutilsplus","_minecraft_project_id":"Y9Wr5X3I","_minecraft_author":"link_1503","_minecraft_license":"MIT","_minecraft_downloads":46,"_minecraft_follows":0,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"velocityutilsplus.zip","_minecraft_size_bytes":18773340,"_minecraft_version_count":2,"_minecraft_updated_at":"2026-05-15T21:19:43.389304Z","_minecraft_date_created":"2026-01-29T21:53:25.621785Z","_minecraft_date_modified":"2026-01-26T16:20:42.462786Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/velocityutilsplus","_minecraft_icon_attachment_id":165638,"_minecraft_imported_at":"2026-06-09T17:55:41+00:00","_minecraft_import_hash":"445da27c6041d7fe62c83b48d710a41a","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[126,867,123,92,985],"mod_loader":[986],"minecraft_version":[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,40,41,73,74,38,78,79,80,81,82],"class_list":["post-165637","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-management","mod_category-social","mod_category-technology","mod_category-utility","mod_category-velocity","mod_loader-velocity","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-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>VelocityUtilsPlus - 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\/velocityutilsplus\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"VelocityUtilsPlus - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Utils that improve Velocity like load balancing, invites and improved perms. Including premium \/ priority balancing!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/velocityutilsplus\/\" \/>\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=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/velocityutilsplus\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/velocityutilsplus\\\/\",\"name\":\"VelocityUtilsPlus - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/velocityutilsplus\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/velocityutilsplus\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/velocityutilsplus-icon-43923f264507ce01309146fac27596e18744cc15_96.webp\",\"datePublished\":\"2026-06-09T17:55:41+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/velocityutilsplus\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/velocityutilsplus\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/velocityutilsplus\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/velocityutilsplus-icon-43923f264507ce01309146fac27596e18744cc15_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/velocityutilsplus-icon-43923f264507ce01309146fac27596e18744cc15_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/velocityutilsplus\\\/#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\":\"VelocityUtilsPlus\"}]},{\"@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":"VelocityUtilsPlus - 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\/velocityutilsplus\/","og_locale":"en_US","og_type":"article","og_title":"VelocityUtilsPlus - Minecraft","og_description":"Utils that improve Velocity like load balancing, invites and improved perms. Including premium \/ priority balancing!","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/velocityutilsplus\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/velocityutilsplus\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/velocityutilsplus\/","name":"VelocityUtilsPlus - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/velocityutilsplus\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/velocityutilsplus\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/velocityutilsplus-icon-43923f264507ce01309146fac27596e18744cc15_96.webp","datePublished":"2026-06-09T17:55:41+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/velocityutilsplus\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/velocityutilsplus\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/velocityutilsplus\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/velocityutilsplus-icon-43923f264507ce01309146fac27596e18744cc15_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/velocityutilsplus-icon-43923f264507ce01309146fac27596e18744cc15_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/velocityutilsplus\/#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":"VelocityUtilsPlus"}]},{"@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\/165637","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\/165638"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=165637"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=165637"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=165637"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=165637"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}