Page 1 of 1

Player slots count in Nexgen

Posted: Thu Jan 19, 2023 10:47 pm
by Barbie
NexgenServersettingsBasic.jpg
Can anyone tell why the combination

Code: Select all

playerSlots=20
vipSlots=2
adminSlots=4
spectatorSlots=6
does not work? playerSlots is reset after every match to 16. And it does not matter if I change it with the GUI or in the INI file.

Re: Player slots count in Nexgen

Posted: Thu Jan 19, 2023 11:17 pm
by Buggie

Code: Select all

	// Update player slots if set to variable.
	if (variablePlayerSlots) {
		playerSlots = level.game.maxPlayers;
	}
Again INI write-protected?

Re: Player slots count in Nexgen

Posted: Fri Jan 20, 2023 1:25 am
by Barbie
Buggie wrote: Thu Jan 19, 2023 11:17 pm

Code: Select all

	// Update player slots if set to variable.
	if (variablePlayerSlots) {
		playerSlots = level.game.maxPlayers;
	}
Oh, that's what "Variable slots" is for. I thought that the slots maximum would be adjusted according to the player count. :wth:

UnrealTournament.ini says:

Code: Select all

[Engine.GameInfo]
MaxSpectators=2
MaxPlayers=32
Buggie wrote: Thu Jan 19, 2023 11:17 pm Again INI write-protected?
Haha, my first thought - no, I edited the INI file (as the same user the UT server is running with) and could save it without problems.

Re: Player slots count in Nexgen

Posted: Fri Jan 20, 2023 11:38 pm
by Letylove49
i have a look on readme of nexgen this option has been added since Nexgen1.09

Code: Select all

  Added: Option to use variable player slots (admin and vip slots will be disabled).
Barbie do you use a mapvote with multiple slots settings `? in this case you can't use vip and admin slot if variable players slots is enable.

if your server use only the Monsterhuntgamtyte you can desable variable players slots and nexgen will take the settings on your unrealtournament.ini

Code: Select all

 MaxSpectators=2
MaxPlayers=16
and you can use vip and admin slots in this case,

Another thinsg:

if you rented your server you musn't not use more slot that your server have.
playerSlots=20
vipSlots=2
adminSlots=4
spectatorSlots=6
here you have 20+2+4+6 = 32 slots

i hope that will help you

Re: Player slots count in Nexgen

Posted: Sat Jan 21, 2023 12:33 pm
by $carface
Barbie wrote: Thu Jan 19, 2023 10:47 pm NexgenServersettingsBasic.jpg
Can anyone tell why the combination

Code: Select all

playerSlots=20
vipSlots=2
adminSlots=4
spectatorSlots=6
does not work? playerSlots is reset after every match to 16. And it does not matter if I change it with the GUI or in the INI file.
Check your mapvote slots

Re: Player slots count in Nexgen

Posted: Sat Jan 21, 2023 12:39 pm
by Barbie
$carface wrote: Sat Jan 21, 2023 12:33 pm Check your mapvote slots
Whow, MapVote controls the allowed amount of players? What setting is that?

Re: Player slots count in Nexgen

Posted: Sat Jan 21, 2023 10:10 pm
by Letylove49
Barbie wrote: Thu Jan 19, 2023 10:47 pm NexgenServersettingsBasic.jpg
Can anyone tell why the combination

Code: Select all

playerSlots=20
vipSlots=2
adminSlots=4
spectatorSlots=6
does not work? playerSlots is reset after every match to 16. And it does not matter if I change it with the GUI or in the INI file.

Code: Select all

 variablePlayerSlots=True
this must be

Code: Select all

 variablePlayerSlots=False  


or your VIP an admin slot will not work because Variable players slots will disable it.