
LimboAPI
An API which provides virtual servers features to Velocity
Обновлён 5 июля 2026 г. · опубликован 14 декабря 2022 г.

LimboAPI
Library for sending players to virtual servers (called limbo)
Test server: ely.su
See also
- LimboAuth - Auth System built in virtual server (Limbo). Uses BCrypt, has TOTP 2FA feature. Supports literally any database due to OrmLite.
- LimboFilter - Most powerful bot filtering solution for Minecraft proxies. Built with LimboAPI.
Features of LimboAPI
- Send to the Limbo server during login process
- Send to the Limbo server during play process
- Send maps, items to player's virtual inventory
- Display player's XP
- Send Title, Chat, ActionBar
- Load world from world files like .schematic
- and more...
How to
- Include
limboapi-apito your Maven/Gradle project as compile-only - Subscribe to
LoginLimboRegisterEventto send players to the Limbo server during login process - Use
LimboFactoryto send players to the Limbo server during play process
How to include it
Setup your project via adding our maven repository to your pom.xml or build.gradle file.
- Maven:
<repositories>
<repository>
<id>elytrium-repo</id>
<url>https://maven.elytrium.net/repo/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>net.elytrium</groupId>
<artifactId>limboapi-api</artifactId>
<version>1.0.7</version>
<scope>provided</scope>
</dependency>
</dependencies>
- Gradle:
repositories {
maven {
setName("elytrium-repo")
setUrl("https://maven.elytrium.net/repo/")
}
}
dependencies {
compileOnly("net.elytrium:limboapi-api:1.0.7")
}
Used Open Source projects
- ProtocolSupport - for modern->legacy block mappings
- ViaVersion - for modern string->integer block mappings
Demo
- LimboAuth - The auth plugin, that uses LimboAPI as a dependency at the basic level.
- LimboFilter - The antibot solution, that uses LimboAPI as a dependency, using almost all available API methods, like Low-level Minecraft packet control.
Donation
Your donations are really appreciated. Donations wallets/links/cards:
Центр версий
124 версийЧенджлог
839773cБета1.7.2 · 5 июля 2026 г.
Fire LoginEvent with server ID hash instead of deprecated constructor (#264)
920db90Бета1.7.2 · 22 июня 2026 г.
fix: correct BlockEntityVersion range for MC 26.2 to fix dependency resolution (#263)
- fix: correct BlockEntityVersion range for MC 26.2 to fix dependency resolution
Fixed an issue where downstream plugins (such as LimboAuth) fail to depend on LimboAPI when running on Minecraft 26.2.
This was caused by the BlockEntityVersion range being outdated for 26.2. This PR updates the version range to ensure that dependency resolution works correctly for dependent plugins on this Minecraft version.
- fix: updated BlockEntityVersion range per review
Co-authored-by: UserNugget 47762903+UserNugget@users.noreply.github.com
Co-authored-by: UserNugget 47762903+UserNugget@users.noreply.github.com
c55f85eБета1.7.2 · 19 июня 2026 г.
Minecraft 26.2 and Velocity b604+ support (#259)
b94a567Бета1.7.2 · 7 июня 2026 г.
Fix CCE caused by casting before checking (triggered by /velocity reload) (#256)
a83e1b0Бета1.7.2 · 26 апреля 2026 г.
EaglerXServer support (#253)
3781544Бета1.7.2 · 11 апреля 2026 г.
Don't fail login hook silently
f278636Бета1.7.2 · 9 апреля 2026 г.
Velocity b586+ support
b845d00Бета1.7.2 · 29 марта 2026 г.
Fix typo
Комментарии
Загружаем…