banimod / etpro / ettv forums Forum Index banimod / etpro / ettv forums
Bani's Discussion Forums
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

ETTV Public beta 2
Goto page Previous  1, 2
 
Post new topic   This topic is locked: you cannot edit posts or make replies.    banimod / etpro / ettv forums Forum Index -> ET Pro News
View previous topic :: View next topic  
Author Message
deej



Joined: 19 Mar 2004
Posts: 743
Location: Belgium!

PostPosted: Sat Apr 23, 2005 4:22 am    Post subject: Reply with quote

DG wrote:
dont need lots of ettv for trial and error, just see what the max players is reported as in server browser Smile


LOL I figured that out by myself already Wink. 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
View user's profile Send private message Send e-mail Visit poster's website
daita



Joined: 03 Mar 2005
Posts: 48
Location: Jungle

PostPosted: Sun Apr 24, 2005 5:50 pm    Post subject: Reply with quote

first one.

daita.
Back to top
View user's profile Send private message Visit poster's website Yahoo Messenger MSN Messenger
deej



Joined: 19 Mar 2004
Posts: 743
Location: Belgium!

PostPosted: Mon Apr 25, 2005 3:23 am    Post subject: Reply with quote

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
View user's profile Send private message Send e-mail Visit poster's website
DG



Joined: 24 Jul 2003
Posts: 513

PostPosted: Mon Apr 25, 2005 9:43 am    Post subject: Reply with quote

deej wrote:

LOL I figured that out by myself already Wink. 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
View user's profile Send private message
deej



Joined: 19 Mar 2004
Posts: 743
Location: Belgium!

PostPosted: Mon Apr 25, 2005 10:22 am    Post subject: Reply with quote

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
View user's profile Send private message Send e-mail Visit poster's website
deej



Joined: 19 Mar 2004
Posts: 743
Location: Belgium!

PostPosted: Wed May 18, 2005 12:34 am    Post subject: Reply with quote

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
View user's profile Send private message Send e-mail Visit poster's website
Deus



Joined: 12 Mar 2004
Posts: 1053
Location: Germany

PostPosted: Wed May 18, 2005 1:10 am    Post subject: Reply with quote

this is exactly what was stated in the above statement Smile
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
View user's profile Send private message Visit poster's website
deej



Joined: 19 Mar 2004
Posts: 743
Location: Belgium!

PostPosted: Wed May 18, 2005 7:55 am    Post subject: Reply with quote

[pH*Deus] wrote:
this is exactly what was stated in the above statement Smile
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
View user's profile Send private message Send e-mail Visit poster's website
Display posts from previous:   
Post new topic   This topic is locked: you cannot edit posts or make replies.    banimod / etpro / ettv forums Forum Index -> ET Pro News All times are GMT - 8 Hours
Goto page Previous  1, 2
Page 2 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group