Speedgot
ProxyLimbo
-----
Lightweight limbo for BungeeCord (Velocity currently not supported)
Download Now
Via external site
Overview
Documentation
Updates (
--
)
Reviews (
---
)
Version History
Discussion
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