Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Skin Browser
  • Cape Gallery
  • Seed Vault
  • Blog
  • Guides

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

Site & Legal

  • About
  • Authors
  • Editorial Policy
  • Corrections
  • Contact
  • Privacy Policy
  • Terms of Service
  • DMCA
  • Sitemap

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
Simple Reconnect
PluginMIT

Simple Reconnect

Reconnect your players to the last server they were on

3
Downloads
1
Followers
4 months ago
Updated
📦
1
Versions
managementutilityvelocity
Download Latestv1.0View on Modrinth

📖About Simple Reconnect

A plugin for Velocity that reconnects players to the last server they were playing on

Features

  • Automatic reconnection to the last server on player login
  • Configurable messages for reconnect success and server unavailable
  • Multiple storage backends: YAML, SQLite, MySQL, MariaDB, PostgreSQL, LuckPerms
  • Optional per-server permission (velocity.reconnect.)
  • Server blacklist to prevent reconnection to specific servers
  • Optional LiteBans integration to prevent reconnecting banned players
  • Optional fallback prevention (block redirect to fallback server when kicked)
  • reload command to reload configuration without restarting the proxy

Commands

  • /vreconnect reload Reloads the plugin configuration

Permissions

  • reload: requires permission velocity.reconnect.reload (default: op)

Configuration

# For debugging purposes, recommended to disable
debug: false

# Should we check for the latest version?
checkUpdates: true

# Send players a message when they are reconnected
messageOnReconnect: true
reconnectMessage:
  - "<gray>You were reconnected to <white>%server%</white>."

# Send a message when their previous server isn't available
notAvailable: true
notAvailableMessage:
  - "<gray>Unable to reconnect you to your last server."

# Require velocity.reconnect.<servername> permission per server
perServerPermission: false

# Servers that players cannot reconnect to
blacklist: []

# Prevent connection to fallback servers when kicked
preventFallback: false
preventFallbackMessage: []

# LiteBans hook - prevents banned players from reconnecting to banned servers
liteBansHook: false

storage:
  method: "yaml"
  data:
    address: "localhost:3306"
    database: "reconnect.db"
    username: "root"
    password: "1234"
  • debug: Enable debug logging
  • checkUpdates: Check for new versions on startup; admins with velocity.reconnect.admin get update notifications
  • messageOnReconnect / reconnectMessage: Message shown when player is reconnected. Placeholders: %server%, %player%
  • notAvailable / notAvailableMessage: Message when the last server is offline or unreachable
  • perServerPermission: If true, player needs velocity.reconnect. to reconnect to each server
  • blacklist: List of server names where reconnection is never allowed
  • preventFallback / preventFallbackMessage: When kicked, prevent redirect to fallback server (if not on blacklist)
  • liteBansHook: Integrate with LiteBans to block reconnection to servers where the player is banned
  • storage.method: Storage backend. Options: yaml, sqlite, mysql, mariadb, postgresql, luckperms
  • storage.data: Connection settings for database backends. For SQLite/YAML, database is the file path

Storage

In the config.yml, there are different storage options. If you don't need your own plugins to interact with this one, we recommend you keep the method set as the default option (yaml)

storage:
  method: "yaml"
  # The below is only needed if you are using MySQL
  data:
    address: localhost
    database: reconnect
    username: root
    password: ''

To change the method, alter the method key. Current options are:

  • yaml: Local .yml file
  • sqlite: Local SQL database
  • mysql: Local or remote SQL database

The data section is for if you are using the mysql option for method

  • address: The address of the SQL database
  • database: The name of the database
  • username: Username for the SQL database
  • password: Password for the SQL database

###Requirements

  • Java 21 (LTS)
  • Velocity Proxy on the latest supported version

Internal behaviour

  • When using a forced host, the plugin does not override the initial server choice
  • Storage location for YAML: plugins/reconnect/data.yml
  • For LuckPerms storage, the last server is stored as user metadata

👥 Team & Contributors

sardidefcon
sardidefconOwner

⚙️ Compatibility

Environment
🖥️ Server-side
Loaders
velocity
Minecraft Versions
1.7.21.7.31.7.41.7.51.7.61.7.71.7.81.7.9+71 more

🔗 Links

Modrinth Page