AMX Mod X API Documentation

Signature
native remove_cvar_flags(const cvar[], flags = -1);
Description

Removes specified flags from 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 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.

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

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

Назад
Верх