WoW:API SetCVar: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(Added detail to describe function purpose and effects)
No edit summary
Line 7: Line 7:
SetCVar("UnitNamePlayer", "1") - enables player nametags.
SetCVar("UnitNamePlayer", "1") - enables player nametags.


See [[Config.wtf defaults]] for more.
----
----
{{WoW API}}
{{WoW API}}

Revision as of 14:02, 25 July 2006

SetCVar("cvar",value{,"scriptCVar"})

SetCVar allows you to set the content of the variables defined in the config.wtf file (which is in the WTF directory).

Settings changed in this manner are applied to the game UI immediately, however settings are not saved until exit and settings which were previously not defined in config.wtf are not available to GetCVar until the file has been saved (at logout).

SetCVar("UnitNamePlayer", "1") - enables player nametags.

See Config.wtf defaults for more.


Template:WoW API