GetConsoleVarAsInt
Description:
Function GetConsoleVarAsInt get the integer value of a console variable.
Type 'varlist' in the server console to display a list of available console variables and their types. |
Parameters:
(varname[])
{[string | {{{2}}} | {{{3}}} |
|varname|The name of the integer variable to get the value of.}}
Return Values:
The value of the specified console variable. 0 if the specified console variable is not an integer or doesn't exist.
Examples:
new serverPort = GetConsoleVarAsInt("port"); printf("Server Port: %i", serverPort);
Related Functions
The following functions may be useful, as they are related to this function in one way or another.
- GetConsoleVarAsString: Retreive a server variable as a string.
- GetConsoleVarAsBool: Retreive a server variable as a boolean.