SimpleLimbo

⭐ — (1 endorsements) 📥 266 downloads 📌 v1.0.0 📅 2/16/2026
🟡 Updated this year

By ItsAzni · library

⬇ Download Mod Source: Modrinth ↗ 📅 Updated: 2/12/2026 📅 Created: 2/16/2026

🔍 Analysis

  • 🏆 #12 of 25 library mods in this game by downloads

📋 About This Mod

# SimpleLimbo A lightweight virtual limbo server plugin for Velocity proxy using (https://github.com/Elytrium/LimboAPI). ## Features - **Multiple Limbo Servers** - Create unlimited virtual limbo instances with different configurations - **Auth Plugin Support** - Compatible with JPremium and other authentication plugins - **Fallback System** - Automatically catch players when backend servers go down - **AFK Detection** - Move idle players to a dedicated limbo server - **Custom Worlds** - Load schematic files for limbo environments - **Rich Display** - Titles, action bars, boss bars, and chat messages - **Auto Reconnect** - Automatically attempt to reconnect players to backend servers - **Velocity Bridge** - Register virtual servers that redirect to limbos ## Requirements - Velocity 3.3.0+ - (https://github.com/Elytrium/LimboAPI) 1.1.27+ - Java 17+ ## Installation 1. Download LimboAPI and place it in your Velocity plugins folder 2. Download SimpleLimbo and place it in your Velocity plugins folder 3. Restart Velocity 4. Configure `plugins/simplelimbo/config.yml` ## Configuration ### Basic Limbo Setup ```yaml limbos: auth: enabled: true dimension: "OVERWORLD" gamemode: "ADVENTURE" world-time: 6000 spawn: x: 0.0 y: 100.0 z: 0.0 yaw: 0.0 pitch: 0.0 settings: read-timeout: 30000 should-rejoin: true should-respawn: false disable-falling: true disable-falling-delay-ms: 5000 commands: - "login" - "register" display: on-join: chat: "&eUse /login or /register" title: enabled: true title: "&eAuthentication" subtitle: "&7Please authenticate" ``` ### Velocity Bridge (Auth Plugin Compatibility) For plugins like JPremium that expect players to be on a named server: ```yaml velocity-bridge: enabled: true register-aliases: true aliases: auth: "auth" # Maps server name "auth" to limbo "auth" ``` Then in your auth plugin config, set the limbo server to `auth`. ### Anti-Fall Tuning - `disable-falling` keeps players from dropping after join (Y lock mode). - `disable-falling-delay-ms` controls when anti-fall starts. - If players get slow join or "Loading Terrain" delay, increase `disable-falling-delay-ms` (for example: `1200`, `1500`, `2000`). ### Settings Notes - `should-rejoin: true` keeps LimboAPI rejoin flow enabled (recommended for stability). - `should-respawn: false` avoids extra respawn packet during join. ### Fallback System Automatically catch players when backend servers crash: ```yaml auto-triggers: fallback: enabled: true limbo: "fallback" kick-patterns: - ".*server.*closed.*" - ".*timed out.*" message: "&cServer offline. Moved to fallback." ``` ### AFK System Move idle players to a dedicated limbo: ```yaml auto-triggers: afk: enabled: true limbo: "afk" idle-time: 300 check-interval: 30 exempt-permission: "simplelimbo.afk.exempt" ``` ### Custom World Files Load schematic files for limbo environments: ```yaml limbos: lobby: world-file: enabled: true type: "SCHEMATIC" path: "plugins/simplelimbo/worlds/lobby.schem" offset: x: 0 y: 64 z: 0 light-level: 15 ``` ## Commands | Command | Permission | Description | | ------------------------------------ | ------------------- | ------------------------ | | `/simplelimbo send <player> <limbo>` | `simplelimbo.admin` | Send a player to a limbo | | `/simplelimbo list` | `simplelimbo.admin` | List all limbo servers | | `/simplelimbo reload` | `simplelimbo.admin` | Reload configuration | ## Permissions | Permission | Description | | ------------------------ | ------------------------ | | `simplelimbo.admin` | Access to admin commands | | `simplelimbo.afk.exempt` | Exempt from AFK trigger | ## Auth Plugin Compatibility SimpleLimbo includes compatibility features for authentication plugins that call `player.getCurrentServer()`: 1. Set `fake-server-name` in your limbo config to a valid Velocity server name 2. Enable the velocity-bridge with matching alias 3. Configure your auth plugin to use this server name as the limbo server Example for JPremium: ```yaml # SimpleLimbo config.yml velocity-bridge: aliases: auth: "auth" limbos: auth: fake-server-name: "auth" # ... other settings ``` ```yaml # JPremium configuration.yml limboServerNames: mainServerNames: ``` ## Building from Source ```bash git clone https://github.com/ItsAzni/SimpleLimbo.git cd SimpleLimbo ./gradlew shadowJar ``` The compiled JAR will be in `build/libs/`. ## License MIT License ## Credits - (https://github.com/Elytrium/LimboAPI) by Elytrium - (https://github.com/PaperMC/Velocity) by PaperMC

# SimpleLimbo

