WoW:API GetCVarDefault: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
{{wowapi}} __NOTOC__ | {{wowapi}} __NOTOC__ | ||
Returns the default value of a console variable. | |||
value = GetCVarDefault("cvarName") | value = GetCVarDefault("cvarName") | ||
== Arguments == | |||
;cvarName: String ([[CVar]]) - Name of the console variable to query. | |||
== Returns == | |||
;value: String - Default value of the console variable. | |||
== Notes == | == Notes == | ||
* Calling this function with an invalid variable name will cause an error. | |||
* Calling | |||
Revision as of 17:04, 21 June 2010
Returns the default value of a console variable.
value = GetCVarDefault("cvarName")
Arguments
- cvarName
- String (CVar) - Name of the console variable to query.
Returns
- value
- String - Default value of the console variable.
Notes
- Calling this function with an invalid variable name will cause an error.