Scripting/Squirrel/Functions/GetMaxPlayers: Difference between revisions
Jump to navigation
Jump to search
This wiki is using an old backup from 2020
Some information may be old/missing
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
{{Scripting/Deprecated}} | |||
This function will get max players limit. | This function will get max players limit. | ||
Line 32: | Line 33: | ||
== Related Functions == | == Related Functions == | ||
{{Scripting/Squirrel/Functions/ | {{Scripting/Squirrel/Functions/Deprecated_Functions}} |
Revision as of 14:38, 3 February 2014
Note: This function is deprecated. Its use is discouraged as it may be removed in a future update.
This function will get max players limit.
Syntax
GetMaxPlayers()
Arguments
N/A
Return value
- Fuck off
Example
function onPlayerCommand( plr, cmd, text )
{
if ( cmd == "date" )
{
ClientMessage( "The time is now: " + GetFullTime(), plr, 135, 210, 40 );
}
return 1;
}