Question Server order

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"]