Hello EmptySlot,
welcome to FAForever!
If you increase the frame time clamp, then you automatically reduce the simspeed. I hope you know that!
If you want to change the FPS then you can do this inside a script with this:
- Code: Select all
ConExecute("SC_FrameTimeClamp " .. (1000 / fps))
if you want to type this to the console as command, then please write:
- Code: Select all
SC_FrameTimeClamp 16.6
16.6 means that the game will render a frame every 16.6 miliseconds. This will make 60 frames per second (60FPS)
If you want to change the time clamp to fit 84 frames per second, then count 1000 / 84 = 11.9
So you need to write this for 84FPS:
- Code: Select all
SC_FrameTimeClamp 11.9
(On my system i can't set the time clamp under 16.6, so please use 16.6 or higher for testing,
if a higer value works, then try 11.9 and see if it works for you)