WoW:API GetCVar: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
mNo edit summary
m (Move page script moved page API GetCVar to API GetCVar without leaving a redirect)
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<center>'''GetCVar'''</center>
{{wowapi}} __NOTOC__
Returns the current value of a console variable.
value = GetCVar("cvarName")


GetCVar allows you to get the content of the variables defined in the config.wtf file (which is in the WTF directory).
== Arguments ==
;cvarName: String ([[CVar]]) - name of the CVar to query the value of.


GetCVar("realmName") - returns current realm name.
== Returns ==
----
;value: String - current value of the CVar.
{{Template:WoW API}}
 
[[Category:API Settings Functions|GetScreenResolutions]]
== Notes ==
* Calling this function with an invalid variable name will cause an error.

Latest revision as of 04:45, 15 August 2023

WoW API < GetCVar

Returns the current value of a console variable.

value = GetCVar("cvarName")

Arguments[edit]

cvarName
String (CVar) - name of the CVar to query the value of.

Returns[edit]

value
String - current value of the CVar.

Notes[edit]

  • Calling this function with an invalid variable name will cause an error.