SetFPSLimit: Difference between revisions
Jump to navigation
Jump to search
(Undo revision 25892 by Arran Fortuna (talk) it is working without tonumber, with string.) |
No edit summary |
||
Line 24: | Line 24: | ||
addCommandHandler ( "setfps", fpsFunction ) -- Attach the setfps command to fpsFunction function. | addCommandHandler ( "setfps", fpsFunction ) -- Attach the setfps command to fpsFunction function. | ||
</syntaxhighlight> | </syntaxhighlight> | ||
==See Also== | ==See Also== | ||
{{Server functions}} | {{Server functions}} |
Revision as of 21:05, 10 August 2012
This function sets the maximum FPS (Frames per second) that players on the server can run their game at.
Syntax
bool setFPSLimit ( int fpsLimit )
Required Arguments
- fpsLimit: An integer value representing the maximum FPS. This value may be between 25 and 100 FPS. You can also pass 0 or false, in which case the FPS limit will be disabled.
Returns
Returns true if successful, or false if it was not possible to set the limit or an invalid value was passed.
Example
This command sets the fps limit in a command handler.
function fpsFunction( player, command, limit ) -- First define the function if hasObjectPermissionTo ( player, "function.setFPSLimit" ) and limit then -- If the player has permission to set FPS limit and limit is submitted... setFPSLimit ( limit ) -- Set the fps. end end addCommandHandler ( "setfps", fpsFunction ) -- Attach the setfps command to fpsFunction function.
See Also
- getMaxPlayers
- getServerConfigSetting
- getServerHttpPort
- getServerName
- getServerPassword
- getServerPort
- isGlitchEnabled
- setGlitchEnabled
- setMaxPlayers
- setServerConfigSetting
- setServerPassword
- shutdown