-
-
Notifications
You must be signed in to change notification settings - Fork 18
Alex edited this page Sep 11, 2022
·
4 revisions
You may have encountered errors like Main Server "main" not set up!!!
, Queue Server "queue" not set up!!!
or Auth Server "auth" not set up!!!
They mean your BungeeCord/Velocity config file is missing servers required for PistonQueue to function properly. PistonQueue requires servers to be set up to route players to them.
Note: Cracked servers additionally require an auth server to verify user accounts.
Full example for BungeeCord:
servers:
main:
motd: '&1Main Server'
address: 127.0.0.1:<replace me>
restricted: true
queue:
motd: '&1Queue server'
address: 127.0.0.1:<replace me>
restricted: true
Full example for Velocity:
[servers]
# Configure your servers here. Each key represents the server's name, and the value
# represents the IP address of the server to connect to.
main = "127.0.0.1:<replace me>"
queue = "127.0.0.1:<replace me>"
You may want to follow the proxy installation guide, as you may encounter other issues if not set up properly.