{"id":143814,"date":"2026-06-08T17:00:44","date_gmt":"2026-06-08T14:00:44","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/smartrejoin\/"},"modified":"2026-06-08T17:00:44","modified_gmt":"2026-06-08T14:00:44","slug":"smartrejoin","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/smartrejoin\/","title":{"rendered":"SmartRejoin"},"content":{"rendered":"<p># SmartRejoin for Velocity<\/p>\n<p>![Java Version](https:\/\/img.shields.io\/badge\/Java-21+-blue?style=for-the-badge&#038;logo=openjdk)<br \/>\n![Velocity Version](https:\/\/img.shields.io\/badge\/Velocity-3.4.0+-orange?style=for-the-badge)<\/p>\n<p>**SmartRejoin** is a modern alternative to older reconnect plugins, built with a highly customizable rule-based engine.<\/p>\n<p>&#8212;<\/p>\n<p>## Features<\/p>\n<p>&#8211; \ud83e\udde0 Automatically sends players back to the server they disconnected from.<br \/>\n&#8211; \u2699\ufe0f Define custom rules based on a player&#8217;s last server. For example, send players from a `bedwars_` game to the most populated `bedwars_lobby`.<br \/>\n&#8211; \u2696\ufe0f Distributes players across lobbies by connecting them to the server with the **most** or **least** players, or to a **random** one.<br \/>\n&#8211; \ud83d\udee1\ufe0f Configure a safe fallback server (or a pool of servers) for new players or when a target server is offline.<br \/>\n&#8211; \u26a1 Reload the configuration on-the-fly with a simple command.<\/p>\n<p>&#8212;<\/p>\n<p>## Installation<\/p>\n<p>1.  Download the plugin<br \/>\n2.  Place the plugin into your Velocity proxy&#8217;s `\/plugins` directory.<br \/>\n3.  Restart your Velocity proxy. A `config.yml` file will be generated in `\/plugins\/SmartRejoin\/`.<\/p>\n<p>&#8212;<\/p>\n<p>## Commands &#038; Permissions<\/p>\n<p>| Command | Alias | Permission | Description |<br \/>\n| :&#8212; | :&#8212; | :&#8212; | :&#8212; |<br \/>\n| `\/smartrejoinreload` | `\/srr` | `smartrejoin.command.reload` | Reloads the `config.yml` file. |<\/p>\n<p>&#8212;<\/p>\n<p>## Configuration (`config.yml`)<\/p>\n<p>The configuration is split into three main parts: **Fallback**, **Default Rule**, and **Custom Rules**.<\/p>\n<p>### Quick Start<\/p>\n<p>For the simplest setup, just install the plugin. By default (`rule: SAME`), it will automatically reconnect players to the server they left. New players will be handled by your `velocity.toml` configuration. To use the plugin&#8217;s fallback for new players, set `fallback.enabled: true`.<\/p>\n<p>### Example Use Cases<\/p>\n<p>&#8211;   **BedWars Lobby**: If a player leaves `bedwars_12`, send them to the `bedwars_lobby` with the most players.<br \/>\n&#8211;   **Persistent Survival**: If a player leaves `survival`, always send them back to `survival`.<br \/>\n&#8211;   **Random Lobby**: If a player was in any `lobby_` server, send them to another random `lobby_` server.<br \/>\n&#8211;   **AFK Escape**: If a player was in an `afk` server, send them to the `lobby` with the fewest players.<\/p>\n<p>### Full Configuration Example (different from default one!)<\/p>\n<p>&#8220;`yml<br \/>\n# &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; #<br \/>\n#               SmartRejoin Configuration             #<br \/>\n# &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; #<\/p>\n<p># &#8212; General Settings &#8212;<br \/>\nsettings:<br \/>\n  # If true, the plugin will print informational messages to the console.<br \/>\n  # Critical errors are always logged.<br \/>\n  logging_enabled: true<\/p>\n<p># &#8212; Fallback Configuration &#8212;<br \/>\n# Used for new players or when a target server from a rule is offline.<br \/>\nfallback:<br \/>\n  # If &#8216;enabled&#8217;, this plugin&#8217;s fallback logic will be used.<br \/>\n  enabled: true<br \/>\n  # &#8216;RANDOM&#8217;: Connects to a random server whose name CONTAINS the &#8216;name&#8217; value.<br \/>\n  # &#8216;SERVER&#8217;: Connects to a specific server with an exact &#8216;name&#8217;.<br \/>\n  type: RANDOM<br \/>\n  name: &#8220;lobby&#8221;<\/p>\n<p># &#8212; Default Rule &#8212;<br \/>\n# Applied if a player&#8217;s last server doesn&#8217;t match any custom rules below.<br \/>\ndefault:<br \/>\n  # &#8216;SAME&#8217;: Connects to the exact same server. (Most common)<br \/>\n  # &#8216;FALLBACK&#8217;: Immediately uses the fallback rule.<br \/>\n  # &#8216;SMART&#8217;: Finds a related lobby. See comments below for details.<br \/>\n  rule: SAME<br \/>\n  # Arguments for the &#8216;SMART&#8217; rule.<br \/>\n  # Example: [&#8216;MOST&#8217;, &#8216;%last_seen%_lobby&#8217;]<br \/>\n  arguments: []<\/p>\n<p># &#8212; Custom Rules &#8212;<br \/>\n# Define specific redirection rules here. They are checked in order.<br \/>\nrules:<br \/>\n  stay_on_survival:<br \/>\n    last_seen:<br \/>\n      # Condition: Player&#8217;s last server name must be an exact match.<br \/>\n      type: EQUALS<br \/>\n      name: &#8220;survival&#8221;<br \/>\n    where_to_join:<br \/>\n      # Action: Connect to a server with this exact name.<br \/>\n      type: EQUALS<br \/>\n      name: &#8220;survival&#8221;<\/p>\n<p>  bedwars_lobby_fallback:<br \/>\n    last_seen:<br \/>\n      # Condition: Player&#8217;s last server name must contain &#8220;bedwars&#8221;.<br \/>\n      type: CONTAINS<br \/>\n      name: &#8220;bedwars&#8221;<br \/>\n    where_to_join:<br \/>\n      # Action: Find all online servers containing &#8220;bedwars_lobby&#8221; and<br \/>\n      # connect to the one with the MOST players.<br \/>\n      type: MOST<br \/>\n      name: &#8220;bedwars_lobby&#8221;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A Velocity plugin that gives you full control over where players connect when they join your network.<\/p>\n","protected":false},"featured_media":143815,"template":"","meta":{"_minecraft_slug":"smartrejoin","_minecraft_project_id":"smSZvvku","_minecraft_author":"RealKomander1","_minecraft_license":"LicenseRef-All-Rights-Reserved","_minecraft_downloads":1238,"_minecraft_follows":8,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"smartrejoin.zip","_minecraft_size_bytes":73805,"_minecraft_version_count":3,"_minecraft_updated_at":"2026-05-16T07:49:11.062134Z","_minecraft_date_created":"2025-07-19T05:48:15.757244Z","_minecraft_date_modified":"2026-02-17T16:20:01.996887Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/smartrejoin","_minecraft_icon_attachment_id":143815,"_minecraft_imported_at":"2026-06-08T14:00:50+00:00","_minecraft_import_hash":"245b07e5dfdf8b526609be3384de4dba","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[126,92,985],"mod_loader":[986],"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,40,41,73,74,38,78,79,80,81,82,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-143814","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-management","mod_category-utility","mod_category-velocity","mod_loader-velocity","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-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","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>SmartRejoin - 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\/smartrejoin\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SmartRejoin - Minecraft\" \/>\n<meta property=\"og:description\" content=\"A Velocity plugin that gives you full control over where players connect when they join your network.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/smartrejoin\/\" \/>\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\\\/smartrejoin\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/smartrejoin\\\/\",\"name\":\"SmartRejoin - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/smartrejoin\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/smartrejoin\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/smartrejoin-icon-7bdadea16830d98b46350e241963e7b106c5b9df_96.webp\",\"datePublished\":\"2026-06-08T14:00:44+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/smartrejoin\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/smartrejoin\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/smartrejoin\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/smartrejoin-icon-7bdadea16830d98b46350e241963e7b106c5b9df_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/smartrejoin-icon-7bdadea16830d98b46350e241963e7b106c5b9df_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/smartrejoin\\\/#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\":\"SmartRejoin\"}]},{\"@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":"SmartRejoin - 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\/smartrejoin\/","og_locale":"en_US","og_type":"article","og_title":"SmartRejoin - Minecraft","og_description":"A Velocity plugin that gives you full control over where players connect when they join your network.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/smartrejoin\/","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\/smartrejoin\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/smartrejoin\/","name":"SmartRejoin - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/smartrejoin\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/smartrejoin\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/smartrejoin-icon-7bdadea16830d98b46350e241963e7b106c5b9df_96.webp","datePublished":"2026-06-08T14:00:44+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/smartrejoin\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/smartrejoin\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/smartrejoin\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/smartrejoin-icon-7bdadea16830d98b46350e241963e7b106c5b9df_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/smartrejoin-icon-7bdadea16830d98b46350e241963e7b106c5b9df_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/smartrejoin\/#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":"SmartRejoin"}]},{"@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\/143814","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\/143815"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=143814"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=143814"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=143814"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=143814"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}