AMX Mod X API Documentation

Signature
native set_cvar_flags(const cvar[], flags);
Description

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

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

Parameters
  • cvar Cvar name to remove flags from
  • flags Bitflag sum of flags to set
Returns

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

Назад
Верх