-
-
Notifications
You must be signed in to change notification settings - Fork 17
Setting up your Proxy
You can download the plugin off SpigotMC.
Put the plugin JAR file in your BungeeCord plugins folder. Once you have done this, you need to modify your BungeeCord config.yml.
BungeeCord premium config
listeners:
- query_port: 25577
...
priorities:
- main
...
host: 0.0.0.0:25565
max_players: 9999
...
force_default_server: true
...
player_limit: -1
...
online_mode: true
...
servers:
main:
...
address: 127.0.0.1:<replace me>
restricted: true
queue:
...
address: 127.0.0.1:<replace me>
restricted: true
BungeeCord cracked config
listeners:
- query_port: 25577
...
priorities:
- auth
...
host: 0.0.0.0:25565
max_players: 9999
...
force_default_server: true
...
player_limit: -1
...
online_mode: false
...
servers:
auth:
...
address: 127.0.0.1:<replace me>
restricted: true
main:
...
address: 127.0.0.1:<replace me>
restricted: true
queue:
...
address: 127.0.0.1:<replace me>
restricted: true
Now your BungeeCord proxy is successfully configured.
Now we need to edit the PistonQueue config. If your server is cracked, make sure to enable the auth server by setting ENABLEAUTHSERVER
from false
to true
.
You can now have your auth server to go first. Please note that this feature is still experimental and buggy.
You activate it by setting AUTHFIRST
from false
to true
. Your auth server needs to send your players after the login to the queue server. PistonQueue will then manually reroute the players to the main server if the queue is not full, or keep them in the queue server if it is full.
You can find the default config here: click here
Congrats! You have configured PistonQueue for your proxy. Now we need to set up your Queue server.