Closed netherstar closed 4 years ago
Also plugin PlayerBalancerAddon seem to be need to update, it is not work with PlaceholderAPI 2.10.3
Hi, thank you for actually taking the time to write a good issue.
PlayerBalancer uses RegEx, so you can't just do ranges of numbers, you will have to do something more involved, like this:
servers=[
"uhc[2-4][0-9]"
]
That will match from 20 to 49, which should work for your use case. It's definitely possible to do a range from 25 to 47 but it's verbose and at first, complicated.
You can also do the following
servers=[
"uhc.*"
]
which will match any server that starts with uhc, be careful because it will also match things like uhclobby
or uhcother1
. I would use the first one.
Regarding the default attempts, I will set what you say, it shouldn't cause problems.
And regarding the addon, I will try and update it today, I have gotten multiple reports that it doesn't work in the latest version.
@jamezrin Thank you very very much! But you upload wrong file to playerbalanceraddon?
Sorry, fixed.
Thank you, it works perfectly now!
Great, I'm glad that fixed it.
Sorry for my bad English. i have a list of sequence of number of uhc servers in bungeecord like that, from uhc25, uhc26, uhc27... to uhc47
and this is section config on PlayerBalancer
but when "balancer reload" it always show this error
If i tried uhc[1-47] then "balancer reload" work but "section info uhc" show no servers Now i temporary fix it by adding servers like this but i have a plan to make hundred servers so this it not good solution.
other question: can this plugin handle hundreds of mini game server? i also recommend you change this default setting to more than 5, i tried many time to know that 5 is too low so player sometimes can't get server so change to 30 and everything work perfect.