warning Not Translated
This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.
If you want to contribute a translation for this page then please click here.
GetServerVarAsBool
warning
This function, as of 0.3.7 R2, is deprecated. Please see GetConsoleVarAsBool
Description
Get the boolean value of a server variable.
Name | Description |
---|---|
const varname[] | The name of the boolean variable to get the value of. |
Returns
The value of the specified server variable. 0 if the specified server variable is not a boolean or doesn't exist.
Examples
public OnGameModeInit()
{
new queryEnabled = GetServerVarAsBool("query");
if (!queryEnabled)
{
print("WARNING: Querying is disabled. The server will appear offline in the server browser.");
}
return 1;
}
Notes
tip
Type 'varlist' in the server console to display a list of available server variables and their types.
Related Functions
- GetServerVarAsString: Retreive a server variable as a string.
- GetServerVarAsInt: Retreive a server variable as an integer.