Contents
← WoW API < RegisterCVar
Registers a cvar (temporarily)
RegisterCVar( "cvar", value );
Parameters[edit | edit source]
Arguments[edit | edit source]
- cvar
- String - CVar to register
- value
- init value of the CVar (all CVars seem to be saved as String)
Details[edit | edit source]
You can register your own CVars by this function. The catch is that this CVar won't last longer than WoW is running. It doesn't seem to be saved to a file, but at least it endures relogging.
Use API_SetCVar to modify and API_GetCVar to query the registered CVar.
Community content is available under CC-BY-SA unless otherwise noted.