register_cvar
- Синтаксис
-
native register_cvar(const name[], const string[], flags = FCVAR_NONE, Float:fvalue = 0.0);
Переменная | Описание |
---|---|
name |
Cvar name |
string |
Default cvar value |
flags |
Optional bitsum of flags specifying cvar behavior |
fvalue |
Unused |
- Описание
- Registers a new cvar for the engine.
- Пометка
-
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.
- Возвращает
- Unique cvar pointer