Quick movement?

Ask questions about dedicated servers here and we and other users will do our best to answer them. Please also refer to the self-help section for tutorials and answers to the most commonly asked questions.
Post Reply
greenstar
New to forums
New to forums
Posts: 9
https://www.youtube.com/channel/UC40BgXanDqOYoVCYFDSTfHA
Joined: Thu Aug 06, 2009 1:28 pm

Quick movement?

Post by greenstar »

I'm making a test server off our new dedicated from nfo, but there's a problem. Whenver we strafe it's a very quick change in direction. You don't roll to a stop like you're supposed to. Here's a copy of my server.cfg:

Code: Select all

// server name
hostname "Venom Test Server" 

// rcon passsword
rcon_password "PASSWORD" 

// server cvars
mp_friendlyfire 0 
mp_footsteps 1 
mp_autoteambalance 1 
mp_autokick 1 
mp_flashlight 1 
mp_tkpunish 1 
mp_forcecamera 0 
sv_alltalk 1 
sv_pausable 1 
sv_cheats 0 
sv_consistency 1 
sv_allowupload 1 
sv_allowdownload 1 
sv_maxspeed 320 
mp_limitteams 2 
mp_hostagepenalty 5 
sv_voiceenable 1 
mp_allowspectators 1 
mp_timelimit 45 
mp_chattime 10 
sv_timeout 65 

// round specific cvars
mp_freezetime 3 
mp_roundtime 5 
mp_startmoney 5000 
mp_c4timer 30 
mp_fraglimit 0 
mp_maxrounds 0 
mp_winlimit 0 
mp_playerid 0 
mp_spawnprotectiontime 5 

// bandwidth rates/settings
decalfrequency 10 
sv_minupdaterate 20 

// server logging
log off 
sv_logbans 0 
sv_logecho 1 
sv_logfile 1 
sv_log_onefile 0 

// operation
sv_lan 0 
sv_region 0 

// execute ban files
exec banned_user.cfg 
exec banned_ip.cfg 

//100 Tick settings - if you change these there will be adverse effects
sv_maxrate 25000
sv_maxupdaterate 100
fps_max 600
sv_minrate 4500
sv_mincmdrate 20
sv_maxcmdrate 100
sv_maxupdaterate 100
sv_client_predict 1
sv_client_interpolate 1
sv_client_interp 0.1
sv_client_cmdrate_difference 30
Can you help?
User avatar
Edge100x
Founder
Founder
Posts: 12945
Joined: Thu Apr 18, 2002 11:04 pm
Location: Seattle
Contact:

Re: Quick movement?

Post by Edge100x »

It looks like you may be missing a few commands that we include in our server.cfg by default, that originally came from the game's skill1.cfg and game.cfg files:

Code: Select all

sv_accelerate 5
sv_stopspeed 75
sv_rollangle 0
In particular, the missing sv_stopspeed command is likely what applies here.
Post Reply