View Full Version : What does this do??
62ndAirborne
07-15-2005, 08:28 AM
// Idle Players, Spectators, and Timeouts
set g_inactivity "480"
set g_inactivitySpectator "480"
set sv_timeout "999"
set sv_zombietime "2"
set sv_kickBanTime "300"
set sv_floodprotect "0"
set sv_timeout used to set at "0" before a changed it to "999" what is correct??
I have noticed that some players get 999 ping then nothing happens.....
How do i set this thing right....??
And what does Zombitime do??
OldDog
07-15-2005, 09:36 AM
sv_timeout has nothing to do with ping rate...its defined as follows:
Sets the amount of time for the server to wait for a client packet before assuming a disconnected state
g_inactivity is for PLAYER inactivity...i.e., if someone goes and hides, not moving, for the duration of the number you specify, they will be kicked
g_inactivitySpectator is the same as g_inactivity, but for spectators
sv_zombietime is also "Corpse time"...the length of time dead bodies will remain on-screen. Be aware that the limit of models in CoD is 2048, so you don;t want a bunch of dead bodies just hanging around all the time
Reasonable settings would be:
set g_inactivity "300" //5 Minutes
set g_inactivitySpectator "120" //2 Minute
set sv_timeout "300" //5 Minutes
set sv_zombietime "3" //3 Seconds
set sv_floodprotect "1" //Prevents DoS via player chat
Frankly, I wouldn't want people hiding for more than 5 minutes on my server, nor would I want a spectator watching everything for more than 2 minutes. The floodprotect stops players from opening their console, typing in a chat line, then repeatedly doing <up-arrow><return>.
62ndAirborne
07-15-2005, 12:27 PM
Ok thanks a lot..
vBulletin® v3.8.7, Copyright ©2000-2012, vBulletin Solutions, Inc.