| View previous topic :: View next topic |
| Author |
Message |
deej

Joined: 19 Mar 2004 Posts: 743 Location: Belgium!
|
Posted: Sat Apr 23, 2005 4:22 am Post subject: |
|
|
| DG wrote: | dont need lots of ettv for trial and error, just see what the max players is reported as in server browser  |
LOL I figured that out by myself already . That reports 18 for my first case and 14 for my 2nd.
What I want to know is when it has those 14 allowed players in there, is there still room left for those 4 ETTVs then when you set sv_maxclients to 14? Or do you need to set it to 18?
In other words, does ettv_sv_maxslaves have an impact on sv_maxclients or not? _________________ Our servers now run on 64 bit steroids. Point your ET to:
- Forgotten Ground StopWatch Server with occasional wolfrof 1
- Fraggle Rock ETPub Server - Mix up ET/UT & Duke Nukem |
|
| Back to top |
|
 |
daita

Joined: 03 Mar 2005 Posts: 48 Location: Jungle
|
Posted: Sun Apr 24, 2005 5:50 pm Post subject: |
|
|
first one.
daita. |
|
| Back to top |
|
 |
deej

Joined: 19 Mar 2004 Posts: 743 Location: Belgium!
|
Posted: Mon Apr 25, 2005 3:23 am Post subject: |
|
|
Yep that is it. After playing a bit with slot settings and firing up 3 ETTV sessions I even noticed ettv_sv_maxslaves takes precedence over all other slots. _________________ Our servers now run on 64 bit steroids. Point your ET to:
- Forgotten Ground StopWatch Server with occasional wolfrof 1
- Fraggle Rock ETPub Server - Mix up ET/UT & Duke Nukem |
|
| Back to top |
|
 |
DG
Joined: 24 Jul 2003 Posts: 513
|
Posted: Mon Apr 25, 2005 9:43 am Post subject: |
|
|
| deej wrote: |
LOL I figured that out by myself already . That reports 18 for my first case and 14 for my 2nd. |
your browser just reports back sv_maxclients value?
server browser should report sv_maxclients - sv_private clients at worst, so should be showing 16 & 12 or 12 & 8 player slots, respectively. _________________ Enemy Territory & RTCW UK
GamersNation |
|
| Back to top |
|
 |
deej

Joined: 19 Mar 2004 Posts: 743 Location: Belgium!
|
Posted: Mon Apr 25, 2005 10:22 am Post subject: |
|
|
| DG wrote: | your browser just reports back sv_maxclients value?
server browser should report sv_maxclients - sv_private clients at worst, so should be showing 16 & 12 or 12 & 8 player slots, respectively. |
Yes HLSW shows sv_maxclients - sv_privateclients, problem is it totally ignores ETTV slots. So with my example settings I got 16 (18) and 12 (14) displayed.
If you want to be absolutely certain about reserved slots for ETTV you have to do 12 + 2 + 4 for sv_maxclients & do 2 + 4 for sv_privateslots. At least that is for HLSW.
If you don't do that ETTV will eat up 4 slots regardless of whether they are private or general.
EDIT: did a quick test with ASE and that displays only the number of (what it thinks to be) public slots. So there I got 16 & 12, but in reality it is in fact 12 & 8.
So for now I'd recommend setting the number of private slots to include ettv_sv_maxslaves. Here's an example from one of my cfg's:
| Code: | //
// When calculating the number of slots take into account that ETTV has priority!
// So if you want to have 12 players, 2 guarantueed private slots and 4 ETTV slots,
// these are the required settings:
//
// set ettv_sv_maxslaves 4
// set sv_privateclients 6 (= 4 + 2)
// set sv_maxclients 18 (= 4 + 2 + 12)
//
|
_________________ Our servers now run on 64 bit steroids. Point your ET to:
- Forgotten Ground StopWatch Server with occasional wolfrof 1
- Fraggle Rock ETPub Server - Mix up ET/UT & Duke Nukem |
|
| Back to top |
|
 |
deej

Joined: 19 Mar 2004 Posts: 743 Location: Belgium!
|
Posted: Wed May 18, 2005 12:34 am Post subject: |
|
|
| deej wrote: | | Code: | //
// When calculating the number of slots take into account that ETTV has priority!
// So if you want to have 12 players, 2 guarantueed private slots and 4 ETTV slots,
// these are the required settings:
//
// set ettv_sv_maxslaves 4
// set sv_privateclients 6 (= 4 + 2)
// set sv_maxclients 18 (= 4 + 2 + 12)
//
|
|
I found out the hard way that in this case one would have 10 reserved slots and only 8 public slots as ETTV slots do not eat up private slots.
So you have to do it in fact this way:
| Code: | // set ettv_sv_maxslaves 4
// set sv_privateclients 2
// set sv_maxclients 18 (= 4 + 2 + 12)
|
The server will report 16 public slots but in fact only 12 are really public. Hence my feature request that I posted here. _________________ Our servers now run on 64 bit steroids. Point your ET to:
- Forgotten Ground StopWatch Server with occasional wolfrof 1
- Fraggle Rock ETPub Server - Mix up ET/UT & Duke Nukem |
|
| Back to top |
|
 |
Deus

Joined: 12 Mar 2004 Posts: 1053 Location: Germany
|
Posted: Wed May 18, 2005 1:10 am Post subject: |
|
|
this is exactly what was stated in the above statement
| Code: |
ettv_sv_maxslaves 4
privateslots 2
publicslots 12
|
needs to be set this way:
| Code: | set ettv_sv_maxslaves 4
set sv_privateclients 6 (= 4 + 2)
set sv_maxclients 18 (= 4 + 2 + 12)
|
_________________
http://spielwelt15.monstersgame.net/?ac=vid&vid=39033566 |
|
| Back to top |
|
 |
deej

Joined: 19 Mar 2004 Posts: 743 Location: Belgium!
|
Posted: Wed May 18, 2005 7:55 am Post subject: |
|
|
| [pH*Deus] wrote: | this is exactly what was stated in the above statement
| Code: |
ettv_sv_maxslaves 4
privateslots 2
publicslots 12
|
needs to be set this way:
| Code: | set ettv_sv_maxslaves 4
set sv_privateclients 6 (= 4 + 2)
set sv_maxclients 18 (= 4 + 2 + 12)
|
|
I think you misunderstood what I posted: in case 1 you will have 6 reserved slots & 12 public, in case 2 you will have 10 reserved (4 + 4 + 2) and only 8 public.
So the following code is correct but it will show differently in server browsers:
| Code: | set ettv_sv_maxslaves 4
set sv_privateclients 2 (not 6)
set sv_maxclients 18 (= 4 + 2 + 12)
|
_________________ Our servers now run on 64 bit steroids. Point your ET to:
- Forgotten Ground StopWatch Server with occasional wolfrof 1
- Fraggle Rock ETPub Server - Mix up ET/UT & Duke Nukem |
|
| Back to top |
|
 |
|