Classes 1

Class Description
ConVar

A ConVar is a configurable, named setting in the srcds console.

Enums 2

Enum Description
ConVarBounds

Console variable bound values used with Get/SetConVarBounds()

ConVarQueryResult

Console variable query result values.

Types 2

Type Description
ConVarChanged

Called when a console variable's value is changed.

ConVarQueryFinished

Functions 22

Function Description
CreateConVar

Creates a new console variable.

FindConVar

Searches for a console variable.

GetConVarBool

Returns the boolean value of a console variable.

GetConVarBounds

Retrieves the specified bound of a console variable.

GetConVarDefault

Retrieves the default string value of a console variable.

GetConVarFlags

Returns the bitstring of flags on a console variable.

GetConVarFloat

Returns the floating point value of a console variable.

GetConVarInt

Returns the integer value of a console variable.

GetConVarName

Retrieves the name of a console variable.

GetConVarString

Retrieves the string value of a console variable.

HookConVarChange

Creates a hook for when a console variable's value is changed.

IsValidConVarChar

Returns true if the supplied character is valid in a ConVar name.

QueryClientConVar

Starts a query to retrieve the value of a client's console variable.

ResetConVar

Resets the console variable to its default value.

SendConVarValue

Replicates a convar value to a specific client. This does not change the actual convar value.

SetConVarBool

Sets the boolean value of a console variable.

SetConVarBounds

Sets the specified bound of a console variable.

SetConVarFlags

Sets the bitstring of flags on a console variable.

SetConVarFloat

Sets the floating point value of a console variable.

SetConVarInt

Sets the integer value of a console variable.

SetConVarString

Sets the string value of a console variable.

UnhookConVarChange

Removes a hook for when a console variable's value is changed.