native remove_cvar_flags(const cvar[], flags=-1);
cvar | Cvar name to remove flags from |
flags | Bitflag sum of flags to remove |
Removes specified flags from 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 removes the flags using a bitwise-and operation.
Accessing a Cvar by name is slower than direct pointer access, which is why the 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.