WoW:API GetCVar: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(Reformat and expand.)
m (Move page script moved page API GetCVar to API GetCVar without leaving a redirect)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
{{wowapi}} __NOTOC__
{{wowapi}} __NOTOC__
 
Returns the current value of a console variable.
GetCVar allows you to get the content of the variables defined in the config.wtf file (which is in the WTF directory).
 
  value = GetCVar("cvarName")
  value = GetCVar("cvarName")


== Parameters ==
== Arguments ==
=== Arguments ===
;cvarName: String ([[CVar]]) - name of the CVar to query the value of.
:;cvarName: String - see [[Config.wtf defaults]] for a list
 
=== Returns ===
:;value: String


 
== Returns ==
== Example ==
;value: String - current value of the CVar.
 
  DEFAULT_CHAT_FRAME:AddMessage(GetCVar("realmName"))
 
Outputs your realm name in the chat frame.


== Notes ==
== Notes ==
 
* Calling this function with an invalid variable name will cause an error.
* Calling GetCVar 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.