Question Server order

  • After careful consideration and due to limited usage, we’ve made the decision to discontinue the PaperMC forums. Moving forward, we recommend using Hangar for plugin uploads, and for all other community discussions and support, please join us on Discord.

Xikser

New member
Mar 28, 2023
1
0
1
When my lobby server is offline, velocity should redirect playerd to the next server, but this option is not working ;x In which way I should add more servers in try section
try = [
"lobby"
]

I tried

try = [
"lobby",
"server"
]
try = [
"lobby,
server"
]
try = [
"lobby
server"
]

etc.. and still with no effects ;x
 

hello

New member
Aug 26, 2023
13
0
1
When my lobby server is offline, velocity should redirect playerd to the next server, but this option is not working ;x In which way I should add more servers in try section
try = [
"lobby"
]

I tried

try = [
"lobby",
"server"
]
try = [
"lobby,
server"
]
try = [
"lobby
server"
]

etc.. and still with no effects ;x
As @4drian3d said try:
Code:
try = [
  "lobby",
  "server"
]

Alternatively you can try this:

Code:
try = ["lobby","factions","survival"]