Aller au contenu principal

GetConsoleVarAsBool

Description

Get the boolean value of a console variable.

NameDescription
const cvar[]The name of the boolean variable to get the value of.

Returns

The value of the specified console variable. 0 if the specified console variable is not a boolean or doesn't exist.

Examples

public OnGameModeInit()
{
new queryEnabled = GetConsoleVarAsBool("enable_query");
if (!queryEnabled)
{
print("WARNING: Querying is disabled. The server will appear offline in the server browser.");
}
return 1;
}

Notes

astuce

Type 'varlist' in the server console to display a list of available console variables and their types.