set_cvar_flags

Syntax

native set_cvar_flags(const cvar[], flags);

Usage

Parameter Description
cvar
Cvar name to remove flags from
flags
Bitflag sum of flags to set

Description

Sets specified flags to a cvar. The cvar is accessed by name.

Note

  • 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.

Return

1 on success, 0 if cvar does not exist or is not permitted