• server.cfg FPS
    12 replies, posted
Hello! I have a problem that relates to a low FPS indicator. If on the server 20-30+ players will be next to each other within sight, then on any gamemode then FPS very very low. No matter what map gm_consrtuct or downtown What parameters in cfg should I have to improve the FPS? Thank you.
Does this happen on Sandbox? Without addons?
Yes
My .cfg net_maxfilesize 64 sv_maxrate 40000 sv_minrate 40000 sv_maxupdaterate 16 sv_minupdaterate 10 sv_maxcmdrate 16 sv_mincmdrate 10 sv_airaccelerate 100 sv_gravity 600 sv_allow_voice_from_file 0 sv_turbophysics 0 gmod_physiterations 4 sv_client_min_interp_ratio 1 sv_client_max_interp_ratio 2 think_limit 20 sv_region 0 sv_noclipspeed 5 sv_noclipaccelerate 5 sv_lan 0 sv_alltalk 1 sv_cheats 0 sv_allowcslua 0 sv_pausable 0 sv_filterban 1 sv_forcepreload 1 sv_footsteps 1 sv_voiceenable 1 sv_timeout 120 sv_deltaprint 0 sv_allowupload 1 sv_allowdownload 1 heartbeat
My bet is that you don't have multi-threading added. Add these lines: cl_threaded_bone_setup 1 cl_threaded_client_leaf_system 1 r_threaded_client_shadow_manager 1 r_threaded_particles 1 r_threaded_renderables 1 r_queued_ropes 1 studio_queue_mode 1 gmod_mcore_test 1
Thank you for the answer! WhT you think about this lines in my cfg? net_maxfilesize 64 sv_maxrate 40000 sv_minrate 40000 sv_maxupdaterate 16 sv_minupdaterate 10 sv_maxcmdrate 16 sv_mincmdrate 10
You are not a server, you are a client.
Yes, I know. But can these parameters affect the FPS on the server?
Anything that starts with sv_ is server convars. Your computer is a client (Unless you're singleplayer) This is how a server and clients work: http://www.howtonetwork.org/wp-content/uploads/2014/03/17.10.jpg Any server-convars you change won't have an effect, or I could simply type "sv_password ****" and change the servers password.
I have 16 tick for all gamemodes.
You're confusing us with statements like that. It sounds like you're talking about a server. Is it your client that are slow .. or the server?
Yes, I talking about server on DS
You're hella' confusing. Next time write "Server performance is low" instead of FPS. FPS is generally only for clients as the server doesn't render anything. Don't list your GPU, they don't do anything server-side. Dedicated Server's can't have multithreading enabled, as this is purely for clientside-rendering for now. Next time post it in the help section; Help & Support. This is for lua-developing. Generally when people talk about server optimization, they say this config seems the best: sv_tickrate 66 sv_maxupdate 33 sv_maxcmdrate 33 sv_minrate 1500 sv_maxrate 30000 (Too low tickrate is going to have some unforeseen glitches. And don't mess with configs you don't know what does.) The only other way to increase a server performance is; "the fewer addons, the better" and check on online videos.
Sorry, you need to Log In to post a reply to this thread.