native query_client_cvar(id, const cvar[], const resultFunc[], paramlen = 0, const params[] = "");
id | Client index |
cvar | Cvar to query |
resultFunc | Callback function |
paramlen | Size of extra data |
params | Extra data to pass through to callback |
Dispatches a client cvar query, allowing the plugin to query for its value on the client.
The callback will be called in the following manner: public cvar_query_callback(id, const cvar[], const value[], const param[]) id - Client index cvar - Cvar queried value - Cvar value on the client param - Optional extra data
This function has no return value.
If the client index is not within the range of 1 to MaxClients, the client is not connected, the callback function is invalid or the querying process encounters a problem, an error will be thrown.
This documentation was generated automatically using pawn-docgen written by xPaw for AlliedMods.