GetConsoleVarAsBool
From SA-MP Wiki
Description:
Get the boolean value of a console variable.
(const varname[])
const varname[] | The name of the boolean variable to get the value of. |
Return Values:
The value of the specified console variable. 0 if the specified console variable is not a boolean or doesn't exist.
Example Usage:
public OnGameModeInit() { new queryEnabled = GetConsoleVarAsBool("query"); if(!queryEnabled) { print("WARNING: Querying is disabled. The server will appear offline in the server browser."); } return 1; }
Tip | Type 'varlist' in the server console to display a list of available console variables and their types. |
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.
- GetConsoleVarAsInt: Retreive a server variable as an integer.