AMX Mod X API Documentation

Signature
native register_cvar(const name[], const string[], flags = FCVAR_NONE, Float:fvalue = 0.0);
Description

Registers a new cvar for the engine.

Notes
  • Deprecated. Consider to use create_cvar for more options.
  • For a list of possible cvar flags see FCVAR_* constants in amxconst.inc
  • If an already existing cvar is registered it will not be duplicated.

    The default value is only set when the cvar is registered for the very

    first time since the server was started.

  • The returned cvar pointer should be used with the get_pcvar_* and

    set_pcvar_* set of functions.

Parameters
  • name Cvar name
  • string Default cvar value
  • flags Optional bitsum of flags specifying cvar behavior
  • fvalue Unused
Returns

Unique cvar pointer

Назад
Верх