Speedgot
ProxyLimbo
-----
Lightweight limbo for BungeeCord (Velocity currently not supported)
Download Now
Via external site
Overview
Documentation
Updates (
--
)
Reviews (
---
)
Version History
Discussion
Lightweight plugin for creating/using limbo server`s in BungeeCord from config.yml/Developer API.
____________________
NEEDS
PROTOCOLIZE
TO RUN!
____________________
Commands:
/limbo send (player name) (limbo name), permission: limbo.send
/limbo connect (limbo name), permission: limbo.connect
____________________
Features:
1. Change player gamemode
2. Change dimension (will change sky color)
3. Change world time
4. Change player spawn coordinates
5. Change F3 brand
6. Change biome (currently does not affect anything)
____________________
In plans:
1. Add .schematic support
2. Velocity support
(And documentation)
____________________
Dev API
Spoiler:
Get started
Maven:
Code (Text):
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<dependency>
<groupId>com.github.U61vashka</groupId>
<artifactId>ProxyLimbo</artifactId>
<version>1.0.2</version>
</dependency>
Gradle:
Code (Text):
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'com.github.U61vashka:ProxyLimbo:1.0.2'
}
plugin.yml/bungee.yml
Code (Text):
name: YourPluginHere
main: class.to.main
version: 1.0.0 # Your version here
depends: [ProxyLimbo] # or softDepends
Spoiler:
Get plugin instance
Code (Java):
ProxyPlugin plugin
=
ProxyPlugin.
instance
(
)
;
// Our api plugin
Spoiler:
Find LimboServer from name
Code (Java):
ProxyLimbo plugin
=
ProxyLimbo.
instance
(
)
String
limboName
=
"test"
;
ProxiedPlayer player
=
//Our player;
LimboServer server
=
plugin.
getLimboServerContainer
(
)
.
findFirst
(
server
->
server.
getName
(
)
.
equals
(
limboName
)
)
.
orElse
(
null
)
;
Spoiler:
Get LimboPlayer
Code (Java):
// From object
ProxiedPlayer player
=
//Our player
LimboPlayer limboPlayer
=
plugin.
fetchLimboPlayer
(
player
)
;
// From UUID
LimboPlayer limboPlayer
=
plugin.
findLimboPlayer
(
uniqueId
)
;
Spoiler:
Send LimboPlayer to LimboServer
Code (Java):
LimboServer server
=
//limbo server;
LimboPlayer player
=
//limbo server
server.
connect
(
player
)
;
View on SpigotMC
Resource Information
Author:
----------
Total Downloads:
353
First Release:
Aug 17, 2022
Last Update:
Aug 27, 2022
Category:
---------------
All-Time Rating:
1 ratings
Version
-----
Released:
--------------------
Downloads:
------
Version Rating:
----------------------
--
ratings