Newbie Posted November 13, 2014 Posted November 13, 2014 There is any way to make FPS setting for player, lets say /fps 50 and it sets FPS for player max 50, not for all server players
MTA Team botder Posted November 13, 2014 MTA Team Posted November 13, 2014 You could use SetFPSLimit clientside.
Olle Risk Posted November 14, 2014 Posted November 14, 2014 Client side 'setFPSLimit' for just one player, using it server side applies the new FPS to all online players including those who join later. I recommend setting your FPS to 60 if you want everything to be smooth (most monitors today uses 60 FPS), if you want stability and as low amount of bugs as possible, use 36 (default FPS).
N1kS Posted November 14, 2014 Posted November 14, 2014 Client-side: addComandHandler( "fps", function( sCmd, sFps ) if tonumber( sFps ) then setFPSLimit( tonumber( sFps ) ) else outputChatBox( "Wrong number!", 255, 0, 0 ) end end )
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now