native
get_cvar_string
Syntax
native get_cvar_string(const cvarname[], output[], iLen);
Description
Gets a string value from a cvar. The cvar is accessed by name.
Parameters
| cvar | Cvar name to retrieve value from |
|---|---|
| output | Buffer to copy cvar value to |
| iLen | Maximum size of the buffer |
Note
Accessing a Cvar by name is slower than direct pointer access, which is
why the otherwise equivalent get_pcvar_string() function should be used
instead.
Return
Number of cells written to buffer.