Method Maps1
SymbolDescription
ConVarA ConVar is a configurable, named setting in the srcds console.
Enumerations2
SymbolDescription
ConVarBoundsConsole variable bound values used with Get/SetConVarBounds()
ConVarQueryResultConsole variable query result values.
Type Sets2
SymbolDescription
ConVarChangedAny of the following prototypes will work as a ConVarChanged callback.
ConVarQueryFinished
Functions22
SymbolDescription
CreateConVarCreates a new console variable.
FindConVarSearches for a console variable.
GetConVarBoolReturns the boolean value of a console variable.
GetConVarBoundsRetrieves the specified bound of a console variable.
GetConVarDefaultRetrieves the default string value of a console variable.
GetConVarFlagsReturns the bitstring of flags on a console variable.
GetConVarFloatReturns the floating point value of a console variable.
GetConVarIntReturns the integer value of a console variable.
GetConVarNameRetrieves the name of a console variable.
GetConVarStringRetrieves the string value of a console variable.
HookConVarChangeCreates a hook for when a console variable's value is changed.
IsValidConVarCharReturns true if the supplied character is valid in a ConVar name.
QueryClientConVarStarts a query to retrieve the value of a client's console variable.
ResetConVarResets the console variable to its default value. Note: The replicate and notify params are only relevant for the original, Dark Messiah, and Episode 1 engines. Newer engines automatically do these things when the convar value is changed.
SendConVarValueReplicates a convar value to a specific client. This does not change the actual convar value.
SetConVarBoolSets the boolean value of a console variable. Note: The replicate and notify params are only relevant for the original, Dark Messiah, and Episode 1 engines. Newer engines automatically do these things when the convar value is changed.
SetConVarBoundsSets the specified bound of a console variable.
SetConVarFlagsSets the bitstring of flags on a console variable.
SetConVarFloatSets the floating point value of a console variable. Note: The replicate and notify params are only relevant for the original, Dark Messiah, and Episode 1 engines. Newer engines automatically do these things when the convar value is changed.
SetConVarIntSets the integer value of a console variable. Note: The replicate and notify params are only relevant for the original, Dark Messiah, and Episode 1 engines. Newer engines automatically do these things when the convar value is changed.
SetConVarStringSets the string value of a console variable. Note: The replicate and notify params are only relevant for the original, Dark Messiah, and Episode 1 engines. Newer engines automatically do these things when the convar value is changed.
UnhookConVarChangeRemoves a hook for when a console variable's value is changed.