ConVarQueryFinished TypeSet

This type has no description.

function void(QueryCookie cookie, int client, ConVarQueryResult result, const char[] cvarName, const char[] cvarValue, any value)

Called when a query to retrieve a client's console variable has finished.

Parameters

cookie

Unique identifier of query.

client

Player index.

result

Result of query that tells one whether or not query was successful. See ConVarQueryResult enum for more details.

convarName

Name of client convar that was queried.

convarValue

Value of client convar that was queried if successful. This will be "" if it was not.

value

Value that was passed when query was started.

function void(QueryCookie cookie, int client, ConVarQueryResult result, const char[] cvarName, const char[] cvarValue)

Called when a query to retrieve a client's console variable has finished.

Parameters

cookie

Unique identifier of query.

client

Player index.

result

Result of query that tells one whether or not query was successful. See ConVarQueryResult enum for more details.

convarName

Name of client convar that was queried.

convarValue

Value of client convar that was queried if successful. This will be "" if it was not.