A lightweight virtual limbo server plugin for Velocity proxy using (https://github.com/Elytrium/LimboAPI).

## Features

  • Multiple Limbo Servers - Create unlimited virtual limbo instances with different configurations
  • Auth Plugin Support - Compatible with JPremium and other authentication plugins
  • Fallback System - Automatically catch players when backend servers go down
  • AFK Detection - Move idle players to a dedicated limbo server
  • Custom Worlds - Load schematic files for limbo environments
  • Rich Display - Titles, action bars, boss bars, and chat messages
  • Auto Reconnect - Automatically attempt to reconnect players to backend servers
  • Velocity Bridge - Register virtual servers that redirect to limbos

## Requirements

  • Velocity 3. 3. 0+
  • (https://github.com/Elytrium/LimboAPI) 1. 1. 27+
  • Java 17+

## Installation

1. Download LimboAPI and place it in your Velocity plugins folder 2. Download SimpleLimbo and place it in your Velocity plugins folder 3. Restart Velocity 4. Configure `plugins/simplelimbo/config.yml`

## Configuration

### Basic Limbo Setup

```yaml limbos: auth: enabled: true dimension: "OVERWORLD" gamemode: "ADVENTURE" world-time: 6000

spawn: x: 0. 0 y: 100. 0 z: 0. 0 yaw: 0. 0 pitch: 0. 0

settings: read-timeout: 30000 should-rejoin: true should-respawn: false disable-falling: true disable-falling-delay-ms: 5000

commands: - "login" - "register"

display: on-join: chat: "&eUse /login or /register" title: enabled: true title: "&eAuthentication" subtitle: "&7Please authenticate" ```

### Velocity Bridge (Auth Plugin Compatibility)

For plugins like JPremium that expect players to be on a named server:

```yaml velocity-bridge: enabled: true register-aliases: true aliases: auth: "auth" # Maps server name "auth" to limbo "auth" ```

Then in your auth plugin config, set the limbo server to `auth`.

### Anti-Fall Tuning

  • `disable-falling` keeps players from dropping after join (Y lock mode).
  • `disable-falling-delay-ms` controls when anti-fall starts.
  • If players get slow join or "Loading Terrain" delay, increase `disable-falling-delay-ms` (for example: `1200`, `1500`, `2000`).

### Settings Notes

  • `should-rejoin: true` keeps LimboAPI rejoin flow enabled (recommended for stability).
  • `should-respawn: false` avoids extra respawn packet during join.

### Fallback System

Automatically catch players when backend servers crash:

```yaml auto-triggers: fallback: enabled: true limbo: "fallback" kick-patterns: - ".server.closed." - ".timed out.*" message: "&cServer offline. Moved to fallback." ```

### AFK System

Move idle players to a dedicated limbo:

```yaml auto-triggers: afk: enabled: true limbo: "afk" idle-time: 300 check-interval: 30 exempt-permission: "simplelimbo.afk.exempt" ```

### Custom World Files

Load schematic files for limbo environments:

```yaml limbos: lobby: world-file: enabled: true type: "SCHEMATIC" path: "plugins/simplelimbo/worlds/lobby.schem" offset: x: 0 y: 64 z: 0 light-level: 15 ```

## Commands

| Command | Permission | Description | | ------------------------------------ | ------------------- | ------------------------ | | `/simplelimbo send ` | `simplelimbo.admin` | Send a player to a limbo | | `/simplelimbo list` | `simplelimbo.admin` | List all limbo servers | | `/simplelimbo reload` | `simplelimbo.admin` | Reload configuration |

## Permissions

| Permission | Description | | ------------------------ | ------------------------ | | `simplelimbo.admin` | Access to admin commands | | `simplelimbo.afk.exempt` | Exempt from AFK trigger |

## Auth Plugin Compatibility

SimpleLimbo includes compatibility features for authentication plugins that call `player.getCurrentServer()`:

1. Set `fake-server-name` in your limbo config to a valid Velocity server name 2. Enable the velocity-bridge with matching alias 3. Configure your auth plugin to use this server name as the limbo server

Example for JPremium:

```yaml # SimpleLimbo config.yml velocity-bridge: aliases: auth: "auth"

limbos: auth: fake-server-name: "auth" # ... other settings ```

```yaml # JPremium configuration.yml limboServerNames: mainServerNames: ```

## Building from Source

```bash git clone https://github.com/ItsAzni/SimpleLimbo.git cd SimpleLimbo ./gradlew shadowJar ```

The compiled JAR will be in `build/libs/`.

MIT License

  • (https://github.com/Elytrium/LimboAPI) by Elytrium
  • (https://github.com/PaperMC/Velocity) by PaperMC
🤖 AI-enhanced — based on mod data

📊 Mod Details

Game
Minecraft Plugins
Author
ItsAzni
Version
1.0.0
Downloads
266
Endorsements
1
Category
library
Created
2/16/2026
Updated
2/12/2026
Game Versions
1.7.2, 1.7.3, 1.7.4, 1.7.5, 1.7.6
Tags
library, management, optimization

🔧 How to Install Minecraft Plugins Mods

Download from Modrinth. Use Prism Launcher or drop into your mods folder.

📖 Full step-by-step install guide for Minecraft Plugins →

Visit the official mod page for specific installation instructions for this mod.

🎮 Need cheat codes or console commands? Check ur gaming wiki for Minecraft Plugins commands, item IDs, and more.

❓ Frequently Asked Questions

Which Minecraft Plugins versions does SimpleLimbo support?

The author lists 1.7.2, 1.7.3, 1.7.4, 1.7.5, 1.7.6, 1.7.7. Other versions may work but are untested by the author.

What is the latest version of SimpleLimbo?

Version 1.0.0, published 2026-02-12 with 266 downloads recorded at the source.

Keep browsing — more Minecraft Plugins mods await

📋 All Minecraft Plugins Mods 🏆 Top 25 📂 More library 👤 More by ItsAzni 🔎 Similar Mods 🌐 Best library (All Games) 🔀 Check Compatibility ⚖️ Compare Mods 🆕 New Mods