[QUOTE=~Kiwi~v2;47642971]why would you run the server at 16 tick thats madness[/QUOTE]
To maintain stability at very high player counts. It's darkrp the difference it makes to the player is non existent anyway.
[QUOTE=StonedPenguin;47642994]To maintain stability at very high player counts. It's darkrp he difference it makes to the player is non existent anyway.[/QUOTE]
See if disabling the PlayerTick hook used by the widget system helps you run at a higher rate.
[code]
hook.Add( "Initialize", "", function()
hook.Remove( "PlayerTick", "TickWidgets" )
end )
[/code]
[QUOTE=Willox;47644049]See if disabling the PlayerTick hook used by the widget system helps you run at a higher rate.
[code]
hook.Add( "Initialize", "", function()
hook.Remove( "PlayerTick", "TickWidgets" )
end )
[/code][/QUOTE]
Here's my test:
[I]Before[/I]
[IMG]http://cdn.auroraen.com/image/2h0z0f3o3M2N/before.png[/IMG]
[I]After[/I]
[IMG]https://s3.amazonaws.com/f.cl.ly/items/090n2y1B2s163V0d3Z3f/Image%202015-05-02%20at%207.06.44%20AM.png[/IMG]
[QUOTE=Willox;47644049]See if disabling the PlayerTick hook used by the widget system helps you run at a higher rate.
[code]
hook.Add( "Initialize", "", function()
hook.Remove( "PlayerTick", "TickWidgets" )
end )
[/code][/QUOTE]
I already disable it. It's a shame physics cause cpu usage to spike up 20% or so from where it is pretty often.
[t]http://p.sup.sx/i/1430592143.png[/t]
[QUOTE=StonedPenguin;47646151]I already disable it. It's a shame physics cause cpu usage to spike up 20% or so from where it is pretty often.
[t]http://p.sup.sx/i/1430592143.png[/t][/QUOTE]
What does disabling that do exactly? I saw in wiki it said about movedata, but whats Widget? does it have any noticable effect for any players?
[QUOTE=Busan1;47646536]What does disabling that do exactly? I saw in wiki it said about movedata, but whats Widget? does it have any noticable effect for any players?[/QUOTE]
The system that allows you click on bones in sandbox.
[url]https://github.com/garrynewman/garrysmod/blob/master/garrysmod/lua/includes/modules/widget.lua[/url]
[url]https://github.com/garrynewman/garrysmod/blob/master/garrysmod/lua/entities/widget_base.lua[/url]
Sorry, you need to Log In to post a reply to this thread.