native set_cvar_flags(const cvar[], flags);
cvar | Cvar name to remove flags from |
flags | Bitflag sum of flags to set |
Sets specified flags to a cvar. The cvar is accessed by name.
Not permitted for the "amx_version", "amxmodx_version", "fun_version" and "sv_cheats" cvars.
For a list of possible flags see the FCVAR_* constants in amxconst.inc
This function just adds the flags using a bitwise-or operation. After it has run the flags may not exactly equal the specified bitflag sum.
Accessing a Cvar by name is slower than direct pointer access, which is why the otherwise equivalent set_pcvar_flags() function should be used instead.
1 on success, 0 if cvar does not exist or is not permitted
This documentation was generated automatically using pawn-docgen written by xPaw for AlliedMods.