Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
No edit summary
Tag: WoW API docs
(C_PlayerInfo wrong cat)
Tag: WoW API docs
(47 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 
{{wowapi|notitle=1}} {{tocright}}
 
{{wowapi|notitle=1}} {{tocright}}
  +
:<span class="noexcerpt" data-nosnippet>''For the web API, see https://develop.battle.net/documentation/world-of-warcraft''</span>
The '''WoW API''' is a set of functions available to [[addons]] and macro scripts. Wowpedia [[Wowpedia:How to edit API pages|maintains]] the list below, newer API is also officially documented in [https://github.com/Gethe/wow-ui-source/tree/live/AddOns/Blizzard_APIDocumentation Blizzard_APIDocumentation] and accessible with the [[APILink|/api]] command. The user interface code (FrameXML) can be [[Viewing_Blizzard%27s_interface_code|exported]] from the game client.
 
  +
The '''WoW API''' is a set of functions available to [[addons]] and macro scripts. Wowpedia [[Wowpedia:How to edit API pages|maintains]] the list below, newer API is also officially documented in [https://github.com/Gethe/wow-ui-source/tree/live/Interface/AddOns/Blizzard_APIDocumentation Blizzard_APIDocumentation] and accessible with the [[APILink|/api]] command. The user interface code (FrameXML) can be [[Viewing_Blizzard%27s_interface_code|exported]] from the game client.
   
 
Functions can be prefixed with the following tags:
 
Functions can be prefixed with the following tags:
* '''PROTECTED''' - This can only be called from [[secure code]].
+
* '''PROTECTED''' - This can only be called from [[secure code]], i.e. by Blizzard.
 
* '''NOCOMBAT''' - This cannot be called from insecure code while in combat.
 
* '''NOCOMBAT''' - This cannot be called from insecure code while in combat.
 
* '''HW''' - This may only be called in response to a hardware event (user input).
 
* '''HW''' - This may only be called in response to a hardware event (user input).
  +
* '''NOSCRIPT''' - This may not be called ''directly'' from (macro) scripts, i.e. [[MACRO_script|/run]], {{api|RunScript}} and {{api|loadstring}}.
  +
* '''DEPRECATED''' - This function has been replaced or removed and its placeholder [https://github.com/Gethe/wow-ui-source/tree/live/Interface/AddOns/Blizzard_Deprecated Lua wrapper] will be removed in the next expansion.
 
* '''UI''' - This is implemented in FrameXML but was considered important enough to be listed.
 
* '''UI''' - This is implemented in FrameXML but was considered important enough to be listed.
   
Line 11: Line 14:
   
 
== API Reference ==
 
== API Reference ==
<!-- https://github.com/Ketho/WowpediaApiDoc -->
+
<!-- https://github.com/Ketho/WowpediaApiDoc/tree/master/Pages/World_of_Warcraft_API -->
{{i-note|This list is up to date as of [[Patch_9.0.5/API_changes|Patch 9.0.5]] (38134) Mar 29 2021}}
+
{{i-note|This list is up to date as of [[Patch_9.1.5/API_changes|Patch 9.1.5]] (41031) Nov 10 2021}}
   
 
=== Account ===
 
=== Account ===
Line 21: Line 24:
 
: [[API IsAccountSecured|IsAccountSecured]]() - Returns if the account has been secured with [[Blizzard Mobile Authenticator]].
 
: [[API IsAccountSecured|IsAccountSecured]]() - Returns if the account has been secured with [[Blizzard Mobile Authenticator]].
 
: [[API IsRestrictedAccount|IsRestrictedAccount]]() - Returns if the acount has trial account restrictions.
 
: [[API IsRestrictedAccount|IsRestrictedAccount]]() - Returns if the acount has trial account restrictions.
: [[API IsTrialAccount|IsTrialAccount]]() : <span style="font-size:smaller; color:#4ec9b0">isTrialAccount</span> - Returns whether the player is using a trial (free-to-play) account.
+
: [[API IsTrialAccount|IsTrialAccount]]() : <span class="apiret">isTrialAccount</span> - Returns whether the player is using a trial (free-to-play) account.
: [[API IsVeteranTrialAccount|IsVeteranTrialAccount]]() : <span style="font-size:smaller; color:#4ec9b0">isVeteranTrialAccount</span> - Returns whether the wow account has no game time.
+
: [[API IsVeteranTrialAccount|IsVeteranTrialAccount]]() : <span class="apiret">isVeteranTrialAccount</span> - Returns whether the wow account has no game time.
 
: [[API NoPlayTime|NoPlayTime]]() - Returns whether the account is considered "unhealthy". This function is only relevant on Chinese realms.
 
: [[API NoPlayTime|NoPlayTime]]() - Returns whether the account is considered "unhealthy". This function is only relevant on Chinese realms.
 
: [[API PartialPlayTime|PartialPlayTime]]() - Returns whether the account is considered "tired". This function is only relevant on Chinese realms.
 
: [[API PartialPlayTime|PartialPlayTime]]() - Returns whether the account is considered "tired". This function is only relevant on Chinese realms.
: [[API SendSubscriptionInterstitialResponse|SendSubscriptionInterstitialResponse]](<span style="font-size:smaller; color:#ecbc2a">response</span>)
+
: [[API SendSubscriptionInterstitialResponse|SendSubscriptionInterstitialResponse]](<span class="apiarg">response</span>)
   
 
=== Achievements ===
 
=== Achievements ===
 
[[Achievement]]s were added in [[Patch 3.0.2]]
 
[[Achievement]]s were added in [[Patch 3.0.2]]
: [[API C_AchievementInfo.GetRewardItemID|C_AchievementInfo.GetRewardItemID]](<span style="font-size:smaller; color:#ecbc2a">achievementID</span>) : <span style="font-size:smaller; color:#4ec9b0">rewardItemID</span>
+
: [[API C_AchievementInfo.GetRewardItemID|C_AchievementInfo.GetRewardItemID]](<span class="apiarg">achievementID</span>) : <span class="apiret">rewardItemID</span>
: [[API C_AchievementInfo.GetSupercedingAchievements|C_AchievementInfo.GetSupercedingAchievements]](<span style="font-size:smaller; color:#ecbc2a">achievementID</span>) : <span style="font-size:smaller; color:#4ec9b0">supercedingAchievements</span> - Returns the next achievement in a series.
+
: [[API C_AchievementInfo.GetSupercedingAchievements|C_AchievementInfo.GetSupercedingAchievements]](<span class="apiarg">achievementID</span>) : <span class="apiret">supercedingAchievements</span> - Returns the next achievement in a series.
: [[API C_AchievementInfo.IsValidAchievement|C_AchievementInfo.IsValidAchievement]](<span style="font-size:smaller; color:#ecbc2a">achievementId</span>) : <span style="font-size:smaller; color:#4ec9b0">isValidAchievement</span>
+
: [[API C_AchievementInfo.IsValidAchievement|C_AchievementInfo.IsValidAchievement]](<span class="apiarg">achievementId</span>) : <span class="apiret">isValidAchievement</span>
: [[API C_AchievementInfo.SetPortraitTexture|C_AchievementInfo.SetPortraitTexture]](<span style="font-size:smaller; color:#ecbc2a">textureObject</span>) - Sets a portrait texture for the unit being achievement compared.
+
: [[API C_AchievementInfo.SetPortraitTexture|C_AchievementInfo.SetPortraitTexture]](<span class="apiarg">textureObject</span>) - Sets a portrait texture for the unit being achievement compared.
: [[API AddTrackedAchievement|AddTrackedAchievement]](<span style="font-size:smaller; color:#ecbc2a">achievementId</span>) - Add an achievement to tracking.
+
: [[API AddTrackedAchievement|AddTrackedAchievement]](<span class="apiarg">achievementId</span>) - Add an achievement to tracking.
 
: [[API AreAccountAchievementsHidden|AreAccountAchievementsHidden]]()
 
: [[API AreAccountAchievementsHidden|AreAccountAchievementsHidden]]()
 
: [[API CanShowAchievementUI|CanShowAchievementUI]]() - Returns if the AchievementUI can be displayed.
 
: [[API CanShowAchievementUI|CanShowAchievementUI]]() - Returns if the AchievementUI can be displayed.
 
: [[API ClearAchievementComparisonUnit|ClearAchievementComparisonUnit]]() - Remove the unit being compared.
 
: [[API ClearAchievementComparisonUnit|ClearAchievementComparisonUnit]]() - Remove the unit being compared.
 
: [[API ClearAchievementSearchString|ClearAchievementSearchString]]()
 
: [[API ClearAchievementSearchString|ClearAchievementSearchString]]()
: [[API GetAchievementCategory|GetAchievementCategory]](<span style="font-size:smaller; color:#ecbc2a">achievementID</span>) - Returns the category number the requested achievement belongs to.
+
: [[API GetAchievementCategory|GetAchievementCategory]](<span class="apiarg">achievementID</span>) - Returns the category number the requested achievement belongs to.
: [[API GetAchievementComparisonInfo|GetAchievementComparisonInfo]](<span style="font-size:smaller; color:#ecbc2a">achievementID</span>) - Returns information about the comparison unit's achievements.
+
: [[API GetAchievementComparisonInfo|GetAchievementComparisonInfo]](<span class="apiarg">achievementID</span>) - Returns information about the comparison unit's achievements.
: [[API GetAchievementCriteriaInfo|GetAchievementCriteriaInfo]](<span style="font-size:smaller; color:#ecbc2a">achievementID, criteriaNum</span>) - Returns information about the requested criteria.
+
: [[API GetAchievementCriteriaInfo|GetAchievementCriteriaInfo]](<span class="apiarg">achievementID, criteriaNum</span>) - Returns information about the requested criteria.
: [[API GetAchievementCriteriaInfoByID|GetAchievementCriteriaInfoByID]](<span style="font-size:smaller; color:#ecbc2a">achievementID, criteriaIndex</span>) - Returns achievement criteria info by criteriaIndex.
+
: [[API GetAchievementCriteriaInfoByID|GetAchievementCriteriaInfoByID]](<span class="apiarg">achievementID, criteriaIndex</span>) - Returns achievement criteria info by criteriaIndex.
 
: [[API GetAchievementGuildRep|GetAchievementGuildRep]]()
 
: [[API GetAchievementGuildRep|GetAchievementGuildRep]]()
: [[API GetAchievementInfo|GetAchievementInfo]](<span style="font-size:smaller; color:#ecbc2a">achievementID or categoryID, index</span>) - Returns information about the requested achievement.
+
: [[API GetAchievementInfo|GetAchievementInfo]](<span class="apiarg">achievementID or categoryID, index</span>) - Returns information about the requested achievement.
: [[API GetAchievementLink|GetAchievementLink]](<span style="font-size:smaller; color:#ecbc2a">achievementID</span>) - Returns a [[achievementLink]] for the specified achievement.
+
: [[API GetAchievementLink|GetAchievementLink]](<span class="apiarg">achievementID</span>) - Returns a [[achievementLink]] for the specified achievement.
: [[API GetAchievementNumCriteria|GetAchievementNumCriteria]](<span style="font-size:smaller; color:#ecbc2a">achievementID</span>) - Returns the number of criteria the requested achievement has.
+
: [[API GetAchievementNumCriteria|GetAchievementNumCriteria]](<span class="apiarg">achievementID</span>) - Returns the number of criteria the requested achievement has.
: [[API GetAchievementNumRewards|GetAchievementNumRewards]](<span style="font-size:smaller; color:#ecbc2a">achievementID</span>) - Returns the number of rewards the requested achievement has.
+
: [[API GetAchievementNumRewards|GetAchievementNumRewards]](<span class="apiarg">achievementID</span>) - Returns the number of rewards the requested achievement has.
: [[API GetAchievementReward|GetAchievementReward]](<span style="font-size:smaller; color:#ecbc2a">achievementID, rewardIndex</span>) - Returns information about a reward item by rewardIndex.
+
: [[API GetAchievementReward|GetAchievementReward]](<span class="apiarg">achievementID, rewardIndex</span>) - Returns information about a reward item by rewardIndex.
 
: [[API GetAchievementSearchProgress|GetAchievementSearchProgress]]()
 
: [[API GetAchievementSearchProgress|GetAchievementSearchProgress]]()
 
: [[API GetAchievementSearchSize|GetAchievementSearchSize]]()
 
: [[API GetAchievementSearchSize|GetAchievementSearchSize]]()
: [[API GetCategoryAchievementPoints|GetCategoryAchievementPoints]](<span style="font-size:smaller; color:#ecbc2a">categoryID, includeSubCategories</span>)
+
: [[API GetCategoryAchievementPoints|GetCategoryAchievementPoints]](<span class="apiarg">categoryID, includeSubCategories</span>)
: [[API GetCategoryInfo|GetCategoryInfo]](<span style="font-size:smaller; color:#ecbc2a">category</span>) - Returns information about the requested achievement category.
+
: [[API GetCategoryInfo|GetCategoryInfo]](<span class="apiarg">category</span>) - Returns information about the requested achievement category.
 
: [[API GetCategoryList|GetCategoryList]]() - Returns the list of achievement categories.
 
: [[API GetCategoryList|GetCategoryList]]() - Returns the list of achievement categories.
: [[API GetCategoryNumAchievements|GetCategoryNumAchievements]](<span style="font-size:smaller; color:#ecbc2a">category [, includeAll</span>) - Returns the number of achievements, and number completed and incompleted for the specific category.
+
: [[API GetCategoryNumAchievements|GetCategoryNumAchievements]](<span class="apiarg">category [, includeAll</span>) - Returns the number of achievements, and number completed and incompleted for the specific category.
 
: [[API GetComparisonAchievementPoints|GetComparisonAchievementPoints]]() - Returns the total number of achievement points the comparison unit has earned.
 
: [[API GetComparisonAchievementPoints|GetComparisonAchievementPoints]]() - Returns the total number of achievement points the comparison unit has earned.
: [[API GetComparisonCategoryNumAchievements|GetComparisonCategoryNumAchievements]](<span style="font-size:smaller; color:#ecbc2a">achievementID</span>) - Returns a number of achievements in a category for the comparison player.
+
: [[API GetComparisonCategoryNumAchievements|GetComparisonCategoryNumAchievements]](<span class="apiarg">achievementID</span>) - Returns a number of achievements in a category for the comparison player.
: [[API GetFilteredAchievementID|GetFilteredAchievementID]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns the ID of a filtered achievement.
+
: [[API GetFilteredAchievementID|GetFilteredAchievementID]](<span class="apiarg">index</span>) - Returns the ID of a filtered achievement.
: [[API GetGuildAchievementMemberInfo|GetGuildAchievementMemberInfo]](<span style="font-size:smaller; color:#ecbc2a">achievementID, index</span>)
+
: [[API GetGuildAchievementMemberInfo|GetGuildAchievementMemberInfo]](<span class="apiarg">achievementID, index</span>)
: [[API GetGuildAchievementMembers|GetGuildAchievementMembers]](<span style="font-size:smaller; color:#ecbc2a">achievementID</span>)
+
: [[API GetGuildAchievementMembers|GetGuildAchievementMembers]](<span class="apiarg">achievementID</span>)
: [[API GetGuildAchievementNumMembers|GetGuildAchievementNumMembers]](<span style="font-size:smaller; color:#ecbc2a">achievementID</span>)
+
: [[API GetGuildAchievementNumMembers|GetGuildAchievementNumMembers]](<span class="apiarg">achievementID</span>)
 
: [[API GetLatestCompletedAchievements|GetLatestCompletedAchievements]]() - Returns the ID's of the last 5 completed Achievements.
 
: [[API GetLatestCompletedAchievements|GetLatestCompletedAchievements]]() - Returns the ID's of the last 5 completed Achievements.
 
: [[API GetLatestCompletedComparisonAchievements|GetLatestCompletedComparisonAchievements]]() - Returns a list of the latest updated achievements for the comparison player.
 
: [[API GetLatestCompletedComparisonAchievements|GetLatestCompletedComparisonAchievements]]() - Returns a list of the latest updated achievements for the comparison player.
: [[API GetNextAchievement|GetNextAchievement]](<span style="font-size:smaller; color:#ecbc2a">achievementID</span>) - Returns the next achievement in a chain.
+
: [[API GetNextAchievement|GetNextAchievement]](<span class="apiarg">achievementID</span>) - Returns the next achievement in a chain.
 
: [[API GetNumComparisonCompletedAchievements|GetNumComparisonCompletedAchievements]]() - Returns the number of completed achievements for the comparison player.
 
: [[API GetNumComparisonCompletedAchievements|GetNumComparisonCompletedAchievements]]() - Returns the number of completed achievements for the comparison player.
 
: [[API GetNumCompletedAchievements|GetNumCompletedAchievements]]() - Returns the total number of achievements, and number completed.
 
: [[API GetNumCompletedAchievements|GetNumCompletedAchievements]]() - Returns the total number of achievements, and number completed.
 
: [[API GetNumFilteredAchievements|GetNumFilteredAchievements]]() - Returns the number of achievements that matches search text.
 
: [[API GetNumFilteredAchievements|GetNumFilteredAchievements]]() - Returns the number of achievements that matches search text.
 
: [[API GetNumTrackedAchievements|GetNumTrackedAchievements]]() - Returns the total number of the currently tracked achievements.
 
: [[API GetNumTrackedAchievements|GetNumTrackedAchievements]]() - Returns the total number of the currently tracked achievements.
: [[API GetPreviousAchievement|GetPreviousAchievement]](<span style="font-size:smaller; color:#ecbc2a">achievementID</span>) - Returns previous related achievements.
+
: [[API GetPreviousAchievement|GetPreviousAchievement]](<span class="apiarg">achievementID</span>) - Returns previous related achievements.
 
: [[API GetTotalAchievementPoints|GetTotalAchievementPoints]]() - Returns the total number of achievement points earned.
 
: [[API GetTotalAchievementPoints|GetTotalAchievementPoints]]() - Returns the total number of achievement points earned.
 
: [[API GetTrackedAchievements|GetTrackedAchievements]]() - Returns the achievementID of the currently tracked achievements.
 
: [[API GetTrackedAchievements|GetTrackedAchievements]]() - Returns the achievementID of the currently tracked achievements.
: [[API HasCompletedAnyAchievement|HasCompletedAnyAchievement]](<span style="font-size:smaller; color:#ecbc2a">achievementID</span>)
+
: [[API HasCompletedAnyAchievement|HasCompletedAnyAchievement]](<span class="apiarg">achievementID</span>)
: [[API IsAchievementEligible|IsAchievementEligible]](<span style="font-size:smaller; color:#ecbc2a">achievementID</span>)
+
: [[API IsAchievementEligible|IsAchievementEligible]](<span class="apiarg">achievementID</span>)
: [[API IsTrackedAchievement|IsTrackedAchievement]](<span style="font-size:smaller; color:#ecbc2a">achievementID</span>)
+
: [[API IsTrackedAchievement|IsTrackedAchievement]](<span class="apiarg">achievementID</span>)
: [[API RemoveTrackedAchievement|RemoveTrackedAchievement]](<span style="font-size:smaller; color:#ecbc2a">achievementID</span>) - Stops an achievement from being tracked.
+
: [[API RemoveTrackedAchievement|RemoveTrackedAchievement]](<span class="apiarg">achievementID</span>) - Stops an achievement from being tracked.
: [[API SetAchievementComparisonUnit|SetAchievementComparisonUnit]](<span style="font-size:smaller; color:#ecbc2a">unitId</span>) - Set the unit to be compared to.
+
: [[API SetAchievementComparisonUnit|SetAchievementComparisonUnit]](<span class="apiarg">unitId</span>) - Set the unit to be compared to.
: [[API SetAchievementSearchString|SetAchievementSearchString]](<span style="font-size:smaller; color:#ecbc2a">searchText</span>) - Starts a search for achievements containing the specified text.
+
: [[API SetAchievementSearchString|SetAchievementSearchString]](<span class="apiarg">searchText</span>) - Starts a search for achievements containing the specified text.
: [[API SetFocusedAchievement|SetFocusedAchievement]](<span style="font-size:smaller; color:#ecbc2a">achievementID</span>)
+
: [[API SetFocusedAchievement|SetFocusedAchievement]](<span class="apiarg">achievementID</span>)
 
: [[API ShowAccountAchievements|ShowAccountAchievements]]()
 
: [[API ShowAccountAchievements|ShowAccountAchievements]]()
: [[API SwitchAchievementSearchTab|SwitchAchievementSearchTab]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API SwitchAchievementSearchTab|SwitchAchievementSearchTab]](<span class="apiarg">index</span>)
   
 
==== Statistics ====
 
==== Statistics ====
: [[API GetComparisonStatistic|GetComparisonStatistic]](<span style="font-size:smaller; color:#ecbc2a">achievementID</span>) - Returns the value of the requested statistic for the comparison player.
+
: [[API GetComparisonStatistic|GetComparisonStatistic]](<span class="apiarg">achievementID</span>) - Returns the value of the requested statistic for the comparison player.
 
: [[API GetLatestUpdatedComparisonStats|GetLatestUpdatedComparisonStats]]() - Returns a list of the latest updated statistics for the comparison player.
 
: [[API GetLatestUpdatedComparisonStats|GetLatestUpdatedComparisonStats]]() - Returns a list of the latest updated statistics for the comparison player.
 
: [[API GetLatestUpdatedStats|GetLatestUpdatedStats]]() - Returns the ID's of the last 5 updated Statistics.
 
: [[API GetLatestUpdatedStats|GetLatestUpdatedStats]]() - Returns the ID's of the last 5 updated Statistics.
: [[API GetStatistic|GetStatistic]](<span style="font-size:smaller; color:#ecbc2a">achievementID</span>) - Returns the value of the requested statistic.
+
: [[API GetStatistic|GetStatistic]](<span class="apiarg">achievementID</span>) - Returns the value of the requested statistic.
 
: [[API GetStatisticsCategoryList|GetStatisticsCategoryList]]() - Returns the list of statistic categories.
 
: [[API GetStatisticsCategoryList|GetStatisticsCategoryList]]() - Returns the list of statistic categories.
   
 
=== AddOns ===
 
=== AddOns ===
 
Relates to [[AddOn]]s.
 
Relates to [[AddOn]]s.
: [[API DisableAddOn|DisableAddOn]](<span style="font-size:smaller; color:#ecbc2a">addonIndex or AddOnName [, character]</span>) - Disable the specified AddOn for subsequent sessions.
+
: [[API DisableAddOn|DisableAddOn]](<span class="apiarg">addonIndex or AddOnName [, character]</span>) - Disable the specified AddOn for subsequent sessions.
: [[API DisableAllAddOns|DisableAllAddOns]](<span style="font-size:smaller; color:#ecbc2a">[character]</span>) - Disable all AddOns for subsequent sessions.
+
: [[API DisableAllAddOns|DisableAllAddOns]](<span class="apiarg">[character]</span>) - Disable all AddOns for subsequent sessions.
: [[API EnableAddOn|EnableAddOn]](<span style="font-size:smaller; color:#ecbc2a">addonIndex or AddOnName [, character]</span>) - Enable the specified AddOn for subsequent sessions.
+
: [[API EnableAddOn|EnableAddOn]](<span class="apiarg">addonIndex or AddOnName [, character]</span>) - Enable the specified AddOn for subsequent sessions.
: [[API EnableAllAddOns|EnableAllAddOns]](<span style="font-size:smaller; color:#ecbc2a">[character]</span>) - Enable all AddOns for subsequent sessions.
+
: [[API EnableAllAddOns|EnableAllAddOns]](<span class="apiarg">[character]</span>) - Enable all AddOns for subsequent sessions.
: [[API GetAddOnDependencies|GetAddOnDependencies]](<span style="font-size:smaller; color:#ecbc2a">addonIndex or AddOnName</span>) - Get dependency list for an AddOn.
+
: [[API GetAddOnDependencies|GetAddOnDependencies]](<span class="apiarg">addonIndex or AddOnName</span>) - Get dependency list for an AddOn.
: [[API GetAddOnEnableState|GetAddOnEnableState]](<span style="font-size:smaller; color:#ecbc2a">[character], addonIndex or AddOnName</span>)
+
: [[API GetAddOnEnableState|GetAddOnEnableState]](<span class="apiarg">[character], addonIndex or AddOnName</span>)
: [[API GetAddOnInfo|GetAddOnInfo]](<span style="font-size:smaller; color:#ecbc2a">addonIndex or AddOnName</span>) - Get information about an AddOn.
+
: [[API GetAddOnInfo|GetAddOnInfo]](<span class="apiarg">addonIndex or AddOnName</span>) - Get information about an AddOn.
: [[API GetAddOnMetadata|GetAddOnMetadata]](<span style="font-size:smaller; color:#ecbc2a">addonIndex or AddOnName, variable</span>) - Retrieve metadata from addon's TOC file.
+
: [[API GetAddOnMetadata|GetAddOnMetadata]](<span class="apiarg">addonIndex or AddOnName, variable</span>) - Retrieve metadata from addon's TOC file.
: [[API GetAddOnOptionalDependencies|GetAddOnOptionalDependencies]](<span style="font-size:smaller; color:#ecbc2a">addonIndex or AddOnName</span>) - Returns a list of optional dependencies.
+
: [[API GetAddOnOptionalDependencies|GetAddOnOptionalDependencies]](<span class="apiarg">addonIndex or AddOnName</span>) - Returns a list of optional dependencies.
 
: [[API GetNumAddOns|GetNumAddOns]]() - Get the number of user supplied AddOns.
 
: [[API GetNumAddOns|GetNumAddOns]]() - Get the number of user supplied AddOns.
: [[API IsAddOnLoaded|IsAddOnLoaded]](<span style="font-size:smaller; color:#ecbc2a">addonIndex or AddOnName</span>) - Returns true if the specified AddOn is loaded.
+
: [[API IsAddOnLoaded|IsAddOnLoaded]](<span class="apiarg">addonIndex or AddOnName</span>) - Returns true if the specified AddOn is loaded.
: [[API IsAddOnLoadOnDemand|IsAddOnLoadOnDemand]](<span style="font-size:smaller; color:#ecbc2a">addonIndex or AddOnName</span>) - Test whether an AddOn is load-on-demand.
+
: [[API IsAddOnLoadOnDemand|IsAddOnLoadOnDemand]](<span class="apiarg">addonIndex or AddOnName</span>) - Test whether an AddOn is load-on-demand.
 
: [[API IsAddonVersionCheckEnabled|IsAddonVersionCheckEnabled]]()
 
: [[API IsAddonVersionCheckEnabled|IsAddonVersionCheckEnabled]]()
: [[API LoadAddOn|LoadAddOn]](<span style="font-size:smaller; color:#ecbc2a">addonIndex or AddOnName</span>) - Request loading of a Load-On-Demand AddOn.
+
: [[API LoadAddOn|LoadAddOn]](<span class="apiarg">addonIndex or AddOnName</span>) - Request loading of a Load-On-Demand AddOn.
 
: [[API ResetAddOns|ResetAddOns]]()
 
: [[API ResetAddOns|ResetAddOns]]()
 
: [[API ResetDisabledAddOns|ResetDisabledAddOns]]()
 
: [[API ResetDisabledAddOns|ResetDisabledAddOns]]()
 
: [[API SaveAddOns|SaveAddOns]]()
 
: [[API SaveAddOns|SaveAddOns]]()
: [[API SetAddonVersionCheck|SetAddonVersionCheck]](<span style="font-size:smaller; color:#ecbc2a">boolean</span>)
+
: [[API SetAddonVersionCheck|SetAddonVersionCheck]](<span class="apiarg">boolean</span>)
: <small>UI</small> [[API UIParentLoadAddOn|UIParentLoadAddOn]](<span style="font-size:smaller; color:#ecbc2a">AddOnName</span>) - Loads or Reloads the specified AddOn, and pops up an error message if it fails to load for any reason.
+
: <small>UI</small> [[API UIParentLoadAddOn|UIParentLoadAddOn]](<span class="apiarg">AddOnName</span>) - Loads or Reloads the specified AddOn, and pops up an error message if it fails to load for any reason.
   
 
=== Adventure Guide ===
 
=== Adventure Guide ===
 
The [[Adventure Guide]] was added in [[Patch 6.2.0]]
 
The [[Adventure Guide]] was added in [[Patch 6.2.0]]
: [[API C_AdventureJournal.ActivateEntry|C_AdventureJournal.ActivateEntry]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API C_AdventureJournal.ActivateEntry|C_AdventureJournal.ActivateEntry]](<span class="apiarg">index</span>)
 
: [[API C_AdventureJournal.CanBeShown|C_AdventureJournal.CanBeShown]]()
 
: [[API C_AdventureJournal.CanBeShown|C_AdventureJournal.CanBeShown]]()
 
: [[API C_AdventureJournal.GetNumAvailableSuggestions|C_AdventureJournal.GetNumAvailableSuggestions]]()
 
: [[API C_AdventureJournal.GetNumAvailableSuggestions|C_AdventureJournal.GetNumAvailableSuggestions]]()
 
: [[API C_AdventureJournal.GetPrimaryOffset|C_AdventureJournal.GetPrimaryOffset]]()
 
: [[API C_AdventureJournal.GetPrimaryOffset|C_AdventureJournal.GetPrimaryOffset]]()
 
: [[API C_AdventureJournal.GetReward|C_AdventureJournal.GetReward]]()
 
: [[API C_AdventureJournal.GetReward|C_AdventureJournal.GetReward]]()
: [[API C_AdventureJournal.GetSuggestions|C_AdventureJournal.GetSuggestions]](<span style="font-size:smaller; color:#ecbc2a">[suggestions]</span>)
+
: [[API C_AdventureJournal.GetSuggestions|C_AdventureJournal.GetSuggestions]](<span class="apiarg">[suggestions]</span>)
: [[API C_AdventureJournal.SetPrimaryOffset|C_AdventureJournal.SetPrimaryOffset]](<span style="font-size:smaller; color:#ecbc2a">offset</span>)
+
: [[API C_AdventureJournal.SetPrimaryOffset|C_AdventureJournal.SetPrimaryOffset]](<span class="apiarg">offset</span>)
: [[API C_AdventureJournal.UpdateSuggestions|C_AdventureJournal.UpdateSuggestions]](<span style="font-size:smaller; color:#ecbc2a">[levelUp]</span>)
+
: [[API C_AdventureJournal.UpdateSuggestions|C_AdventureJournal.UpdateSuggestions]](<span class="apiarg">[levelUp]</span>)
 
==== Encounter Journal ====
 
==== Encounter Journal ====
 
The Encounter Journal was added in [[Patch 4.2.0]]
 
The Encounter Journal was added in [[Patch 4.2.0]]
: [[API C_EncounterJournal.GetDungeonEntrancesForMap|C_EncounterJournal.GetDungeonEntrancesForMap]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">dungeonEntrances</span> - Returns the instance entrances for a map.
+
: [[API C_EncounterJournal.GetDungeonEntrancesForMap|C_EncounterJournal.GetDungeonEntrancesForMap]](<span class="apiarg">uiMapID</span>) : <span class="apiret">dungeonEntrances</span> - Returns the instance entrances for a map.
: [[API C_EncounterJournal.GetEncountersOnMap|C_EncounterJournal.GetEncountersOnMap]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">encounters</span> - Returns boss pin locations for an instance map.
+
: [[API C_EncounterJournal.GetEncountersOnMap|C_EncounterJournal.GetEncountersOnMap]](<span class="apiarg">uiMapID</span>) : <span class="apiret">encounters</span> - Returns boss pin locations for an instance map.
: [[API C_EncounterJournal.GetSectionIconFlags|C_EncounterJournal.GetSectionIconFlags]](<span style="font-size:smaller; color:#ecbc2a">sectionID</span>) : <span style="font-size:smaller; color:#4ec9b0">iconFlags</span> - Returns the icon flags for a section, such as Magic Effect and Heroic Difficulty
+
: [[API C_EncounterJournal.GetSectionIconFlags|C_EncounterJournal.GetSectionIconFlags]](<span class="apiarg">sectionID</span>) : <span class="apiret">iconFlags</span> - Returns the icon flags for a section, such as Magic Effect and Heroic Difficulty
: [[API C_EncounterJournal.GetSectionInfo|C_EncounterJournal.GetSectionInfo]](<span style="font-size:smaller; color:#ecbc2a">sectionID</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span> - Returns information about an entry in the Abilities section of the Encounter Journal.
+
: [[API C_EncounterJournal.GetSectionInfo|C_EncounterJournal.GetSectionInfo]](<span class="apiarg">sectionID</span>) : <span class="apiret">info</span> - Returns information about an entry in the Abilities section of the Encounter Journal.
: [[API C_EncounterJournal.InstanceHasLoot|C_EncounterJournal.InstanceHasLoot]](<span style="font-size:smaller; color:#ecbc2a">[instanceID]</span>) : <span style="font-size:smaller; color:#4ec9b0">hasLoot</span> - Returns whether an instance has a loot table in the journal.
+
: [[API C_EncounterJournal.InstanceHasLoot|C_EncounterJournal.InstanceHasLoot]](<span class="apiarg">[instanceID]</span>) : <span class="apiret">hasLoot</span> - Returns whether an instance has a loot table in the journal.
: [[API C_EncounterJournal.IsEncounterComplete|C_EncounterJournal.IsEncounterComplete]](<span style="font-size:smaller; color:#ecbc2a">journalEncounterID</span>) : <span style="font-size:smaller; color:#4ec9b0">isEncounterComplete</span> - Returns if a boss encounter has been completed.
+
: [[API C_EncounterJournal.IsEncounterComplete|C_EncounterJournal.IsEncounterComplete]](<span class="apiarg">journalEncounterID</span>) : <span class="apiret">isEncounterComplete</span> - Returns if a boss encounter has been completed.
: [[API C_EncounterJournal.SetPreviewMythicPlusLevel|C_EncounterJournal.SetPreviewMythicPlusLevel]](<span style="font-size:smaller; color:#ecbc2a">level</span>)
+
: [[API C_EncounterJournal.SetPreviewMythicPlusLevel|C_EncounterJournal.SetPreviewMythicPlusLevel]](<span class="apiarg">level</span>)
: [[API C_EncounterJournal.SetPreviewPvpTier|C_EncounterJournal.SetPreviewPvpTier]](<span style="font-size:smaller; color:#ecbc2a">tier</span>)
+
: [[API C_EncounterJournal.SetPreviewPvpTier|C_EncounterJournal.SetPreviewPvpTier]](<span class="apiarg">tier</span>)
: [[API C_RaidLocks.IsEncounterComplete|C_RaidLocks.IsEncounterComplete]](<span style="font-size:smaller; color:#ecbc2a">mapID, encounterID [, difficultyID]</span>) : <span style="font-size:smaller; color:#4ec9b0">encounterIsComplete</span>
+
: [[API C_RaidLocks.IsEncounterComplete|C_RaidLocks.IsEncounterComplete]](<span class="apiarg">mapID, encounterID [, difficultyID]</span>) : <span class="apiret">encounterIsComplete</span>
 
: [[API EJ_ClearSearch|EJ_ClearSearch]]() - Clears the encounter journal search results.
 
: [[API EJ_ClearSearch|EJ_ClearSearch]]() - Clears the encounter journal search results.
 
: [[API EJ_EndSearch|EJ_EndSearch]]() - Ends any active encounter journal search.
 
: [[API EJ_EndSearch|EJ_EndSearch]]() - Ends any active encounter journal search.
 
: [[API EJ_GetContentTuningID|EJ_GetContentTuningID]]() - Returns the currently selected content tuning ID for BFA instances.
 
: [[API EJ_GetContentTuningID|EJ_GetContentTuningID]]() - Returns the currently selected content tuning ID for BFA instances.
: [[API EJ_GetCreatureInfo|EJ_GetCreatureInfo]](<span style="font-size:smaller; color:#ecbc2a">index [, encounterID]</span>) - Returns encounter boss info.
+
: [[API EJ_GetCreatureInfo|EJ_GetCreatureInfo]](<span class="apiarg">index [, encounterID]</span>) - Returns encounter boss info.
 
: [[API EJ_GetCurrentTier|EJ_GetCurrentTier]]() - Returns the currently active encounter journal tier index.
 
: [[API EJ_GetCurrentTier|EJ_GetCurrentTier]]() - Returns the currently active encounter journal tier index.
 
: [[API EJ_GetDifficulty|EJ_GetDifficulty]]() - Returns the currently viewed difficulty in the journal.
 
: [[API EJ_GetDifficulty|EJ_GetDifficulty]]() - Returns the currently viewed difficulty in the journal.
: [[API EJ_GetEncounterInfo|EJ_GetEncounterInfo]](<span style="font-size:smaller; color:#ecbc2a">encounterID</span>) - Returns encounter info from the journal.
+
: [[API EJ_GetEncounterInfo|EJ_GetEncounterInfo]](<span class="apiarg">encounterID</span>) - Returns encounter info from the journal.
: [[API EJ_GetEncounterInfoByIndex|EJ_GetEncounterInfoByIndex]](<span style="font-size:smaller; color:#ecbc2a">index [, instanceID]</span>) - idem
+
: [[API EJ_GetEncounterInfoByIndex|EJ_GetEncounterInfoByIndex]](<span class="apiarg">index [, instanceID]</span>) - idem
: [[API EJ_GetInstanceByIndex|EJ_GetInstanceByIndex]](<span style="font-size:smaller; color:#ecbc2a">index, isRaid</span>) - Returns instance info for the Encounter Journal.
+
: [[API EJ_GetInstanceByIndex|EJ_GetInstanceByIndex]](<span class="apiarg">index, isRaid</span>) - Returns instance info for the Encounter Journal.
: [[API EJ_GetInstanceForMap|EJ_GetInstanceForMap]](<span style="font-size:smaller; color:#ecbc2a">mapID</span>) - Returns any corresponding instance ID for a UiMapID.
+
: [[API EJ_GetInstanceForMap|EJ_GetInstanceForMap]](<span class="apiarg">mapID</span>) - Returns any corresponding instance ID for a UiMapID.
 
: [[API EJ_GetInstanceInfo|EJ_GetInstanceInfo]]() - Returns instance info for the Encounter Journal.
 
: [[API EJ_GetInstanceInfo|EJ_GetInstanceInfo]]() - Returns instance info for the Encounter Journal.
: [[API EJ_GetMapEncounter|EJ_GetMapEncounter]](<span style="font-size:smaller; color:#ecbc2a">mapID, index [, fromJournal]</span>) - Returns boss pin locations on instance maps.
+
: [[API EJ_GetMapEncounter|EJ_GetMapEncounter]](<span class="apiarg">mapID, index [, fromJournal]</span>) - Returns boss pin locations on instance maps.
: [[API EJ_GetNumEncountersForLootByIndex|EJ_GetNumEncountersForLootByIndex]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns the amount of encounters that drop the same loot item.
+
: [[API EJ_GetNumEncountersForLootByIndex|EJ_GetNumEncountersForLootByIndex]](<span class="apiarg">index</span>) - Returns the amount of encounters that drop the same loot item.
 
: [[API EJ_GetNumSearchResults|EJ_GetNumSearchResults]]() - Returns the number of search results for the Encounter Journal.
 
: [[API EJ_GetNumSearchResults|EJ_GetNumSearchResults]]() - Returns the number of search results for the Encounter Journal.
 
: [[API EJ_GetNumTiers|EJ_GetNumTiers]]() - Returns the number of valid encounter journal tier indices.
 
: [[API EJ_GetNumTiers|EJ_GetNumTiers]]() - Returns the number of valid encounter journal tier indices.
 
: [[API EJ_GetSearchProgress|EJ_GetSearchProgress]]() - Returns the search bar's progress ratio.
 
: [[API EJ_GetSearchProgress|EJ_GetSearchProgress]]() - Returns the search bar's progress ratio.
: [[API EJ_GetSearchResult|EJ_GetSearchResult]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns search results for the Encounter Journal.
+
: [[API EJ_GetSearchResult|EJ_GetSearchResult]](<span class="apiarg">index</span>) - Returns search results for the Encounter Journal.
 
: [[API EJ_GetSearchSize|EJ_GetSearchSize]]() - Returns the amount of Encounter Journal objects to search through.
 
: [[API EJ_GetSearchSize|EJ_GetSearchSize]]() - Returns the amount of Encounter Journal objects to search through.
: [[API EJ_GetSectionPath|EJ_GetSectionPath]](<span style="font-size:smaller; color:#ecbc2a">sectionID</span>) - Returns the parent Section ID if available.
+
: [[API EJ_GetSectionPath|EJ_GetSectionPath]](<span class="apiarg">sectionID</span>) - Returns the parent Section ID if available.
: [[API EJ_GetTierInfo|EJ_GetTierInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Get some information about the encounter journal tier for index.
+
: [[API EJ_GetTierInfo|EJ_GetTierInfo]](<span class="apiarg">index</span>) - Get some information about the encounter journal tier for index.
: [[API EJ_HandleLinkPath|EJ_HandleLinkPath]](<span style="font-size:smaller; color:#ecbc2a">jtype, id</span>) - Returns the supplementary instance and encounter ID for an encounter or section ID.
+
: [[API EJ_HandleLinkPath|EJ_HandleLinkPath]](<span class="apiarg">jtype, id</span>) - Returns the supplementary instance and encounter ID for an encounter or section ID.
 
: [[API EJ_InstanceIsRaid|EJ_InstanceIsRaid]]() - Returns whether the selected instance is a raid.
 
: [[API EJ_InstanceIsRaid|EJ_InstanceIsRaid]]() - Returns whether the selected instance is a raid.
 
: [[API EJ_IsSearchFinished|EJ_IsSearchFinished]]() - Returns whether the current search has finished.
 
: [[API EJ_IsSearchFinished|EJ_IsSearchFinished]]() - Returns whether the current search has finished.
: [[API EJ_IsValidInstanceDifficulty|EJ_IsValidInstanceDifficulty]](<span style="font-size:smaller; color:#ecbc2a">difficultyID</span>) - Returns whether the difficultyID is valid for use in the journal.
+
: [[API EJ_IsValidInstanceDifficulty|EJ_IsValidInstanceDifficulty]](<span class="apiarg">difficultyID</span>) - Returns whether the difficultyID is valid for use in the journal.
: [[API EJ_SelectEncounter|EJ_SelectEncounter]](<span style="font-size:smaller; color:#ecbc2a">encounterID</span>) - Selects an encounter for the Encounter Journal API state.
+
: [[API EJ_SelectEncounter|EJ_SelectEncounter]](<span class="apiarg">encounterID</span>) - Selects an encounter for the Encounter Journal API state.
: [[API EJ_SelectInstance|EJ_SelectInstance]](<span style="font-size:smaller; color:#ecbc2a">instanceID</span>) - Selects an instance for the Encounter Journal API state.
+
: [[API EJ_SelectInstance|EJ_SelectInstance]](<span class="apiarg">instanceID</span>) - Selects an instance for the Encounter Journal API state.
: [[API EJ_SelectTier|EJ_SelectTier]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Selects a tier for the Encounter Journal API state.
+
: [[API EJ_SelectTier|EJ_SelectTier]](<span class="apiarg">index</span>) - Selects a tier for the Encounter Journal API state.
: [[API EJ_SetDifficulty|EJ_SetDifficulty]](<span style="font-size:smaller; color:#ecbc2a">difficultyID</span>) - Sets the encounter difficulty shown in the Encounter Journal.
+
: [[API EJ_SetDifficulty|EJ_SetDifficulty]](<span class="apiarg">difficultyID</span>) - Sets the encounter difficulty shown in the Encounter Journal.
: [[API EJ_SetSearch|EJ_SetSearch]](<span style="font-size:smaller; color:#ecbc2a">text</span>) - Starts a search in the journal.
+
: [[API EJ_SetSearch|EJ_SetSearch]](<span class="apiarg">text</span>) - Starts a search in the journal.
: [[API GetJournalInfoForSpellConfirmation|GetJournalInfoForSpellConfirmation]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>)
+
: [[API GetJournalInfoForSpellConfirmation|GetJournalInfoForSpellConfirmation]](<span class="apiarg">spellID</span>)
: [[API SetPortraitTextureFromCreatureDisplayID|SetPortraitTextureFromCreatureDisplayID]](<span style="font-size:smaller; color:#ecbc2a">textureObject, creatureDisplayID</span>)
+
: [[API SetPortraitTextureFromCreatureDisplayID|SetPortraitTextureFromCreatureDisplayID]](<span class="apiarg">textureObject, creatureDisplayID</span>)
 
Loot Journal
 
Loot Journal
: [[API C_EncounterJournal.GetLootInfo|C_EncounterJournal.GetLootInfo]](<span style="font-size:smaller; color:#ecbc2a">id</span>) : <span style="font-size:smaller; color:#4ec9b0">itemInfo</span> - Returns loot info for an encounter or instance.
+
: [[API C_EncounterJournal.GetLootInfo|C_EncounterJournal.GetLootInfo]](<span class="apiarg">id</span>) : <span class="apiret">itemInfo</span> - Returns loot info for an encounter or instance.
: [[API C_EncounterJournal.GetLootInfoByIndex|C_EncounterJournal.GetLootInfoByIndex]](<span style="font-size:smaller; color:#ecbc2a">index [, encounterIndex]</span>) : <span style="font-size:smaller; color:#4ec9b0">itemInfo</span> - Returns loot info for an encounter or instance.
+
: [[API C_EncounterJournal.GetLootInfoByIndex|C_EncounterJournal.GetLootInfoByIndex]](<span class="apiarg">index [, encounterIndex]</span>) : <span class="apiret">itemInfo</span> - Returns loot info for an encounter or instance.
: [[API C_EncounterJournal.GetSlotFilter|C_EncounterJournal.GetSlotFilter]]() : <span style="font-size:smaller; color:#4ec9b0">filter</span> - Returns the current equipment type slot filter.
+
: [[API C_EncounterJournal.GetSlotFilter|C_EncounterJournal.GetSlotFilter]]() : <span class="apiret">filter</span> - Returns the current equipment type slot filter.
 
: [[API C_EncounterJournal.ResetSlotFilter|C_EncounterJournal.ResetSlotFilter]]() - Resets the current slot filter.
 
: [[API C_EncounterJournal.ResetSlotFilter|C_EncounterJournal.ResetSlotFilter]]() - Resets the current slot filter.
: [[API C_EncounterJournal.SetSlotFilter|C_EncounterJournal.SetSlotFilter]](<span style="font-size:smaller; color:#ecbc2a">filterSlot</span>) - Sets the Encounter Journal's equipment slot filter.
+
: [[API C_EncounterJournal.SetSlotFilter|C_EncounterJournal.SetSlotFilter]](<span class="apiarg">filterSlot</span>) - Sets the Encounter Journal's equipment slot filter.
: [[API EJ_GetInvTypeSortOrder|EJ_GetInvTypeSortOrder]](<span style="font-size:smaller; color:#ecbc2a">invType</span>) - Returns the sort order for an inventory type.
+
: [[API EJ_GetInvTypeSortOrder|EJ_GetInvTypeSortOrder]](<span class="apiarg">invType</span>) - Returns the sort order for an inventory type.
 
: [[API EJ_GetLootFilter|EJ_GetLootFilter]]() - Returns the currently used loot filter.
 
: [[API EJ_GetLootFilter|EJ_GetLootFilter]]() - Returns the currently used loot filter.
 
: [[API EJ_GetNumLoot|EJ_GetNumLoot]]() - Returns the amount of loot for the currently selected instance or encounter.
 
: [[API EJ_GetNumLoot|EJ_GetNumLoot]]() - Returns the amount of loot for the currently selected instance or encounter.
 
: [[API EJ_IsLootListOutOfDate|EJ_IsLootListOutOfDate]]() - Returns whether the loot list is out of date in relation to any filters when getting new loot data.
 
: [[API EJ_IsLootListOutOfDate|EJ_IsLootListOutOfDate]]() - Returns whether the loot list is out of date in relation to any filters when getting new loot data.
 
: [[API EJ_ResetLootFilter|EJ_ResetLootFilter]]() - Clears any current loot filter in the journal.
 
: [[API EJ_ResetLootFilter|EJ_ResetLootFilter]]() - Clears any current loot filter in the journal.
: [[API EJ_SetLootFilter|EJ_SetLootFilter]](<span style="font-size:smaller; color:#ecbc2a">classID, specID</span>) - Sets the loot filter for a specialization.
+
: [[API EJ_SetLootFilter|EJ_SetLootFilter]](<span class="apiarg">classID, specID</span>) - Sets the loot filter for a specialization.
   
 
=== Auction House ===
 
=== Auction House ===
 
The [[Auction House]] was revamped in [[Patch 8.3.0]]
 
The [[Auction House]] was revamped in [[Patch 8.3.0]]
: [[API C_AuctionHouse.GetNumReplicateItems|C_AuctionHouse.GetNumReplicateItems]]() : <span style="font-size:smaller; color:#4ec9b0">numReplicateItems</span> - Returns the amount of auctions.
+
: [[API C_AuctionHouse.GetNumReplicateItems|C_AuctionHouse.GetNumReplicateItems]]() : <span class="apiret">numReplicateItems</span> - Returns the amount of auctions.
: [[API C_AuctionHouse.GetReplicateItemBattlePetInfo|C_AuctionHouse.GetReplicateItemBattlePetInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) : <span style="font-size:smaller; color:#4ec9b0">creatureID, displayID</span>
+
: [[API C_AuctionHouse.GetReplicateItemBattlePetInfo|C_AuctionHouse.GetReplicateItemBattlePetInfo]](<span class="apiarg">index</span>) : <span class="apiret">creatureID, displayID</span>
: [[API C_AuctionHouse.GetReplicateItemInfo|C_AuctionHouse.GetReplicateItemInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) : <span style="font-size:smaller; color:#4ec9b0">name, texture, count, qualityID, usable, level, levelType, minBid, ...</span> - Returns information about the specified auction.
+
: [[API C_AuctionHouse.GetReplicateItemInfo|C_AuctionHouse.GetReplicateItemInfo]](<span class="apiarg">index</span>) : <span class="apiret">name, texture, count, qualityID, usable, level, levelType, minBid, ...</span> - Returns information about the specified auction.
: [[API C_AuctionHouse.GetReplicateItemLink|C_AuctionHouse.GetReplicateItemLink]](<span style="font-size:smaller; color:#ecbc2a">index</span>) : <span style="font-size:smaller; color:#4ec9b0">itemLink</span>
+
: [[API C_AuctionHouse.GetReplicateItemLink|C_AuctionHouse.GetReplicateItemLink]](<span class="apiarg">index</span>) : <span class="apiret">itemLink</span>
: [[API C_AuctionHouse.GetReplicateItemTimeLeft|C_AuctionHouse.GetReplicateItemTimeLeft]](<span style="font-size:smaller; color:#ecbc2a">index</span>) : <span style="font-size:smaller; color:#4ec9b0">timeLeft</span> - Returns the time left for an auction.
+
: [[API C_AuctionHouse.GetReplicateItemTimeLeft|C_AuctionHouse.GetReplicateItemTimeLeft]](<span class="apiarg">index</span>) : <span class="apiret">timeLeft</span> - Returns the time left for an auction.
 
: [[API C_AuctionHouse.ReplicateItems|C_AuctionHouse.ReplicateItems]]() - Queries all auctions listed on the Auction House.
 
: [[API C_AuctionHouse.ReplicateItems|C_AuctionHouse.ReplicateItems]]() - Queries all auctions listed on the Auction House.
   
: [[API C_AuctionHouse.CalculateCommodityDeposit|C_AuctionHouse.CalculateCommodityDeposit]](<span style="font-size:smaller; color:#ecbc2a">itemID, duration, quantity</span>) : <span style="font-size:smaller; color:#4ec9b0">depositCost</span>
+
: [[API C_AuctionHouse.CalculateCommodityDeposit|C_AuctionHouse.CalculateCommodityDeposit]](<span class="apiarg">itemID, duration, quantity</span>) : <span class="apiret">depositCost</span>
: [[API C_AuctionHouse.CalculateItemDeposit|C_AuctionHouse.CalculateItemDeposit]](<span style="font-size:smaller; color:#ecbc2a">item, duration, quantity</span>) : <span style="font-size:smaller; color:#4ec9b0">depositCost</span>
+
: [[API C_AuctionHouse.CalculateItemDeposit|C_AuctionHouse.CalculateItemDeposit]](<span class="apiarg">item, duration, quantity</span>) : <span class="apiret">depositCost</span>
: [[API C_AuctionHouse.CanCancelAuction|C_AuctionHouse.CanCancelAuction]](<span style="font-size:smaller; color:#ecbc2a">ownedAuctionID</span>) : <span style="font-size:smaller; color:#4ec9b0">canCancelAuction</span>
+
: [[API C_AuctionHouse.CanCancelAuction|C_AuctionHouse.CanCancelAuction]](<span class="apiarg">ownedAuctionID</span>) : <span class="apiret">canCancelAuction</span>
: [[API C_AuctionHouse.CancelAuction|C_AuctionHouse.CancelAuction]](<span style="font-size:smaller; color:#ecbc2a">ownedAuctionID</span>)
+
: <small>HW, NOSCRIPT</small> [[API C_AuctionHouse.CancelAuction|C_AuctionHouse.CancelAuction]](<span class="apiarg">ownedAuctionID</span>) - Cancels an auction.
 
: [[API C_AuctionHouse.CancelCommoditiesPurchase|C_AuctionHouse.CancelCommoditiesPurchase]]()
 
: [[API C_AuctionHouse.CancelCommoditiesPurchase|C_AuctionHouse.CancelCommoditiesPurchase]]()
 
: [[API C_AuctionHouse.CancelSell|C_AuctionHouse.CancelSell]]()
 
: [[API C_AuctionHouse.CancelSell|C_AuctionHouse.CancelSell]]()
 
: [[API C_AuctionHouse.CloseAuctionHouse|C_AuctionHouse.CloseAuctionHouse]]()
 
: [[API C_AuctionHouse.CloseAuctionHouse|C_AuctionHouse.CloseAuctionHouse]]()
: [[API C_AuctionHouse.ConfirmCommoditiesPurchase|C_AuctionHouse.ConfirmCommoditiesPurchase]](<span style="font-size:smaller; color:#ecbc2a">itemID, quantity</span>) - Completes a commodity item purchase.
+
: [[API C_AuctionHouse.ConfirmCommoditiesPurchase|C_AuctionHouse.ConfirmCommoditiesPurchase]](<span class="apiarg">itemID, quantity</span>) - Completes a commodity item purchase.
: [[API C_AuctionHouse.FavoritesAreAvailable|C_AuctionHouse.FavoritesAreAvailable]]() : <span style="font-size:smaller; color:#4ec9b0">favoritesAreAvailable</span>
+
: [[API C_AuctionHouse.FavoritesAreAvailable|C_AuctionHouse.FavoritesAreAvailable]]() : <span class="apiret">favoritesAreAvailable</span>
: [[API C_AuctionHouse.GetAuctionItemSubClasses|C_AuctionHouse.GetAuctionItemSubClasses]](<span style="font-size:smaller; color:#ecbc2a">classID</span>) : <span style="font-size:smaller; color:#4ec9b0">subClasses</span>
+
: [[API C_AuctionHouse.GetAuctionItemSubClasses|C_AuctionHouse.GetAuctionItemSubClasses]](<span class="apiarg">classID</span>) : <span class="apiret">subClasses</span>
: [[API C_AuctionHouse.GetAvailablePostCount|C_AuctionHouse.GetAvailablePostCount]](<span style="font-size:smaller; color:#ecbc2a">item</span>) : <span style="font-size:smaller; color:#4ec9b0">listCount</span>
+
: [[API C_AuctionHouse.GetAvailablePostCount|C_AuctionHouse.GetAvailablePostCount]](<span class="apiarg">item</span>) : <span class="apiret">listCount</span>
: [[API C_AuctionHouse.GetBidInfo|C_AuctionHouse.GetBidInfo]](<span style="font-size:smaller; color:#ecbc2a">bidIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">bid</span>
+
: [[API C_AuctionHouse.GetBidInfo|C_AuctionHouse.GetBidInfo]](<span class="apiarg">bidIndex</span>) : <span class="apiret">bid</span>
: [[API C_AuctionHouse.GetBidType|C_AuctionHouse.GetBidType]](<span style="font-size:smaller; color:#ecbc2a">bidTypeIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">typeItemKey</span>
+
: [[API C_AuctionHouse.GetBidType|C_AuctionHouse.GetBidType]](<span class="apiarg">bidTypeIndex</span>) : <span class="apiret">typeItemKey</span>
: [[API C_AuctionHouse.GetBrowseResults|C_AuctionHouse.GetBrowseResults]]() : <span style="font-size:smaller; color:#4ec9b0">browseResults</span>
+
: [[API C_AuctionHouse.GetBrowseResults|C_AuctionHouse.GetBrowseResults]]() : <span class="apiret">browseResults</span>
: [[API C_AuctionHouse.GetCancelCost|C_AuctionHouse.GetCancelCost]](<span style="font-size:smaller; color:#ecbc2a">ownedAuctionID</span>) : <span style="font-size:smaller; color:#4ec9b0">cancelCost</span>
+
: [[API C_AuctionHouse.GetCancelCost|C_AuctionHouse.GetCancelCost]](<span class="apiarg">ownedAuctionID</span>) : <span class="apiret">cancelCost</span>
: [[API C_AuctionHouse.GetCommoditySearchResultInfo|C_AuctionHouse.GetCommoditySearchResultInfo]](<span style="font-size:smaller; color:#ecbc2a">itemID, commoditySearchResultIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">result</span> - Returns search results for a commodity item.
+
: [[API C_AuctionHouse.GetCommoditySearchResultInfo|C_AuctionHouse.GetCommoditySearchResultInfo]](<span class="apiarg">itemID, commoditySearchResultIndex</span>) : <span class="apiret">result</span> - Returns search results for a commodity item.
: [[API C_AuctionHouse.GetCommoditySearchResultsQuantity|C_AuctionHouse.GetCommoditySearchResultsQuantity]](<span style="font-size:smaller; color:#ecbc2a">itemID</span>) : <span style="font-size:smaller; color:#4ec9b0">totalQuantity</span>
+
: [[API C_AuctionHouse.GetCommoditySearchResultsQuantity|C_AuctionHouse.GetCommoditySearchResultsQuantity]](<span class="apiarg">itemID</span>) : <span class="apiret">totalQuantity</span>
: [[API C_AuctionHouse.GetExtraBrowseInfo|C_AuctionHouse.GetExtraBrowseInfo]](<span style="font-size:smaller; color:#ecbc2a">itemKey</span>) : <span style="font-size:smaller; color:#4ec9b0">extraInfo</span>
+
: [[API C_AuctionHouse.GetExtraBrowseInfo|C_AuctionHouse.GetExtraBrowseInfo]](<span class="apiarg">itemKey</span>) : <span class="apiret">extraInfo</span>
: [[API C_AuctionHouse.GetFilterGroups|C_AuctionHouse.GetFilterGroups]]() : <span style="font-size:smaller; color:#4ec9b0">filterGroups</span>
+
: [[API C_AuctionHouse.GetFilterGroups|C_AuctionHouse.GetFilterGroups]]() : <span class="apiret">filterGroups</span>
: [[API C_AuctionHouse.GetItemCommodityStatus|C_AuctionHouse.GetItemCommodityStatus]](<span style="font-size:smaller; color:#ecbc2a">item</span>) : <span style="font-size:smaller; color:#4ec9b0">isCommodity</span>
+
: [[API C_AuctionHouse.GetItemCommodityStatus|C_AuctionHouse.GetItemCommodityStatus]](<span class="apiarg">item</span>) : <span class="apiret">isCommodity</span>
: [[API C_AuctionHouse.GetItemKeyFromItem|C_AuctionHouse.GetItemKeyFromItem]](<span style="font-size:smaller; color:#ecbc2a">item</span>) : <span style="font-size:smaller; color:#4ec9b0">itemKey</span>
+
: [[API C_AuctionHouse.GetItemKeyFromItem|C_AuctionHouse.GetItemKeyFromItem]](<span class="apiarg">item</span>) : <span class="apiret">itemKey</span>
: [[API C_AuctionHouse.GetItemKeyInfo|C_AuctionHouse.GetItemKeyInfo]](<span style="font-size:smaller; color:#ecbc2a">itemKey [, restrictQualityToFilter]</span>) : <span style="font-size:smaller; color:#4ec9b0">itemKeyInfo</span>
+
: [[API C_AuctionHouse.GetItemKeyInfo|C_AuctionHouse.GetItemKeyInfo]](<span class="apiarg">itemKey [, restrictQualityToFilter]</span>) : <span class="apiret">itemKeyInfo</span>
: [[API C_AuctionHouse.GetItemKeyRequiredLevel|C_AuctionHouse.GetItemKeyRequiredLevel]](<span style="font-size:smaller; color:#ecbc2a">itemKey</span>) : <span style="font-size:smaller; color:#4ec9b0">requiredLevel</span>
+
: [[API C_AuctionHouse.GetItemKeyRequiredLevel|C_AuctionHouse.GetItemKeyRequiredLevel]](<span class="apiarg">itemKey</span>) : <span class="apiret">requiredLevel</span>
: [[API C_AuctionHouse.GetItemSearchResultInfo|C_AuctionHouse.GetItemSearchResultInfo]](<span style="font-size:smaller; color:#ecbc2a">itemKey, itemSearchResultIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">result</span> - Returns search results for an item.
+
: [[API C_AuctionHouse.GetItemSearchResultInfo|C_AuctionHouse.GetItemSearchResultInfo]](<span class="apiarg">itemKey, itemSearchResultIndex</span>) : <span class="apiret">result</span> - Returns search results for an item.
: [[API C_AuctionHouse.GetItemSearchResultsQuantity|C_AuctionHouse.GetItemSearchResultsQuantity]](<span style="font-size:smaller; color:#ecbc2a">itemKey</span>) : <span style="font-size:smaller; color:#4ec9b0">totalQuantity</span>
+
: [[API C_AuctionHouse.GetItemSearchResultsQuantity|C_AuctionHouse.GetItemSearchResultsQuantity]](<span class="apiarg">itemKey</span>) : <span class="apiret">totalQuantity</span>
: [[API C_AuctionHouse.GetMaxBidItemBid|C_AuctionHouse.GetMaxBidItemBid]]() : <span style="font-size:smaller; color:#4ec9b0">maxBid</span>
+
: [[API C_AuctionHouse.GetMaxBidItemBid|C_AuctionHouse.GetMaxBidItemBid]]() : <span class="apiret">maxBid</span>
: [[API C_AuctionHouse.GetMaxBidItemBuyout|C_AuctionHouse.GetMaxBidItemBuyout]]() : <span style="font-size:smaller; color:#4ec9b0">maxBuyout</span>
+
: [[API C_AuctionHouse.GetMaxBidItemBuyout|C_AuctionHouse.GetMaxBidItemBuyout]]() : <span class="apiret">maxBuyout</span>
: [[API C_AuctionHouse.GetMaxCommoditySearchResultPrice|C_AuctionHouse.GetMaxCommoditySearchResultPrice]](<span style="font-size:smaller; color:#ecbc2a">itemID</span>) : <span style="font-size:smaller; color:#4ec9b0">maxUnitPrice</span>
+
: [[API C_AuctionHouse.GetMaxCommoditySearchResultPrice|C_AuctionHouse.GetMaxCommoditySearchResultPrice]](<span class="apiarg">itemID</span>) : <span class="apiret">maxUnitPrice</span>
: [[API C_AuctionHouse.GetMaxItemSearchResultBid|C_AuctionHouse.GetMaxItemSearchResultBid]](<span style="font-size:smaller; color:#ecbc2a">itemKey</span>) : <span style="font-size:smaller; color:#4ec9b0">maxBid</span>
+
: [[API C_AuctionHouse.GetMaxItemSearchResultBid|C_AuctionHouse.GetMaxItemSearchResultBid]](<span class="apiarg">itemKey</span>) : <span class="apiret">maxBid</span>
: [[API C_AuctionHouse.GetMaxItemSearchResultBuyout|C_AuctionHouse.GetMaxItemSearchResultBuyout]](<span style="font-size:smaller; color:#ecbc2a">itemKey</span>) : <span style="font-size:smaller; color:#4ec9b0">maxBuyout</span>
+
: [[API C_AuctionHouse.GetMaxItemSearchResultBuyout|C_AuctionHouse.GetMaxItemSearchResultBuyout]](<span class="apiarg">itemKey</span>) : <span class="apiret">maxBuyout</span>
: [[API C_AuctionHouse.GetMaxOwnedAuctionBid|C_AuctionHouse.GetMaxOwnedAuctionBid]]() : <span style="font-size:smaller; color:#4ec9b0">maxBid</span>
+
: [[API C_AuctionHouse.GetMaxOwnedAuctionBid|C_AuctionHouse.GetMaxOwnedAuctionBid]]() : <span class="apiret">maxBid</span>
: [[API C_AuctionHouse.GetMaxOwnedAuctionBuyout|C_AuctionHouse.GetMaxOwnedAuctionBuyout]]() : <span style="font-size:smaller; color:#4ec9b0">maxBuyout</span>
+
: [[API C_AuctionHouse.GetMaxOwnedAuctionBuyout|C_AuctionHouse.GetMaxOwnedAuctionBuyout]]() : <span class="apiret">maxBuyout</span>
: [[API C_AuctionHouse.GetNumBids|C_AuctionHouse.GetNumBids]]() : <span style="font-size:smaller; color:#4ec9b0">numBids</span>
+
: [[API C_AuctionHouse.GetNumBids|C_AuctionHouse.GetNumBids]]() : <span class="apiret">numBids</span>
: [[API C_AuctionHouse.GetNumBidTypes|C_AuctionHouse.GetNumBidTypes]]() : <span style="font-size:smaller; color:#4ec9b0">numBidTypes</span>
+
: [[API C_AuctionHouse.GetNumBidTypes|C_AuctionHouse.GetNumBidTypes]]() : <span class="apiret">numBidTypes</span>
: [[API C_AuctionHouse.GetNumCommoditySearchResults|C_AuctionHouse.GetNumCommoditySearchResults]](<span style="font-size:smaller; color:#ecbc2a">itemID</span>) : <span style="font-size:smaller; color:#4ec9b0">numSearchResults</span>
+
: [[API C_AuctionHouse.GetNumCommoditySearchResults|C_AuctionHouse.GetNumCommoditySearchResults]](<span class="apiarg">itemID</span>) : <span class="apiret">numSearchResults</span>
: [[API C_AuctionHouse.GetNumItemSearchResults|C_AuctionHouse.GetNumItemSearchResults]](<span style="font-size:smaller; color:#ecbc2a">itemKey</span>) : <span style="font-size:smaller; color:#4ec9b0">numItemSearchResults</span>
+
: [[API C_AuctionHouse.GetNumItemSearchResults|C_AuctionHouse.GetNumItemSearchResults]](<span class="apiarg">itemKey</span>) : <span class="apiret">numItemSearchResults</span>
: [[API C_AuctionHouse.GetNumOwnedAuctions|C_AuctionHouse.GetNumOwnedAuctions]]() : <span style="font-size:smaller; color:#4ec9b0">numOwnedAuctions</span>
+
: [[API C_AuctionHouse.GetNumOwnedAuctions|C_AuctionHouse.GetNumOwnedAuctions]]() : <span class="apiret">numOwnedAuctions</span>
: [[API C_AuctionHouse.GetNumOwnedAuctionTypes|C_AuctionHouse.GetNumOwnedAuctionTypes]]() : <span style="font-size:smaller; color:#4ec9b0">numOwnedAuctionTypes</span>
+
: [[API C_AuctionHouse.GetNumOwnedAuctionTypes|C_AuctionHouse.GetNumOwnedAuctionTypes]]() : <span class="apiret">numOwnedAuctionTypes</span>
: [[API C_AuctionHouse.GetOwnedAuctionInfo|C_AuctionHouse.GetOwnedAuctionInfo]](<span style="font-size:smaller; color:#ecbc2a">ownedAuctionIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">ownedAuction</span>
+
: [[API C_AuctionHouse.GetOwnedAuctionInfo|C_AuctionHouse.GetOwnedAuctionInfo]](<span class="apiarg">ownedAuctionIndex</span>) : <span class="apiret">ownedAuction</span>
: [[API C_AuctionHouse.GetOwnedAuctionType|C_AuctionHouse.GetOwnedAuctionType]](<span style="font-size:smaller; color:#ecbc2a">ownedAuctionTypeIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">typeItemKey</span>
+
: [[API C_AuctionHouse.GetOwnedAuctionType|C_AuctionHouse.GetOwnedAuctionType]](<span class="apiarg">ownedAuctionTypeIndex</span>) : <span class="apiret">typeItemKey</span>
: [[API C_AuctionHouse.GetQuoteDurationRemaining|C_AuctionHouse.GetQuoteDurationRemaining]]() : <span style="font-size:smaller; color:#4ec9b0">quoteDurationSeconds</span>
+
: [[API C_AuctionHouse.GetQuoteDurationRemaining|C_AuctionHouse.GetQuoteDurationRemaining]]() : <span class="apiret">quoteDurationSeconds</span>
: [[API C_AuctionHouse.GetTimeLeftBandInfo|C_AuctionHouse.GetTimeLeftBandInfo]](<span style="font-size:smaller; color:#ecbc2a">timeLeftBand</span>) : <span style="font-size:smaller; color:#4ec9b0">timeLeftMinSeconds, timeLeftMaxSeconds</span>
+
: [[API C_AuctionHouse.GetTimeLeftBandInfo|C_AuctionHouse.GetTimeLeftBandInfo]](<span class="apiarg">timeLeftBand</span>) : <span class="apiret">timeLeftMinSeconds, timeLeftMaxSeconds</span>
: [[API C_AuctionHouse.HasFavorites|C_AuctionHouse.HasFavorites]]() : <span style="font-size:smaller; color:#4ec9b0">hasFavorites</span>
+
: [[API C_AuctionHouse.HasFavorites|C_AuctionHouse.HasFavorites]]() : <span class="apiret">hasFavorites</span>
: [[API C_AuctionHouse.HasFullBidResults|C_AuctionHouse.HasFullBidResults]]() : <span style="font-size:smaller; color:#4ec9b0">hasFullBidResults</span>
+
: [[API C_AuctionHouse.HasFullBidResults|C_AuctionHouse.HasFullBidResults]]() : <span class="apiret">hasFullBidResults</span>
: [[API C_AuctionHouse.HasFullBrowseResults|C_AuctionHouse.HasFullBrowseResults]]() : <span style="font-size:smaller; color:#4ec9b0">hasFullBrowseResults</span>
+
: [[API C_AuctionHouse.HasFullBrowseResults|C_AuctionHouse.HasFullBrowseResults]]() : <span class="apiret">hasFullBrowseResults</span>
: [[API C_AuctionHouse.HasFullCommoditySearchResults|C_AuctionHouse.HasFullCommoditySearchResults]](<span style="font-size:smaller; color:#ecbc2a">itemID</span>) : <span style="font-size:smaller; color:#4ec9b0">hasFullResults</span>
+
: [[API C_AuctionHouse.HasFullCommoditySearchResults|C_AuctionHouse.HasFullCommoditySearchResults]](<span class="apiarg">itemID</span>) : <span class="apiret">hasFullResults</span>
: [[API C_AuctionHouse.HasFullItemSearchResults|C_AuctionHouse.HasFullItemSearchResults]](<span style="font-size:smaller; color:#ecbc2a">itemKey</span>) : <span style="font-size:smaller; color:#4ec9b0">hasFullResults</span>
+
: [[API C_AuctionHouse.HasFullItemSearchResults|C_AuctionHouse.HasFullItemSearchResults]](<span class="apiarg">itemKey</span>) : <span class="apiret">hasFullResults</span>
: [[API C_AuctionHouse.HasFullOwnedAuctionResults|C_AuctionHouse.HasFullOwnedAuctionResults]]() : <span style="font-size:smaller; color:#4ec9b0">hasFullOwnedAuctionResults</span>
+
: [[API C_AuctionHouse.HasFullOwnedAuctionResults|C_AuctionHouse.HasFullOwnedAuctionResults]]() : <span class="apiret">hasFullOwnedAuctionResults</span>
: [[API C_AuctionHouse.HasMaxFavorites|C_AuctionHouse.HasMaxFavorites]]() : <span style="font-size:smaller; color:#4ec9b0">hasMaxFavorites</span>
+
: [[API C_AuctionHouse.HasMaxFavorites|C_AuctionHouse.HasMaxFavorites]]() : <span class="apiret">hasMaxFavorites</span>
: [[API C_AuctionHouse.HasSearchResults|C_AuctionHouse.HasSearchResults]](<span style="font-size:smaller; color:#ecbc2a">itemKey</span>) : <span style="font-size:smaller; color:#4ec9b0">hasSearchResults</span>
+
: [[API C_AuctionHouse.HasSearchResults|C_AuctionHouse.HasSearchResults]](<span class="apiarg">itemKey</span>) : <span class="apiret">hasSearchResults</span>
: [[API C_AuctionHouse.IsFavoriteItem|C_AuctionHouse.IsFavoriteItem]](<span style="font-size:smaller; color:#ecbc2a">itemKey</span>) : <span style="font-size:smaller; color:#4ec9b0">isFavorite</span>
+
: [[API C_AuctionHouse.IsFavoriteItem|C_AuctionHouse.IsFavoriteItem]](<span class="apiarg">itemKey</span>) : <span class="apiret">isFavorite</span>
: [[API C_AuctionHouse.IsSellItemValid|C_AuctionHouse.IsSellItemValid]](<span style="font-size:smaller; color:#ecbc2a">item [, displayError]</span>) : <span style="font-size:smaller; color:#4ec9b0">valid</span>
+
: [[API C_AuctionHouse.IsSellItemValid|C_AuctionHouse.IsSellItemValid]](<span class="apiarg">item [, displayError]</span>) : <span class="apiret">valid</span>
: [[API C_AuctionHouse.IsThrottledMessageSystemReady|C_AuctionHouse.IsThrottledMessageSystemReady]]() : <span style="font-size:smaller; color:#4ec9b0">canSendThrottledMessage</span>
+
: [[API C_AuctionHouse.IsThrottledMessageSystemReady|C_AuctionHouse.IsThrottledMessageSystemReady]]() : <span class="apiret">canSendThrottledMessage</span>
: [[API C_AuctionHouse.MakeItemKey|C_AuctionHouse.MakeItemKey]](<span style="font-size:smaller; color:#ecbc2a">itemID [, itemLevel, itemSuffix, battlePetSpeciesID]</span>) : <span style="font-size:smaller; color:#4ec9b0">itemKey</span>
+
: [[API C_AuctionHouse.MakeItemKey|C_AuctionHouse.MakeItemKey]](<span class="apiarg">itemID [, itemLevel, itemSuffix, battlePetSpeciesID]</span>) : <span class="apiret">itemKey</span>
: <small>HW</small> [[API C_AuctionHouse.PlaceBid|C_AuctionHouse.PlaceBid]](<span style="font-size:smaller; color:#ecbc2a">auctionID, bidAmount</span>) - Places a bid on a non-commodity item.
+
: <small>HW, NOSCRIPT</small> [[API C_AuctionHouse.PlaceBid|C_AuctionHouse.PlaceBid]](<span class="apiarg">auctionID, bidAmount</span>) - Places a bid on a non-commodity item.
: <small>HW</small> [[API C_AuctionHouse.PostCommodity|C_AuctionHouse.PostCommodity]](<span style="font-size:smaller; color:#ecbc2a">item, duration, quantity, unitPrice</span>) - Posts a commodity item on the auction house.
+
: <small>HW, NOSCRIPT</small> [[API C_AuctionHouse.PostCommodity|C_AuctionHouse.PostCommodity]](<span class="apiarg">item, duration, quantity, unitPrice</span>) - Posts a commodity item on the auction house.
: <small>HW</small> [[API C_AuctionHouse.PostItem|C_AuctionHouse.PostItem]](<span style="font-size:smaller; color:#ecbc2a">item, duration, quantity [, bid, buyout]</span>) - Posts an item on the auction house.
+
: <small>HW, NOSCRIPT</small> [[API C_AuctionHouse.PostItem|C_AuctionHouse.PostItem]](<span class="apiarg">item, duration, quantity [, bid, buyout]</span>) - Posts an item on the auction house.
: [[API C_AuctionHouse.QueryBids|C_AuctionHouse.QueryBids]](<span style="font-size:smaller; color:#ecbc2a">sorts, auctionIDs</span>)
+
: [[API C_AuctionHouse.QueryBids|C_AuctionHouse.QueryBids]](<span class="apiarg">sorts, auctionIDs</span>)
: [[API C_AuctionHouse.QueryOwnedAuctions|C_AuctionHouse.QueryOwnedAuctions]](<span style="font-size:smaller; color:#ecbc2a">sorts</span>)
+
: [[API C_AuctionHouse.QueryOwnedAuctions|C_AuctionHouse.QueryOwnedAuctions]](<span class="apiarg">sorts</span>)
: [[API C_AuctionHouse.RefreshCommoditySearchResults|C_AuctionHouse.RefreshCommoditySearchResults]](<span style="font-size:smaller; color:#ecbc2a">itemID</span>)
+
: [[API C_AuctionHouse.RefreshCommoditySearchResults|C_AuctionHouse.RefreshCommoditySearchResults]](<span class="apiarg">itemID</span>)
: [[API C_AuctionHouse.RefreshItemSearchResults|C_AuctionHouse.RefreshItemSearchResults]](<span style="font-size:smaller; color:#ecbc2a">itemKey</span>)
+
: [[API C_AuctionHouse.RefreshItemSearchResults|C_AuctionHouse.RefreshItemSearchResults]](<span class="apiarg">itemKey [, minLevelFilter, maxLevelFilter]</span>)
: [[API C_AuctionHouse.RequestMoreBrowseResults|C_AuctionHouse.RequestMoreBrowseResults]]()
+
: <small>NOSCRIPT</small> [[API C_AuctionHouse.RequestMoreBrowseResults|C_AuctionHouse.RequestMoreBrowseResults]]()
: [[API C_AuctionHouse.RequestMoreCommoditySearchResults|C_AuctionHouse.RequestMoreCommoditySearchResults]](<span style="font-size:smaller; color:#ecbc2a">itemID</span>) : <span style="font-size:smaller; color:#4ec9b0">hasFullResults</span>
+
: [[API C_AuctionHouse.RequestMoreCommoditySearchResults|C_AuctionHouse.RequestMoreCommoditySearchResults]](<span class="apiarg">itemID</span>) : <span class="apiret">hasFullResults</span>
: [[API C_AuctionHouse.RequestMoreItemSearchResults|C_AuctionHouse.RequestMoreItemSearchResults]](<span style="font-size:smaller; color:#ecbc2a">itemKey</span>) : <span style="font-size:smaller; color:#4ec9b0">hasFullResults</span>
+
: [[API C_AuctionHouse.RequestMoreItemSearchResults|C_AuctionHouse.RequestMoreItemSearchResults]](<span class="apiarg">itemKey</span>) : <span class="apiret">hasFullResults</span>
: [[API C_AuctionHouse.RequestOwnedAuctionBidderInfo|C_AuctionHouse.RequestOwnedAuctionBidderInfo]](<span style="font-size:smaller; color:#ecbc2a">auctionID</span>) : <span style="font-size:smaller; color:#4ec9b0">bidderName</span>
+
: [[API C_AuctionHouse.RequestOwnedAuctionBidderInfo|C_AuctionHouse.RequestOwnedAuctionBidderInfo]](<span class="apiarg">auctionID</span>) : <span class="apiret">bidderName</span>
: [[API C_AuctionHouse.SearchForFavorites|C_AuctionHouse.SearchForFavorites]](<span style="font-size:smaller; color:#ecbc2a">sorts</span>) - Searches for favorited items.
+
: <small>NOSCRIPT</small> [[API C_AuctionHouse.SearchForFavorites|C_AuctionHouse.SearchForFavorites]](<span class="apiarg">sorts</span>) - Searches for favorited items.
: [[API C_AuctionHouse.SearchForItemKeys|C_AuctionHouse.SearchForItemKeys]](<span style="font-size:smaller; color:#ecbc2a">itemKeys, sorts</span>)
+
: [[API C_AuctionHouse.SearchForItemKeys|C_AuctionHouse.SearchForItemKeys]](<span class="apiarg">itemKeys, sorts</span>)
: [[API C_AuctionHouse.SendBrowseQuery|C_AuctionHouse.SendBrowseQuery]](<span style="font-size:smaller; color:#ecbc2a">query</span>)
+
: <small>NOSCRIPT</small> [[API C_AuctionHouse.SendBrowseQuery|C_AuctionHouse.SendBrowseQuery]](<span class="apiarg">query</span>)
: [[API C_AuctionHouse.SendSearchQuery|C_AuctionHouse.SendSearchQuery]](<span style="font-size:smaller; color:#ecbc2a">itemKey, sorts, separateOwnerItems</span>) - Queries an item in the auction house.
+
: <small>NOSCRIPT</small> [[API C_AuctionHouse.SendSearchQuery|C_AuctionHouse.SendSearchQuery]](<span class="apiarg">itemKey, sorts, separateOwnerItems [, minLevelFilter, maxLevelFilter]</span>) - Queries an item in the auction house.
: [[API C_AuctionHouse.SendSellSearchQuery|C_AuctionHouse.SendSellSearchQuery]](<span style="font-size:smaller; color:#ecbc2a">itemKey, sorts, separateOwnerItems</span>) - Search for all auctions that are variants of a piece of gear, determined a specific item ID.
+
: [[API C_AuctionHouse.SendSellSearchQuery|C_AuctionHouse.SendSellSearchQuery]](<span class="apiarg">itemKey, sorts, separateOwnerItems</span>) - Search for all auctions that are variants of a piece of gear, determined a specific item ID.
: [[API C_AuctionHouse.SetFavoriteItem|C_AuctionHouse.SetFavoriteItem]](<span style="font-size:smaller; color:#ecbc2a">itemKey, setFavorite</span>)
+
: [[API C_AuctionHouse.SetFavoriteItem|C_AuctionHouse.SetFavoriteItem]](<span class="apiarg">itemKey, setFavorite</span>)
: <small>HW</small> [[API C_AuctionHouse.StartCommoditiesPurchase|C_AuctionHouse.StartCommoditiesPurchase]](<span style="font-size:smaller; color:#ecbc2a">itemID, quantity</span>) - Starts a commodity item purchase.
+
: <small>HW, NOSCRIPT</small> [[API C_AuctionHouse.StartCommoditiesPurchase|C_AuctionHouse.StartCommoditiesPurchase]](<span class="apiarg">itemID, quantity</span>) - Starts a commodity item purchase.
   
 
==== Black Market AH ====
 
==== Black Market AH ====
Line 260: Line 263:
 
: [[API C_BlackMarket.Close|C_BlackMarket.Close]]() - Notifies the server that the Black Market UI was closed.
 
: [[API C_BlackMarket.Close|C_BlackMarket.Close]]() - Notifies the server that the Black Market UI was closed.
 
: [[API C_BlackMarket.GetHotItem|C_BlackMarket.GetHotItem]]() - Returns information about the current "hot item" at the [[Black Market Auction House]].
 
: [[API C_BlackMarket.GetHotItem|C_BlackMarket.GetHotItem]]() - Returns information about the current "hot item" at the [[Black Market Auction House]].
: [[API C_BlackMarket.GetItemInfoByID|C_BlackMarket.GetItemInfoByID]](<span style="font-size:smaller; color:#ecbc2a">marketID</span>) - Returns information about a specific black market auction.
+
: [[API C_BlackMarket.GetItemInfoByID|C_BlackMarket.GetItemInfoByID]](<span class="apiarg">marketID</span>) - Returns information about a specific black market auction.
: [[API C_BlackMarket.GetItemInfoByIndex|C_BlackMarket.GetItemInfoByIndex]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns information about a specific black market auction.
+
: [[API C_BlackMarket.GetItemInfoByIndex|C_BlackMarket.GetItemInfoByIndex]](<span class="apiarg">index</span>) - Returns information about a specific black market auction.
 
: [[API C_BlackMarket.GetNumItems|C_BlackMarket.GetNumItems]]() - Returns the number of auctions on the [[Black Market Auction House]].
 
: [[API C_BlackMarket.GetNumItems|C_BlackMarket.GetNumItems]]() - Returns the number of auctions on the [[Black Market Auction House]].
 
: [[API C_BlackMarket.IsViewOnly|C_BlackMarket.IsViewOnly]]()
 
: [[API C_BlackMarket.IsViewOnly|C_BlackMarket.IsViewOnly]]()
: <small>HW</small> [[API C_BlackMarket.ItemPlaceBid|C_BlackMarket.ItemPlaceBid]](<span style="font-size:smaller; color:#ecbc2a">marketID, bid</span>) - Places a bid on a black market auction.
+
: <small>HW</small> [[API C_BlackMarket.ItemPlaceBid|C_BlackMarket.ItemPlaceBid]](<span class="apiarg">marketID, bid</span>) - Places a bid on a black market auction.
 
: [[API C_BlackMarket.RequestItems|C_BlackMarket.RequestItems]]() - Requests updated black market auction information from the server.
 
: [[API C_BlackMarket.RequestItems|C_BlackMarket.RequestItems]]() - Requests updated black market auction information from the server.
   
Line 273: Line 276:
 
: [[API C_WowTokenPublic.GetCurrentMarketPrice|C_WowTokenPublic.GetCurrentMarketPrice]]()
 
: [[API C_WowTokenPublic.GetCurrentMarketPrice|C_WowTokenPublic.GetCurrentMarketPrice]]()
 
: [[API C_WowTokenPublic.GetGuaranteedPrice|C_WowTokenPublic.GetGuaranteedPrice]]()
 
: [[API C_WowTokenPublic.GetGuaranteedPrice|C_WowTokenPublic.GetGuaranteedPrice]]()
: [[API C_WowTokenPublic.GetListedAuctionableTokenInfo|C_WowTokenPublic.GetListedAuctionableTokenInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API C_WowTokenPublic.GetListedAuctionableTokenInfo|C_WowTokenPublic.GetListedAuctionableTokenInfo]](<span class="apiarg">index</span>)
 
: [[API C_WowTokenPublic.GetNumListedAuctionableTokens|C_WowTokenPublic.GetNumListedAuctionableTokens]]()
 
: [[API C_WowTokenPublic.GetNumListedAuctionableTokens|C_WowTokenPublic.GetNumListedAuctionableTokens]]()
: [[API C_WowTokenPublic.IsAuctionableWowToken|C_WowTokenPublic.IsAuctionableWowToken]](<span style="font-size:smaller; color:#ecbc2a">itemID</span>)
+
: [[API C_WowTokenPublic.IsAuctionableWowToken|C_WowTokenPublic.IsAuctionableWowToken]](<span class="apiarg">itemID</span>)
 
: [[API C_WowTokenPublic.IsConsumableWowToken|C_WowTokenPublic.IsConsumableWowToken]]()
 
: [[API C_WowTokenPublic.IsConsumableWowToken|C_WowTokenPublic.IsConsumableWowToken]]()
 
: [[API C_WowTokenPublic.UpdateListedAuctionableTokens|C_WowTokenPublic.UpdateListedAuctionableTokens]]()
 
: [[API C_WowTokenPublic.UpdateListedAuctionableTokens|C_WowTokenPublic.UpdateListedAuctionableTokens]]()
 
: [[API C_WowTokenPublic.UpdateMarketPrice|C_WowTokenPublic.UpdateMarketPrice]]()
 
: [[API C_WowTokenPublic.UpdateMarketPrice|C_WowTokenPublic.UpdateMarketPrice]]()
 
: [[API C_WowTokenPublic.UpdateTokenCount|C_WowTokenPublic.UpdateTokenCount]]()
 
: [[API C_WowTokenPublic.UpdateTokenCount|C_WowTokenPublic.UpdateTokenCount]]()
: [[API C_WowTokenUI.StartTokenSell|C_WowTokenUI.StartTokenSell]](<span style="font-size:smaller; color:#ecbc2a">tokenGUID</span>)
+
: [[API C_WowTokenUI.StartTokenSell|C_WowTokenUI.StartTokenSell]](<span class="apiarg">tokenGUID</span>)
   
 
=== Bags ===
 
=== Bags ===
 
: [[API GetBackpackAutosortDisabled|GetBackpackAutosortDisabled]]()
 
: [[API GetBackpackAutosortDisabled|GetBackpackAutosortDisabled]]()
: [[API GetBagName|GetBagName]](<span style="font-size:smaller; color:#ecbc2a">bagID</span>) - Get the name of one of the player's bags.
+
: [[API GetBagName|GetBagName]](<span class="apiarg">bagID</span>) - Get the name of one of the player's bags.
: [[API GetBagSlotFlag|GetBagSlotFlag]](<span style="font-size:smaller; color:#ecbc2a">index, flagIndex</span>)
+
: [[API GetBagSlotFlag|GetBagSlotFlag]](<span class="apiarg">index, flagIndex</span>)
 
: [[API GetInsertItemsLeftToRight|GetInsertItemsLeftToRight]]()
 
: [[API GetInsertItemsLeftToRight|GetInsertItemsLeftToRight]]()
 
: [[API GetSortBagsRightToLeft|GetSortBagsRightToLeft]]()
 
: [[API GetSortBagsRightToLeft|GetSortBagsRightToLeft]]()
: [[API IsBagSlotFlagEnabledOnOtherBags|IsBagSlotFlagEnabledOnOtherBags]](<span style="font-size:smaller; color:#ecbc2a">index, flagIndex</span>)
+
: [[API IsBagSlotFlagEnabledOnOtherBags|IsBagSlotFlagEnabledOnOtherBags]](<span class="apiarg">index, flagIndex</span>)
: [[API IsInventoryItemProfessionBag|IsInventoryItemProfessionBag]](<span style="font-size:smaller; color:#ecbc2a">unit, slot</span>)
+
: [[API IsInventoryItemProfessionBag|IsInventoryItemProfessionBag]](<span class="apiarg">unit, slot</span>)
 
: [[API PutItemInBackpack|PutItemInBackpack]]() - Attempts to place item in backpack (bag slot 0).
 
: [[API PutItemInBackpack|PutItemInBackpack]]() - Attempts to place item in backpack (bag slot 0).
: [[API PutItemInBag|PutItemInBag]](<span style="font-size:smaller; color:#ecbc2a">inventoryId</span>) - Attempts to place item in a specific bag.
+
: [[API PutItemInBag|PutItemInBag]](<span class="apiarg">inventoryId</span>) - Attempts to place item in a specific bag.
: [[API SetBackpackAutosortDisabled|SetBackpackAutosortDisabled]](<span style="font-size:smaller; color:#ecbc2a">disable</span>)
+
: [[API SetBackpackAutosortDisabled|SetBackpackAutosortDisabled]](<span class="apiarg">disable</span>)
: [[API SetBagPortraitTexture|SetBagPortraitTexture]](<span style="font-size:smaller; color:#ecbc2a">texture, slot</span>)
+
: [[API SetBagPortraitTexture|SetBagPortraitTexture]](<span class="apiarg">texture, slot</span>)
: [[API SetBagSlotFlag|SetBagSlotFlag]](<span style="font-size:smaller; color:#ecbc2a">index, flagIndex, checked</span>)
+
: [[API SetBagSlotFlag|SetBagSlotFlag]](<span class="apiarg">index, flagIndex, checked</span>)
: [[API SetBarSlotFromIntro|SetBarSlotFromIntro]](<span style="font-size:smaller; color:#ecbc2a">slot</span>)
+
: [[API SetBarSlotFromIntro|SetBarSlotFromIntro]](<span class="apiarg">slot</span>)
: [[API SetInsertItemsLeftToRight|SetInsertItemsLeftToRight]](<span style="font-size:smaller; color:#ecbc2a">disable</span>)
+
: [[API SetInsertItemsLeftToRight|SetInsertItemsLeftToRight]](<span class="apiarg">disable</span>)
: [[API SetItemSearch|SetItemSearch]](<span style="font-size:smaller; color:#ecbc2a">search</span>)
+
: [[API SetItemSearch|SetItemSearch]](<span class="apiarg">search</span>)
: [[API SetSortBagsRightToLeft|SetSortBagsRightToLeft]](<span style="font-size:smaller; color:#ecbc2a">disable</span>)
+
: [[API SetSortBagsRightToLeft|SetSortBagsRightToLeft]](<span class="apiarg">disable</span>)
 
: [[API SortBags|SortBags]]()
 
: [[API SortBags|SortBags]]()
: <small>UI</small> {{api|CloseAllBags}}(<span style="font-size:smaller; color:#ecbc2a">callingFrame, forceUpdate</span>)
+
: <small>UI</small> {{api|CloseAllBags}}(<span class="apiarg">callingFrame, forceUpdate</span>)
 
: <small>UI</small> {{api|CloseBackpack}}()
 
: <small>UI</small> {{api|CloseBackpack}}()
: <small>UI</small> {{api|CloseBag}}(<span style="font-size:smaller; color:#ecbc2a">bagID</span>)
+
: <small>UI</small> {{api|CloseBag}}(<span class="apiarg">bagID</span>)
: <small>UI</small> {{api|IsBagOpen}}(<span style="font-size:smaller; color:#ecbc2a">bagID</span>)
+
: <small>UI</small> {{api|IsBagOpen}}(<span class="apiarg">bagID</span>)
: <small>UI</small> {{api|OpenAllBags}}(<span style="font-size:smaller; color:#ecbc2a">callingFrame, forceUpdate</span>)
+
: <small>UI</small> {{api|OpenAllBags}}(<span class="apiarg">callingFrame, forceUpdate</span>)
 
: <small>UI</small> {{api|OpenBackpack}}()
 
: <small>UI</small> {{api|OpenBackpack}}()
: <small>UI</small> {{api|OpenBag}}(<span style="font-size:smaller; color:#ecbc2a">bagID, force</span>)
+
: <small>UI</small> {{api|OpenBag}}(<span class="apiarg">bagID, force</span>)
 
: <small>UI</small> {{api|ToggleAllBags}}()
 
: <small>UI</small> {{api|ToggleAllBags}}()
 
: <small>UI</small> {{api|ToggleBackpack}}() - Toggles your backpack open/closed.
 
: <small>UI</small> {{api|ToggleBackpack}}() - Toggles your backpack open/closed.
: <small>UI</small> {{api|ToggleBag|ToggleBag}}(<span style="font-size:smaller; color:#ecbc2a">bagID</span>) - Opens or closes the specified bag.
+
: <small>UI</small> {{api|ToggleBag|ToggleBag}}(<span class="apiarg">bagID</span>) - Opens or closes the specified bag.
   
 
==== Containers ====
 
==== Containers ====
: [[API GetContainerFreeSlots|GetContainerFreeSlots]](<span style="font-size:smaller; color:#ecbc2a">index [, returnTable]</span>)
+
: [[API GetContainerFreeSlots|GetContainerFreeSlots]](<span class="apiarg">index [, returnTable]</span>)
: [[API GetContainerItemCooldown|GetContainerItemCooldown]](<span style="font-size:smaller; color:#ecbc2a">bagID, slot</span>)
+
: [[API GetContainerItemCooldown|GetContainerItemCooldown]](<span class="apiarg">bagID, slot</span>)
: [[API GetContainerItemDurability|GetContainerItemDurability]](<span style="font-size:smaller; color:#ecbc2a">bag, slot</span>) - Get current and maximum durability of an item in the character's bags.
+
: [[API GetContainerItemDurability|GetContainerItemDurability]](<span class="apiarg">bag, slot</span>) - Get current and maximum durability of an item in the character's bags.
: [[API GetContainerItemEquipmentSetInfo|GetContainerItemEquipmentSetInfo]](<span style="font-size:smaller; color:#ecbc2a">index, slot</span>)
+
: [[API GetContainerItemEquipmentSetInfo|GetContainerItemEquipmentSetInfo]](<span class="apiarg">index, slot</span>)
: [[API GetContainerItemID|GetContainerItemID]](<span style="font-size:smaller; color:#ecbc2a">bag, slot</span>) - Returns the item ID of the item in a particular container slot.
+
: [[API GetContainerItemID|GetContainerItemID]](<span class="apiarg">bag, slot</span>) - Returns the item ID of the item in a particular container slot.
: [[API GetContainerItemInfo|GetContainerItemInfo]](<span style="font-size:smaller; color:#ecbc2a">bagID, slot</span>) - Get the info for an item in one of the player's bags.
+
: [[API GetContainerItemInfo|GetContainerItemInfo]](<span class="apiarg">bagID, slot</span>) - Get the info for an item in one of the player's bags.
: [[API GetContainerItemLink|GetContainerItemLink]](<span style="font-size:smaller; color:#ecbc2a">bagID, slot</span>) - Returns a link of the object located in the specified slot of a specified bag.
+
: [[API GetContainerItemLink|GetContainerItemLink]](<span class="apiarg">bagID, slot</span>) - Returns a link of the object located in the specified slot of a specified bag.
: [[API GetContainerItemPurchaseCurrency|GetContainerItemPurchaseCurrency]](<span style="font-size:smaller; color:#ecbc2a">bag, slot, itemIndex [, isEquipped]</span>)
+
: [[API GetContainerItemPurchaseCurrency|GetContainerItemPurchaseCurrency]](<span class="apiarg">bag, slot, itemIndex [, isEquipped]</span>)
: [[API GetContainerItemPurchaseInfo|GetContainerItemPurchaseInfo]](<span style="font-size:smaller; color:#ecbc2a">index, slot [, isEquipped]</span>)
+
: [[API GetContainerItemPurchaseInfo|GetContainerItemPurchaseInfo]](<span class="apiarg">index, slot [, isEquipped]</span>)
: [[API GetContainerItemPurchaseItem|GetContainerItemPurchaseItem]](<span style="font-size:smaller; color:#ecbc2a">bag, slot, itemIndex [, isEquipped]</span>)
+
: [[API GetContainerItemPurchaseItem|GetContainerItemPurchaseItem]](<span class="apiarg">bag, slot, itemIndex [, isEquipped]</span>)
: [[API GetContainerItemQuestInfo|GetContainerItemQuestInfo]](<span style="font-size:smaller; color:#ecbc2a">bag, slot</span>) - Returns information about quest and quest-starting items in your bags.
+
: [[API GetContainerItemQuestInfo|GetContainerItemQuestInfo]](<span class="apiarg">bag, slot</span>) - Returns information about quest and quest-starting items in your bags.
: [[API GetContainerNumFreeSlots|GetContainerNumFreeSlots]](<span style="font-size:smaller; color:#ecbc2a">bagID</span>) - Returns the number of free slots and type of slots in the bag specified by the index.
+
: [[API GetContainerNumFreeSlots|GetContainerNumFreeSlots]](<span class="apiarg">bagID</span>) - Returns the number of free slots and type of slots in the bag specified by the index.
: [[API GetContainerNumSlots|GetContainerNumSlots]](<span style="font-size:smaller; color:#ecbc2a">bagID</span>) - Returns the total number of slots in the bag specified by the index.
+
: [[API GetContainerNumSlots|GetContainerNumSlots]](<span class="apiarg">bagID</span>) - Returns the total number of slots in the bag specified by the index.
: [[API IsContainerFiltered|IsContainerFiltered]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API IsContainerFiltered|IsContainerFiltered]](<span class="apiarg">index</span>)
: [[API IsContainerItemAnUpgrade|IsContainerItemAnUpgrade]](<span style="font-size:smaller; color:#ecbc2a">index, slot</span>)
+
: [[API IsContainerItemAnUpgrade|IsContainerItemAnUpgrade]](<span class="apiarg">index, slot</span>)
: [[API SplitContainerItem|SplitContainerItem]](<span style="font-size:smaller; color:#ecbc2a">bagID, slot, amount</span>) - Picks up part of a stack.
+
: [[API SplitContainerItem|SplitContainerItem]](<span class="apiarg">bagID, slot, amount</span>) - Picks up part of a stack.
: [[API UseContainerItem|UseContainerItem]](<span style="font-size:smaller; color:#ecbc2a">bagID, slot [, target]</span>) - Performs a "right click" action on, or targeted use of, on an item in bags.
+
: [[API UseContainerItem|UseContainerItem]](<span class="apiarg">bagID, slot [, target]</span>) - Performs a "right click" action on, or targeted use of, on an item in bags.
   
 
==== Inventory ====
 
==== Inventory ====
 
These functions manage your inventory, specifically '''equipped items'''.
 
These functions manage your inventory, specifically '''equipped items'''.
: [[API CancelPendingEquip|CancelPendingEquip]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - This function is used to cancel a pending equip.
+
: [[API CancelPendingEquip|CancelPendingEquip]](<span class="apiarg">index</span>) - This function is used to cancel a pending equip.
 
: <small>PROTECTED</small> [[API ConfirmBindOnUse|ConfirmBindOnUse]]()
 
: <small>PROTECTED</small> [[API ConfirmBindOnUse|ConfirmBindOnUse]]()
 
: <small>PROTECTED</small> [[API ConfirmNoRefundOnUse|ConfirmNoRefundOnUse]]()
 
: <small>PROTECTED</small> [[API ConfirmNoRefundOnUse|ConfirmNoRefundOnUse]]()
: [[API ContainerIDToInventoryID|ContainerIDToInventoryID]](<span style="font-size:smaller; color:#ecbc2a">bagID</span>)
+
: [[API ContainerIDToInventoryID|ContainerIDToInventoryID]](<span class="apiarg">bagID</span>)
: [[API EquipPendingItem|EquipPendingItem]](<span style="font-size:smaller; color:#ecbc2a">invSlot</span>) - Equips the currently pending Bind-on-Equip or Bind-on-Pickup item from the specified inventory slot.
+
: [[API EquipPendingItem|EquipPendingItem]](<span class="apiarg">invSlot</span>) - Equips the currently pending Bind-on-Equip or Bind-on-Pickup item from the specified inventory slot.
 
: [[API GetAverageItemLevel|GetAverageItemLevel]]() - Returns the character's current average iLevel and current average iLevel equipped.
 
: [[API GetAverageItemLevel|GetAverageItemLevel]]() - Returns the character's current average iLevel and current average iLevel equipped.
: [[API GetInventoryAlertStatus|GetInventoryAlertStatus]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns one of several codes describing the "status" of an equipped item.
+
: [[API GetInventoryAlertStatus|GetInventoryAlertStatus]](<span class="apiarg">index</span>) - Returns one of several codes describing the "status" of an equipped item.
: [[API GetInventoryItemBroken|GetInventoryItemBroken]](<span style="font-size:smaller; color:#ecbc2a">unit, invSlot</span>) - Determine if an inventory item is broken (no durability).
+
: [[API GetInventoryItemBroken|GetInventoryItemBroken]](<span class="apiarg">unit, invSlot</span>) - Determine if an inventory item is broken (no durability).
: [[API GetInventoryItemCooldown|GetInventoryItemCooldown]](<span style="font-size:smaller; color:#ecbc2a">unit, invSlot</span>) - Get cooldown information for an inventory item.
+
: [[API GetInventoryItemCooldown|GetInventoryItemCooldown]](<span class="apiarg">unit, invSlot</span>) - Get cooldown information for an inventory item.
: [[API GetInventoryItemCount|GetInventoryItemCount]](<span style="font-size:smaller; color:#ecbc2a">unit, invSlot</span>) - Determine the quantity of an item in an inventory slot.
+
: [[API GetInventoryItemCount|GetInventoryItemCount]](<span class="apiarg">unit, invSlot</span>) - Determine the quantity of an item in an inventory slot.
: [[API GetInventoryItemDurability|GetInventoryItemDurability]](<span style="font-size:smaller; color:#ecbc2a">invSlot</span>) - Returns the maximum and remaining durability points for an inventory item.
+
: [[API GetInventoryItemDurability|GetInventoryItemDurability]](<span class="apiarg">invSlot</span>) - Returns the maximum and remaining durability points for an inventory item.
: [[API GetInventoryItemID|GetInventoryItemID]](<span style="font-size:smaller; color:#ecbc2a">unit, invSlot</span>) - Returns the item id of the item in the specified inventory slot.
+
: [[API GetInventoryItemID|GetInventoryItemID]](<span class="apiarg">unit, invSlot</span>) - Returns the item id of the item in the specified inventory slot.
: [[API GetInventoryItemLink|GetInventoryItemLink]](<span style="font-size:smaller; color:#ecbc2a">unit, invSlot</span>) - Returns an [[itemLink]] for an inventory (equipped) item.
+
: [[API GetInventoryItemLink|GetInventoryItemLink]](<span class="apiarg">unit, invSlot</span>) - Returns an [[itemLink]] for an inventory (equipped) item.
: [[API GetInventoryItemQuality|GetInventoryItemQuality]](<span style="font-size:smaller; color:#ecbc2a">unit, invSlot</span>) - Returns the quality of an inventory item.
+
: [[API GetInventoryItemQuality|GetInventoryItemQuality]](<span class="apiarg">unit, invSlot</span>) - Returns the quality of an inventory item.
: [[API GetInventoryItemTexture|GetInventoryItemTexture]](<span style="font-size:smaller; color:#ecbc2a">unit, invSlot</span>) - Returns the texture for an inventory item.
+
: [[API GetInventoryItemTexture|GetInventoryItemTexture]](<span class="apiarg">unit, invSlot</span>) - Returns the texture for an inventory item.
: [[API GetInventorySlotInfo|GetInventorySlotInfo]](<span style="font-size:smaller; color:#ecbc2a">invSlotName</span>) - Get the info for a named inventory slot (slot ID and texture)
+
: [[API GetInventorySlotInfo|GetInventorySlotInfo]](<span class="apiarg">invSlotName</span>) - Get the info for a named inventory slot (slot ID and texture)
 
: [[API HasWandEquipped|HasWandEquipped]]() - Returns 1 if a wand is equipped, false otherwise.
 
: [[API HasWandEquipped|HasWandEquipped]]() - Returns 1 if a wand is equipped, false otherwise.
: [[API IsInventoryItemLocked|IsInventoryItemLocked]](<span style="font-size:smaller; color:#ecbc2a">id</span>) - Returns whether an inventory item is locked, usually as it awaits pending action.
+
: [[API IsInventoryItemLocked|IsInventoryItemLocked]](<span class="apiarg">id</span>) - Returns whether an inventory item is locked, usually as it awaits pending action.
: [[API SetInventoryPortraitTexture|SetInventoryPortraitTexture]](<span style="font-size:smaller; color:#ecbc2a">texture, unit, slot</span>)
+
: [[API SetInventoryPortraitTexture|SetInventoryPortraitTexture]](<span class="apiarg">texture, unit, slot</span>)
 
: [[API UpdateInventoryAlertStatus|UpdateInventoryAlertStatus]]()
 
: [[API UpdateInventoryAlertStatus|UpdateInventoryAlertStatus]]()
: <small>PROTECTED</small> [[API UseInventoryItem|UseInventoryItem]](<span style="font-size:smaller; color:#ecbc2a">invSlot</span>) - Use an item in a specific inventory slot.
+
: <small>PROTECTED</small> [[API UseInventoryItem|UseInventoryItem]](<span class="apiarg">invSlot</span>) - Use an item in a specific inventory slot.
   
 
=== Bank ===
 
=== Bank ===
 
Relates to the [[Bank]].
 
Relates to the [[Bank]].
: [[API BankButtonIDToInvSlotID|BankButtonIDToInvSlotID]](<span style="font-size:smaller; color:#ecbc2a">buttonID, isBag</span>) - Returns the ID number of a bank button or bag in terms of inventory slot ID.
+
: [[API BankButtonIDToInvSlotID|BankButtonIDToInvSlotID]](<span class="apiarg">buttonID, isBag</span>) - Returns the ID number of a bank button or bag in terms of inventory slot ID.
 
: [[API BuyReagentBank|BuyReagentBank]]()
 
: [[API BuyReagentBank|BuyReagentBank]]()
 
: [[API CloseBankFrame|CloseBankFrame]]() - Close the bank frame if it's open.
 
: [[API CloseBankFrame|CloseBankFrame]]() - Close the bank frame if it's open.
Line 362: Line 365:
 
: [[API GetBankAutosortDisabled|GetBankAutosortDisabled]]()
 
: [[API GetBankAutosortDisabled|GetBankAutosortDisabled]]()
 
: [[API GetBankBagSlotFlag|GetBankBagSlotFlag]]()
 
: [[API GetBankBagSlotFlag|GetBankBagSlotFlag]]()
: [[API GetBankSlotCost|GetBankSlotCost]](<span style="font-size:smaller; color:#ecbc2a">numSlots</span>) - Returns the cost of the next bank slot.
+
: [[API GetBankSlotCost|GetBankSlotCost]](<span class="apiarg">numSlots</span>) - Returns the cost of the next bank slot.
 
: [[API GetNumBankSlots|GetNumBankSlots]]() - Returns total purchased bank bag slots, and a flag indicating if it's full.
 
: [[API GetNumBankSlots|GetNumBankSlots]]() - Returns total purchased bank bag slots, and a flag indicating if it's full.
 
: [[API GetReagentBankCost|GetReagentBankCost]]()
 
: [[API GetReagentBankCost|GetReagentBankCost]]()
Line 376: Line 379:
 
==== Guild Bank ====
 
==== Guild Bank ====
 
The [[Guild bank]] was added in [[Patch 2.3.0]]
 
The [[Guild bank]] was added in [[Patch 2.3.0]]
: [[API AutoStoreGuildBankItem|AutoStoreGuildBankItem]](<span style="font-size:smaller; color:#ecbc2a">tab, slot</span>) - Withdraws an item from the bank, and automatically stores it in the player's inventory.
+
: [[API AutoStoreGuildBankItem|AutoStoreGuildBankItem]](<span class="apiarg">tab, slot</span>) - Withdraws an item from the bank, and automatically stores it in the player's inventory.
 
: [[API BuyGuildBankTab|BuyGuildBankTab]]() - Buys a guild bank tab, without confirmation.
 
: [[API BuyGuildBankTab|BuyGuildBankTab]]() - Buys a guild bank tab, without confirmation.
 
: [[API CanEditGuildBankTabInfo|CanEditGuildBankTabInfo]]()
 
: [[API CanEditGuildBankTabInfo|CanEditGuildBankTabInfo]]()
Line 382: Line 385:
 
: [[API CanWithdrawGuildBankMoney|CanWithdrawGuildBankMoney]]() - Boolean, true if player is permitted to withdraw funds. No bank proximity required.
 
: [[API CanWithdrawGuildBankMoney|CanWithdrawGuildBankMoney]]() - Boolean, true if player is permitted to withdraw funds. No bank proximity required.
 
: [[API CloseGuildBankFrame|CloseGuildBankFrame]]() - Closes the guild bank frame.
 
: [[API CloseGuildBankFrame|CloseGuildBankFrame]]() - Closes the guild bank frame.
: [[API DepositGuildBankMoney|DepositGuildBankMoney]](<span style="font-size:smaller; color:#ecbc2a">money</span>) - Deposits "money" amount in copper.
+
: [[API DepositGuildBankMoney|DepositGuildBankMoney]](<span class="apiarg">money</span>) - Deposits "money" amount in copper.
 
: [[API GetCurrentGuildBankTab|GetCurrentGuildBankTab]]() - Integer of selected tab, >= 1.
 
: [[API GetCurrentGuildBankTab|GetCurrentGuildBankTab]]() - Integer of selected tab, >= 1.
 
: [[API GetGuildBankBonusDepositMoney|GetGuildBankBonusDepositMoney]]()
 
: [[API GetGuildBankBonusDepositMoney|GetGuildBankBonusDepositMoney]]()
: [[API GetGuildBankItemInfo|GetGuildBankItemInfo]](<span style="font-size:smaller; color:#ecbc2a">tab, slot</span>) - Returns texture, amount and integer 1 or nil depending on locked state.
+
: [[API GetGuildBankItemInfo|GetGuildBankItemInfo]](<span class="apiarg">tab, slot</span>) - Returns texture, amount and integer 1 or nil depending on locked state.
: [[API GetGuildBankItemLink|GetGuildBankItemLink]](<span style="font-size:smaller; color:#ecbc2a">tab, slot</span>) - Returns itemLink.
+
: [[API GetGuildBankItemLink|GetGuildBankItemLink]](<span class="apiarg">tab, slot</span>) - Returns itemLink.
 
: [[API GetGuildBankMoney|GetGuildBankMoney]]() - Integer, funds available in copper.
 
: [[API GetGuildBankMoney|GetGuildBankMoney]]() - Integer, funds available in copper.
: [[API GetGuildBankMoneyTransaction|GetGuildBankMoneyTransaction]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - No bank proximity required, however QueryGuildBankLog function requires proximity.
+
: [[API GetGuildBankMoneyTransaction|GetGuildBankMoneyTransaction]](<span class="apiarg">index</span>) - No bank proximity required, however QueryGuildBankLog function requires proximity.
 
: [[API GetGuildBankTabCost|GetGuildBankTabCost]]() - Integer OR nil - cost in copper OR no tabs available to buy.
 
: [[API GetGuildBankTabCost|GetGuildBankTabCost]]() - Integer OR nil - cost in copper OR no tabs available to buy.
: [[API GetGuildBankTabInfo|GetGuildBankTabInfo]](<span style="font-size:smaller; color:#ecbc2a">tab</span>) - Returns the name and icon of the guild bank tab queried.
+
: [[API GetGuildBankTabInfo|GetGuildBankTabInfo]](<span class="apiarg">tab</span>) - Returns the name and icon of the guild bank tab queried.
: [[API GetGuildBankTabPermissions|GetGuildBankTabPermissions]](<span style="font-size:smaller; color:#ecbc2a">tab</span>) - Gets display / player's access info. Limited data available without bank proximity.
+
: [[API GetGuildBankTabPermissions|GetGuildBankTabPermissions]](<span class="apiarg">tab</span>) - Gets display / player's access info. Limited data available without bank proximity.
: [[API GetGuildBankText|GetGuildBankText]](<span style="font-size:smaller; color:#ecbc2a">tab</span>) - Returns info text for a tab.
+
: [[API GetGuildBankText|GetGuildBankText]](<span class="apiarg">tab</span>) - Returns info text for a tab.
: [[API GetGuildBankTransaction|GetGuildBankTransaction]](<span style="font-size:smaller; color:#ecbc2a">tab, index</span>) - Requires Guild Bank Proximity.
+
: [[API GetGuildBankTransaction|GetGuildBankTransaction]](<span class="apiarg">tab, index</span>) - Requires Guild Bank Proximity.
 
: [[API GetGuildBankWithdrawGoldLimit|GetGuildBankWithdrawGoldLimit]]() - Returns withdraw limit for currently selected rank in guild control.
 
: [[API GetGuildBankWithdrawGoldLimit|GetGuildBankWithdrawGoldLimit]]() - Returns withdraw limit for currently selected rank in guild control.
 
: [[API GetGuildBankWithdrawMoney|GetGuildBankWithdrawMoney]]()
 
: [[API GetGuildBankWithdrawMoney|GetGuildBankWithdrawMoney]]()
 
: [[API GetNumGuildBankMoneyTransactions|GetNumGuildBankMoneyTransactions]]() - Returns number of money log entries.
 
: [[API GetNumGuildBankMoneyTransactions|GetNumGuildBankMoneyTransactions]]() - Returns number of money log entries.
 
: [[API GetNumGuildBankTabs|GetNumGuildBankTabs]]() - Integer count of bought tabs, >= 0. No bank proximity required.
 
: [[API GetNumGuildBankTabs|GetNumGuildBankTabs]]() - Integer count of bought tabs, >= 0. No bank proximity required.
: [[API GetNumGuildBankTransactions|GetNumGuildBankTransactions]](<span style="font-size:smaller; color:#ecbc2a">tab</span>) - Returns number of log transactions for tab "tab".
+
: [[API GetNumGuildBankTransactions|GetNumGuildBankTransactions]](<span class="apiarg">tab</span>) - Returns number of log transactions for tab "tab".
: [[API QueryGuildBankLog|QueryGuildBankLog]](<span style="font-size:smaller; color:#ecbc2a">tab</span>) - Updates bank log data from the server, called before all transaction functions. "Money tab" is MAX_GUILDBANK_TABS+1.
+
: [[API QueryGuildBankLog|QueryGuildBankLog]](<span class="apiarg">tab</span>) - Updates bank log data from the server, called before all transaction functions. "Money tab" is MAX_GUILDBANK_TABS+1.
: [[API QueryGuildBankTab|QueryGuildBankTab]](<span style="font-size:smaller; color:#ecbc2a">tab</span>) - Updates bank tab data from the server, called before all item functions.
+
: [[API QueryGuildBankTab|QueryGuildBankTab]](<span class="apiarg">tab</span>) - Updates bank tab data from the server, called before all item functions.
 
: [[API QueryGuildBankText|QueryGuildBankText]]()
 
: [[API QueryGuildBankText|QueryGuildBankText]]()
: [[API SetCurrentGuildBankTab|SetCurrentGuildBankTab]](<span style="font-size:smaller; color:#ecbc2a">tab</span>) - Select different bank tab in the UI.
+
: [[API SetCurrentGuildBankTab|SetCurrentGuildBankTab]](<span class="apiarg">tab</span>) - Select different bank tab in the UI.
: [[API SetGuildBankTabInfo|SetGuildBankTabInfo]](<span style="font-size:smaller; color:#ecbc2a">tab, name, icon</span>) - Modifies name and icon for tab.
+
: [[API SetGuildBankTabInfo|SetGuildBankTabInfo]](<span class="apiarg">tab, name, icon</span>) - Modifies name and icon for tab.
 
: [[API SetGuildBankTabItemWithdraw|SetGuildBankTabItemWithdraw]]()
 
: [[API SetGuildBankTabItemWithdraw|SetGuildBankTabItemWithdraw]]()
: [[API SetGuildBankTabPermissions|SetGuildBankTabPermissions]](<span style="font-size:smaller; color:#ecbc2a">tab, index, enabled</span>) - Modifies the permissions for the GuildBankTab. Guild Leader Only.
+
: [[API SetGuildBankTabPermissions|SetGuildBankTabPermissions]](<span class="apiarg">tab, index, enabled</span>) - Modifies the permissions for the GuildBankTab. Guild Leader Only.
: [[API SetGuildBankText|SetGuildBankText]](<span style="font-size:smaller; color:#ecbc2a">tab, infoText</span>) - Modifies info text for a tab.
+
: [[API SetGuildBankText|SetGuildBankText]](<span class="apiarg">tab, infoText</span>) - Modifies info text for a tab.
: [[API SetGuildBankWithdrawGoldLimit|SetGuildBankWithdrawGoldLimit]](<span style="font-size:smaller; color:#ecbc2a">amount</span>) - Sets the gold withdraw limit from the guild bank. Guild Leader Only.
+
: [[API SetGuildBankWithdrawGoldLimit|SetGuildBankWithdrawGoldLimit]](<span class="apiarg">amount</span>) - Sets the gold withdraw limit from the guild bank. Guild Leader Only.
: [[API SplitGuildBankItem|SplitGuildBankItem]](<span style="font-size:smaller; color:#ecbc2a">tab, slot, amount</span>) - Picks up part of a stack.
+
: [[API SplitGuildBankItem|SplitGuildBankItem]](<span class="apiarg">tab, slot, amount</span>) - Picks up part of a stack.
: [[API WithdrawGuildBankMoney|WithdrawGuildBankMoney]](<span style="font-size:smaller; color:#ecbc2a">money</span>) - Withdraws "money" copper from the guild bank.
+
: [[API WithdrawGuildBankMoney|WithdrawGuildBankMoney]](<span class="apiarg">money</span>) - Withdraws "money" copper from the guild bank.
   
 
==== Void Storage ====
 
==== Void Storage ====
 
[[Void Storage]] was added in [[Patch 4.3.0]]
 
[[Void Storage]] was added in [[Patch 4.3.0]]
 
: [[API CanUseVoidStorage|CanUseVoidStorage]]() - Returns if the player has access to the Void Storage.
 
: [[API CanUseVoidStorage|CanUseVoidStorage]]() - Returns if the player has access to the Void Storage.
: [[API ClearVoidTransferDepositSlot|ClearVoidTransferDepositSlot]](<span style="font-size:smaller; color:#ecbc2a">slotIndex</span>) - Clears the specified Void Transfer deposit slot.
+
: [[API ClearVoidTransferDepositSlot|ClearVoidTransferDepositSlot]](<span class="apiarg">slotIndex</span>) - Clears the specified Void Transfer deposit slot.
: [[API ClickVoidStorageSlot|ClickVoidStorageSlot]](<span style="font-size:smaller; color:#ecbc2a">slotIndex [, isRightClick]</span>) - Clicks the specified Void Storage slot.
+
: [[API ClickVoidStorageSlot|ClickVoidStorageSlot]](<span class="apiarg">slotIndex [, isRightClick]</span>) - Clicks the specified Void Storage slot.
: [[API ClickVoidTransferDepositSlot|ClickVoidTransferDepositSlot]](<span style="font-size:smaller; color:#ecbc2a">slotIndex [, isRightClick]</span>) - Clicks the specified Void Transfer deposit slot.
+
: [[API ClickVoidTransferDepositSlot|ClickVoidTransferDepositSlot]](<span class="apiarg">slotIndex [, isRightClick]</span>) - Clicks the specified Void Transfer deposit slot.
: [[API ClickVoidTransferWithdrawalSlot|ClickVoidTransferWithdrawalSlot]](<span style="font-size:smaller; color:#ecbc2a">slotIndex [, isRightClick]</span>) - Clicks the specified Void Transfer withdrawal slot.
+
: [[API ClickVoidTransferWithdrawalSlot|ClickVoidTransferWithdrawalSlot]](<span class="apiarg">slotIndex [, isRightClick]</span>) - Clicks the specified Void Transfer withdrawal slot.
 
: [[API CloseVoidStorageFrame|CloseVoidStorageFrame]]()
 
: [[API CloseVoidStorageFrame|CloseVoidStorageFrame]]()
 
: [[API ExecuteVoidTransfer|ExecuteVoidTransfer]]() - Applies all pending void transfers (and pays for the cost of any deposited items).
 
: [[API ExecuteVoidTransfer|ExecuteVoidTransfer]]() - Applies all pending void transfers (and pays for the cost of any deposited items).
 
: [[API GetNumVoidTransferDeposit|GetNumVoidTransferDeposit]]() - Returns the number of items being deposited into the Void Storage.
 
: [[API GetNumVoidTransferDeposit|GetNumVoidTransferDeposit]]() - Returns the number of items being deposited into the Void Storage.
 
: [[API GetNumVoidTransferWithdrawal|GetNumVoidTransferWithdrawal]]() - Returns the number of items being withdrawed from the Void Storage.
 
: [[API GetNumVoidTransferWithdrawal|GetNumVoidTransferWithdrawal]]() - Returns the number of items being withdrawed from the Void Storage.
: [[API GetVoidItemHyperlinkString|GetVoidItemHyperlinkString]](<span style="font-size:smaller; color:#ecbc2a">slotIndex</span>) - Returns the item link of an item in void storage.
+
: [[API GetVoidItemHyperlinkString|GetVoidItemHyperlinkString]](<span class="apiarg">slotIndex</span>) - Returns the item link of an item in void storage.
: [[API GetVoidItemInfo|GetVoidItemInfo]](<span style="font-size:smaller; color:#ecbc2a">slotIndex</span>) - Returns <code>itemID, textureName, locked, recentDeposit, isFiltered</code>.
+
: [[API GetVoidItemInfo|GetVoidItemInfo]](<span class="apiarg">slotIndex</span>) - Returns <code>itemID, textureName, locked, recentDeposit, isFiltered</code>.
 
: [[API GetVoidTransferCost|GetVoidTransferCost]]() - Returns the total Void Transfer cost.
 
: [[API GetVoidTransferCost|GetVoidTransferCost]]() - Returns the total Void Transfer cost.
: [[API GetVoidTransferDepositInfo|GetVoidTransferDepositInfo]](<span style="font-size:smaller; color:#ecbc2a">slotIndex</span>) - Returns <code>itemID, textureName</code>.
+
: [[API GetVoidTransferDepositInfo|GetVoidTransferDepositInfo]](<span class="apiarg">slotIndex</span>) - Returns <code>itemID, textureName</code>.
: [[API GetVoidTransferWithdrawalInfo|GetVoidTransferWithdrawalInfo]](<span style="font-size:smaller; color:#ecbc2a">slotIndex</span>) - Returns <code>itemID, textureName</code>.
+
: [[API GetVoidTransferWithdrawalInfo|GetVoidTransferWithdrawalInfo]](<span class="apiarg">slotIndex</span>) - Returns <code>itemID, textureName</code>.
 
: [[API IsVoidStorageReady|IsVoidStorageReady]]()
 
: [[API IsVoidStorageReady|IsVoidStorageReady]]()
 
: [[API UnlockVoidStorage|UnlockVoidStorage]]() - Pays for and activates the Void Storage.
 
: [[API UnlockVoidStorage|UnlockVoidStorage]]() - Pays for and activates the Void Storage.
: [[API GetVoidStorageSlotPageIndex|GetVoidStorageSlotPageIndex]](<span style="font-size:smaller; color:#ecbc2a">slot</span>)
+
: [[API GetVoidStorageSlotPageIndex|GetVoidStorageSlotPageIndex]](<span class="apiarg">slot</span>)
 
: [[API GetVoidUnlockCost|GetVoidUnlockCost]]()
 
: [[API GetVoidUnlockCost|GetVoidUnlockCost]]()
   
Line 448: Line 451:
 
The [[Calendar]] was added in [[Patch 3.0.1]] and reworked in [[Patch 8.0.1]]
 
The [[Calendar]] was added in [[Patch 3.0.1]] and reworked in [[Patch 8.0.1]]
 
: <small>HW</small> [[API C_Calendar.AddEvent|C_Calendar.AddEvent]]() - Saves the new event currently being created to the server.
 
: <small>HW</small> [[API C_Calendar.AddEvent|C_Calendar.AddEvent]]() - Saves the new event currently being created to the server.
: [[API C_Calendar.AreNamesReady|C_Calendar.AreNamesReady]]() : <span style="font-size:smaller; color:#4ec9b0">ready</span>
+
: [[API C_Calendar.AreNamesReady|C_Calendar.AreNamesReady]]() : <span class="apiret">ready</span>
: [[API C_Calendar.CanAddEvent|C_Calendar.CanAddEvent]]() : <span style="font-size:smaller; color:#4ec9b0">canAddEvent</span> - Returns whether the player can add an event.
+
: [[API C_Calendar.CanAddEvent|C_Calendar.CanAddEvent]]() : <span class="apiret">canAddEvent</span> - Returns whether the player can add an event.
: [[API C_Calendar.CanSendInvite|C_Calendar.CanSendInvite]]() : <span style="font-size:smaller; color:#4ec9b0">canSendInvite</span> - Returns whether the player can send invites.
+
: [[API C_Calendar.CanSendInvite|C_Calendar.CanSendInvite]]() : <span class="apiret">canSendInvite</span> - Returns whether the player can send invites.
 
: [[API C_Calendar.CloseEvent|C_Calendar.CloseEvent]]() - Closes the selected event without saving it.
 
: [[API C_Calendar.CloseEvent|C_Calendar.CloseEvent]]() - Closes the selected event without saving it.
: [[API C_Calendar.ContextMenuEventCanComplain|C_Calendar.ContextMenuEventCanComplain]](<span style="font-size:smaller; color:#ecbc2a">offsetMonths, monthDay, eventIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">canComplain</span> - Returns whether the player can report the event as spam.
+
: [[API C_Calendar.ContextMenuEventCanComplain|C_Calendar.ContextMenuEventCanComplain]](<span class="apiarg">offsetMonths, monthDay, eventIndex</span>) : <span class="apiret">canComplain</span> - Returns whether the player can report the event as spam.
: [[API C_Calendar.ContextMenuEventCanEdit|C_Calendar.ContextMenuEventCanEdit]](<span style="font-size:smaller; color:#ecbc2a">offsetMonths, monthDay, eventIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">canEdit</span> - Returns whether the player can edit the event.
+
: [[API C_Calendar.ContextMenuEventCanEdit|C_Calendar.ContextMenuEventCanEdit]](<span class="apiarg">offsetMonths, monthDay, eventIndex</span>) : <span class="apiret">canEdit</span> - Returns whether the player can edit the event.
: [[API C_Calendar.ContextMenuEventCanRemove|C_Calendar.ContextMenuEventCanRemove]](<span style="font-size:smaller; color:#ecbc2a">offsetMonths, monthDay, eventIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">canRemove</span> - Returns whether the player can remove the event.
+
: [[API C_Calendar.ContextMenuEventCanRemove|C_Calendar.ContextMenuEventCanRemove]](<span class="apiarg">offsetMonths, monthDay, eventIndex</span>) : <span class="apiret">canRemove</span> - Returns whether the player can remove the event.
: [[API C_Calendar.ContextMenuEventClipboard|C_Calendar.ContextMenuEventClipboard]]() : <span style="font-size:smaller; color:#4ec9b0">exists</span>
+
: [[API C_Calendar.ContextMenuEventClipboard|C_Calendar.ContextMenuEventClipboard]]() : <span class="apiret">exists</span>
 
: [[API C_Calendar.ContextMenuEventComplain|C_Calendar.ContextMenuEventComplain]]() - Reports the event as spam.
 
: [[API C_Calendar.ContextMenuEventComplain|C_Calendar.ContextMenuEventComplain]]() - Reports the event as spam.
 
: [[API C_Calendar.ContextMenuEventCopy|C_Calendar.ContextMenuEventCopy]]() - Copies the event to the clipboard.
 
: [[API C_Calendar.ContextMenuEventCopy|C_Calendar.ContextMenuEventCopy]]() - Copies the event to the clipboard.
: [[API C_Calendar.ContextMenuEventGetCalendarType|C_Calendar.ContextMenuEventGetCalendarType]]() : <span style="font-size:smaller; color:#4ec9b0">calendarType</span>
+
: [[API C_Calendar.ContextMenuEventGetCalendarType|C_Calendar.ContextMenuEventGetCalendarType]]() : <span class="apiret">calendarType</span>
: [[API C_Calendar.ContextMenuEventPaste|C_Calendar.ContextMenuEventPaste]](<span style="font-size:smaller; color:#ecbc2a">offsetMonths, monthDay</span>) - Pastes the clipboard event to the date.
+
: [[API C_Calendar.ContextMenuEventPaste|C_Calendar.ContextMenuEventPaste]](<span class="apiarg">offsetMonths, monthDay</span>) - Pastes the clipboard event to the date.
 
: [[API C_Calendar.ContextMenuEventRemove|C_Calendar.ContextMenuEventRemove]]() - Deletes the event.
 
: [[API C_Calendar.ContextMenuEventRemove|C_Calendar.ContextMenuEventRemove]]() - Deletes the event.
 
: [[API C_Calendar.ContextMenuEventSignUp|C_Calendar.ContextMenuEventSignUp]]()
 
: [[API C_Calendar.ContextMenuEventSignUp|C_Calendar.ContextMenuEventSignUp]]()
: [[API C_Calendar.ContextMenuGetEventIndex|C_Calendar.ContextMenuGetEventIndex]]() : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_Calendar.ContextMenuGetEventIndex|C_Calendar.ContextMenuGetEventIndex]]() : <span class="apiret">info</span>
 
: [[API C_Calendar.ContextMenuInviteAvailable|C_Calendar.ContextMenuInviteAvailable]]() - Accepts the invitation to the event.
 
: [[API C_Calendar.ContextMenuInviteAvailable|C_Calendar.ContextMenuInviteAvailable]]() - Accepts the invitation to the event.
 
: [[API C_Calendar.ContextMenuInviteDecline|C_Calendar.ContextMenuInviteDecline]]() - Declines the invitation to the event.
 
: [[API C_Calendar.ContextMenuInviteDecline|C_Calendar.ContextMenuInviteDecline]]() - Declines the invitation to the event.
 
: [[API C_Calendar.ContextMenuInviteRemove|C_Calendar.ContextMenuInviteRemove]]() - Removes the event from the calendar.
 
: [[API C_Calendar.ContextMenuInviteRemove|C_Calendar.ContextMenuInviteRemove]]() - Removes the event from the calendar.
 
: [[API C_Calendar.ContextMenuInviteTentative|C_Calendar.ContextMenuInviteTentative]]()
 
: [[API C_Calendar.ContextMenuInviteTentative|C_Calendar.ContextMenuInviteTentative]]()
: [[API C_Calendar.ContextMenuSelectEvent|C_Calendar.ContextMenuSelectEvent]](<span style="font-size:smaller; color:#ecbc2a">offsetMonths, monthDay, eventIndex</span>)
+
: [[API C_Calendar.ContextMenuSelectEvent|C_Calendar.ContextMenuSelectEvent]](<span class="apiarg">offsetMonths, monthDay, eventIndex</span>)
 
: [[API C_Calendar.CreateCommunitySignUpEvent|C_Calendar.CreateCommunitySignUpEvent]]()
 
: [[API C_Calendar.CreateCommunitySignUpEvent|C_Calendar.CreateCommunitySignUpEvent]]()
 
: [[API C_Calendar.CreateGuildAnnouncementEvent|C_Calendar.CreateGuildAnnouncementEvent]]()
 
: [[API C_Calendar.CreateGuildAnnouncementEvent|C_Calendar.CreateGuildAnnouncementEvent]]()
Line 473: Line 476:
 
: [[API C_Calendar.CreatePlayerEvent|C_Calendar.CreatePlayerEvent]]() - Creates a new calendar event candidate for the player.
 
: [[API C_Calendar.CreatePlayerEvent|C_Calendar.CreatePlayerEvent]]() - Creates a new calendar event candidate for the player.
 
: [[API C_Calendar.EventAvailable|C_Calendar.EventAvailable]]() - Accepts the invitation to the currently open event.
 
: [[API C_Calendar.EventAvailable|C_Calendar.EventAvailable]]() - Accepts the invitation to the currently open event.
: [[API C_Calendar.EventCanEdit|C_Calendar.EventCanEdit]]() : <span style="font-size:smaller; color:#4ec9b0">canEdit</span> - Returns whether the event can be edited.
+
: [[API C_Calendar.EventCanEdit|C_Calendar.EventCanEdit]]() : <span class="apiret">canEdit</span> - Returns whether the event can be edited.
 
: [[API C_Calendar.EventClearAutoApprove|C_Calendar.EventClearAutoApprove]]() - Turns off automatic confirmations.
 
: [[API C_Calendar.EventClearAutoApprove|C_Calendar.EventClearAutoApprove]]() - Turns off automatic confirmations.
 
: [[API C_Calendar.EventClearLocked|C_Calendar.EventClearLocked]]() - Unlocks the event.
 
: [[API C_Calendar.EventClearLocked|C_Calendar.EventClearLocked]]() - Unlocks the event.
: [[API C_Calendar.EventClearModerator|C_Calendar.EventClearModerator]](<span style="font-size:smaller; color:#ecbc2a">inviteIndex</span>)
+
: [[API C_Calendar.EventClearModerator|C_Calendar.EventClearModerator]](<span class="apiarg">inviteIndex</span>)
 
: [[API C_Calendar.EventDecline|C_Calendar.EventDecline]]() - Declines the invitation to the currently open event.
 
: [[API C_Calendar.EventDecline|C_Calendar.EventDecline]]() - Declines the invitation to the currently open event.
: [[API C_Calendar.EventGetCalendarType|C_Calendar.EventGetCalendarType]]() : <span style="font-size:smaller; color:#4ec9b0">calendarType</span>
+
: [[API C_Calendar.EventGetCalendarType|C_Calendar.EventGetCalendarType]]() : <span class="apiret">calendarType</span>
: [[API C_Calendar.EventGetClubId|C_Calendar.EventGetClubId]]() : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_Calendar.EventGetClubId|C_Calendar.EventGetClubId]]() : <span class="apiret">info</span>
: [[API C_Calendar.EventGetInvite|C_Calendar.EventGetInvite]](<span style="font-size:smaller; color:#ecbc2a">eventIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span> - Returns status information for an invitee for the currently opened event.
+
: [[API C_Calendar.EventGetInvite|C_Calendar.EventGetInvite]](<span class="apiarg">eventIndex</span>) : <span class="apiret">info</span> - Returns status information for an invitee for the currently opened event.
: [[API C_Calendar.EventGetInviteResponseTime|C_Calendar.EventGetInviteResponseTime]](<span style="font-size:smaller; color:#ecbc2a">eventIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">time</span>
+
: [[API C_Calendar.EventGetInviteResponseTime|C_Calendar.EventGetInviteResponseTime]](<span class="apiarg">eventIndex</span>) : <span class="apiret">time</span>
: [[API C_Calendar.EventGetInviteSortCriterion|C_Calendar.EventGetInviteSortCriterion]]() : <span style="font-size:smaller; color:#4ec9b0">criterion, reverse</span>
+
: [[API C_Calendar.EventGetInviteSortCriterion|C_Calendar.EventGetInviteSortCriterion]]() : <span class="apiret">criterion, reverse</span>
: [[API C_Calendar.EventGetSelectedInvite|C_Calendar.EventGetSelectedInvite]]() : <span style="font-size:smaller; color:#4ec9b0">inviteIndex</span>
+
: [[API C_Calendar.EventGetSelectedInvite|C_Calendar.EventGetSelectedInvite]]() : <span class="apiret">inviteIndex</span>
: [[API C_Calendar.EventGetStatusOptions|C_Calendar.EventGetStatusOptions]](<span style="font-size:smaller; color:#ecbc2a">eventIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">options</span>
+
: [[API C_Calendar.EventGetStatusOptions|C_Calendar.EventGetStatusOptions]](<span class="apiarg">eventIndex</span>) : <span class="apiret">options</span>
: [[API C_Calendar.EventGetTextures|C_Calendar.EventGetTextures]](<span style="font-size:smaller; color:#ecbc2a">eventType</span>) : <span style="font-size:smaller; color:#4ec9b0">textures</span>
+
: [[API C_Calendar.EventGetTextures|C_Calendar.EventGetTextures]](<span class="apiarg">eventType</span>) : <span class="apiret">textures</span>
: [[API C_Calendar.EventGetTypes|C_Calendar.EventGetTypes]]() : <span style="font-size:smaller; color:#4ec9b0">types</span>
+
: [[API C_Calendar.EventGetTypes|C_Calendar.EventGetTypes]]() : <span class="apiret">types</span>
: [[API C_Calendar.EventGetTypesDisplayOrdered|C_Calendar.EventGetTypesDisplayOrdered]]() : <span style="font-size:smaller; color:#4ec9b0">infos</span>
+
: [[API C_Calendar.EventGetTypesDisplayOrdered|C_Calendar.EventGetTypesDisplayOrdered]]() : <span class="apiret">infos</span>
: [[API C_Calendar.EventHasPendingInvite|C_Calendar.EventHasPendingInvite]]() : <span style="font-size:smaller; color:#4ec9b0">hasPendingInvite</span> - Returns whether the player has an unanswered invitation to the currently selected event.
+
: [[API C_Calendar.EventHasPendingInvite|C_Calendar.EventHasPendingInvite]]() : <span class="apiret">hasPendingInvite</span> - Returns whether the player has an unanswered invitation to the currently selected event.
: [[API C_Calendar.EventHaveSettingsChanged|C_Calendar.EventHaveSettingsChanged]]() : <span style="font-size:smaller; color:#4ec9b0">haveSettingsChanged</span> - Returns whether the currently opened event has been modified.
+
: [[API C_Calendar.EventHaveSettingsChanged|C_Calendar.EventHaveSettingsChanged]]() : <span class="apiret">haveSettingsChanged</span> - Returns whether the currently opened event has been modified.
: [[API C_Calendar.EventInvite|C_Calendar.EventInvite]](<span style="font-size:smaller; color:#ecbc2a">name</span>) - Invites a player to the currently selected event.
+
: [[API C_Calendar.EventInvite|C_Calendar.EventInvite]](<span class="apiarg">name</span>) - Invites a player to the currently selected event.
: [[API C_Calendar.EventRemoveInvite|C_Calendar.EventRemoveInvite]](<span style="font-size:smaller; color:#ecbc2a">inviteIndex</span>)
+
: [[API C_Calendar.EventRemoveInvite|C_Calendar.EventRemoveInvite]](<span class="apiarg">inviteIndex</span>)
: [[API C_Calendar.EventRemoveInviteByGuid|C_Calendar.EventRemoveInviteByGuid]](<span style="font-size:smaller; color:#ecbc2a">guid</span>)
+
: [[API C_Calendar.EventRemoveInviteByGuid|C_Calendar.EventRemoveInviteByGuid]](<span class="apiarg">guid</span>)
: [[API C_Calendar.EventSelectInvite|C_Calendar.EventSelectInvite]](<span style="font-size:smaller; color:#ecbc2a">inviteIndex</span>)
+
: [[API C_Calendar.EventSelectInvite|C_Calendar.EventSelectInvite]](<span class="apiarg">inviteIndex</span>)
 
: [[API C_Calendar.EventSetAutoApprove|C_Calendar.EventSetAutoApprove]]()
 
: [[API C_Calendar.EventSetAutoApprove|C_Calendar.EventSetAutoApprove]]()
: [[API C_Calendar.EventSetClubId|C_Calendar.EventSetClubId]](<span style="font-size:smaller; color:#ecbc2a">[clubId]</span>)
+
: [[API C_Calendar.EventSetClubId|C_Calendar.EventSetClubId]](<span class="apiarg">[clubId]</span>)
: [[API C_Calendar.EventSetDate|C_Calendar.EventSetDate]](<span style="font-size:smaller; color:#ecbc2a">month, monthDay, year</span>) - Sets the date for the currently opened event.
+
: [[API C_Calendar.EventSetDate|C_Calendar.EventSetDate]](<span class="apiarg">month, monthDay, year</span>) - Sets the date for the currently opened event.
: [[API C_Calendar.EventSetDescription|C_Calendar.EventSetDescription]](<span style="font-size:smaller; color:#ecbc2a">description</span>)
+
: [[API C_Calendar.EventSetDescription|C_Calendar.EventSetDescription]](<span class="apiarg">description</span>)
: [[API C_Calendar.EventSetInviteStatus|C_Calendar.EventSetInviteStatus]](<span style="font-size:smaller; color:#ecbc2a">eventIndex, status</span>) - Sets the invitation status of a player to the current event.
+
: [[API C_Calendar.EventSetInviteStatus|C_Calendar.EventSetInviteStatus]](<span class="apiarg">eventIndex, status</span>) - Sets the invitation status of a player to the current event.
 
: [[API C_Calendar.EventSetLocked|C_Calendar.EventSetLocked]]()
 
: [[API C_Calendar.EventSetLocked|C_Calendar.EventSetLocked]]()
: [[API C_Calendar.EventSetModerator|C_Calendar.EventSetModerator]](<span style="font-size:smaller; color:#ecbc2a">inviteIndex</span>)
+
: [[API C_Calendar.EventSetModerator|C_Calendar.EventSetModerator]](<span class="apiarg">inviteIndex</span>)
: [[API C_Calendar.EventSetTextureID|C_Calendar.EventSetTextureID]](<span style="font-size:smaller; color:#ecbc2a">textureIndex</span>)
+
: [[API C_Calendar.EventSetTextureID|C_Calendar.EventSetTextureID]](<span class="apiarg">textureIndex</span>)
: [[API C_Calendar.EventSetTime|C_Calendar.EventSetTime]](<span style="font-size:smaller; color:#ecbc2a">hour, minute</span>) - Sets the time for the currently opened event.
+
: [[API C_Calendar.EventSetTime|C_Calendar.EventSetTime]](<span class="apiarg">hour, minute</span>) - Sets the time for the currently opened event.
: [[API C_Calendar.EventSetTitle|C_Calendar.EventSetTitle]](<span style="font-size:smaller; color:#ecbc2a">title</span>) - Sets the title for the currently opened event.
+
: [[API C_Calendar.EventSetTitle|C_Calendar.EventSetTitle]](<span class="apiarg">title</span>) - Sets the title for the currently opened event.
: [[API C_Calendar.EventSetType|C_Calendar.EventSetType]](<span style="font-size:smaller; color:#ecbc2a">typeIndex</span>) - Sets the event type for the current calendar event.
+
: [[API C_Calendar.EventSetType|C_Calendar.EventSetType]](<span class="apiarg">typeIndex</span>) - Sets the event type for the current calendar event.
 
: [[API C_Calendar.EventSignUp|C_Calendar.EventSignUp]]()
 
: [[API C_Calendar.EventSignUp|C_Calendar.EventSignUp]]()
: [[API C_Calendar.EventSortInvites|C_Calendar.EventSortInvites]](<span style="font-size:smaller; color:#ecbc2a">criterion, reverse</span>)
+
: [[API C_Calendar.EventSortInvites|C_Calendar.EventSortInvites]](<span class="apiarg">criterion, reverse</span>)
 
: [[API C_Calendar.EventTentative|C_Calendar.EventTentative]]()
 
: [[API C_Calendar.EventTentative|C_Calendar.EventTentative]]()
: [[API C_Calendar.GetClubCalendarEvents|C_Calendar.GetClubCalendarEvents]](<span style="font-size:smaller; color:#ecbc2a">clubId, startTime, endTime</span>) : <span style="font-size:smaller; color:#4ec9b0">events</span>
+
: [[API C_Calendar.GetClubCalendarEvents|C_Calendar.GetClubCalendarEvents]](<span class="apiarg">clubId, startTime, endTime</span>) : <span class="apiret">events</span>
: [[API C_Calendar.GetDayEvent|C_Calendar.GetDayEvent]](<span style="font-size:smaller; color:#ecbc2a">monthOffset, monthDay, index</span>) : <span style="font-size:smaller; color:#4ec9b0">event</span> - Retrieve information about the specified event.
+
: [[API C_Calendar.GetDayEvent|C_Calendar.GetDayEvent]](<span class="apiarg">monthOffset, monthDay, index</span>) : <span class="apiret">event</span> - Retrieve information about the specified event.
: [[API C_Calendar.GetDefaultGuildFilter|C_Calendar.GetDefaultGuildFilter]]() : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_Calendar.GetDefaultGuildFilter|C_Calendar.GetDefaultGuildFilter]]() : <span class="apiret">info</span>
: [[API C_Calendar.GetEventIndex|C_Calendar.GetEventIndex]]() : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_Calendar.GetEventIndex|C_Calendar.GetEventIndex]]() : <span class="apiret">info</span>
: [[API C_Calendar.GetEventIndexInfo|C_Calendar.GetEventIndexInfo]](<span style="font-size:smaller; color:#ecbc2a">eventID [, monthOffset, monthDay]</span>) : <span style="font-size:smaller; color:#4ec9b0">eventIndexInfo</span>
+
: [[API C_Calendar.GetEventIndexInfo|C_Calendar.GetEventIndexInfo]](<span class="apiarg">eventID [, monthOffset, monthDay]</span>) : <span class="apiret">eventIndexInfo</span>
: [[API C_Calendar.GetEventInfo|C_Calendar.GetEventInfo]]() : <span style="font-size:smaller; color:#4ec9b0">info</span> - Returns detailed information about an event.
+
: [[API C_Calendar.GetEventInfo|C_Calendar.GetEventInfo]]() : <span class="apiret">info</span> - Returns detailed information about an event.
: [[API C_Calendar.GetFirstPendingInvite|C_Calendar.GetFirstPendingInvite]](<span style="font-size:smaller; color:#ecbc2a">offsetMonths, monthDay</span>) : <span style="font-size:smaller; color:#4ec9b0">firstPendingInvite</span>
+
: [[API C_Calendar.GetFirstPendingInvite|C_Calendar.GetFirstPendingInvite]](<span class="apiarg">offsetMonths, monthDay</span>) : <span class="apiret">firstPendingInvite</span>
: [[API C_Calendar.GetGuildEventInfo|C_Calendar.GetGuildEventInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_Calendar.GetGuildEventInfo|C_Calendar.GetGuildEventInfo]](<span class="apiarg">index</span>) : <span class="apiret">info</span>
: [[API C_Calendar.GetGuildEventSelectionInfo|C_Calendar.GetGuildEventSelectionInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_Calendar.GetGuildEventSelectionInfo|C_Calendar.GetGuildEventSelectionInfo]](<span class="apiarg">index</span>) : <span class="apiret">info</span>
: [[API C_Calendar.GetHolidayInfo|C_Calendar.GetHolidayInfo]](<span style="font-size:smaller; color:#ecbc2a">monthOffset, monthDay, index</span>) : <span style="font-size:smaller; color:#4ec9b0">event</span> - Returns seasonal holiday info.
+
: [[API C_Calendar.GetHolidayInfo|C_Calendar.GetHolidayInfo]](<span class="apiarg">monthOffset, monthDay, index</span>) : <span class="apiret">event</span> - Returns seasonal holiday info.
: [[API C_Calendar.GetMaxCreateDate|C_Calendar.GetMaxCreateDate]]() : <span style="font-size:smaller; color:#4ec9b0">maxCreateDate</span> - Returns the last day supported by the Calendar API.
+
: [[API C_Calendar.GetMaxCreateDate|C_Calendar.GetMaxCreateDate]]() : <span class="apiret">maxCreateDate</span> - Returns the last day supported by the Calendar API.
: [[API C_Calendar.GetMinDate|C_Calendar.GetMinDate]]() : <span style="font-size:smaller; color:#4ec9b0">minDate</span> - Returns the first day supported by the Calendar API.
+
: [[API C_Calendar.GetMinDate|C_Calendar.GetMinDate]]() : <span class="apiret">minDate</span> - Returns the first day supported by the Calendar API.
: [[API C_Calendar.GetMonthInfo|C_Calendar.GetMonthInfo]](<span style="font-size:smaller; color:#ecbc2a">[offsetMonths]</span>) : <span style="font-size:smaller; color:#4ec9b0">monthInfo</span> - Returns information about the calendar month by offset.
+
: [[API C_Calendar.GetMonthInfo|C_Calendar.GetMonthInfo]](<span class="apiarg">[offsetMonths]</span>) : <span class="apiret">monthInfo</span> - Returns information about the calendar month by offset.
: [[API C_Calendar.GetNextClubId|C_Calendar.GetNextClubId]]() : <span style="font-size:smaller; color:#4ec9b0">clubId</span>
+
: [[API C_Calendar.GetNextClubId|C_Calendar.GetNextClubId]]() : <span class="apiret">clubId</span>
: [[API C_Calendar.GetNumDayEvents|C_Calendar.GetNumDayEvents]](<span style="font-size:smaller; color:#ecbc2a">offsetMonths, monthDay</span>) : <span style="font-size:smaller; color:#4ec9b0">numDayEvents</span> - Returns the number of events for a given day/month offset.
+
: [[API C_Calendar.GetNumDayEvents|C_Calendar.GetNumDayEvents]](<span class="apiarg">offsetMonths, monthDay</span>) : <span class="apiret">numDayEvents</span> - Returns the number of events for a given day/month offset.
: [[API C_Calendar.GetNumGuildEvents|C_Calendar.GetNumGuildEvents]]() : <span style="font-size:smaller; color:#4ec9b0">numGuildEvents</span>
+
: [[API C_Calendar.GetNumGuildEvents|C_Calendar.GetNumGuildEvents]]() : <span class="apiret">numGuildEvents</span>
: [[API C_Calendar.GetNumInvites|C_Calendar.GetNumInvites]]() : <span style="font-size:smaller; color:#4ec9b0">num</span> - Returns the number of invitees for the currently opened event.
+
: [[API C_Calendar.GetNumInvites|C_Calendar.GetNumInvites]]() : <span class="apiret">num</span> - Returns the number of invitees for the currently opened event.
: [[API C_Calendar.GetNumPendingInvites|C_Calendar.GetNumPendingInvites]]() : <span style="font-size:smaller; color:#4ec9b0">num</span>
+
: [[API C_Calendar.GetNumPendingInvites|C_Calendar.GetNumPendingInvites]]() : <span class="apiret">num</span>
: [[API C_Calendar.GetRaidInfo|C_Calendar.GetRaidInfo]](<span style="font-size:smaller; color:#ecbc2a">offsetMonths, monthDay, eventIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_Calendar.GetRaidInfo|C_Calendar.GetRaidInfo]](<span class="apiarg">offsetMonths, monthDay, eventIndex</span>) : <span class="apiret">info</span>
: [[API C_Calendar.IsActionPending|C_Calendar.IsActionPending]]() : <span style="font-size:smaller; color:#4ec9b0">actionPending</span>
+
: [[API C_Calendar.IsActionPending|C_Calendar.IsActionPending]]() : <span class="apiret">actionPending</span>
: [[API C_Calendar.IsEventOpen|C_Calendar.IsEventOpen]]() : <span style="font-size:smaller; color:#4ec9b0">isOpen</span>
+
: [[API C_Calendar.IsEventOpen|C_Calendar.IsEventOpen]]() : <span class="apiret">isOpen</span>
: [[API C_Calendar.MassInviteCommunity|C_Calendar.MassInviteCommunity]](<span style="font-size:smaller; color:#ecbc2a">clubId, minLevel, maxLevel [, maxRankOrder]</span>)
+
: [[API C_Calendar.MassInviteCommunity|C_Calendar.MassInviteCommunity]](<span class="apiarg">clubId, minLevel, maxLevel [, maxRankOrder]</span>)
: [[API C_Calendar.MassInviteGuild|C_Calendar.MassInviteGuild]](<span style="font-size:smaller; color:#ecbc2a">minLevel, maxLevel, maxRankOrder</span>)
+
: [[API C_Calendar.MassInviteGuild|C_Calendar.MassInviteGuild]](<span class="apiarg">minLevel, maxLevel, maxRankOrder</span>)
 
: [[API C_Calendar.OpenCalendar|C_Calendar.OpenCalendar]]() - Requests calendar information from the server. Does not open the calendar frame.
 
: [[API C_Calendar.OpenCalendar|C_Calendar.OpenCalendar]]() - Requests calendar information from the server. Does not open the calendar frame.
: [[API C_Calendar.OpenEvent|C_Calendar.OpenEvent]](<span style="font-size:smaller; color:#ecbc2a">offsetMonths, monthDay, index</span>) : <span style="font-size:smaller; color:#4ec9b0">success</span> - Establishes an event for future calendar API calls
+
: [[API C_Calendar.OpenEvent|C_Calendar.OpenEvent]](<span class="apiarg">offsetMonths, monthDay, index</span>) : <span class="apiret">success</span> - Establishes an event for future calendar API calls
 
: [[API C_Calendar.RemoveEvent|C_Calendar.RemoveEvent]]() - Removes the selected event from the calendar (invitees only).
 
: [[API C_Calendar.RemoveEvent|C_Calendar.RemoveEvent]]() - Removes the selected event from the calendar (invitees only).
: [[API C_Calendar.SetAbsMonth|C_Calendar.SetAbsMonth]](<span style="font-size:smaller; color:#ecbc2a">month, year</span>) - Sets the reference month and year for functions which use a month offset.
+
: [[API C_Calendar.SetAbsMonth|C_Calendar.SetAbsMonth]](<span class="apiarg">month, year</span>) - Sets the reference month and year for functions which use a month offset.
: [[API C_Calendar.SetMonth|C_Calendar.SetMonth]](<span style="font-size:smaller; color:#ecbc2a">offsetMonths</span>)
+
: [[API C_Calendar.SetMonth|C_Calendar.SetMonth]](<span class="apiarg">offsetMonths</span>)
: [[API C_Calendar.SetNextClubId|C_Calendar.SetNextClubId]](<span style="font-size:smaller; color:#ecbc2a">[clubId]</span>)
+
: [[API C_Calendar.SetNextClubId|C_Calendar.SetNextClubId]](<span class="apiarg">[clubId]</span>)
 
: <small>HW</small> [[API C_Calendar.UpdateEvent|C_Calendar.UpdateEvent]]() - Saves the selected event.
 
: <small>HW</small> [[API C_Calendar.UpdateEvent|C_Calendar.UpdateEvent]]() - Saves the selected event.
   
 
=== Chat ===
 
=== Chat ===
 
These are specific to chat messages and channels.
 
These are specific to chat messages and channels.
: [[API C_ChatInfo.GetChannelRosterInfo|C_ChatInfo.GetChannelRosterInfo]](<span style="font-size:smaller; color:#ecbc2a">channelIndex, rosterIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">name, owner, moderator, guid</span>
+
: [[API C_ChatInfo.GetChannelInfoFromIdentifier|C_ChatInfo.GetChannelInfoFromIdentifier]](<span class="apiarg">channelIdentifier</span>) : <span class="apiret">info</span>
: [[API C_ChatInfo.GetChannelRuleset|C_ChatInfo.GetChannelRuleset]](<span style="font-size:smaller; color:#ecbc2a">channelIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">ruleset</span>
+
: [[API C_ChatInfo.GetChannelRosterInfo|C_ChatInfo.GetChannelRosterInfo]](<span class="apiarg">channelIndex, rosterIndex</span>) : <span class="apiret">name, owner, moderator, guid</span>
: [[API C_ChatInfo.GetChannelRulesetForChannelID|C_ChatInfo.GetChannelRulesetForChannelID]](<span style="font-size:smaller; color:#ecbc2a">channelID</span>) : <span style="font-size:smaller; color:#4ec9b0">ruleset</span>
+
: [[API C_ChatInfo.GetChannelRuleset|C_ChatInfo.GetChannelRuleset]](<span class="apiarg">channelIndex</span>) : <span class="apiret">ruleset</span>
: [[API C_ChatInfo.GetChannelShortcut|C_ChatInfo.GetChannelShortcut]](<span style="font-size:smaller; color:#ecbc2a">channelIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">shortcut</span>
+
: [[API C_ChatInfo.GetChannelRulesetForChannelID|C_ChatInfo.GetChannelRulesetForChannelID]](<span class="apiarg">channelID</span>) : <span class="apiret">ruleset</span>
: [[API C_ChatInfo.GetChannelShortcutForChannelID|C_ChatInfo.GetChannelShortcutForChannelID]](<span style="font-size:smaller; color:#ecbc2a">channelID</span>) : <span style="font-size:smaller; color:#4ec9b0">shortcut</span>
+
: [[API C_ChatInfo.GetChannelShortcut|C_ChatInfo.GetChannelShortcut]](<span class="apiarg">channelIndex</span>) : <span class="apiret">shortcut</span>
: [[API C_ChatInfo.GetClubStreamIDs|C_ChatInfo.GetClubStreamIDs]](<span style="font-size:smaller; color:#ecbc2a">clubID</span>) : <span style="font-size:smaller; color:#4ec9b0">ids</span>
+
: [[API C_ChatInfo.GetChannelShortcutForChannelID|C_ChatInfo.GetChannelShortcutForChannelID]](<span class="apiarg">channelID</span>) : <span class="apiret">shortcut</span>
: [[API C_ChatInfo.GetGeneralChannelID|C_ChatInfo.GetGeneralChannelID]]() : <span style="font-size:smaller; color:#4ec9b0">channelID</span>
+
: [[API C_ChatInfo.GetChatTypeName|C_ChatInfo.GetChatTypeName]](<span class="apiarg">typeID</span>) : <span class="apiret">name</span>
: [[API C_ChatInfo.GetGeneralChannelLocalID|C_ChatInfo.GetGeneralChannelLocalID]]() : <span style="font-size:smaller; color:#4ec9b0">localID</span>
+
: [[API C_ChatInfo.GetClubStreamIDs|C_ChatInfo.GetClubStreamIDs]](<span class="apiarg">clubID</span>) : <span class="apiret">ids</span>
: [[API C_ChatInfo.GetMentorChannelID|C_ChatInfo.GetMentorChannelID]]() : <span style="font-size:smaller; color:#4ec9b0">channelID</span>
+
: [[API C_ChatInfo.GetGeneralChannelID|C_ChatInfo.GetGeneralChannelID]]() : <span class="apiret">channelID</span>
: [[API C_ChatInfo.GetNumActiveChannels|C_ChatInfo.GetNumActiveChannels]]() : <span style="font-size:smaller; color:#4ec9b0">numChannels</span>
+
: [[API C_ChatInfo.GetGeneralChannelLocalID|C_ChatInfo.GetGeneralChannelLocalID]]() : <span class="apiret">localID</span>
: [[API C_ChatInfo.IsChannelRegional|C_ChatInfo.IsChannelRegional]](<span style="font-size:smaller; color:#ecbc2a">channelIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">isRegional</span>
+
: [[API C_ChatInfo.GetMentorChannelID|C_ChatInfo.GetMentorChannelID]]() : <span class="apiret">channelID</span>
: [[API C_ChatInfo.IsChannelRegionalForChannelID|C_ChatInfo.IsChannelRegionalForChannelID]](<span style="font-size:smaller; color:#ecbc2a">channelID</span>) : <span style="font-size:smaller; color:#4ec9b0">isRegional</span>
+
: [[API C_ChatInfo.GetNumActiveChannels|C_ChatInfo.GetNumActiveChannels]]() : <span class="apiret">numChannels</span>
: [[API C_ChatInfo.IsPartyChannelType|C_ChatInfo.IsPartyChannelType]](<span style="font-size:smaller; color:#ecbc2a">channelType</span>) : <span style="font-size:smaller; color:#4ec9b0">isPartyChannelType</span>
+
: [[API C_ChatInfo.GetNumReservedChatWindows|C_ChatInfo.GetNumReservedChatWindows]]() : <span class="apiret">numReserved</span>
: [[API C_ChatInfo.IsRegionalServiceAvailable|C_ChatInfo.IsRegionalServiceAvailable]]() : <span style="font-size:smaller; color:#4ec9b0">available</span>
+
: [[API C_ChatInfo.IsChannelRegional|C_ChatInfo.IsChannelRegional]](<span class="apiarg">channelIndex</span>) : <span class="apiret">isRegional</span>
: [[API C_ChatInfo.IsValidChatLine|C_ChatInfo.IsValidChatLine]](<span style="font-size:smaller; color:#ecbc2a">[chatLine]</span>) : <span style="font-size:smaller; color:#4ec9b0">isValid</span>
+
: [[API C_ChatInfo.IsChannelRegionalForChannelID|C_ChatInfo.IsChannelRegionalForChannelID]](<span class="apiarg">channelID</span>) : <span class="apiret">isRegional</span>
: [[API C_ChatInfo.ReplaceIconAndGroupExpressions|C_ChatInfo.ReplaceIconAndGroupExpressions]](<span style="font-size:smaller; color:#ecbc2a">input [, noIconReplacement, noGroupReplacement]</span>) : <span style="font-size:smaller; color:#4ec9b0">output</span> - Replaces icon and group tags like {rt4}, {diamond} and {g1}.
+
: [[API C_ChatInfo.IsPartyChannelType|C_ChatInfo.IsPartyChannelType]](<span class="apiarg">channelType</span>) : <span class="apiret">isPartyChannelType</span>
  +
: [[API C_ChatInfo.IsRegionalServiceAvailable|C_ChatInfo.IsRegionalServiceAvailable]]() : <span class="apiret">available</span>
  +
: [[API C_ChatInfo.IsValidChatLine|C_ChatInfo.IsValidChatLine]](<span class="apiarg">[chatLine]</span>) : <span class="apiret">isValid</span>
  +
: [[API C_ChatInfo.ReplaceIconAndGroupExpressions|C_ChatInfo.ReplaceIconAndGroupExpressions]](<span class="apiarg">input [, noIconReplacement, noGroupReplacement]</span>) : <span class="apiret">output</span> - Replaces icon and group tags like {rt4}, {diamond} and {g1}.
 
: [[API C_ChatInfo.ResetDefaultZoneChannels|C_ChatInfo.ResetDefaultZoneChannels]]()
 
: [[API C_ChatInfo.ResetDefaultZoneChannels|C_ChatInfo.ResetDefaultZoneChannels]]()
: [[API C_ChatInfo.SwapChatChannelsByChannelIndex|C_ChatInfo.SwapChatChannelsByChannelIndex]](<span style="font-size:smaller; color:#ecbc2a">firstChannelIndex, secondChannelIndex</span>)
+
: [[API C_ChatInfo.SwapChatChannelsByChannelIndex|C_ChatInfo.SwapChatChannelsByChannelIndex]](<span class="apiarg">firstChannelIndex, secondChannelIndex</span>)
: [[API C_ChatBubbles.GetAllChatBubbles|C_ChatBubbles.GetAllChatBubbles]](<span style="font-size:smaller; color:#ecbc2a">[includeForbidden]</span>) : <span style="font-size:smaller; color:#4ec9b0">chatBubbles</span> - Returns all active chat bubbles.
+
: [[API C_ChatBubbles.GetAllChatBubbles|C_ChatBubbles.GetAllChatBubbles]](<span class="apiarg">[includeForbidden]</span>) : <span class="apiret">chatBubbles</span> - Returns all active chat bubbles.
 
: [[API CancelEmote|CancelEmote]]() - Stops an active emote, e.g. when closing the map.
 
: [[API CancelEmote|CancelEmote]]() - Stops an active emote, e.g. when closing the map.
: [[API ChannelBan|ChannelBan]](<span style="font-size:smaller; color:#ecbc2a">channel, name</span>) - Bans a player from the specified channel.
+
: [[API ChannelBan|ChannelBan]](<span class="apiarg">channel, name</span>) - Bans a player from the specified channel.
: [[API ChannelInvite|ChannelInvite]](<span style="font-size:smaller; color:#ecbc2a">channel, name</span>) - Invites the specified user to the channel.
+
: [[API ChannelInvite|ChannelInvite]](<span class="apiarg">channel, name</span>) - Invites the specified user to the channel.
: [[API ChannelKick|ChannelKick]](<span style="font-size:smaller; color:#ecbc2a">channel, name</span>) - Kicks the specified user from the channel.
+
: [[API ChannelKick|ChannelKick]](<span class="apiarg">channel, name</span>) - Kicks the specified user from the channel.
: [[API ChannelModerator|ChannelModerator]](<span style="font-size:smaller; color:#ecbc2a">channel, name</span>) - Sets the specified player as the channel moderator.
+
: [[API ChannelModerator|ChannelModerator]](<span class="apiarg">channel, name</span>) - Sets the specified player as the channel moderator.
: [[API ChannelToggleAnnouncements|ChannelToggleAnnouncements]](<span style="font-size:smaller; color:#ecbc2a">channel</span>) - Toggles the channel to display announcements either on or off.
+
: [[API ChannelToggleAnnouncements|ChannelToggleAnnouncements]](<span class="apiarg">channel</span>) - Toggles the channel to display announcements either on or off.
: [[API ChannelUnban|ChannelUnban]](<span style="font-size:smaller; color:#ecbc2a">channel, name</span>) - Unbans a player from a channel.
+
: [[API ChannelUnban|ChannelUnban]](<span class="apiarg">channel, name</span>) - Unbans a player from a channel.
: [[API ChannelUnmoderator|ChannelUnmoderator]](<span style="font-size:smaller; color:#ecbc2a">channel, name</span>) - Takes the specified user away from the moderator status.
+
: [[API ChannelUnmoderator|ChannelUnmoderator]](<span class="apiarg">channel, name</span>) - Takes the specified user away from the moderator status.
: [[API DeclineChannelInvite|DeclineChannelInvite]](<span style="font-size:smaller; color:#ecbc2a">channel</span>)
+
: [[API DeclineChannelInvite|DeclineChannelInvite]](<span class="apiarg">channel</span>)
: [[API DisplayChannelOwner|DisplayChannelOwner]](<span style="font-size:smaller; color:#ecbc2a">channel</span>) - Displays the owner of the specified channel in the default chat.
+
: [[API DisplayChannelOwner|DisplayChannelOwner]](<span class="apiarg">channel</span>) - Displays the owner of the specified channel in the default chat.
: [[API DoEmote|DoEmote]](<span style="font-size:smaller; color:#ecbc2a">emote [, target]</span>) - Perform a voice emote.
+
: [[API DoEmote|DoEmote]](<span class="apiarg">emote [, target]</span>) - Perform a voice emote.
 
: [[API EnumerateServerChannels|EnumerateServerChannels]]() - Retrieves all available server channels (zone dependent).
 
: [[API EnumerateServerChannels|EnumerateServerChannels]]() - Retrieves all available server channels (zone dependent).
 
: [[API GetAlternativeDefaultLanguage|GetAlternativeDefaultLanguage]]()
 
: [[API GetAlternativeDefaultLanguage|GetAlternativeDefaultLanguage]]()
: [[API GetChannelDisplayInfo|GetChannelDisplayInfo]](<span style="font-size:smaller; color:#ecbc2a">channelID</span>) - Returns the name of the channel according to the given id.
+
: [[API GetChannelDisplayInfo|GetChannelDisplayInfo]](<span class="apiarg">channelID</span>) - Returns the name of the channel according to the given id.
 
: [[API GetChannelList|GetChannelList]]() - Retrieves joined channels.
 
: [[API GetChannelList|GetChannelList]]() - Retrieves joined channels.
: [[API GetChannelName|GetChannelName]](<span style="font-size:smaller; color:#ecbc2a">channel or index</span>) - Retrieves the name from a specific channel.
+
: [[API GetChannelName|GetChannelName]](<span class="apiarg">channel or index</span>) - Retrieves the name from a specific channel.
: [[API GetDefaultLanguage|GetDefaultLanguage]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the default language that the unit is speaking after logon.
+
: [[API GetDefaultLanguage|GetDefaultLanguage]](<span class="apiarg">unit</span>) - Returns the default language that the unit is speaking after logon.
: [[API GetLanguageByIndex|GetLanguageByIndex]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns the language specified by the index.
+
: [[API GetLanguageByIndex|GetLanguageByIndex]](<span class="apiarg">index</span>) - Returns the language specified by the index.
 
: [[API GetNumChannelMembers|GetNumChannelMembers]]()
 
: [[API GetNumChannelMembers|GetNumChannelMembers]]()
 
: [[API GetNumDisplayChannels|GetNumDisplayChannels]]()
 
: [[API GetNumDisplayChannels|GetNumDisplayChannels]]()
Line 585: Line 591:
 
: [[API IsDisplayChannelModerator|IsDisplayChannelModerator]]()
 
: [[API IsDisplayChannelModerator|IsDisplayChannelModerator]]()
 
: [[API IsDisplayChannelOwner|IsDisplayChannelOwner]]()
 
: [[API IsDisplayChannelOwner|IsDisplayChannelOwner]]()
: [[API JoinChannelByName|JoinChannelByName]](<span style="font-size:smaller; color:#ecbc2a">channelName [, password, frameID, hasVoice]</span>) - Join the specified chat channel (with optional password, and register for specified frame).
+
: [[API JoinChannelByName|JoinChannelByName]](<span class="apiarg">channelName [, password, frameID, hasVoice]</span>) - Join the specified chat channel (with optional password, and register for specified frame).
: [[API JoinPermanentChannel|JoinPermanentChannel]](<span style="font-size:smaller; color:#ecbc2a">channelName [, password, frameID, hasVoice]</span>) - Permanently join the specified chat channel (with optional password, and register for specified frame)
+
: [[API JoinPermanentChannel|JoinPermanentChannel]](<span class="apiarg">channelName [, password, frameID, hasVoice]</span>) - Permanently join the specified chat channel (with optional password, and register for specified frame)
: [[API JoinTemporaryChannel|JoinTemporaryChannel]](<span style="font-size:smaller; color:#ecbc2a">channelName [, password, frameID, hasVoice]</span>) - Temporary join the specified chat channel (with optional password, and register for specified frame)
+
: [[API JoinTemporaryChannel|JoinTemporaryChannel]](<span class="apiarg">channelName [, password, frameID, hasVoice]</span>) - Temporary join the specified chat channel (with optional password, and register for specified frame)
: [[API LeaveChannelByLocalID|LeaveChannelByLocalID]](<span style="font-size:smaller; color:#ecbc2a">localID</span>)
+
: [[API LeaveChannelByLocalID|LeaveChannelByLocalID]](<span class="apiarg">localID</span>)
: [[API LeaveChannelByName|LeaveChannelByName]](<span style="font-size:smaller; color:#ecbc2a">channel</span>) - Leaves the channel with the specified name.
+
: [[API LeaveChannelByName|LeaveChannelByName]](<span class="apiarg">channel</span>) - Leaves the channel with the specified name.
: [[API ListChannelByName|ListChannelByName]](<span style="font-size:smaller; color:#ecbc2a">channelMatch</span>) - Lists members in the given channel to the chat window.
+
: [[API ListChannelByName|ListChannelByName]](<span class="apiarg">channelMatch</span>) - Lists members in the given channel to the chat window.
 
: [[API ListChannels|ListChannels]]() - Lists all of the channels into the chat window.
 
: [[API ListChannels|ListChannels]]() - Lists all of the channels into the chat window.
: [[API LoggingChat|LoggingChat]](<span style="font-size:smaller; color:#ecbc2a">newState</span>) - Gets or sets whether logging chat to Logs\WoWChatLog.txt is enabled.
+
: [[API LoggingChat|LoggingChat]](<span class="apiarg">newState</span>) - Gets or sets whether logging chat to Logs\WoWChatLog.txt is enabled.
: [[API LoggingCombat|LoggingCombat]](<span style="font-size:smaller; color:#ecbc2a">newState</span>) - Gets or sets whether logging combat to Logs\WoWCombatLog.txt is enabled.
+
: [[API LoggingCombat|LoggingCombat]](<span class="apiarg">newState</span>) - Gets or sets whether logging combat to Logs\WoWCombatLog.txt is enabled.
: [[API SendChatMessage|SendChatMessage]](<span style="font-size:smaller; color:#ecbc2a">msg [, chatType, languageID, target]</span>) - Sends a chat message.
+
: [[API SendChatMessage|SendChatMessage]](<span class="apiarg">msg [, chatType, languageID, target]</span>) - Sends a chat message.
: [[API SetChannelOwner|SetChannelOwner]](<span style="font-size:smaller; color:#ecbc2a">channel, name</span>) - Sets the channel owner.
+
: [[API SetChannelOwner|SetChannelOwner]](<span class="apiarg">channel, name</span>) - Sets the channel owner.
: [[API SetChannelPassword|SetChannelPassword]](<span style="font-size:smaller; color:#ecbc2a">channel, password</span>) - Changes the password of the current channel.
+
: [[API SetChannelPassword|SetChannelPassword]](<span class="apiarg">channel, password</span>) - Changes the password of the current channel.
: [[API SetSelectedDisplayChannel|SetSelectedDisplayChannel]](<span style="font-size:smaller; color:#ecbc2a">channelID</span>)
+
: [[API SetSelectedDisplayChannel|SetSelectedDisplayChannel]](<span class="apiarg">channelID</span>)
   
 
==== Chat Window ====
 
==== Chat Window ====
 
These are specific to chat ''window'' management.
 
These are specific to chat ''window'' management.
: [[API AddChatWindowChannel|AddChatWindowChannel]](<span style="font-size:smaller; color:#ecbc2a">chatFrameIndex, channel</span>) - Make a chat channel visible in a specific ChatFrame.
+
: [[API AddChatWindowChannel|AddChatWindowChannel]](<span class="apiarg">chatFrameIndex, channel</span>) - Make a chat channel visible in a specific ChatFrame.
 
: [[API AddChatWindowMessages|AddChatWindowMessages]]() - Adds a messaging group to the specified chat window.
 
: [[API AddChatWindowMessages|AddChatWindowMessages]]() - Adds a messaging group to the specified chat window.
: [[API ChangeChatColor|ChangeChatColor]](<span style="font-size:smaller; color:#ecbc2a">channelName, r, g, b</span>) - Update the color for a type of chat message.
+
: [[API ChangeChatColor|ChangeChatColor]](<span class="apiarg">channelName, r, g, b</span>) - Update the color for a type of chat message.
: [[API GetChatTypeIndex|GetChatTypeIndex]](<span style="font-size:smaller; color:#ecbc2a">type</span>) - Get the numeric ID of a type of chat message.
+
: [[API GetChatTypeIndex|GetChatTypeIndex]](<span class="apiarg">type</span>) - Get the numeric ID of a type of chat message.
: [[API GetChatWindowChannels|GetChatWindowChannels]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Get the chat channels received by a chat window.
+
: [[API GetChatWindowChannels|GetChatWindowChannels]](<span class="apiarg">index</span>) - Get the chat channels received by a chat window.
: [[API GetChatWindowInfo|GetChatWindowInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Get setup information about a chat window.
+
: [[API GetChatWindowInfo|GetChatWindowInfo]](<span class="apiarg">index</span>) - Get setup information about a chat window.
: [[API GetChatWindowMessages|GetChatWindowMessages]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Get the chat message types received by a chat window.
+
: [[API GetChatWindowMessages|GetChatWindowMessages]](<span class="apiarg">index</span>) - Get the chat message types received by a chat window.
: [[API GetChatWindowSavedDimensions|GetChatWindowSavedDimensions]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetChatWindowSavedDimensions|GetChatWindowSavedDimensions]](<span class="apiarg">index</span>)
: [[API GetChatWindowSavedPosition|GetChatWindowSavedPosition]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetChatWindowSavedPosition|GetChatWindowSavedPosition]](<span class="apiarg">index</span>)
 
: [[API RedockChatWindows|RedockChatWindows]]()
 
: [[API RedockChatWindows|RedockChatWindows]]()
: [[API RemoveChatWindowChannel|RemoveChatWindowChannel]](<span style="font-size:smaller; color:#ecbc2a">chatFrameIndex, channel</span>) - Make a chat channel invisible (hidden) in a specific ChatFrame.
+
: [[API RemoveChatWindowChannel|RemoveChatWindowChannel]](<span class="apiarg">chatFrameIndex, channel</span>) - Make a chat channel invisible (hidden) in a specific ChatFrame.
: [[API RemoveChatWindowMessages|RemoveChatWindowMessages]](<span style="font-size:smaller; color:#ecbc2a">chatFrameIndex, messageGroup</span>) - Remove a set of chat messages from this window.
+
: [[API RemoveChatWindowMessages|RemoveChatWindowMessages]](<span class="apiarg">chatFrameIndex, messageGroup</span>) - Remove a set of chat messages from this window.
 
: [[API ResetChatColors|ResetChatColors]]()
 
: [[API ResetChatColors|ResetChatColors]]()
 
: [[API ResetChatWindows|ResetChatWindows]]()
 
: [[API ResetChatWindows|ResetChatWindows]]()
: [[API SetChatColorNameByClass|SetChatColorNameByClass]](<span style="font-size:smaller; color:#ecbc2a">chatType, colorNameByClass</span>)
+
: [[API SetChatColorNameByClass|SetChatColorNameByClass]](<span class="apiarg">chatType, colorNameByClass</span>)
: [[API SetChatWindowAlpha|SetChatWindowAlpha]](<span style="font-size:smaller; color:#ecbc2a">index, alpha</span>) - Sets the Alpha value(transparency) of ChatFrame<index> (alpha - 0-100)
+
: [[API SetChatWindowAlpha|SetChatWindowAlpha]](<span class="apiarg">index, alpha</span>) - Sets the Alpha value(transparency) of ChatFrame<index> (alpha - 0-100)
: [[API SetChatWindowColor|SetChatWindowColor]](<span style="font-size:smaller; color:#ecbc2a">index, r, g, b</span>) - Sets the background color of a a chat window. (r/g/b - 0-255)
+
: [[API SetChatWindowColor|SetChatWindowColor]](<span class="apiarg">index, r, g, b</span>) - Sets the background color of a a chat window. (r/g/b - 0-255)
: [[API SetChatWindowDocked|SetChatWindowDocked]](<span style="font-size:smaller; color:#ecbc2a">index, docked</span>) - Set whether a chat window is docked. (docked - 0/1)
+
: [[API SetChatWindowDocked|SetChatWindowDocked]](<span class="apiarg">index, docked</span>) - Set whether a chat window is docked. (docked - 0/1)
: [[API SetChatWindowLocked|SetChatWindowLocked]](<span style="font-size:smaller; color:#ecbc2a">index, locked</span>) - Sets ChatFrame<index> so that it is or is not movable. (locked - 0/1)
+
: [[API SetChatWindowLocked|SetChatWindowLocked]](<span class="apiarg">index, locked</span>) - Sets ChatFrame<index> so that it is or is not movable. (locked - 0/1)
: [[API SetChatWindowName|SetChatWindowName]](<span style="font-size:smaller; color:#ecbc2a">index, name</span>) - Sets the alpha value of ChatFrame.
+
: [[API SetChatWindowName|SetChatWindowName]](<span class="apiarg">index, name</span>) - Sets the alpha value of ChatFrame.
: [[API SetChatWindowSavedDimensions|SetChatWindowSavedDimensions]](<span style="font-size:smaller; color:#ecbc2a">index, width, height</span>)
+
: [[API SetChatWindowSavedDimensions|SetChatWindowSavedDimensions]](<span class="apiarg">index, width, height</span>)
: [[API SetChatWindowSavedPosition|SetChatWindowSavedPosition]](<span style="font-size:smaller; color:#ecbc2a">index, point, xOffsetRatio, yOffsetRatio</span>)
+
: [[API SetChatWindowSavedPosition|SetChatWindowSavedPosition]](<span class="apiarg">index, point, xOffsetRatio, yOffsetRatio</span>)
: [[API SetChatWindowShown|SetChatWindowShown]](<span style="font-size:smaller; color:#ecbc2a">index, shown</span>) - Shows or Hides ChatFrame<index> depending on value of <shown> (shown - 0/1)
+
: [[API SetChatWindowShown|SetChatWindowShown]](<span class="apiarg">index, shown</span>) - Shows or Hides ChatFrame<index> depending on value of <shown> (shown - 0/1)
: [[API SetChatWindowSize|SetChatWindowSize]](<span style="font-size:smaller; color:#ecbc2a">index, size</span>) - Sets the font size of a chat window. (size - default 14)
+
: [[API SetChatWindowSize|SetChatWindowSize]](<span class="apiarg">index, size</span>) - Sets the font size of a chat window. (size - default 14)
: [[API SetChatWindowUninteractable|SetChatWindowUninteractable]](<span style="font-size:smaller; color:#ecbc2a">id, isUninteractable</span>)
+
: [[API SetChatWindowUninteractable|SetChatWindowUninteractable]](<span class="apiarg">id, isUninteractable</span>)
: <small>UI</small> [[API ChatFrame_AddChannel|ChatFrame_AddChannel]](<span style="font-size:smaller; color:#ecbc2a">chatFrame, channelName</span>) - Activate channel in chatFrame.
+
: <small>UI</small> [[API ChatFrame_AddChannel|ChatFrame_AddChannel]](<span class="apiarg">chatFrame, channelName</span>) - Activate channel in chatFrame.
: <small>UI</small> [[API ChatFrame_AddMessageEventFilter|ChatFrame_AddMessageEventFilter]](<span style="font-size:smaller; color:#ecbc2a">event, filterFunc</span>) - Add a chat message filtering function.
+
: <small>UI</small> [[API ChatFrame_AddMessageEventFilter|ChatFrame_AddMessageEventFilter]](<span class="apiarg">event, filterFunc</span>) - Add a chat message filtering function.
: <small>UI</small> [[API ChatFrame_GetMessageEventFilters|ChatFrame_GetMessageEventFilters]](<span style="font-size:smaller; color:#ecbc2a">event</span>) - Retreive the list of chat message filtering functions.
+
: <small>UI</small> [[API ChatFrame_GetMessageEventFilters|ChatFrame_GetMessageEventFilters]](<span class="apiarg">event</span>) - Retreive the list of chat message filtering functions.
: <small>UI</small> [[API ChatFrame_OnHyperlinkShow|ChatFrame_OnHyperlinkShow]](<span style="font-size:smaller; color:#ecbc2a">reference, link, button</span>) - Called when the user clicks on a chatlink.
+
: <small>UI</small> [[API ChatFrame_OnHyperlinkShow|ChatFrame_OnHyperlinkShow]](<span class="apiarg">reference, link, button</span>) - Called when the user clicks on a chatlink.
: <small>UI</small> [[API ChatFrame_RemoveMessageEventFilter|ChatFrame_RemoveMessageEventFilter]](<span style="font-size:smaller; color:#ecbc2a">event, filterFunc</span>) - Unregister a chat message filtering function.
+
: <small>UI</small> [[API ChatFrame_RemoveMessageEventFilter|ChatFrame_RemoveMessageEventFilter]](<span class="apiarg">event, filterFunc</span>) - Unregister a chat message filtering function.
   
 
==== AddOn Messages ====
 
==== AddOn Messages ====
: [[API C_ChatInfo.GetRegisteredAddonMessagePrefixes|C_ChatInfo.GetRegisteredAddonMessagePrefixes]]() : <span style="font-size:smaller; color:#4ec9b0">registeredPrefixes</span> - Returns addon message prefixes the client is currently registered to receive.
+
: [[API C_ChatInfo.GetRegisteredAddonMessagePrefixes|C_ChatInfo.GetRegisteredAddonMessagePrefixes]]() : <span class="apiret">registeredPrefixes</span> - Returns addon message prefixes the client is currently registered to receive.
: [[API C_ChatInfo.IsAddonMessagePrefixRegistered|C_ChatInfo.IsAddonMessagePrefixRegistered]](<span style="font-size:smaller; color:#ecbc2a">prefix</span>) : <span style="font-size:smaller; color:#4ec9b0">isRegistered</span> - Returns whether the prefix is registered.
+
: [[API C_ChatInfo.IsAddonMessagePrefixRegistered|C_ChatInfo.IsAddonMessagePrefixRegistered]](<span class="apiarg">prefix</span>) : <span class="apiret">isRegistered</span> - Returns whether the prefix is registered.
: [[API C_ChatInfo.RegisterAddonMessagePrefix|C_ChatInfo.RegisterAddonMessagePrefix]](<span style="font-size:smaller; color:#ecbc2a">prefix</span>) : <span style="font-size:smaller; color:#4ec9b0">successfulRequest</span> - Registers an addon message prefix.
+
: [[API C_ChatInfo.RegisterAddonMessagePrefix|C_ChatInfo.RegisterAddonMessagePrefix]](<span class="apiarg">prefix</span>) : <span class="apiret">successfulRequest</span> - Registers an addon message prefix.
: [[API C_ChatInfo.SendAddonMessage|C_ChatInfo.SendAddonMessage]](<span style="font-size:smaller; color:#ecbc2a">prefix, message [, chatType, target]</span>) : <span style="font-size:smaller; color:#4ec9b0">success</span> - Sends a message to the hidden addon channel.
+
: [[API C_ChatInfo.SendAddonMessage|C_ChatInfo.SendAddonMessage]](<span class="apiarg">prefix, message [, chatType, target]</span>) : <span class="apiret">success</span> - Sends a message to the hidden addon channel.
: [[API C_ChatInfo.SendAddonMessageLogged|C_ChatInfo.SendAddonMessageLogged]](<span style="font-size:smaller; color:#ecbc2a">prefix, message [, chatType, target]</span>) : <span style="font-size:smaller; color:#4ec9b0">success</span> - Sends a message to the hidden addon channel, the messages are logged server side.
+
: [[API C_ChatInfo.SendAddonMessageLogged|C_ChatInfo.SendAddonMessageLogged]](<span class="apiarg">prefix, message [, chatType, target]</span>) : <span class="apiret">success</span> - Sends a message to the hidden addon channel, the messages are logged server side.
   
 
==== Communities ====
 
==== Communities ====
 
[[Guild_%26_Communities|Communities]] were added in [[Patch 8.0.1]]
 
[[Guild_%26_Communities|Communities]] were added in [[Patch 8.0.1]]
: [[API C_Club.AcceptInvitation|C_Club.AcceptInvitation]](<span style="font-size:smaller; color:#ecbc2a">clubId</span>)
+
: [[API C_Club.AcceptInvitation|C_Club.AcceptInvitation]](<span class="apiarg">clubId</span>)
: [[API C_Club.AddClubStreamChatChannel|C_Club.AddClubStreamChatChannel]](<span style="font-size:smaller; color:#ecbc2a">clubId, streamId</span>)
+
: [[API C_Club.AddClubStreamChatChannel|C_Club.AddClubStreamChatChannel]](<span class="apiarg">clubId, streamId</span>)
: [[API C_Club.AdvanceStreamViewMarker|C_Club.AdvanceStreamViewMarker]](<span style="font-size:smaller; color:#ecbc2a">clubId, streamId</span>)
+
: [[API C_Club.AdvanceStreamViewMarker|C_Club.AdvanceStreamViewMarker]](<span class="apiarg">clubId, streamId</span>)
: [[API C_Club.AssignMemberRole|C_Club.AssignMemberRole]](<span style="font-size:smaller; color:#ecbc2a">clubId, memberId, roleId</span>)
+
: [[API C_Club.AssignMemberRole|C_Club.AssignMemberRole]](<span class="apiarg">clubId, memberId, roleId</span>)
: [[API C_Club.CanResolvePlayerLocationFromClubMessageData|C_Club.CanResolvePlayerLocationFromClubMessageData]](<span style="font-size:smaller; color:#ecbc2a">clubId, streamId, epoch, position</span>) : <span style="font-size:smaller; color:#4ec9b0">canResolve</span>
+
: [[API C_Club.CanResolvePlayerLocationFromClubMessageData|C_Club.CanResolvePlayerLocationFromClubMessageData]](<span class="apiarg">clubId, streamId, epoch, position</span>) : <span class="apiret">canResolve</span>
 
: [[API C_Club.ClearAutoAdvanceStreamViewMarker|C_Club.ClearAutoAdvanceStreamViewMarker]]()
 
: [[API C_Club.ClearAutoAdvanceStreamViewMarker|C_Club.ClearAutoAdvanceStreamViewMarker]]()
 
: [[API C_Club.ClearClubPresenceSubscription|C_Club.ClearClubPresenceSubscription]]()
 
: [[API C_Club.ClearClubPresenceSubscription|C_Club.ClearClubPresenceSubscription]]()
: [[API C_Club.CompareBattleNetDisplayName|C_Club.CompareBattleNetDisplayName]](<span style="font-size:smaller; color:#ecbc2a">clubId, lhsMemberId, rhsMemberId</span>) : <span style="font-size:smaller; color:#4ec9b0">comparison</span>
+
: [[API C_Club.CompareBattleNetDisplayName|C_Club.CompareBattleNetDisplayName]](<span class="apiarg">clubId, lhsMemberId, rhsMemberId</span>) : <span class="apiret">comparison</span>
: [[API C_Club.CreateClub|C_Club.CreateClub]](<span style="font-size:smaller; color:#ecbc2a">name, [shortName], description, clubType, avatarId</span>)
+
: [[API C_Club.CreateClub|C_Club.CreateClub]](<span class="apiarg">name, [shortName], description, clubType, avatarId</span>)
: [[API C_Club.CreateStream|C_Club.CreateStream]](<span style="font-size:smaller; color:#ecbc2a">clubId, name, subject, leadersAndModeratorsOnly</span>)
+
: [[API C_Club.CreateStream|C_Club.CreateStream]](<span class="apiarg">clubId, name, subject, leadersAndModeratorsOnly</span>)
: [[API C_Club.CreateTicket|C_Club.CreateTicket]](<span style="font-size:smaller; color:#ecbc2a">clubId [, allowedRedeemCount, duration, defaultStreamId]</span>)
+
: [[API C_Club.CreateTicket|C_Club.CreateTicket]](<span class="apiarg">clubId [, allowedRedeemCount, duration, defaultStreamId]</span>)
: [[API C_Club.DeclineInvitation|C_Club.DeclineInvitation]](<span style="font-size:smaller; color:#ecbc2a">clubId</span>)
+
: [[API C_Club.DeclineInvitation|C_Club.DeclineInvitation]](<span class="apiarg">clubId</span>)
: [[API C_Club.DestroyClub|C_Club.DestroyClub]](<span style="font-size:smaller; color:#ecbc2a">clubId</span>)
+
: [[API C_Club.DestroyClub|C_Club.DestroyClub]](<span class="apiarg">clubId</span>)
: [[API C_Club.DestroyMessage|C_Club.DestroyMessage]](<span style="font-size:smaller; color:#ecbc2a">clubId, streamId, messageId</span>)
+
: [[API C_Club.DestroyMessage|C_Club.DestroyMessage]](<span class="apiarg">clubId, streamId, messageId</span>)
: [[API C_Club.DestroyStream|C_Club.DestroyStream]](<span style="font-size:smaller; color:#ecbc2a">clubId, streamId</span>)
+
: [[API C_Club.DestroyStream|C_Club.DestroyStream]](<span class="apiarg">clubId, streamId</span>)
: [[API C_Club.DestroyTicket|C_Club.DestroyTicket]](<span style="font-size:smaller; color:#ecbc2a">clubId, ticketId</span>)
+
: [[API C_Club.DestroyTicket|C_Club.DestroyTicket]](<span class="apiarg">clubId, ticketId</span>)
: [[API C_Club.EditClub|C_Club.EditClub]](<span style="font-size:smaller; color:#ecbc2a">clubId [, name, shortName, description, avatarId, broadcast]</span>)
+
: [[API C_Club.EditClub|C_Club.EditClub]](<span class="apiarg">clubId [, name, shortName, description, avatarId, broadcast]</span>)
: [[API C_Club.EditMessage|C_Club.EditMessage]](<span style="font-size:smaller; color:#ecbc2a">clubId, streamId, messageId, message</span>)
+
: [[API C_Club.EditMessage|C_Club.EditMessage]](<span class="apiarg">clubId, streamId, messageId, message</span>)
: [[API C_Club.EditStream|C_Club.EditStream]](<span style="font-size:smaller; color:#ecbc2a">clubId, streamId [, name, subject, leadersAndModeratorsOnly]</span>)
+
: [[API C_Club.EditStream|C_Club.EditStream]](<span class="apiarg">clubId, streamId [, name, subject, leadersAndModeratorsOnly]</span>)
 
: [[API C_Club.Flush|C_Club.Flush]]()
 
: [[API C_Club.Flush|C_Club.Flush]]()
  +
: [[API C_Club.FocusCommunityStreams|C_Club.FocusCommunityStreams]]()
: [[API C_Club.FocusStream|C_Club.FocusStream]](<span style="font-size:smaller; color:#ecbc2a">clubId, streamId</span>) : <span style="font-size:smaller; color:#4ec9b0">focused</span>
 
: [[API C_Club.GetAssignableRoles|C_Club.GetAssignableRoles]](<span style="font-size:smaller; color:#ecbc2a">clubId, memberId</span>) : <span style="font-size:smaller; color:#4ec9b0">assignableRoles</span>
+
: [[API C_Club.FocusStream|C_Club.FocusStream]](<span class="apiarg">clubId, streamId</span>) : <span class="apiret">focused</span>
: [[API C_Club.GetAvatarIdList|C_Club.GetAvatarIdList]](<span style="font-size:smaller; color:#ecbc2a">clubType</span>) : <span style="font-size:smaller; color:#4ec9b0">avatarIds</span>
+
: [[API C_Club.GetAssignableRoles|C_Club.GetAssignableRoles]](<span class="apiarg">clubId, memberId</span>) : <span class="apiret">assignableRoles</span>
: [[API C_Club.GetClubCapacity|C_Club.GetClubCapacity]]() : <span style="font-size:smaller; color:#4ec9b0">capacity</span>
+
: [[API C_Club.GetAvatarIdList|C_Club.GetAvatarIdList]](<span class="apiarg">clubType</span>) : <span class="apiret">avatarIds</span>
: [[API C_Club.GetClubInfo|C_Club.GetClubInfo]](<span style="font-size:smaller; color:#ecbc2a">clubId</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_Club.GetClubCapacity|C_Club.GetClubCapacity]]() : <span class="apiret">capacity</span>
: [[API C_Club.GetClubLimits|C_Club.GetClubLimits]](<span style="font-size:smaller; color:#ecbc2a">clubType</span>) : <span style="font-size:smaller; color:#4ec9b0">clubLimits</span>
+
: [[API C_Club.GetClubInfo|C_Club.GetClubInfo]](<span class="apiarg">clubId</span>) : <span class="apiret">info</span>
: [[API C_Club.GetClubMembers|C_Club.GetClubMembers]](<span style="font-size:smaller; color:#ecbc2a">clubId [, streamId]</span>) : <span style="font-size:smaller; color:#4ec9b0">members</span>
+
: [[API C_Club.GetClubLimits|C_Club.GetClubLimits]](<span class="apiarg">clubType</span>) : <span class="apiret">clubLimits</span>
: [[API C_Club.GetClubPrivileges|C_Club.GetClubPrivileges]](<span style="font-size:smaller; color:#ecbc2a">clubId</span>) : <span style="font-size:smaller; color:#4ec9b0">privilegeInfo</span>
+
: [[API C_Club.GetClubMembers|C_Club.GetClubMembers]](<span class="apiarg">clubId [, streamId]</span>) : <span class="apiret">members</span>
: [[API C_Club.GetClubStreamNotificationSettings|C_Club.GetClubStreamNotificationSettings]](<span style="font-size:smaller; color:#ecbc2a">clubId</span>) : <span style="font-size:smaller; color:#4ec9b0">settings</span>
+
: [[API C_Club.GetClubPrivileges|C_Club.GetClubPrivileges]](<span class="apiarg">clubId</span>) : <span class="apiret">privilegeInfo</span>
: [[API C_Club.GetCommunityNameResultText|C_Club.GetCommunityNameResultText]](<span style="font-size:smaller; color:#ecbc2a">result</span>) : <span style="font-size:smaller; color:#4ec9b0">errorCode</span>
+
: [[API C_Club.GetClubStreamNotificationSettings|C_Club.GetClubStreamNotificationSettings]](<span class="apiarg">clubId</span>) : <span class="apiret">settings</span>
: [[API C_Club.GetGuildClubId|C_Club.GetGuildClubId]]() : <span style="font-size:smaller; color:#4ec9b0">guildClubId</span>
+
: [[API C_Club.GetCommunityNameResultText|C_Club.GetCommunityNameResultText]](<span class="apiarg">result</span>) : <span class="apiret">errorCode</span>
: [[API C_Club.GetInfoFromLastCommunityChatLine|C_Club.GetInfoFromLastCommunityChatLine]]() : <span style="font-size:smaller; color:#4ec9b0">messageInfo, clubId, streamId, clubType</span>
+
: [[API C_Club.GetGuildClubId|C_Club.GetGuildClubId]]() : <span class="apiret">guildClubId</span>
  +
: [[API C_Club.GetInfoFromLastCommunityChatLine|C_Club.GetInfoFromLastCommunityChatLine]]() : <span class="apiret">messageInfo, clubId, streamId, clubType</span>
: [[API C_Club.GetInvitationCandidates|C_Club.GetInvitationCandidates]](<span style="font-size:smaller; color:#ecbc2a">[filter], [maxResults], [cursorPosition], [allowFullMatch], clubId</span>) : <span style="font-size:smaller; color:#4ec9b0">candidates</span>
 
: [[API C_Club.GetInvitationInfo|C_Club.GetInvitationInfo]](<span style="font-size:smaller; color:#ecbc2a">clubId</span>) : <span style="font-size:smaller; color:#4ec9b0">invitation</span>
+
: [[API C_Club.GetInvitationCandidates|C_Club.GetInvitationCandidates]](<span class="apiarg">[filter], [maxResults], [cursorPosition], [allowFullMatch], clubId</span>) : <span class="apiret">candidates</span>
: [[API C_Club.GetInvitationsForClub|C_Club.GetInvitationsForClub]](<span style="font-size:smaller; color:#ecbc2a">clubId</span>) : <span style="font-size:smaller; color:#4ec9b0">invitations</span>
+
: [[API C_Club.GetInvitationInfo|C_Club.GetInvitationInfo]](<span class="apiarg">clubId</span>) : <span class="apiret">invitation</span>
: [[API C_Club.GetInvitationsForSelf|C_Club.GetInvitationsForSelf]]() : <span style="font-size:smaller; color:#4ec9b0">invitations</span>
+
: [[API C_Club.GetInvitationsForClub|C_Club.GetInvitationsForClub]](<span class="apiarg">clubId</span>) : <span class="apiret">invitations</span>
: [[API C_Club.GetLastTicketResponse|C_Club.GetLastTicketResponse]](<span style="font-size:smaller; color:#ecbc2a">ticket</span>) : <span style="font-size:smaller; color:#4ec9b0">error, info, showError</span>
+
: [[API C_Club.GetInvitationsForSelf|C_Club.GetInvitationsForSelf]]() : <span class="apiret">invitations</span>
: [[API C_Club.GetMemberInfo|C_Club.GetMemberInfo]](<span style="font-size:smaller; color:#ecbc2a">clubId, memberId</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_Club.GetLastTicketResponse|C_Club.GetLastTicketResponse]](<span class="apiarg">ticket</span>) : <span class="apiret">error, info, showError</span>
: [[API C_Club.GetMemberInfoForSelf|C_Club.GetMemberInfoForSelf]](<span style="font-size:smaller; color:#ecbc2a">clubId</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_Club.GetMemberInfo|C_Club.GetMemberInfo]](<span class="apiarg">clubId, memberId</span>) : <span class="apiret">info</span>
: [[API C_Club.GetMessageInfo|C_Club.GetMessageInfo]](<span style="font-size:smaller; color:#ecbc2a">clubId, streamId, messageId</span>) : <span style="font-size:smaller; color:#4ec9b0">message</span>
+
: [[API C_Club.GetMemberInfoForSelf|C_Club.GetMemberInfoForSelf]](<span class="apiarg">clubId</span>) : <span class="apiret">info</span>
: [[API C_Club.GetMessageRanges|C_Club.GetMessageRanges]](<span style="font-size:smaller; color:#ecbc2a">clubId, streamId</span>) : <span style="font-size:smaller; color:#4ec9b0">ranges</span>
+
: [[API C_Club.GetMessageInfo|C_Club.GetMessageInfo]](<span class="apiarg">clubId, streamId, messageId</span>) : <span class="apiret">message</span>
: [[API C_Club.GetMessagesBefore|C_Club.GetMessagesBefore]](<span style="font-size:smaller; color:#ecbc2a">clubId, streamId, newest, count</span>) : <span style="font-size:smaller; color:#4ec9b0">messages</span>
+
: [[API C_Club.GetMessageRanges|C_Club.GetMessageRanges]](<span class="apiarg">clubId, streamId</span>) : <span class="apiret">ranges</span>
: [[API C_Club.GetMessagesInRange|C_Club.GetMessagesInRange]](<span style="font-size:smaller; color:#ecbc2a">clubId, streamId, oldest, newest</span>) : <span style="font-size:smaller; color:#4ec9b0">messages</span>
+
: [[API C_Club.GetMessagesBefore|C_Club.GetMessagesBefore]](<span class="apiarg">clubId, streamId, newest, count</span>) : <span class="apiret">messages</span>
: [[API C_Club.GetStreamInfo|C_Club.GetStreamInfo]](<span style="font-size:smaller; color:#ecbc2a">clubId, streamId</span>) : <span style="font-size:smaller; color:#4ec9b0">streamInfo</span>
+
: [[API C_Club.GetMessagesInRange|C_Club.GetMessagesInRange]](<span class="apiarg">clubId, streamId, oldest, newest</span>) : <span class="apiret">messages</span>
: [[API C_Club.GetStreamViewMarker|C_Club.GetStreamViewMarker]](<span style="font-size:smaller; color:#ecbc2a">clubId, streamId</span>) : <span style="font-size:smaller; color:#4ec9b0">lastReadTime</span>
+
: [[API C_Club.GetStreamInfo|C_Club.GetStreamInfo]](<span class="apiarg">clubId, streamId</span>) : <span class="apiret">streamInfo</span>
: [[API C_Club.GetStreams|C_Club.GetStreams]](<span style="font-size:smaller; color:#ecbc2a">clubId</span>) : <span style="font-size:smaller; color:#4ec9b0">streams</span>
+
: [[API C_Club.GetStreams|C_Club.GetStreams]](<span class="apiarg">clubId</span>) : <span class="apiret">streams</span>
: [[API C_Club.GetSubscribedClubs|C_Club.GetSubscribedClubs]]() : <span style="font-size:smaller; color:#4ec9b0">clubs</span>
+
: [[API C_Club.GetStreamViewMarker|C_Club.GetStreamViewMarker]](<span class="apiarg">clubId, streamId</span>) : <span class="apiret">lastReadTime</span>
: [[API C_Club.GetTickets|C_Club.GetTickets]](<span style="font-size:smaller; color:#ecbc2a">clubId</span>) : <span style="font-size:smaller; color:#4ec9b0">tickets</span>
+
: [[API C_Club.GetSubscribedClubs|C_Club.GetSubscribedClubs]]() : <span class="apiret">clubs</span>
: [[API C_Club.IsAccountMuted|C_Club.IsAccountMuted]](<span style="font-size:smaller; color:#ecbc2a">clubId</span>) : <span style="font-size:smaller; color:#4ec9b0">accountMuted</span>
+
: [[API C_Club.GetTickets|C_Club.GetTickets]](<span class="apiarg">clubId</span>) : <span class="apiret">tickets</span>
: [[API C_Club.IsBeginningOfStream|C_Club.IsBeginningOfStream]](<span style="font-size:smaller; color:#ecbc2a">clubId, streamId, messageId</span>) : <span style="font-size:smaller; color:#4ec9b0">isBeginningOfStream</span>
+
: [[API C_Club.IsAccountMuted|C_Club.IsAccountMuted]](<span class="apiarg">clubId</span>) : <span class="apiret">accountMuted</span>
: [[API C_Club.IsEnabled|C_Club.IsEnabled]]() : <span style="font-size:smaller; color:#4ec9b0">clubsEnabled</span>
+
: [[API C_Club.IsBeginningOfStream|C_Club.IsBeginningOfStream]](<span class="apiarg">clubId, streamId, messageId</span>) : <span class="apiret">isBeginningOfStream</span>
: [[API C_Club.IsRestricted|C_Club.IsRestricted]]() : <span style="font-size:smaller; color:#4ec9b0">restrictionReason</span>
+
: [[API C_Club.IsEnabled|C_Club.IsEnabled]]() : <span class="apiret">clubsEnabled</span>
: [[API C_Club.IsSubscribedToStream|C_Club.IsSubscribedToStream]](<span style="font-size:smaller; color:#ecbc2a">clubId, streamId</span>) : <span style="font-size:smaller; color:#4ec9b0">subscribed</span>
+
: [[API C_Club.IsRestricted|C_Club.IsRestricted]]() : <span class="apiret">restrictionReason</span>
: [[API C_Club.KickMember|C_Club.KickMember]](<span style="font-size:smaller; color:#ecbc2a">clubId, memberId</span>)
+
: [[API C_Club.IsSubscribedToStream|C_Club.IsSubscribedToStream]](<span class="apiarg">clubId, streamId</span>) : <span class="apiret">subscribed</span>
: [[API C_Club.LeaveClub|C_Club.LeaveClub]](<span style="font-size:smaller; color:#ecbc2a">clubId</span>)
+
: [[API C_Club.KickMember|C_Club.KickMember]](<span class="apiarg">clubId, memberId</span>)
: [[API C_Club.RedeemTicket|C_Club.RedeemTicket]](<span style="font-size:smaller; color:#ecbc2a">ticketId</span>)
+
: [[API C_Club.LeaveClub|C_Club.LeaveClub]](<span class="apiarg">clubId</span>)
: [[API C_Club.RequestInvitationsForClub|C_Club.RequestInvitationsForClub]](<span style="font-size:smaller; color:#ecbc2a">clubId</span>)
+
: [[API C_Club.RedeemTicket|C_Club.RedeemTicket]](<span class="apiarg">ticketId</span>)
: [[API C_Club.RequestMoreMessagesBefore|C_Club.RequestMoreMessagesBefore]](<span style="font-size:smaller; color:#ecbc2a">clubId, streamId [, messageId, count]</span>) : <span style="font-size:smaller; color:#4ec9b0">alreadyHasMessages</span>
+
: [[API C_Club.RequestInvitationsForClub|C_Club.RequestInvitationsForClub]](<span class="apiarg">clubId</span>)
: [[API C_Club.RequestTicket|C_Club.RequestTicket]](<span style="font-size:smaller; color:#ecbc2a">ticketId</span>)
+
: [[API C_Club.RequestMoreMessagesBefore|C_Club.RequestMoreMessagesBefore]](<span class="apiarg">clubId, streamId [, messageId, count]</span>) : <span class="apiret">alreadyHasMessages</span>
: [[API C_Club.RequestTickets|C_Club.RequestTickets]](<span style="font-size:smaller; color:#ecbc2a">clubId</span>)
+
: [[API C_Club.RequestTicket|C_Club.RequestTicket]](<span class="apiarg">ticketId</span>)
: [[API C_Club.RevokeInvitation|C_Club.RevokeInvitation]](<span style="font-size:smaller; color:#ecbc2a">clubId, memberId</span>)
+
: [[API C_Club.RequestTickets|C_Club.RequestTickets]](<span class="apiarg">clubId</span>)
: [[API C_Club.SendBattleTagFriendRequest|C_Club.SendBattleTagFriendRequest]](<span style="font-size:smaller; color:#ecbc2a">guildClubId, memberId</span>)
+
: [[API C_Club.RevokeInvitation|C_Club.RevokeInvitation]](<span class="apiarg">clubId, memberId</span>)
: [[API C_Club.SendCharacterInvitation|C_Club.SendCharacterInvitation]](<span style="font-size:smaller; color:#ecbc2a">clubId, character</span>)
+
: [[API C_Club.SendBattleTagFriendRequest|C_Club.SendBattleTagFriendRequest]](<span class="apiarg">guildClubId, memberId</span>)
: [[API C_Club.SendInvitation|C_Club.SendInvitation]](<span style="font-size:smaller; color:#ecbc2a">clubId, memberId</span>)
+
: [[API C_Club.SendCharacterInvitation|C_Club.SendCharacterInvitation]](<span class="apiarg">clubId, character</span>)
: [[API C_Club.SendMessage|C_Club.SendMessage]](<span style="font-size:smaller; color:#ecbc2a">clubId, streamId, message</span>)
+
: [[API C_Club.SendInvitation|C_Club.SendInvitation]](<span class="apiarg">clubId, memberId</span>)
: [[API C_Club.SetAutoAdvanceStreamViewMarker|C_Club.SetAutoAdvanceStreamViewMarker]](<span style="font-size:smaller; color:#ecbc2a">clubId, streamId</span>)
+
: [[API C_Club.SendMessage|C_Club.SendMessage]](<span class="apiarg">clubId, streamId, message</span>)
: [[API C_Club.SetAvatarTexture|C_Club.SetAvatarTexture]](<span style="font-size:smaller; color:#ecbc2a">texture, avatarId, clubType</span>)
+
: [[API C_Club.SetAutoAdvanceStreamViewMarker|C_Club.SetAutoAdvanceStreamViewMarker]](<span class="apiarg">clubId, streamId</span>)
: [[API C_Club.SetClubMemberNote|C_Club.SetClubMemberNote]](<span style="font-size:smaller; color:#ecbc2a">clubId, memberId, note</span>)
+
: [[API C_Club.SetAvatarTexture|C_Club.SetAvatarTexture]](<span class="apiarg">texture, avatarId, clubType</span>)
: [[API C_Club.SetClubPresenceSubscription|C_Club.SetClubPresenceSubscription]](<span style="font-size:smaller; color:#ecbc2a">clubId</span>)
+
: [[API C_Club.SetClubMemberNote|C_Club.SetClubMemberNote]](<span class="apiarg">clubId, memberId, note</span>)
: [[API C_Club.SetClubStreamNotificationSettings|C_Club.SetClubStreamNotificationSettings]](<span style="font-size:smaller; color:#ecbc2a">clubId, settings</span>)
+
: [[API C_Club.SetClubPresenceSubscription|C_Club.SetClubPresenceSubscription]](<span class="apiarg">clubId</span>)
: [[API C_Club.SetFavorite|C_Club.SetFavorite]](<span style="font-size:smaller; color:#ecbc2a">clubId, isFavorite</span>)
+
: [[API C_Club.SetClubStreamNotificationSettings|C_Club.SetClubStreamNotificationSettings]](<span class="apiarg">clubId, settings</span>)
: [[API C_Club.SetSocialQueueingEnabled|C_Club.SetSocialQueueingEnabled]](<span style="font-size:smaller; color:#ecbc2a">clubId, enabled</span>)
+
: [[API C_Club.SetFavorite|C_Club.SetFavorite]](<span class="apiarg">clubId, isFavorite</span>)
: [[API C_Club.ShouldAllowClubType|C_Club.ShouldAllowClubType]](<span style="font-size:smaller; color:#ecbc2a">clubType</span>) : <span style="font-size:smaller; color:#4ec9b0">clubTypeIsAllowed</span>
+
: [[API C_Club.SetSocialQueueingEnabled|C_Club.SetSocialQueueingEnabled]](<span class="apiarg">clubId, enabled</span>)
: [[API C_Club.UnfocusStream|C_Club.UnfocusStream]](<span style="font-size:smaller; color:#ecbc2a">clubId, streamId</span>)
+
: [[API C_Club.ShouldAllowClubType|C_Club.ShouldAllowClubType]](<span class="apiarg">clubType</span>) : <span class="apiret">clubTypeIsAllowed</span>
: [[API C_Club.ValidateText|C_Club.ValidateText]](<span style="font-size:smaller; color:#ecbc2a">clubType, text, clubFieldType</span>) : <span style="font-size:smaller; color:#4ec9b0">result</span>
+
: [[API C_Club.UnfocusAllStreams|C_Club.UnfocusAllStreams]](<span class="apiarg">unsubscribe</span>)
  +
: [[API C_Club.UnfocusStream|C_Club.UnfocusStream]](<span class="apiarg">clubId, streamId</span>)
  +
: [[API C_Club.ValidateText|C_Club.ValidateText]](<span class="apiarg">clubType, text, clubFieldType</span>) : <span class="apiret">result</span>
 
: [[API C_Cursor.DropCursorCommunitiesStream|C_Cursor.DropCursorCommunitiesStream]]()
 
: [[API C_Cursor.DropCursorCommunitiesStream|C_Cursor.DropCursorCommunitiesStream]]()
: [[API C_Cursor.GetCursorCommunitiesStream|C_Cursor.GetCursorCommunitiesStream]]() : <span style="font-size:smaller; color:#4ec9b0">clubId, streamId</span>
+
: [[API C_Cursor.GetCursorCommunitiesStream|C_Cursor.GetCursorCommunitiesStream]]() : <span class="apiret">clubId, streamId</span>
: [[API C_Cursor.GetCursorItem|C_Cursor.GetCursorItem]]() : <span style="font-size:smaller; color:#4ec9b0">item</span>
+
: [[API C_Cursor.GetCursorItem|C_Cursor.GetCursorItem]]() : <span class="apiret">item</span>
: [[API C_Cursor.SetCursorCommunitiesStream|C_Cursor.SetCursorCommunitiesStream]](<span style="font-size:smaller; color:#ecbc2a">clubId, streamId</span>)
+
: [[API C_Cursor.SetCursorCommunitiesStream|C_Cursor.SetCursorCommunitiesStream]](<span class="apiarg">clubId, streamId</span>)
 
The Club Finder was added in [[Patch 8.2.0]] and enabled in [[Patch 8.2.5]]
 
The Club Finder was added in [[Patch 8.2.0]] and enabled in [[Patch 8.2.5]]
  +
: [[API C_ClubFinder.ApplicantAcceptClubInvite|C_ClubFinder.ApplicantAcceptClubInvite]](<span class="apiarg">clubFinderGUID</span>)
: [[API C_LFGuildInfo.GetRecruitingGuildTabardInfo|C_LFGuildInfo.GetRecruitingGuildTabardInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) : <span style="font-size:smaller; color:#4ec9b0">tabardInfo</span>
 
: [[API C_ClubFinder.ApplicantAcceptClubInvite|C_ClubFinder.ApplicantAcceptClubInvite]](<span style="font-size:smaller; color:#ecbc2a">clubFinderGUID</span>)
+
: [[API C_ClubFinder.ApplicantDeclineClubInvite|C_ClubFinder.ApplicantDeclineClubInvite]](<span class="apiarg">clubFinderGUID</span>)
: [[API C_ClubFinder.ApplicantDeclineClubInvite|C_ClubFinder.ApplicantDeclineClubInvite]](<span style="font-size:smaller; color:#ecbc2a">clubFinderGUID</span>)
+
: [[API C_ClubFinder.CancelMembershipRequest|C_ClubFinder.CancelMembershipRequest]](<span class="apiarg">clubFinderGUID</span>)
: [[API C_ClubFinder.CancelMembershipRequest|C_ClubFinder.CancelMembershipRequest]](<span style="font-size:smaller; color:#ecbc2a">clubFinderGUID</span>)
 
 
: [[API C_ClubFinder.CheckAllPlayerApplicantSettings|C_ClubFinder.CheckAllPlayerApplicantSettings]]()
 
: [[API C_ClubFinder.CheckAllPlayerApplicantSettings|C_ClubFinder.CheckAllPlayerApplicantSettings]]()
 
: [[API C_ClubFinder.ClearAllFinderCache|C_ClubFinder.ClearAllFinderCache]]()
 
: [[API C_ClubFinder.ClearAllFinderCache|C_ClubFinder.ClearAllFinderCache]]()
 
: [[API C_ClubFinder.ClearClubApplicantsCache|C_ClubFinder.ClearClubApplicantsCache]]()
 
: [[API C_ClubFinder.ClearClubApplicantsCache|C_ClubFinder.ClearClubApplicantsCache]]()
 
: [[API C_ClubFinder.ClearClubFinderPostingsCache|C_ClubFinder.ClearClubFinderPostingsCache]]()
 
: [[API C_ClubFinder.ClearClubFinderPostingsCache|C_ClubFinder.ClearClubFinderPostingsCache]]()
: [[API C_ClubFinder.DoesPlayerBelongToClubFromClubGUID|C_ClubFinder.DoesPlayerBelongToClubFromClubGUID]](<span style="font-size:smaller; color:#ecbc2a">clubFinderGUID</span>) : <span style="font-size:smaller; color:#4ec9b0">belongsToClub</span>
+
: [[API C_ClubFinder.DoesPlayerBelongToClubFromClubGUID|C_ClubFinder.DoesPlayerBelongToClubFromClubGUID]](<span class="apiarg">clubFinderGUID</span>) : <span class="apiret">belongsToClub</span>
: [[API C_ClubFinder.GetClubFinderDisableReason|C_ClubFinder.GetClubFinderDisableReason]]() : <span style="font-size:smaller; color:#4ec9b0">disableReason</span>
+
: [[API C_ClubFinder.GetClubFinderDisableReason|C_ClubFinder.GetClubFinderDisableReason]]() : <span class="apiret">disableReason</span>
: [[API C_ClubFinder.GetClubRecruitmentSettings|C_ClubFinder.GetClubRecruitmentSettings]]() : <span style="font-size:smaller; color:#4ec9b0">settings</span>
+
: [[API C_ClubFinder.GetClubRecruitmentSettings|C_ClubFinder.GetClubRecruitmentSettings]]() : <span class="apiret">settings</span>
: [[API C_ClubFinder.GetClubTypeFromFinderGUID|C_ClubFinder.GetClubTypeFromFinderGUID]](<span style="font-size:smaller; color:#ecbc2a">clubFinderGUID</span>) : <span style="font-size:smaller; color:#4ec9b0">clubType</span>
+
: [[API C_ClubFinder.GetClubTypeFromFinderGUID|C_ClubFinder.GetClubTypeFromFinderGUID]](<span class="apiarg">clubFinderGUID</span>) : <span class="apiret">clubType</span>
: [[API C_ClubFinder.GetFocusIndexFromFlag|C_ClubFinder.GetFocusIndexFromFlag]](<span style="font-size:smaller; color:#ecbc2a">flags</span>) : <span style="font-size:smaller; color:#4ec9b0">index</span>
+
: [[API C_ClubFinder.GetFocusIndexFromFlag|C_ClubFinder.GetFocusIndexFromFlag]](<span class="apiarg">flags</span>) : <span class="apiret">index</span>
: [[API C_ClubFinder.GetPlayerApplicantLocaleFlags|C_ClubFinder.GetPlayerApplicantLocaleFlags]]() : <span style="font-size:smaller; color:#4ec9b0">localeFlags</span>
+
: [[API C_ClubFinder.GetPlayerApplicantLocaleFlags|C_ClubFinder.GetPlayerApplicantLocaleFlags]]() : <span class="apiret">localeFlags</span>
: [[API C_ClubFinder.GetPlayerApplicantSettings|C_ClubFinder.GetPlayerApplicantSettings]]() : <span style="font-size:smaller; color:#4ec9b0">settings</span>
+
: [[API C_ClubFinder.GetPlayerApplicantSettings|C_ClubFinder.GetPlayerApplicantSettings]]() : <span class="apiret">settings</span>
: [[API C_ClubFinder.GetPlayerClubApplicationStatus|C_ClubFinder.GetPlayerClubApplicationStatus]](<span style="font-size:smaller; color:#ecbc2a">clubFinderGUID</span>) : <span style="font-size:smaller; color:#4ec9b0">clubStatus</span>
+
: [[API C_ClubFinder.GetPlayerClubApplicationStatus|C_ClubFinder.GetPlayerClubApplicationStatus]](<span class="apiarg">clubFinderGUID</span>) : <span class="apiret">clubStatus</span>
: [[API C_ClubFinder.GetPlayerSettingsFocusFlagsSelectedCount|C_ClubFinder.GetPlayerSettingsFocusFlagsSelectedCount]]() : <span style="font-size:smaller; color:#4ec9b0">focusCount</span>
+
: [[API C_ClubFinder.GetPlayerSettingsFocusFlagsSelectedCount|C_ClubFinder.GetPlayerSettingsFocusFlagsSelectedCount]]() : <span class="apiret">focusCount</span>
: [[API C_ClubFinder.GetPostingIDFromClubFinderGUID|C_ClubFinder.GetPostingIDFromClubFinderGUID]](<span style="font-size:smaller; color:#ecbc2a">clubFinderGUID</span>) : <span style="font-size:smaller; color:#4ec9b0">postingID</span>
+
: [[API C_ClubFinder.GetPostingIDFromClubFinderGUID|C_ClubFinder.GetPostingIDFromClubFinderGUID]](<span class="apiarg">clubFinderGUID</span>) : <span class="apiret">postingID</span>
: [[API C_ClubFinder.GetRecruitingClubInfoFromClubID|C_ClubFinder.GetRecruitingClubInfoFromClubID]](<span style="font-size:smaller; color:#ecbc2a">clubId</span>) : <span style="font-size:smaller; color:#4ec9b0">clubInfo</span>
+
: [[API C_ClubFinder.GetRecruitingClubInfoFromClubID|C_ClubFinder.GetRecruitingClubInfoFromClubID]](<span class="apiarg">clubId</span>) : <span class="apiret">clubInfo</span>
: [[API C_ClubFinder.GetRecruitingClubInfoFromFinderGUID|C_ClubFinder.GetRecruitingClubInfoFromFinderGUID]](<span style="font-size:smaller; color:#ecbc2a">clubFinderGUID</span>) : <span style="font-size:smaller; color:#4ec9b0">clubInfo</span>
+
: [[API C_ClubFinder.GetRecruitingClubInfoFromFinderGUID|C_ClubFinder.GetRecruitingClubInfoFromFinderGUID]](<span class="apiarg">clubFinderGUID</span>) : <span class="apiret">clubInfo</span>
: [[API C_ClubFinder.GetStatusOfPostingFromClubId|C_ClubFinder.GetStatusOfPostingFromClubId]](<span style="font-size:smaller; color:#ecbc2a">postingID</span>) : <span style="font-size:smaller; color:#4ec9b0">postingFlags</span>
+
: [[API C_ClubFinder.GetStatusOfPostingFromClubId|C_ClubFinder.GetStatusOfPostingFromClubId]](<span class="apiarg">postingID</span>) : <span class="apiret">postingFlags</span>
: [[API C_ClubFinder.GetTotalMatchingCommunityListSize|C_ClubFinder.GetTotalMatchingCommunityListSize]]() : <span style="font-size:smaller; color:#4ec9b0">totalSize</span>
+
: [[API C_ClubFinder.GetTotalMatchingCommunityListSize|C_ClubFinder.GetTotalMatchingCommunityListSize]]() : <span class="apiret">totalSize</span>
: [[API C_ClubFinder.GetTotalMatchingGuildListSize|C_ClubFinder.GetTotalMatchingGuildListSize]]() : <span style="font-size:smaller; color:#4ec9b0">totalSize</span>
+
: [[API C_ClubFinder.GetTotalMatchingGuildListSize|C_ClubFinder.GetTotalMatchingGuildListSize]]() : <span class="apiret">totalSize</span>
: [[API C_ClubFinder.HasAlreadyAppliedToLinkedPosting|C_ClubFinder.HasAlreadyAppliedToLinkedPosting]](<span style="font-size:smaller; color:#ecbc2a">clubFinderGUID</span>) : <span style="font-size:smaller; color:#4ec9b0">hasAlreadyApplied</span>
+
: [[API C_ClubFinder.HasAlreadyAppliedToLinkedPosting|C_ClubFinder.HasAlreadyAppliedToLinkedPosting]](<span class="apiarg">clubFinderGUID</span>) : <span class="apiret">hasAlreadyApplied</span>
: [[API C_ClubFinder.HasPostingBeenDelisted|C_ClubFinder.HasPostingBeenDelisted]](<span style="font-size:smaller; color:#ecbc2a">postingID</span>) : <span style="font-size:smaller; color:#4ec9b0">postingDelisted</span>
+
: [[API C_ClubFinder.HasPostingBeenDelisted|C_ClubFinder.HasPostingBeenDelisted]](<span class="apiarg">postingID</span>) : <span class="apiret">postingDelisted</span>
: [[API C_ClubFinder.IsEnabled|C_ClubFinder.IsEnabled]]() : <span style="font-size:smaller; color:#4ec9b0">isEnabled</span>
+
: [[API C_ClubFinder.IsEnabled|C_ClubFinder.IsEnabled]]() : <span class="apiret">isEnabled</span>
: [[API C_ClubFinder.IsListingEnabledFromFlags|C_ClubFinder.IsListingEnabledFromFlags]](<span style="font-size:smaller; color:#ecbc2a">flags</span>) : <span style="font-size:smaller; color:#4ec9b0">isListed</span>
+
: [[API C_ClubFinder.IsListingEnabledFromFlags|C_ClubFinder.IsListingEnabledFromFlags]](<span class="apiarg">flags</span>) : <span class="apiret">isListed</span>
: [[API C_ClubFinder.IsPostingBanned|C_ClubFinder.IsPostingBanned]](<span style="font-size:smaller; color:#ecbc2a">postingID</span>) : <span style="font-size:smaller; color:#4ec9b0">postingBanned</span>
+
: [[API C_ClubFinder.IsPostingBanned|C_ClubFinder.IsPostingBanned]](<span class="apiarg">postingID</span>) : <span class="apiret">postingBanned</span>
: [[API C_ClubFinder.LookupClubPostingFromClubFinderGUID|C_ClubFinder.LookupClubPostingFromClubFinderGUID]](<span style="font-size:smaller; color:#ecbc2a">clubFinderGUID, isLinkedPosting</span>)
+
: [[API C_ClubFinder.LookupClubPostingFromClubFinderGUID|C_ClubFinder.LookupClubPostingFromClubFinderGUID]](<span class="apiarg">clubFinderGUID, isLinkedPosting</span>)
: [[API C_ClubFinder.PlayerGetClubInvitationList|C_ClubFinder.PlayerGetClubInvitationList]]() : <span style="font-size:smaller; color:#4ec9b0">inviteList</span>
+
: [[API C_ClubFinder.PlayerGetClubInvitationList|C_ClubFinder.PlayerGetClubInvitationList]]() : <span class="apiret">inviteList</span>
: [[API C_ClubFinder.PlayerRequestPendingClubsList|C_ClubFinder.PlayerRequestPendingClubsList]](<span style="font-size:smaller; color:#ecbc2a">type</span>)
+
: [[API C_ClubFinder.PlayerRequestPendingClubsList|C_ClubFinder.PlayerRequestPendingClubsList]](<span class="apiarg">type</span>)
: [[API C_ClubFinder.PlayerReturnPendingCommunitiesList|C_ClubFinder.PlayerReturnPendingCommunitiesList]]() : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_ClubFinder.PlayerReturnPendingCommunitiesList|C_ClubFinder.PlayerReturnPendingCommunitiesList]]() : <span class="apiret">info</span>
: [[API C_ClubFinder.PlayerReturnPendingGuildsList|C_ClubFinder.PlayerReturnPendingGuildsList]]() : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_ClubFinder.PlayerReturnPendingGuildsList|C_ClubFinder.PlayerReturnPendingGuildsList]]() : <span class="apiret">info</span>
: [[API C_ClubFinder.PostClub|C_ClubFinder.PostClub]](<span style="font-size:smaller; color:#ecbc2a">clubId, itemLevelRequirement, name, description, specs, type</span>) : <span style="font-size:smaller; color:#4ec9b0">succesful</span>
+
: [[API C_ClubFinder.PostClub|C_ClubFinder.PostClub]](<span class="apiarg">clubId, itemLevelRequirement, name, description, avatarId, specs, type</span>) : <span class="apiret">succesful</span>
: [[API C_ClubFinder.ReportPosting|C_ClubFinder.ReportPosting]](<span style="font-size:smaller; color:#ecbc2a">reportType, clubFinderGUID, playerGUID, complaintNote</span>)
+
: [[API C_ClubFinder.ReportPosting|C_ClubFinder.ReportPosting]](<span class="apiarg">reportType, clubFinderGUID, playerGUID, complaintNote</span>)
: [[API C_ClubFinder.RequestApplicantList|C_ClubFinder.RequestApplicantList]](<span style="font-size:smaller; color:#ecbc2a">type</span>)
+
: [[API C_ClubFinder.RequestApplicantList|C_ClubFinder.RequestApplicantList]](<span class="apiarg">type</span>)
: [[API C_ClubFinder.RequestClubsList|C_ClubFinder.RequestClubsList]](<span style="font-size:smaller; color:#ecbc2a">guildListRequested, searchString, specIDs</span>)
+
: [[API C_ClubFinder.RequestClubsList|C_ClubFinder.RequestClubsList]](<span class="apiarg">guildListRequested, searchString, specIDs</span>)
: [[API C_ClubFinder.RequestMembershipToClub|C_ClubFinder.RequestMembershipToClub]](<span style="font-size:smaller; color:#ecbc2a">clubFinderGUID, comment, specIDs</span>)
+
: [[API C_ClubFinder.RequestMembershipToClub|C_ClubFinder.RequestMembershipToClub]](<span class="apiarg">clubFinderGUID, comment, specIDs</span>)
: [[API C_ClubFinder.RequestNextCommunityPage|C_ClubFinder.RequestNextCommunityPage]](<span style="font-size:smaller; color:#ecbc2a">startingIndex, pageSize</span>)
+
: [[API C_ClubFinder.RequestNextCommunityPage|C_ClubFinder.RequestNextCommunityPage]](<span class="apiarg">startingIndex, pageSize</span>)
: [[API C_ClubFinder.RequestNextGuildPage|C_ClubFinder.RequestNextGuildPage]](<span style="font-size:smaller; color:#ecbc2a">startingIndex, pageSize</span>)
+
: [[API C_ClubFinder.RequestNextGuildPage|C_ClubFinder.RequestNextGuildPage]](<span class="apiarg">startingIndex, pageSize</span>)
: [[API C_ClubFinder.RequestPostingInformationFromClubId|C_ClubFinder.RequestPostingInformationFromClubId]](<span style="font-size:smaller; color:#ecbc2a">clubId</span>) : <span style="font-size:smaller; color:#4ec9b0">success</span>
+
: [[API C_ClubFinder.RequestPostingInformationFromClubId|C_ClubFinder.RequestPostingInformationFromClubId]](<span class="apiarg">clubId</span>) : <span class="apiret">success</span>
 
: [[API C_ClubFinder.RequestSubscribedClubPostingIDs|C_ClubFinder.RequestSubscribedClubPostingIDs]]()
 
: [[API C_ClubFinder.RequestSubscribedClubPostingIDs|C_ClubFinder.RequestSubscribedClubPostingIDs]]()
 
: [[API C_ClubFinder.ResetClubPostingMapCache|C_ClubFinder.ResetClubPostingMapCache]]()
 
: [[API C_ClubFinder.ResetClubPostingMapCache|C_ClubFinder.ResetClubPostingMapCache]]()
: [[API C_ClubFinder.RespondToApplicant|C_ClubFinder.RespondToApplicant]](<span style="font-size:smaller; color:#ecbc2a">clubFinderGUID, playerGUID, shouldAccept, requestType, playerName, forceAccept [, reported]</span>)
+
: [[API C_ClubFinder.RespondToApplicant|C_ClubFinder.RespondToApplicant]](<span class="apiarg">clubFinderGUID, playerGUID, shouldAccept, requestType, playerName, forceAccept [, reported]</span>)
: [[API C_ClubFinder.ReturnClubApplicantList|C_ClubFinder.ReturnClubApplicantList]](<span style="font-size:smaller; color:#ecbc2a">clubId</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_ClubFinder.ReturnClubApplicantList|C_ClubFinder.ReturnClubApplicantList]](<span class="apiarg">clubId</span>) : <span class="apiret">info</span>
: [[API C_ClubFinder.ReturnMatchingCommunityList|C_ClubFinder.ReturnMatchingCommunityList]]() : <span style="font-size:smaller; color:#4ec9b0">recruitingClubs</span>
+
: [[API C_ClubFinder.ReturnMatchingCommunityList|C_ClubFinder.ReturnMatchingCommunityList]]() : <span class="apiret">recruitingClubs</span>
: [[API C_ClubFinder.ReturnMatchingGuildList|C_ClubFinder.ReturnMatchingGuildList]]() : <span style="font-size:smaller; color:#4ec9b0">recruitingClubs</span>
+
: [[API C_ClubFinder.ReturnMatchingGuildList|C_ClubFinder.ReturnMatchingGuildList]]() : <span class="apiret">recruitingClubs</span>
: [[API C_ClubFinder.ReturnPendingClubApplicantList|C_ClubFinder.ReturnPendingClubApplicantList]](<span style="font-size:smaller; color:#ecbc2a">clubId</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_ClubFinder.ReturnPendingClubApplicantList|C_ClubFinder.ReturnPendingClubApplicantList]](<span class="apiarg">clubId</span>) : <span class="apiret">info</span>
: [[API C_ClubFinder.SetAllRecruitmentSettings|C_ClubFinder.SetAllRecruitmentSettings]](<span style="font-size:smaller; color:#ecbc2a">value</span>)
+
: [[API C_ClubFinder.SetAllRecruitmentSettings|C_ClubFinder.SetAllRecruitmentSettings]](<span class="apiarg">value</span>)
: [[API C_ClubFinder.SetPlayerApplicantLocaleFlags|C_ClubFinder.SetPlayerApplicantLocaleFlags]](<span style="font-size:smaller; color:#ecbc2a">localeFlags</span>)
+
: [[API C_ClubFinder.SetPlayerApplicantLocaleFlags|C_ClubFinder.SetPlayerApplicantLocaleFlags]](<span class="apiarg">localeFlags</span>)
: [[API C_ClubFinder.SetPlayerApplicantSettings|C_ClubFinder.SetPlayerApplicantSettings]](<span style="font-size:smaller; color:#ecbc2a">index, checked</span>)
+
: [[API C_ClubFinder.SetPlayerApplicantSettings|C_ClubFinder.SetPlayerApplicantSettings]](<span class="apiarg">index, checked</span>)
: [[API C_ClubFinder.SetRecruitmentLocale|C_ClubFinder.SetRecruitmentLocale]](<span style="font-size:smaller; color:#ecbc2a">locale</span>)
+
: [[API C_ClubFinder.SetRecruitmentLocale|C_ClubFinder.SetRecruitmentLocale]](<span class="apiarg">locale</span>)
: [[API C_ClubFinder.SetRecruitmentSettings|C_ClubFinder.SetRecruitmentSettings]](<span style="font-size:smaller; color:#ecbc2a">index, checked</span>)
+
: [[API C_ClubFinder.SetRecruitmentSettings|C_ClubFinder.SetRecruitmentSettings]](<span class="apiarg">index, checked</span>)
: [[API C_ClubFinder.ShouldShowClubFinder|C_ClubFinder.ShouldShowClubFinder]]() : <span style="font-size:smaller; color:#4ec9b0">shouldShow</span>
+
: [[API C_ClubFinder.ShouldShowClubFinder|C_ClubFinder.ShouldShowClubFinder]]() : <span class="apiret">shouldShow</span>
   
 
==== Reporting ====
 
==== Reporting ====
  +
: [[API C_BehavioralMessaging.SendNotificationReceipt|C_BehavioralMessaging.SendNotificationReceipt]](<span class="apiarg">dbId, openTimeSeconds, readTimeSeconds</span>)
: [[API C_ReportSystem.CanReportPlayer|C_ReportSystem.CanReportPlayer]](<span style="font-size:smaller; color:#ecbc2a">playerLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">canReport</span> - Returns if a player can be reported.
 
: [[API C_ReportSystem.CanReportPlayerForLanguage|C_ReportSystem.CanReportPlayerForLanguage]](<span style="font-size:smaller; color:#ecbc2a">playerLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">canReport</span>
+
: [[API C_ReportSystem.CanReportPlayer|C_ReportSystem.CanReportPlayer]](<span class="apiarg">playerLocation</span>) : <span class="apiret">canReport</span> - Returns if a player can be reported.
: <small>PROTECTED</small> [[API C_ReportSystem.InitiateReportPlayer|C_ReportSystem.InitiateReportPlayer]](<span style="font-size:smaller; color:#ecbc2a">complaintType [, playerLocation]</span>) : <span style="font-size:smaller; color:#4ec9b0">token</span> - Initiates a report against a player.
+
: [[API C_ReportSystem.CanReportPlayerForLanguage|C_ReportSystem.CanReportPlayerForLanguage]](<span class="apiarg">playerLocation</span>) : <span class="apiret">canReport</span>
: [[API C_ReportSystem.OpenReportPlayerDialog|C_ReportSystem.OpenReportPlayerDialog]](<span style="font-size:smaller; color:#ecbc2a">reportType, playerName [, playerLocation]</span>) - Opens a dialog for reporting a player.
+
: <small>PROTECTED</small> [[API C_ReportSystem.InitiateReportPlayer|C_ReportSystem.InitiateReportPlayer]](<span class="apiarg">complaintType [, playerLocation]</span>) : <span class="apiret">token</span> - Initiates a report against a player.
  +
: [[API C_ReportSystem.OpenReportPlayerDialog|C_ReportSystem.OpenReportPlayerDialog]](<span class="apiarg">reportType, playerName [, playerLocation]</span>) - Opens a dialog for reporting a player.
 
: [[API C_ReportSystem.ReportServerLag|C_ReportSystem.ReportServerLag]]()
 
: [[API C_ReportSystem.ReportServerLag|C_ReportSystem.ReportServerLag]]()
 
: [[API C_ReportSystem.ReportStuckInCombat|C_ReportSystem.ReportStuckInCombat]]()
 
: [[API C_ReportSystem.ReportStuckInCombat|C_ReportSystem.ReportStuckInCombat]]()
: <small>PROTECTED</small> [[API C_ReportSystem.SendReportPlayer|C_ReportSystem.SendReportPlayer]](<span style="font-size:smaller; color:#ecbc2a">token [, comment]</span>) - Sends an initiated report against a player.
+
: <small>PROTECTED</small> [[API C_ReportSystem.SendReportPlayer|C_ReportSystem.SendReportPlayer]](<span class="apiarg">token [, comment]</span>) - Sends an initiated report against a player.
: [[API C_ReportSystem.SetPendingReportPetTarget|C_ReportSystem.SetPendingReportPetTarget]](<span style="font-size:smaller; color:#ecbc2a">[target]</span>) : <span style="font-size:smaller; color:#4ec9b0">set</span> - Report a pet for an inappropriate name.
+
: [[API C_ReportSystem.SetPendingReportPetTarget|C_ReportSystem.SetPendingReportPetTarget]](<span class="apiarg">[target]</span>) : <span class="apiret">set</span> - Report a pet for an inappropriate name.
: [[API C_ReportSystem.SetPendingReportTarget|C_ReportSystem.SetPendingReportTarget]](<span style="font-size:smaller; color:#ecbc2a">[target]</span>) : <span style="font-size:smaller; color:#4ec9b0">set</span>
+
: [[API C_ReportSystem.SetPendingReportTarget|C_ReportSystem.SetPendingReportTarget]](<span class="apiarg">[target]</span>) : <span class="apiret">set</span>
: [[API C_ReportSystem.SetPendingReportTargetByGuid|C_ReportSystem.SetPendingReportTargetByGuid]](<span style="font-size:smaller; color:#ecbc2a">[guid]</span>) : <span style="font-size:smaller; color:#4ec9b0">set</span>
+
: [[API C_ReportSystem.SetPendingReportTargetByGuid|C_ReportSystem.SetPendingReportTargetByGuid]](<span class="apiarg">[guid]</span>) : <span class="apiret">set</span>
 
Restrictions
 
Restrictions
: [[API C_SocialRestrictions.IsMuted|C_SocialRestrictions.IsMuted]]() : <span style="font-size:smaller; color:#4ec9b0">isMuted</span>
+
: [[API C_SocialRestrictions.AcknowledgeRegionalChatDisabled|C_SocialRestrictions.AcknowledgeRegionalChatDisabled]]()
: [[API C_SocialRestrictions.IsSilenced|C_SocialRestrictions.IsSilenced]]() : <span style="font-size:smaller; color:#4ec9b0">isSilenced</span>
+
: [[API C_SocialRestrictions.IsChatDisabled|C_SocialRestrictions.IsChatDisabled]]() : <span class="apiret">disabled</span>
: [[API C_SocialRestrictions.IsSquelched|C_SocialRestrictions.IsSquelched]]() : <span style="font-size:smaller; color:#4ec9b0">isSquelched</span>
+
: [[API C_SocialRestrictions.IsMuted|C_SocialRestrictions.IsMuted]]() : <span class="apiret">isMuted</span>
  +
: [[API C_SocialRestrictions.IsSilenced|C_SocialRestrictions.IsSilenced]]() : <span class="apiret">isSilenced</span>
  +
: [[API C_SocialRestrictions.IsSquelched|C_SocialRestrictions.IsSquelched]]() : <span class="apiret">isSquelched</span>
  +
: [[API C_SocialRestrictions.SetChatDisabled|C_SocialRestrictions.SetChatDisabled]](<span class="apiarg">disabled</span>)
   
 
==== Voice Chat ====
 
==== Voice Chat ====
 
[[Voice Chat]] was added in [[Patch 2.2]] and reworked in [[Patch 8.0.1]]
 
[[Voice Chat]] was added in [[Patch 2.2]] and reworked in [[Patch 8.0.1]]
: [[API C_VoiceChat.ActivateChannel|C_VoiceChat.ActivateChannel]](<span style="font-size:smaller; color:#ecbc2a">channelID</span>)
+
: [[API C_VoiceChat.ActivateChannel|C_VoiceChat.ActivateChannel]](<span class="apiarg">channelID</span>)
: [[API C_VoiceChat.BeginLocalCapture|C_VoiceChat.BeginLocalCapture]](<span style="font-size:smaller; color:#ecbc2a">listenToLocalUser</span>)
+
: [[API C_VoiceChat.BeginLocalCapture|C_VoiceChat.BeginLocalCapture]](<span class="apiarg">listenToLocalUser</span>)
: [[API C_VoiceChat.CanPlayerUseVoiceChat|C_VoiceChat.CanPlayerUseVoiceChat]]() : <span style="font-size:smaller; color:#4ec9b0">canUseVoiceChat</span>
+
: [[API C_VoiceChat.CanPlayerUseVoiceChat|C_VoiceChat.CanPlayerUseVoiceChat]]() : <span class="apiret">canUseVoiceChat</span>
: [[API C_VoiceChat.CreateChannel|C_VoiceChat.CreateChannel]](<span style="font-size:smaller; color:#ecbc2a">channelDisplayName</span>) : <span style="font-size:smaller; color:#4ec9b0">status</span>
+
: [[API C_VoiceChat.CreateChannel|C_VoiceChat.CreateChannel]](<span class="apiarg">channelDisplayName</span>) : <span class="apiret">status</span>
: [[API C_VoiceChat.DeactivateChannel|C_VoiceChat.DeactivateChannel]](<span style="font-size:smaller; color:#ecbc2a">channelID</span>)
+
: [[API C_VoiceChat.DeactivateChannel|C_VoiceChat.DeactivateChannel]](<span class="apiarg">channelID</span>)
 
: [[API C_VoiceChat.EndLocalCapture|C_VoiceChat.EndLocalCapture]]()
 
: [[API C_VoiceChat.EndLocalCapture|C_VoiceChat.EndLocalCapture]]()
: [[API C_VoiceChat.GetActiveChannelID|C_VoiceChat.GetActiveChannelID]]() : <span style="font-size:smaller; color:#4ec9b0">channelID</span>
+
: [[API C_VoiceChat.GetActiveChannelID|C_VoiceChat.GetActiveChannelID]]() : <span class="apiret">channelID</span>
: [[API C_VoiceChat.GetActiveChannelType|C_VoiceChat.GetActiveChannelType]]() : <span style="font-size:smaller; color:#4ec9b0">channelType</span>
+
: [[API C_VoiceChat.GetActiveChannelType|C_VoiceChat.GetActiveChannelType]]() : <span class="apiret">channelType</span>
: [[API C_VoiceChat.GetAvailableInputDevices|C_VoiceChat.GetAvailableInputDevices]]() : <span style="font-size:smaller; color:#4ec9b0">inputDevices</span>
+
: [[API C_VoiceChat.GetAvailableInputDevices|C_VoiceChat.GetAvailableInputDevices]]() : <span class="apiret">inputDevices</span>
: [[API C_VoiceChat.GetAvailableOutputDevices|C_VoiceChat.GetAvailableOutputDevices]]() : <span style="font-size:smaller; color:#4ec9b0">outputDevices</span>
+
: [[API C_VoiceChat.GetAvailableOutputDevices|C_VoiceChat.GetAvailableOutputDevices]]() : <span class="apiret">outputDevices</span>
: [[API C_VoiceChat.GetChannel|C_VoiceChat.GetChannel]](<span style="font-size:smaller; color:#ecbc2a">channelID</span>) : <span style="font-size:smaller; color:#4ec9b0">channel</span>
+
: [[API C_VoiceChat.GetChannel|C_VoiceChat.GetChannel]](<span class="apiarg">channelID</span>) : <span class="apiret">channel</span>
: [[API C_VoiceChat.GetChannelForChannelType|C_VoiceChat.GetChannelForChannelType]](<span style="font-size:smaller; color:#ecbc2a">channelType</span>) : <span style="font-size:smaller; color:#4ec9b0">channel</span>
+
: [[API C_VoiceChat.GetChannelForChannelType|C_VoiceChat.GetChannelForChannelType]](<span class="apiarg">channelType</span>) : <span class="apiret">channel</span>
: [[API C_VoiceChat.GetChannelForCommunityStream|C_VoiceChat.GetChannelForCommunityStream]](<span style="font-size:smaller; color:#ecbc2a">clubId, streamId</span>) : <span style="font-size:smaller; color:#4ec9b0">channel</span>
+
: [[API C_VoiceChat.GetChannelForCommunityStream|C_VoiceChat.GetChannelForCommunityStream]](<span class="apiarg">clubId, streamId</span>) : <span class="apiret">channel</span>
: [[API C_VoiceChat.GetCommunicationMode|C_VoiceChat.GetCommunicationMode]]() : <span style="font-size:smaller; color:#4ec9b0">communicationMode</span>
+
: [[API C_VoiceChat.GetCommunicationMode|C_VoiceChat.GetCommunicationMode]]() : <span class="apiret">communicationMode</span>
: [[API C_VoiceChat.GetCurrentVoiceChatConnectionStatusCode|C_VoiceChat.GetCurrentVoiceChatConnectionStatusCode]]() : <span style="font-size:smaller; color:#4ec9b0">statusCode</span>
+
: [[API C_VoiceChat.GetCurrentVoiceChatConnectionStatusCode|C_VoiceChat.GetCurrentVoiceChatConnectionStatusCode]]() : <span class="apiret">statusCode</span>
: [[API C_VoiceChat.GetInputVolume|C_VoiceChat.GetInputVolume]]() : <span style="font-size:smaller; color:#4ec9b0">volume</span>
+
: [[API C_VoiceChat.GetInputVolume|C_VoiceChat.GetInputVolume]]() : <span class="apiret">volume</span>
: [[API C_VoiceChat.GetJoinClubVoiceChannelError|C_VoiceChat.GetJoinClubVoiceChannelError]](<span style="font-size:smaller; color:#ecbc2a">clubId</span>) : <span style="font-size:smaller; color:#4ec9b0">errorReason</span>
+
: [[API C_VoiceChat.GetJoinClubVoiceChannelError|C_VoiceChat.GetJoinClubVoiceChannelError]](<span class="apiarg">clubId</span>) : <span class="apiret">errorReason</span>
: [[API C_VoiceChat.GetLocalPlayerActiveChannelMemberInfo|C_VoiceChat.GetLocalPlayerActiveChannelMemberInfo]]() : <span style="font-size:smaller; color:#4ec9b0">memberInfo</span>
+
: [[API C_VoiceChat.GetLocalPlayerActiveChannelMemberInfo|C_VoiceChat.GetLocalPlayerActiveChannelMemberInfo]]() : <span class="apiret">memberInfo</span>
: [[API C_VoiceChat.GetLocalPlayerMemberID|C_VoiceChat.GetLocalPlayerMemberID]](<span style="font-size:smaller; color:#ecbc2a">channelID</span>) : <span style="font-size:smaller; color:#4ec9b0">memberID</span>
+
: [[API C_VoiceChat.GetLocalPlayerMemberID|C_VoiceChat.GetLocalPlayerMemberID]](<span class="apiarg">channelID</span>) : <span class="apiret">memberID</span>
: [[API C_VoiceChat.GetMasterVolumeScale|C_VoiceChat.GetMasterVolumeScale]]() : <span style="font-size:smaller; color:#4ec9b0">scale</span>
+
: [[API C_VoiceChat.GetMasterVolumeScale|C_VoiceChat.GetMasterVolumeScale]]() : <span class="apiret">scale</span>
: [[API C_VoiceChat.GetMemberGUID|C_VoiceChat.GetMemberGUID]](<span style="font-size:smaller; color:#ecbc2a">memberID, channelID</span>) : <span style="font-size:smaller; color:#4ec9b0">memberGUID</span>
+
: [[API C_VoiceChat.GetMemberGUID|C_VoiceChat.GetMemberGUID]](<span class="apiarg">memberID, channelID</span>) : <span class="apiret">memberGUID</span>
: [[API C_VoiceChat.GetMemberID|C_VoiceChat.GetMemberID]](<span style="font-size:smaller; color:#ecbc2a">channelID, memberGUID</span>) : <span style="font-size:smaller; color:#4ec9b0">memberID</span>
+
: [[API C_VoiceChat.GetMemberID|C_VoiceChat.GetMemberID]](<span class="apiarg">channelID, memberGUID</span>) : <span class="apiret">memberID</span>
: [[API C_VoiceChat.GetMemberInfo|C_VoiceChat.GetMemberInfo]](<span style="font-size:smaller; color:#ecbc2a">memberID, channelID</span>) : <span style="font-size:smaller; color:#4ec9b0">memberInfo</span>
+
: [[API C_VoiceChat.GetMemberInfo|C_VoiceChat.GetMemberInfo]](<span class="apiarg">memberID, channelID</span>) : <span class="apiret">memberInfo</span>
: [[API C_VoiceChat.GetMemberName|C_VoiceChat.GetMemberName]](<span style="font-size:smaller; color:#ecbc2a">memberID, channelID</span>) : <span style="font-size:smaller; color:#4ec9b0">memberName</span>
+
: [[API C_VoiceChat.GetMemberName|C_VoiceChat.GetMemberName]](<span class="apiarg">memberID, channelID</span>) : <span class="apiret">memberName</span>
: [[API C_VoiceChat.GetMemberVolume|C_VoiceChat.GetMemberVolume]](<span style="font-size:smaller; color:#ecbc2a">playerLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">volume</span>
+
: [[API C_VoiceChat.GetMemberVolume|C_VoiceChat.GetMemberVolume]](<span class="apiarg">playerLocation</span>) : <span class="apiret">volume</span>
: [[API C_VoiceChat.GetOutputVolume|C_VoiceChat.GetOutputVolume]]() : <span style="font-size:smaller; color:#4ec9b0">volume</span>
+
: [[API C_VoiceChat.GetOutputVolume|C_VoiceChat.GetOutputVolume]]() : <span class="apiret">volume</span>
: [[API C_VoiceChat.GetProcesses|C_VoiceChat.GetProcesses]]() : <span style="font-size:smaller; color:#4ec9b0">processes</span>
+
: [[API C_VoiceChat.GetProcesses|C_VoiceChat.GetProcesses]]() : <span class="apiret">processes</span>
: [[API C_VoiceChat.GetPTTButtonPressedState|C_VoiceChat.GetPTTButtonPressedState]]() : <span style="font-size:smaller; color:#4ec9b0">isPressed</span>
+
: [[API C_VoiceChat.GetPTTButtonPressedState|C_VoiceChat.GetPTTButtonPressedState]]() : <span class="apiret">isPressed</span>
: [[API C_VoiceChat.GetPushToTalkBinding|C_VoiceChat.GetPushToTalkBinding]]() : <span style="font-size:smaller; color:#4ec9b0">keys</span>
+
: [[API C_VoiceChat.GetPushToTalkBinding|C_VoiceChat.GetPushToTalkBinding]]() : <span class="apiret">keys</span>
: [[API C_VoiceChat.GetVADSensitivity|C_VoiceChat.GetVADSensitivity]]() : <span style="font-size:smaller; color:#4ec9b0">sensitivity</span>
+
: [[API C_VoiceChat.GetVADSensitivity|C_VoiceChat.GetVADSensitivity]]() : <span class="apiret">sensitivity</span>
: [[API C_VoiceChat.IsChannelJoinPending|C_VoiceChat.IsChannelJoinPending]](<span style="font-size:smaller; color:#ecbc2a">channelType [, clubId, streamId]</span>) : <span style="font-size:smaller; color:#4ec9b0">isPending</span>
+
: [[API C_VoiceChat.IsChannelJoinPending|C_VoiceChat.IsChannelJoinPending]](<span class="apiarg">channelType [, clubId, streamId]</span>) : <span class="apiret">isPending</span>
: [[API C_VoiceChat.IsDeafened|C_VoiceChat.IsDeafened]]() : <span style="font-size:smaller; color:#4ec9b0">isDeafened</span>
+
: [[API C_VoiceChat.IsDeafened|C_VoiceChat.IsDeafened]]() : <span class="apiret">isDeafened</span>
: [[API C_VoiceChat.IsEnabled|C_VoiceChat.IsEnabled]]() : <span style="font-size:smaller; color:#4ec9b0">isEnabled</span>
+
: [[API C_VoiceChat.IsEnabled|C_VoiceChat.IsEnabled]]() : <span class="apiret">isEnabled</span>
: [[API C_VoiceChat.IsLoggedIn|C_VoiceChat.IsLoggedIn]]() : <span style="font-size:smaller; color:#4ec9b0">isLoggedIn</span>
+
: [[API C_VoiceChat.IsLoggedIn|C_VoiceChat.IsLoggedIn]]() : <span class="apiret">isLoggedIn</span>
: [[API C_VoiceChat.IsMemberLocalPlayer|C_VoiceChat.IsMemberLocalPlayer]](<span style="font-size:smaller; color:#ecbc2a">memberID, channelID</span>) : <span style="font-size:smaller; color:#4ec9b0">isLocalPlayer</span>
+
: [[API C_VoiceChat.IsMemberLocalPlayer|C_VoiceChat.IsMemberLocalPlayer]](<span class="apiarg">memberID, channelID</span>) : <span class="apiret">isLocalPlayer</span>
: [[API C_VoiceChat.IsMemberMuted|C_VoiceChat.IsMemberMuted]](<span style="font-size:smaller; color:#ecbc2a">playerLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">mutedForMe</span>
+
: [[API C_VoiceChat.IsMemberMuted|C_VoiceChat.IsMemberMuted]](<span class="apiarg">playerLocation</span>) : <span class="apiret">mutedForMe</span>
: [[API C_VoiceChat.IsMemberMutedForAll|C_VoiceChat.IsMemberMutedForAll]](<span style="font-size:smaller; color:#ecbc2a">memberID, channelID</span>) : <span style="font-size:smaller; color:#4ec9b0">mutedForAll</span>
+
: [[API C_VoiceChat.IsMemberMutedForAll|C_VoiceChat.IsMemberMutedForAll]](<span class="apiarg">memberID, channelID</span>) : <span class="apiret">mutedForAll</span>
: [[API C_VoiceChat.IsMemberSilenced|C_VoiceChat.IsMemberSilenced]](<span style="font-size:smaller; color:#ecbc2a">memberID, channelID</span>) : <span style="font-size:smaller; color:#4ec9b0">silenced</span>
+
: [[API C_VoiceChat.IsMemberSilenced|C_VoiceChat.IsMemberSilenced]](<span class="apiarg">memberID, channelID</span>) : <span class="apiret">silenced</span>
: [[API C_VoiceChat.IsMuted|C_VoiceChat.IsMuted]]() : <span style="font-size:smaller; color:#4ec9b0">isMuted</span>
+
: [[API C_VoiceChat.IsMuted|C_VoiceChat.IsMuted]]() : <span class="apiret">isMuted</span>
: [[API C_VoiceChat.IsParentalDisabled|C_VoiceChat.IsParentalDisabled]]() : <span style="font-size:smaller; color:#4ec9b0">isParentalDisabled</span>
+
: [[API C_VoiceChat.IsParentalDisabled|C_VoiceChat.IsParentalDisabled]]() : <span class="apiret">isParentalDisabled</span>
: [[API C_VoiceChat.IsParentalMuted|C_VoiceChat.IsParentalMuted]]() : <span style="font-size:smaller; color:#4ec9b0">isParentalMuted</span>
+
: [[API C_VoiceChat.IsParentalMuted|C_VoiceChat.IsParentalMuted]]() : <span class="apiret">isParentalMuted</span>
: [[API C_VoiceChat.IsPlayerUsingVoice|C_VoiceChat.IsPlayerUsingVoice]](<span style="font-size:smaller; color:#ecbc2a">playerLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">isUsingVoice</span>
+
: [[API C_VoiceChat.IsPlayerUsingVoice|C_VoiceChat.IsPlayerUsingVoice]](<span class="apiarg">playerLocation</span>) : <span class="apiret">isUsingVoice</span>
: [[API C_VoiceChat.IsSilenced|C_VoiceChat.IsSilenced]]() : <span style="font-size:smaller; color:#4ec9b0">isSilenced</span>
+
: [[API C_VoiceChat.IsSilenced|C_VoiceChat.IsSilenced]]() : <span class="apiret">isSilenced</span>
: [[API C_VoiceChat.LeaveChannel|C_VoiceChat.LeaveChannel]](<span style="font-size:smaller; color:#ecbc2a">channelID</span>)
+
: [[API C_VoiceChat.LeaveChannel|C_VoiceChat.LeaveChannel]](<span class="apiarg">channelID</span>)
: [[API C_VoiceChat.Login|C_VoiceChat.Login]]() : <span style="font-size:smaller; color:#4ec9b0">status</span>
+
: [[API C_VoiceChat.Login|C_VoiceChat.Login]]() : <span class="apiret">status</span>
: [[API C_VoiceChat.Logout|C_VoiceChat.Logout]]() : <span style="font-size:smaller; color:#4ec9b0">status</span>
+
: [[API C_VoiceChat.Logout|C_VoiceChat.Logout]]() : <span class="apiret">status</span>
 
: [[API C_VoiceChat.MarkChannelsDiscovered|C_VoiceChat.MarkChannelsDiscovered]]()
 
: [[API C_VoiceChat.MarkChannelsDiscovered|C_VoiceChat.MarkChannelsDiscovered]]()
: [[API C_VoiceChat.RequestJoinAndActivateCommunityStreamChannel|C_VoiceChat.RequestJoinAndActivateCommunityStreamChannel]](<span style="font-size:smaller; color:#ecbc2a">clubId, streamId</span>)
+
: [[API C_VoiceChat.RequestJoinAndActivateCommunityStreamChannel|C_VoiceChat.RequestJoinAndActivateCommunityStreamChannel]](<span class="apiarg">clubId, streamId</span>)
: [[API C_VoiceChat.RequestJoinChannelByChannelType|C_VoiceChat.RequestJoinChannelByChannelType]](<span style="font-size:smaller; color:#ecbc2a">channelType [, autoActivate]</span>)
+
: [[API C_VoiceChat.RequestJoinChannelByChannelType|C_VoiceChat.RequestJoinChannelByChannelType]](<span class="apiarg">channelType [, autoActivate]</span>)
: [[API C_VoiceChat.SetCommunicationMode|C_VoiceChat.SetCommunicationMode]](<span style="font-size:smaller; color:#ecbc2a">communicationMode</span>)
+
: [[API C_VoiceChat.SetCommunicationMode|C_VoiceChat.SetCommunicationMode]](<span class="apiarg">communicationMode</span>)
: [[API C_VoiceChat.SetDeafened|C_VoiceChat.SetDeafened]](<span style="font-size:smaller; color:#ecbc2a">isDeafened</span>)
+
: [[API C_VoiceChat.SetDeafened|C_VoiceChat.SetDeafened]](<span class="apiarg">isDeafened</span>)
: [[API C_VoiceChat.SetInputDevice|C_VoiceChat.SetInputDevice]](<span style="font-size:smaller; color:#ecbc2a">deviceID</span>)
+
: [[API C_VoiceChat.SetInputDevice|C_VoiceChat.SetInputDevice]](<span class="apiarg">deviceID</span>)
: [[API C_VoiceChat.SetInputVolume|C_VoiceChat.SetInputVolume]](<span style="font-size:smaller; color:#ecbc2a">volume</span>)
+
: [[API C_VoiceChat.SetInputVolume|C_VoiceChat.SetInputVolume]](<span class="apiarg">volume</span>)
: [[API C_VoiceChat.SetMasterVolumeScale|C_VoiceChat.SetMasterVolumeScale]](<span style="font-size:smaller; color:#ecbc2a">scale</span>)
+
: [[API C_VoiceChat.SetMasterVolumeScale|C_VoiceChat.SetMasterVolumeScale]](<span class="apiarg">scale</span>)
: [[API C_VoiceChat.SetMemberMuted|C_VoiceChat.SetMemberMuted]](<span style="font-size:smaller; color:#ecbc2a">playerLocation, muted</span>)
+
: [[API C_VoiceChat.SetMemberMuted|C_VoiceChat.SetMemberMuted]](<span class="apiarg">playerLocation, muted</span>)
: [[API C_VoiceChat.SetMemberVolume|C_VoiceChat.SetMemberVolume]](<span style="font-size:smaller; color:#ecbc2a">playerLocation, volume</span>)
+
: [[API C_VoiceChat.SetMemberVolume|C_VoiceChat.SetMemberVolume]](<span class="apiarg">playerLocation, volume</span>)
: [[API C_VoiceChat.SetMuted|C_VoiceChat.SetMuted]](<span style="font-size:smaller; color:#ecbc2a">isMuted</span>)
+
: [[API C_VoiceChat.SetMuted|C_VoiceChat.SetMuted]](<span class="apiarg">isMuted</span>)
: [[API C_VoiceChat.SetOutputDevice|C_VoiceChat.SetOutputDevice]](<span style="font-size:smaller; color:#ecbc2a">deviceID</span>)
+
: [[API C_VoiceChat.SetOutputDevice|C_VoiceChat.SetOutputDevice]](<span class="apiarg">deviceID</span>)
: [[API C_VoiceChat.SetOutputVolume|C_VoiceChat.SetOutputVolume]](<span style="font-size:smaller; color:#ecbc2a">volume</span>)
+
: [[API C_VoiceChat.SetOutputVolume|C_VoiceChat.SetOutputVolume]](<span class="apiarg">volume</span>)
: [[API C_VoiceChat.SetPortraitTexture|C_VoiceChat.SetPortraitTexture]](<span style="font-size:smaller; color:#ecbc2a">textureObject, memberID, channelID</span>)
+
: [[API C_VoiceChat.SetPortraitTexture|C_VoiceChat.SetPortraitTexture]](<span class="apiarg">textureObject, memberID, channelID</span>)
: [[API C_VoiceChat.SetPushToTalkBinding|C_VoiceChat.SetPushToTalkBinding]](<span style="font-size:smaller; color:#ecbc2a">keys</span>)
+
: [[API C_VoiceChat.SetPushToTalkBinding|C_VoiceChat.SetPushToTalkBinding]](<span class="apiarg">keys</span>)
: [[API C_VoiceChat.SetVADSensitivity|C_VoiceChat.SetVADSensitivity]](<span style="font-size:smaller; color:#ecbc2a">sensitivity</span>)
+
: [[API C_VoiceChat.SetVADSensitivity|C_VoiceChat.SetVADSensitivity]](<span class="apiarg">sensitivity</span>)
: [[API C_VoiceChat.ShouldDiscoverChannels|C_VoiceChat.ShouldDiscoverChannels]]() : <span style="font-size:smaller; color:#4ec9b0">shouldDiscoverChannels</span>
+
: [[API C_VoiceChat.ShouldDiscoverChannels|C_VoiceChat.ShouldDiscoverChannels]]() : <span class="apiret">shouldDiscoverChannels</span>
 
: [[API C_VoiceChat.ToggleDeafened|C_VoiceChat.ToggleDeafened]]()
 
: [[API C_VoiceChat.ToggleDeafened|C_VoiceChat.ToggleDeafened]]()
: [[API C_VoiceChat.ToggleMemberMuted|C_VoiceChat.ToggleMemberMuted]](<span style="font-size:smaller; color:#ecbc2a">playerLocation</span>)
+
: [[API C_VoiceChat.ToggleMemberMuted|C_VoiceChat.ToggleMemberMuted]](<span class="apiarg">playerLocation</span>)
 
: [[API C_VoiceChat.ToggleMuted|C_VoiceChat.ToggleMuted]]()
 
: [[API C_VoiceChat.ToggleMuted|C_VoiceChat.ToggleMuted]]()
: [[API ChannelSetAllSilent|ChannelSetAllSilent]](<span style="font-size:smaller; color:#ecbc2a">[channelNumber | channelName], memberName, silenceOn</span>)
+
: [[API ChannelSetAllSilent|ChannelSetAllSilent]](<span class="apiarg">[channelNumber | channelName], memberName, silenceOn</span>)
: [[API ChannelSetPartyMemberSilent|ChannelSetPartyMemberSilent]](<span style="font-size:smaller; color:#ecbc2a">partyMemberName, silenceOn</span>)
+
: [[API ChannelSetPartyMemberSilent|ChannelSetPartyMemberSilent]](<span class="apiarg">partyMemberName, silenceOn</span>)
 
: [[API IsChatChannelRaid|IsChatChannelRaid]]()
 
: [[API IsChatChannelRaid|IsChatChannelRaid]]()
  +
  +
==== Text-to-Speech ====
  +
[[Wikipedia:Speech synthesis|Text-to-Speech]] was added in [[Patch 9.1.0]]
  +
: [[API C_VoiceChat.ActivateChannelTranscription|C_VoiceChat.ActivateChannelTranscription]](<span class="apiarg">channelID</span>)
  +
: [[API C_VoiceChat.DeactivateChannelTranscription|C_VoiceChat.DeactivateChannelTranscription]](<span class="apiarg">channelID</span>)
  +
: [[API C_VoiceChat.GetRemoteTtsVoices|C_VoiceChat.GetRemoteTtsVoices]]() : <span class="apiret">ttsVoices</span>
  +
: [[API C_VoiceChat.GetTtsVoices|C_VoiceChat.GetTtsVoices]]() : <span class="apiret">ttsVoices</span>
  +
: [[API C_VoiceChat.IsSpeakForMeActive|C_VoiceChat.IsSpeakForMeActive]]() : <span class="apiret">isActive</span>
  +
: [[API C_VoiceChat.IsSpeakForMeAllowed|C_VoiceChat.IsSpeakForMeAllowed]]() : <span class="apiret">isAllowed</span>
  +
: [[API C_VoiceChat.IsTranscriptionAllowed|C_VoiceChat.IsTranscriptionAllowed]]() : <span class="apiret">isAllowed</span>
  +
: [[API C_VoiceChat.SpeakRemoteTextSample|C_VoiceChat.SpeakRemoteTextSample]](<span class="apiarg">text</span>)
  +
: [[API C_VoiceChat.SpeakText|C_VoiceChat.SpeakText]](<span class="apiarg">voiceID, text, destination, rate, volume</span>)
  +
: [[API C_VoiceChat.StopSpeakingText|C_VoiceChat.StopSpeakingText]]()
  +
: [[API C_TTSSettings.GetChannelEnabled|C_TTSSettings.GetChannelEnabled]](<span class="apiarg">channelInfo</span>) : <span class="apiret">enabled</span>
  +
: [[API C_TTSSettings.GetCharacterSettingsSaved|C_TTSSettings.GetCharacterSettingsSaved]]() : <span class="apiret">settingsBeenSaved</span>
  +
: [[API C_TTSSettings.GetChatTypeEnabled|C_TTSSettings.GetChatTypeEnabled]](<span class="apiarg">chatName</span>) : <span class="apiret">enabled</span>
  +
: [[API C_TTSSettings.GetSetting|C_TTSSettings.GetSetting]](<span class="apiarg">setting</span>) : <span class="apiret">enabled</span>
  +
: [[API C_TTSSettings.GetSpeechRate|C_TTSSettings.GetSpeechRate]]() : <span class="apiret">rate</span>
  +
: [[API C_TTSSettings.GetSpeechVolume|C_TTSSettings.GetSpeechVolume]]() : <span class="apiret">volume</span>
  +
: [[API C_TTSSettings.GetVoiceOptionID|C_TTSSettings.GetVoiceOptionID]](<span class="apiarg">voiceType</span>) : <span class="apiret">voiceID</span>
  +
: [[API C_TTSSettings.GetVoiceOptionName|C_TTSSettings.GetVoiceOptionName]](<span class="apiarg">voiceType</span>) : <span class="apiret">voiceName</span>
  +
: [[API C_TTSSettings.MarkCharacterSettingsSaved|C_TTSSettings.MarkCharacterSettingsSaved]]()
  +
: [[API C_TTSSettings.SetChannelEnabled|C_TTSSettings.SetChannelEnabled]](<span class="apiarg">channelInfo [, newVal]</span>)
  +
: [[API C_TTSSettings.SetChannelKeyEnabled|C_TTSSettings.SetChannelKeyEnabled]](<span class="apiarg">channelKey [, newVal]</span>)
  +
: [[API C_TTSSettings.SetChatTypeEnabled|C_TTSSettings.SetChatTypeEnabled]](<span class="apiarg">chatName [, newVal]</span>)
  +
: [[API C_TTSSettings.SetDefaultSettings|C_TTSSettings.SetDefaultSettings]]()
  +
: [[API C_TTSSettings.SetSetting|C_TTSSettings.SetSetting]](<span class="apiarg">setting [, newVal]</span>)
  +
: [[API C_TTSSettings.SetSpeechRate|C_TTSSettings.SetSpeechRate]](<span class="apiarg">newVal</span>)
  +
: [[API C_TTSSettings.SetSpeechVolume|C_TTSSettings.SetSpeechVolume]](<span class="apiarg">newVal</span>)
  +
: [[API C_TTSSettings.SetVoiceOption|C_TTSSettings.SetVoiceOption]](<span class="apiarg">voiceType, voiceID</span>)
  +
: [[API C_TTSSettings.SetVoiceOptionName|C_TTSSettings.SetVoiceOptionName]](<span class="apiarg">voiceType, voiceName</span>)
   
 
==== Twitter ====
 
==== Twitter ====
 
Twitter integration was added in [[Patch 6.1.0]]
 
Twitter integration was added in [[Patch 6.1.0]]
: [[API C_Social.GetLastAchievement|C_Social.GetLastAchievement]]() : <span style="font-size:smaller; color:#4ec9b0">achievementID, achievementName, achievementDesc, iconFileID</span>
+
: [[API C_Social.GetLastAchievement|C_Social.GetLastAchievement]]() : <span class="apiret">achievementID, achievementName, achievementDesc, iconFileID</span>
: [[API C_Social.GetLastItem|C_Social.GetLastItem]]() : <span style="font-size:smaller; color:#4ec9b0">itemID, itemName, iconFileID, itemQuality, itemLevel, ...</span>
+
: [[API C_Social.GetLastItem|C_Social.GetLastItem]]() : <span class="apiret">itemID, itemName, iconFileID, itemQuality, itemLevel, ...</span>
: [[API C_Social.GetLastScreenshotIndex|C_Social.GetLastScreenshotIndex]]() : <span style="font-size:smaller; color:#4ec9b0">screenShotIndex</span> - Returns the index of the last screenshot.
+
: [[API C_Social.GetLastScreenshotIndex|C_Social.GetLastScreenshotIndex]]() : <span class="apiret">screenShotIndex</span> - Returns the index of the last screenshot.
: [[API C_Social.GetMaxTweetLength|C_Social.GetMaxTweetLength]]() : <span style="font-size:smaller; color:#4ec9b0">maxTweetLength</span> - Returns the max character length of a tweet.
+
: [[API C_Social.GetMaxTweetLength|C_Social.GetMaxTweetLength]]() : <span class="apiret">maxTweetLength</span> - Returns the max character length of a tweet.
: [[API C_Social.GetScreenshotInfoByIndex|C_Social.GetScreenshotInfoByIndex]](<span style="font-size:smaller; color:#ecbc2a">index</span>) : <span style="font-size:smaller; color:#4ec9b0">screenWidth, screenHeight</span> - Returns the display resolution of a screenshot.
+
: [[API C_Social.GetScreenshotInfoByIndex|C_Social.GetScreenshotInfoByIndex]](<span class="apiarg">index</span>) : <span class="apiret">screenWidth, screenHeight</span> - Returns the display resolution of a screenshot.
: [[API C_Social.GetTweetLength|C_Social.GetTweetLength]](<span style="font-size:smaller; color:#ecbc2a">tweetText</span>) : <span style="font-size:smaller; color:#4ec9b0">tweetLength</span>
+
: [[API C_Social.GetTweetLength|C_Social.GetTweetLength]](<span class="apiarg">tweetText</span>) : <span class="apiret">tweetLength</span>
: [[API C_Social.IsSocialEnabled|C_Social.IsSocialEnabled]]() : <span style="font-size:smaller; color:#4ec9b0">isEnabled</span>
+
: [[API C_Social.IsSocialEnabled|C_Social.IsSocialEnabled]]() : <span class="apiret">isEnabled</span>
 
: <small>PROTECTED</small> [[API C_Social.RegisterSocialBrowser|C_Social.RegisterSocialBrowser]]()
 
: <small>PROTECTED</small> [[API C_Social.RegisterSocialBrowser|C_Social.RegisterSocialBrowser]]()
: [[API C_Social.SetTextureToScreenshot|C_Social.SetTextureToScreenshot]](<span style="font-size:smaller; color:#ecbc2a">texture, index</span>)
+
: [[API C_Social.SetTextureToScreenshot|C_Social.SetTextureToScreenshot]](<span class="apiarg">texture, index</span>)
 
: <small>PROTECTED</small> [[API C_Social.TwitterCheckStatus|C_Social.TwitterCheckStatus]]()
 
: <small>PROTECTED</small> [[API C_Social.TwitterCheckStatus|C_Social.TwitterCheckStatus]]()
 
: <small>PROTECTED</small> [[API C_Social.TwitterConnect|C_Social.TwitterConnect]]()
 
: <small>PROTECTED</small> [[API C_Social.TwitterConnect|C_Social.TwitterConnect]]()
 
: <small>PROTECTED</small> [[API C_Social.TwitterDisconnect|C_Social.TwitterDisconnect]]()
 
: <small>PROTECTED</small> [[API C_Social.TwitterDisconnect|C_Social.TwitterDisconnect]]()
: [[API C_Social.TwitterGetMSTillCanPost|C_Social.TwitterGetMSTillCanPost]]() : <span style="font-size:smaller; color:#4ec9b0">msTimeLeft</span>
+
: [[API C_Social.TwitterGetMSTillCanPost|C_Social.TwitterGetMSTillCanPost]]() : <span class="apiret">msTimeLeft</span>
: <small>PROTECTED</small> [[API C_Social.TwitterPostAchievement|C_Social.TwitterPostAchievement]](<span style="font-size:smaller; color:#ecbc2a">text, width, height, snapshotId, offScreenFrame, lastAchievementID, usedCustomText</span>)
+
: <small>PROTECTED</small> [[API C_Social.TwitterPostAchievement|C_Social.TwitterPostAchievement]](<span class="apiarg">text, width, height, snapshotId, offScreenFrame, lastAchievementID, usedCustomText</span>)
: <small>PROTECTED</small> [[API C_Social.TwitterPostItem|C_Social.TwitterPostItem]](<span style="font-size:smaller; color:#ecbc2a">text, width, height, snapshotId, offScreenFrame, lastItemID, usedCustomText</span>)
+
: <small>PROTECTED</small> [[API C_Social.TwitterPostItem|C_Social.TwitterPostItem]](<span class="apiarg">text, width, height, snapshotId, offScreenFrame, lastItemID, usedCustomText</span>)
: <small>PROTECTED</small> [[API C_Social.TwitterPostMessage|C_Social.TwitterPostMessage]](<span style="font-size:smaller; color:#ecbc2a">message</span>)
+
: <small>PROTECTED</small> [[API C_Social.TwitterPostMessage|C_Social.TwitterPostMessage]](<span class="apiarg">message</span>)
: <small>PROTECTED</small> [[API C_Social.TwitterPostScreenshot|C_Social.TwitterPostScreenshot]](<span style="font-size:smaller; color:#ecbc2a">text, screenshotIndex, texture, usedCustomText</span>)
+
: <small>PROTECTED</small> [[API C_Social.TwitterPostScreenshot|C_Social.TwitterPostScreenshot]](<span class="apiarg">text, screenshotIndex, texture, usedCustomText</span>)
   
 
=== Character ===
 
=== Character ===
Line 890: Line 932:
 
: [[API GetBindLocation|GetBindLocation]]() - Get the name of the location for your Hearthstone.
 
: [[API GetBindLocation|GetBindLocation]]() - Get the name of the location for your Hearthstone.
 
: [[API GetComboPoints|GetComboPoints]]() - Get the current number of combo points.
 
: [[API GetComboPoints|GetComboPoints]]() - Get the current number of combo points.
: [[API GetCurrentLevelFeatures|GetCurrentLevelFeatures]](<span style="font-size:smaller; color:#ecbc2a">level</span>) - For Level Up Display
+
: [[API GetCurrentLevelFeatures|GetCurrentLevelFeatures]](<span class="apiarg">level</span>) - For Level Up Display
: [[API GetCurrentLevelSpells|GetCurrentLevelSpells]](<span style="font-size:smaller; color:#ecbc2a">level</span>) - For Level Up Display
 
 
: [[API GetCurrentTitle|GetCurrentTitle]]() - Returns the player's current [[titleId]].
 
: [[API GetCurrentTitle|GetCurrentTitle]]() - Returns the player's current [[titleId]].
  +
: [[API GetMirrorTimerInfo|GetMirrorTimerInfo]](<span class="apiarg">id</span>) - Returns information about a mirror timer (exhaustion, breath and feign death timers)
: [[API GetLevelUpInstances|GetLevelUpInstances]](<span style="font-size:smaller; color:#ecbc2a">level, isRaid</span>) - For Level Up Display
 
: [[API GetMirrorTimerInfo|GetMirrorTimerInfo]](<span style="font-size:smaller; color:#ecbc2a">id</span>) - Returns information about a mirror timer (exhaustion, breath and feign death timers)
+
: [[API GetMirrorTimerProgress|GetMirrorTimerProgress]](<span class="apiarg">id</span>) - Returns the current value of a mirror timer (exhaustion, breath and feign death timers)
: [[API GetMirrorTimerProgress|GetMirrorTimerProgress]](<span style="font-size:smaller; color:#ecbc2a">id</span>) - Returns the current value of a mirror timer (exhaustion, breath and feign death timers)
 
 
: [[API GetMoney|GetMoney]]() - Returns an integer value of your held money in copper.
 
: [[API GetMoney|GetMoney]]() - Returns an integer value of your held money in copper.
 
: [[API GetNumTitles|GetNumTitles]]() - Returns the maximum [[titleId]].
 
: [[API GetNumTitles|GetNumTitles]]() - Returns the maximum [[titleId]].
 
: [[API GetRestState|GetRestState]]() - Returns information about a player's rest state. (saved up experience bonus)
 
: [[API GetRestState|GetRestState]]() - Returns information about a player's rest state. (saved up experience bonus)
: [[API GetRuneCooldown|GetRuneCooldown]](<span style="font-size:smaller; color:#ecbc2a">id</span>) - Returns cooldown information about a given rune.
+
: [[API GetRuneCooldown|GetRuneCooldown]](<span class="apiarg">id</span>) - Returns cooldown information about a given rune.
: [[API GetRuneCount|GetRuneCount]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Returns the number of Runes in the given slot. (Death Knight)
+
: [[API GetRuneCount|GetRuneCount]](<span class="apiarg">slot</span>) - Returns the number of Runes in the given slot. (Death Knight)
 
: [[API GetSheathState|GetSheathState]]() - Returns the sheath state of the player's weapons.
 
: [[API GetSheathState|GetSheathState]]() - Returns the sheath state of the player's weapons.
: [[API GetSpellsForCharacterUpgradeTier|GetSpellsForCharacterUpgradeTier]](<span style="font-size:smaller; color:#ecbc2a">tierIndex</span>) - For Level Up Display
+
: [[API GetSpellsForCharacterUpgradeTier|GetSpellsForCharacterUpgradeTier]](<span class="apiarg">tierIndex</span>) - For Level Up Display
 
: [[API GetTimeToWellRested|GetTimeToWellRested]]()
 
: [[API GetTimeToWellRested|GetTimeToWellRested]]()
: [[API GetTitleName|GetTitleName]](<span style="font-size:smaller; color:#ecbc2a">titleId</span>) - Returns the player's current title name.
+
: [[API GetTitleName|GetTitleName]](<span class="apiarg">titleId</span>) - Returns the player's current title name.
 
: [[API GetXPExhaustion|GetXPExhaustion]]() - Returns your character's current rested XP, nil if character is not rested.
 
: [[API GetXPExhaustion|GetXPExhaustion]]() - Returns your character's current rested XP, nil if character is not rested.
: [[API HasAlternateForm|HasAlternateForm]]()
 
 
: [[API HasFullControl|HasFullControl]]()
 
: [[API HasFullControl|HasFullControl]]()
 
: [[API IsChatAFK|IsChatAFK]]()
 
: [[API IsChatAFK|IsChatAFK]]()
Line 926: Line 965:
 
: [[API IsSwimming|IsSwimming]]() - Returns 1 if your character is currently swimming.
 
: [[API IsSwimming|IsSwimming]]() - Returns 1 if your character is currently swimming.
 
: [[API IsThreatWarningEnabled|IsThreatWarningEnabled]]() - Returns whether threat warnings should currently be displayed.
 
: [[API IsThreatWarningEnabled|IsThreatWarningEnabled]]() - Returns whether threat warnings should currently be displayed.
: [[API IsTitleKnown|IsTitleKnown]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns 1 if the title is valid for the player, otherwise 0.
+
: [[API IsTitleKnown|IsTitleKnown]](<span class="apiarg">index</span>) - Returns 1 if the title is valid for the player, otherwise 0.
 
: [[API IsXPUserDisabled|IsXPUserDisabled]]() - Returns 1 if the character has disabled experience gain.
 
: [[API IsXPUserDisabled|IsXPUserDisabled]]() - Returns 1 if the character has disabled experience gain.
 
: [[API PlayerHasHearthstone|PlayerHasHearthstone]]() - Returns the hearthstone ID
 
: [[API PlayerHasHearthstone|PlayerHasHearthstone]]() - Returns the hearthstone ID
: [[API RandomRoll|RandomRoll]](<span style="font-size:smaller; color:#ecbc2a">min, max</span>) - Does a random roll between the two values.
+
: [[API RandomRoll|RandomRoll]](<span class="apiarg">min, max</span>) - Does a random roll between the two values.
: <small>HW</small> [[API SetCurrentTitle|SetCurrentTitle]](<span style="font-size:smaller; color:#ecbc2a">titleId</span>) - Sets the player's current title by id.
+
: <small>HW</small> [[API SetCurrentTitle|SetCurrentTitle]](<span class="apiarg">titleId</span>) - Sets the player's current title by id.
 
: [[API ToggleSheath|ToggleSheath]]() - Toggles sheathed or unsheathed weapons.
 
: [[API ToggleSheath|ToggleSheath]]() - Toggles sheathed or unsheathed weapons.
 
: <small>PROTECTED</small> [[API UseHearthstone|UseHearthstone]]()
 
: <small>PROTECTED</small> [[API UseHearthstone|UseHearthstone]]()
  +
: <small>DEPRECATED</small> [[API HasAlternateForm|HasAlternateForm]]()
   
 
==== Paper Doll ====
 
==== Paper Doll ====
 
Relates to the [[Paper doll]] (also known as Character sheet).
 
Relates to the [[Paper doll]] (also known as Character sheet).
: [[API C_PaperDollInfo.GetArmorEffectiveness|C_PaperDollInfo.GetArmorEffectiveness]](<span style="font-size:smaller; color:#ecbc2a">armor, attackerLevel</span>) : <span style="font-size:smaller; color:#4ec9b0">effectiveness</span>
+
: [[API C_PaperDollInfo.GetArmorEffectiveness|C_PaperDollInfo.GetArmorEffectiveness]](<span class="apiarg">armor, attackerLevel</span>) : <span class="apiret">effectiveness</span>
: [[API C_PaperDollInfo.GetArmorEffectivenessAgainstTarget|C_PaperDollInfo.GetArmorEffectivenessAgainstTarget]](<span style="font-size:smaller; color:#ecbc2a">armor</span>) : <span style="font-size:smaller; color:#4ec9b0">effectiveness</span>
+
: [[API C_PaperDollInfo.GetArmorEffectivenessAgainstTarget|C_PaperDollInfo.GetArmorEffectivenessAgainstTarget]](<span class="apiarg">armor</span>) : <span class="apiret">effectiveness</span>
: [[API C_PaperDollInfo.GetInspectItemLevel|C_PaperDollInfo.GetInspectItemLevel]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) : <span style="font-size:smaller; color:#4ec9b0">equippedItemLevel</span> - Returns the average item level for the unit being inspected.
+
: [[API C_PaperDollInfo.GetInspectItemLevel|C_PaperDollInfo.GetInspectItemLevel]](<span class="apiarg">unit</span>) : <span class="apiret">equippedItemLevel</span> - Returns the average item level for the unit being inspected.
: [[API C_PaperDollInfo.GetMinItemLevel|C_PaperDollInfo.GetMinItemLevel]]() : <span style="font-size:smaller; color:#4ec9b0">minItemLevel</span>
+
: [[API C_PaperDollInfo.GetMinItemLevel|C_PaperDollInfo.GetMinItemLevel]]() : <span class="apiret">minItemLevel</span>
: [[API C_PaperDollInfo.GetStaggerPercentage|C_PaperDollInfo.GetStaggerPercentage]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) : <span style="font-size:smaller; color:#4ec9b0">stagger, staggerAgainstTarget</span>
+
: [[API C_PaperDollInfo.GetStaggerPercentage|C_PaperDollInfo.GetStaggerPercentage]](<span class="apiarg">unit</span>) : <span class="apiret">stagger, staggerAgainstTarget</span>
: [[API C_PaperDollInfo.OffhandHasShield|C_PaperDollInfo.OffhandHasShield]]() : <span style="font-size:smaller; color:#4ec9b0">offhandHasShield</span>
+
: [[API C_PaperDollInfo.OffhandHasShield|C_PaperDollInfo.OffhandHasShield]]() : <span class="apiret">offhandHasShield</span>
: [[API C_PaperDollInfo.OffhandHasWeapon|C_PaperDollInfo.OffhandHasWeapon]]() : <span style="font-size:smaller; color:#4ec9b0">offhandHasWeapon</span>
+
: [[API C_PaperDollInfo.OffhandHasWeapon|C_PaperDollInfo.OffhandHasWeapon]]() : <span class="apiret">offhandHasWeapon</span>
 
: [[API CanDualWield|CanDualWield]]()
 
: [[API CanDualWield|CanDualWield]]()
: [[API GetAttackPowerForStat|GetAttackPowerForStat]](<span style="font-size:smaller; color:#ecbc2a">stat, value</span>) - Returns the amount of attack power contributed by a specified amount of a particular stat.
+
: [[API GetAttackPowerForStat|GetAttackPowerForStat]](<span class="apiarg">stat, value</span>) - Returns the amount of attack power contributed by a specified amount of a particular stat.
 
: [[API GetAvoidance|GetAvoidance]]()
 
: [[API GetAvoidance|GetAvoidance]]()
 
: [[API GetBlockChance|GetBlockChance]]() - Returns the player's percentage block chance.
 
: [[API GetBlockChance|GetBlockChance]]() - Returns the player's percentage block chance.
: [[API GetCombatRating|GetCombatRating]](<span style="font-size:smaller; color:#ecbc2a">ratingID</span>) - Returns the player's combat rating for a particular combat rating.
+
: [[API GetCombatRating|GetCombatRating]](<span class="apiarg">ratingID</span>) - Returns the player's combat rating for a particular combat rating.
: [[API GetCombatRatingBonus|GetCombatRatingBonus]](<span style="font-size:smaller; color:#ecbc2a">ratingID</span>) - Returns the player's combat rating bonus for a particular combat rating.
+
: [[API GetCombatRatingBonus|GetCombatRatingBonus]](<span class="apiarg">ratingID</span>) - Returns the player's combat rating bonus for a particular combat rating.
: [[API GetCombatRatingBonusForCombatRatingValue|GetCombatRatingBonusForCombatRatingValue]](<span style="font-size:smaller; color:#ecbc2a">ratingIndex, value</span>)
+
: [[API GetCombatRatingBonusForCombatRatingValue|GetCombatRatingBonusForCombatRatingValue]](<span class="apiarg">ratingIndex, value</span>)
 
: [[API GetCritChance|GetCritChance]]() - Returns the player's melee critical hit chance.
 
: [[API GetCritChance|GetCritChance]]() - Returns the player's melee critical hit chance.
 
: [[API GetCritChanceProvidesParryEffect|GetCritChanceProvidesParryEffect]]()
 
: [[API GetCritChanceProvidesParryEffect|GetCritChanceProvidesParryEffect]]()
Line 961: Line 1,001:
 
: [[API GetMastery|GetMastery]]() - Returns the player's mastery before mastery rating.
 
: [[API GetMastery|GetMastery]]() - Returns the player's mastery before mastery rating.
 
: [[API GetMasteryEffect|GetMasteryEffect]]() - Returns the player's buffed mastery in percentage and (unknown number value).
 
: [[API GetMasteryEffect|GetMasteryEffect]]() - Returns the player's buffed mastery in percentage and (unknown number value).
: [[API GetMaxCombatRatingBonus|GetMaxCombatRatingBonus]](<span style="font-size:smaller; color:#ecbc2a">ratingIndex</span>)
+
: [[API GetMaxCombatRatingBonus|GetMaxCombatRatingBonus]](<span class="apiarg">ratingIndex</span>)
 
: [[API GetMeleeHaste|GetMeleeHaste]]() - Returns player's Melee attack haste.
 
: [[API GetMeleeHaste|GetMeleeHaste]]() - Returns player's Melee attack haste.
 
: [[API GetModResilienceDamageReduction|GetModResilienceDamageReduction]]()
 
: [[API GetModResilienceDamageReduction|GetModResilienceDamageReduction]]()
Line 971: Line 1,011:
 
: [[API GetPetSpellBonusDamage|GetPetSpellBonusDamage]]()
 
: [[API GetPetSpellBonusDamage|GetPetSpellBonusDamage]]()
 
: [[API GetPowerRegen|GetPowerRegen]]() - Returns normal and combat power regeneration rates.
 
: [[API GetPowerRegen|GetPowerRegen]]() - Returns normal and combat power regeneration rates.
: [[API GetPowerRegenForPowerType|GetPowerRegenForPowerType]](<span style="font-size:smaller; color:#ecbc2a">POWER_TYPE</span>)
+
: [[API GetPowerRegenForPowerType|GetPowerRegenForPowerType]](<span class="apiarg">POWER_TYPE</span>)
 
: [[API GetPVPGearStatRules|GetPVPGearStatRules]]()
 
: [[API GetPVPGearStatRules|GetPVPGearStatRules]]()
 
: [[API GetPvpPowerDamage|GetPvpPowerDamage]]()
 
: [[API GetPvpPowerDamage|GetPvpPowerDamage]]()
Line 979: Line 1,019:
 
: [[API GetShieldBlock|GetShieldBlock]]()
 
: [[API GetShieldBlock|GetShieldBlock]]()
 
: [[API GetSpeed|GetSpeed]]()
 
: [[API GetSpeed|GetSpeed]]()
: [[API GetSpellBonusDamage|GetSpellBonusDamage]](<span style="font-size:smaller; color:#ecbc2a">spellTreeID</span>) - Returns the raw spell damage of the player for a given spell tree.
+
: [[API GetSpellBonusDamage|GetSpellBonusDamage]](<span class="apiarg">spellTreeID</span>) - Returns the raw spell damage of the player for a given spell tree.
 
: [[API GetSpellBonusHealing|GetSpellBonusHealing]]() - Returns the raw bonus healing of the player.
 
: [[API GetSpellBonusHealing|GetSpellBonusHealing]]() - Returns the raw bonus healing of the player.
: [[API GetSpellCritChance|GetSpellCritChance]](<span style="font-size:smaller; color:#ecbc2a">school</span>) - Returns the players critical hit chance with a particular spell school.
+
: [[API GetSpellCritChance|GetSpellCritChance]](<span class="apiarg">school</span>) - Returns the players critical hit chance with a particular spell school.
 
: [[API GetSpellHitModifier|GetSpellHitModifier]]()
 
: [[API GetSpellHitModifier|GetSpellHitModifier]]()
 
: [[API GetSpellPenetration|GetSpellPenetration]]()
 
: [[API GetSpellPenetration|GetSpellPenetration]]()
 
: [[API GetSturdiness|GetSturdiness]]()
 
: [[API GetSturdiness|GetSturdiness]]()
: [[API GetUnitHealthModifier|GetUnitHealthModifier]](<span style="font-size:smaller; color:#ecbc2a">unit</span>)
+
: [[API GetUnitHealthModifier|GetUnitHealthModifier]](<span class="apiarg">unit</span>)
: [[API GetUnitMaxHealthModifier|GetUnitMaxHealthModifier]](<span style="font-size:smaller; color:#ecbc2a">unit</span>)
+
: [[API GetUnitMaxHealthModifier|GetUnitMaxHealthModifier]](<span class="apiarg">unit</span>)
: [[API GetUnitPowerModifier|GetUnitPowerModifier]](<span style="font-size:smaller; color:#ecbc2a">unit</span>)
+
: [[API GetUnitPowerModifier|GetUnitPowerModifier]](<span class="apiarg">unit</span>)
: [[API GetVersatilityBonus|GetVersatilityBonus]](<span style="font-size:smaller; color:#ecbc2a">COMBAT_RATING</span>)
+
: [[API GetVersatilityBonus|GetVersatilityBonus]](<span class="apiarg">COMBAT_RATING</span>)
 
: [[API HasAPEffectsSpellPower|HasAPEffectsSpellPower]]()
 
: [[API HasAPEffectsSpellPower|HasAPEffectsSpellPower]]()
 
: [[API HasDualWieldPenalty|HasDualWieldPenalty]]()
 
: [[API HasDualWieldPenalty|HasDualWieldPenalty]]()
Line 996: Line 1,036:
 
: [[API IsRangedWeapon|IsRangedWeapon]]()
 
: [[API IsRangedWeapon|IsRangedWeapon]]()
 
: [[API PlayerEffectiveAttackPower|PlayerEffectiveAttackPower]]()
 
: [[API PlayerEffectiveAttackPower|PlayerEffectiveAttackPower]]()
: [[API ResistancePercent|ResistancePercent]](<span style="font-size:smaller; color:#ecbc2a">resistance, casterLevel</span>)
+
: [[API ResistancePercent|ResistancePercent]](<span class="apiarg">resistance, casterLevel</span>)
   
 
==== Equipment Manager ====
 
==== Equipment Manager ====
 
The [[Equipment Manager]] was added in [[Patch 3.1.2]]
 
The [[Equipment Manager]] was added in [[Patch 3.1.2]]
: [[API C_EquipmentSet.AssignSpecToEquipmentSet|C_EquipmentSet.AssignSpecToEquipmentSet]](<span style="font-size:smaller; color:#ecbc2a">equipmentSetID, specIndex</span>) - Assigns an equipment set to a specialization.
+
: [[API C_EquipmentSet.AssignSpecToEquipmentSet|C_EquipmentSet.AssignSpecToEquipmentSet]](<span class="apiarg">equipmentSetID, specIndex</span>) - Assigns an equipment set to a specialization.
: [[API C_EquipmentSet.CanUseEquipmentSets|C_EquipmentSet.CanUseEquipmentSets]]() : <span style="font-size:smaller; color:#4ec9b0">canUseEquipmentSets</span> - Returns whether any equipment sets can be used.
+
: [[API C_EquipmentSet.CanUseEquipmentSets|C_EquipmentSet.CanUseEquipmentSets]]() : <span class="apiret">canUseEquipmentSets</span> - Returns whether any equipment sets can be used.
 
: [[API C_EquipmentSet.ClearIgnoredSlotsForSave|C_EquipmentSet.ClearIgnoredSlotsForSave]]() - Clears ignored slots for saving.
 
: [[API C_EquipmentSet.ClearIgnoredSlotsForSave|C_EquipmentSet.ClearIgnoredSlotsForSave]]() - Clears ignored slots for saving.
: [[API C_EquipmentSet.CreateEquipmentSet|C_EquipmentSet.CreateEquipmentSet]](<span style="font-size:smaller; color:#ecbc2a">equipmentSetName [, icon]</span>) - Creates an equipment set.
+
: [[API C_EquipmentSet.CreateEquipmentSet|C_EquipmentSet.CreateEquipmentSet]](<span class="apiarg">equipmentSetName [, icon]</span>) - Creates an equipment set.
: [[API C_EquipmentSet.DeleteEquipmentSet|C_EquipmentSet.DeleteEquipmentSet]](<span style="font-size:smaller; color:#ecbc2a">equipmentSetID</span>) - Deletes an equipment set.
+
: [[API C_EquipmentSet.DeleteEquipmentSet|C_EquipmentSet.DeleteEquipmentSet]](<span class="apiarg">equipmentSetID</span>) - Deletes an equipment set.
: [[API C_EquipmentSet.EquipmentSetContainsLockedItems|C_EquipmentSet.EquipmentSetContainsLockedItems]](<span style="font-size:smaller; color:#ecbc2a">equipmentSetID</span>) : <span style="font-size:smaller; color:#4ec9b0">hasLockedItems</span> - Returns whether an equipment set has locked items
+
: [[API C_EquipmentSet.EquipmentSetContainsLockedItems|C_EquipmentSet.EquipmentSetContainsLockedItems]](<span class="apiarg">equipmentSetID</span>) : <span class="apiret">hasLockedItems</span> - Returns whether an equipment set has locked items
: [[API C_EquipmentSet.GetEquipmentSetAssignedSpec|C_EquipmentSet.GetEquipmentSetAssignedSpec]](<span style="font-size:smaller; color:#ecbc2a">equipmentSetID</span>) : <span style="font-size:smaller; color:#4ec9b0">specIndex</span> - Returns the specialization assigned to an equipment set.
+
: [[API C_EquipmentSet.GetEquipmentSetAssignedSpec|C_EquipmentSet.GetEquipmentSetAssignedSpec]](<span class="apiarg">equipmentSetID</span>) : <span class="apiret">specIndex</span> - Returns the specialization assigned to an equipment set.
: [[API C_EquipmentSet.GetEquipmentSetForSpec|C_EquipmentSet.GetEquipmentSetForSpec]](<span style="font-size:smaller; color:#ecbc2a">specIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">equipmentSetID</span> - Returns the equipment set currently assigned to a specific specialization.
+
: [[API C_EquipmentSet.GetEquipmentSetForSpec|C_EquipmentSet.GetEquipmentSetForSpec]](<span class="apiarg">specIndex</span>) : <span class="apiret">equipmentSetID</span> - Returns the equipment set currently assigned to a specific specialization.
: [[API C_EquipmentSet.GetEquipmentSetID|C_EquipmentSet.GetEquipmentSetID]](<span style="font-size:smaller; color:#ecbc2a">equipmentSetName</span>) : <span style="font-size:smaller; color:#4ec9b0">equipmentSetID</span> - Returns the set ID of an equipment set with the specified name.
+
: [[API C_EquipmentSet.GetEquipmentSetID|C_EquipmentSet.GetEquipmentSetID]](<span class="apiarg">equipmentSetName</span>) : <span class="apiret">equipmentSetID</span> - Returns the set ID of an equipment set with the specified name.
: [[API C_EquipmentSet.GetEquipmentSetIDs|C_EquipmentSet.GetEquipmentSetIDs]]() : <span style="font-size:smaller; color:#4ec9b0">equipmentSetIDs</span> - Returns an array containing all currently saved equipment set IDs.
+
: [[API C_EquipmentSet.GetEquipmentSetIDs|C_EquipmentSet.GetEquipmentSetIDs]]() : <span class="apiret">equipmentSetIDs</span> - Returns an array containing all currently saved equipment set IDs.
: [[API C_EquipmentSet.GetEquipmentSetInfo|C_EquipmentSet.GetEquipmentSetInfo]](<span style="font-size:smaller; color:#ecbc2a">equipmentSetID</span>) : <span style="font-size:smaller; color:#4ec9b0">name, iconFileID, setID, isEquipped, numItems, numEquipped, numInInventory, ...</span> - Returns information about a saved equipment set.
+
: [[API C_EquipmentSet.GetEquipmentSetInfo|C_EquipmentSet.GetEquipmentSetInfo]](<span class="apiarg">equipmentSetID</span>) : <span class="apiret">name, iconFileID, setID, isEquipped, numItems, numEquipped, numInInventory, ...</span> - Returns information about a saved equipment set.
: [[API C_EquipmentSet.GetIgnoredSlots|C_EquipmentSet.GetIgnoredSlots]](<span style="font-size:smaller; color:#ecbc2a">equipmentSetID</span>) : <span style="font-size:smaller; color:#4ec9b0">slotIgnored</span> - Returns ignored slots of an equipment set.
+
: [[API C_EquipmentSet.GetIgnoredSlots|C_EquipmentSet.GetIgnoredSlots]](<span class="apiarg">equipmentSetID</span>) : <span class="apiret">slotIgnored</span> - Returns ignored slots of an equipment set.
: [[API C_EquipmentSet.GetItemIDs|C_EquipmentSet.GetItemIDs]](<span style="font-size:smaller; color:#ecbc2a">equipmentSetID</span>) : <span style="font-size:smaller; color:#4ec9b0">itemIDs</span> - Returns the item IDs of an equipment set.
+
: [[API C_EquipmentSet.GetItemIDs|C_EquipmentSet.GetItemIDs]](<span class="apiarg">equipmentSetID</span>) : <span class="apiret">itemIDs</span> - Returns the item IDs of an equipment set.
: [[API C_EquipmentSet.GetItemLocations|C_EquipmentSet.GetItemLocations]](<span style="font-size:smaller; color:#ecbc2a">equipmentSetID</span>) : <span style="font-size:smaller; color:#4ec9b0">locations</span> - Returns the location of all items in an equipment set.
+
: [[API C_EquipmentSet.GetItemLocations|C_EquipmentSet.GetItemLocations]](<span class="apiarg">equipmentSetID</span>) : <span class="apiret">locations</span> - Returns the location of all items in an equipment set.
: [[API C_EquipmentSet.GetNumEquipmentSets|C_EquipmentSet.GetNumEquipmentSets]]() : <span style="font-size:smaller; color:#4ec9b0">numEquipmentSets</span> - Returns the number of saved equipment sets.
+
: [[API C_EquipmentSet.GetNumEquipmentSets|C_EquipmentSet.GetNumEquipmentSets]]() : <span class="apiret">numEquipmentSets</span> - Returns the number of saved equipment sets.
: [[API C_EquipmentSet.IgnoreSlotForSave|C_EquipmentSet.IgnoreSlotForSave]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Ignores an equipment slot for saving.
+
: [[API C_EquipmentSet.IgnoreSlotForSave|C_EquipmentSet.IgnoreSlotForSave]](<span class="apiarg">slot</span>) - Ignores an equipment slot for saving.
: [[API C_EquipmentSet.IsSlotIgnoredForSave|C_EquipmentSet.IsSlotIgnoredForSave]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) : <span style="font-size:smaller; color:#4ec9b0">isSlotIgnored</span> - Returns whether a slot is ignored for saving.
+
: [[API C_EquipmentSet.IsSlotIgnoredForSave|C_EquipmentSet.IsSlotIgnoredForSave]](<span class="apiarg">slot</span>) : <span class="apiret">isSlotIgnored</span> - Returns whether a slot is ignored for saving.
: [[API C_EquipmentSet.ModifyEquipmentSet|C_EquipmentSet.ModifyEquipmentSet]](<span style="font-size:smaller; color:#ecbc2a">equipmentSetID, newName [, newIcon]</span>) - Modifies an equipment set.
+
: [[API C_EquipmentSet.ModifyEquipmentSet|C_EquipmentSet.ModifyEquipmentSet]](<span class="apiarg">equipmentSetID, newName [, newIcon]</span>) - Modifies an equipment set.
: [[API C_EquipmentSet.PickupEquipmentSet|C_EquipmentSet.PickupEquipmentSet]](<span style="font-size:smaller; color:#ecbc2a">equipmentSetID</span>) - Picks up an equipment set, placing it on the cursor.
+
: [[API C_EquipmentSet.PickupEquipmentSet|C_EquipmentSet.PickupEquipmentSet]](<span class="apiarg">equipmentSetID</span>) - Picks up an equipment set, placing it on the cursor.
: [[API C_EquipmentSet.SaveEquipmentSet|C_EquipmentSet.SaveEquipmentSet]](<span style="font-size:smaller; color:#ecbc2a">equipmentSetID [, icon]</span>) - Saves your currently equipped items into an equipment set.
+
: [[API C_EquipmentSet.SaveEquipmentSet|C_EquipmentSet.SaveEquipmentSet]](<span class="apiarg">equipmentSetID [, icon]</span>) - Saves your currently equipped items into an equipment set.
: [[API C_EquipmentSet.UnassignEquipmentSetSpec|C_EquipmentSet.UnassignEquipmentSetSpec]](<span style="font-size:smaller; color:#ecbc2a">equipmentSetID</span>) - Unassigns an equipment set from a specialization.
+
: [[API C_EquipmentSet.UnassignEquipmentSetSpec|C_EquipmentSet.UnassignEquipmentSetSpec]](<span class="apiarg">equipmentSetID</span>) - Unassigns an equipment set from a specialization.
: [[API C_EquipmentSet.UnignoreSlotForSave|C_EquipmentSet.UnignoreSlotForSave]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Unignores a slot for saving.
+
: [[API C_EquipmentSet.UnignoreSlotForSave|C_EquipmentSet.UnignoreSlotForSave]](<span class="apiarg">slot</span>) - Unignores a slot for saving.
: <small>NOCOMBAT</small> [[API C_EquipmentSet.UseEquipmentSet|C_EquipmentSet.UseEquipmentSet]](<span style="font-size:smaller; color:#ecbc2a">equipmentSetID</span>) : <span style="font-size:smaller; color:#4ec9b0">setWasEquipped</span> - Equips items from a specified equipment set.
+
: <small>NOCOMBAT</small> [[API C_EquipmentSet.UseEquipmentSet|C_EquipmentSet.UseEquipmentSet]](<span class="apiarg">equipmentSetID</span>) : <span class="apiret">setWasEquipped</span> - Equips items from a specified equipment set.
: [[API GetInventoryItemEquippedUnusable|GetInventoryItemEquippedUnusable]](<span style="font-size:smaller; color:#ecbc2a">unit, slot</span>)
+
: [[API GetInventoryItemEquippedUnusable|GetInventoryItemEquippedUnusable]](<span class="apiarg">unit, slot</span>)
: [[API GetInventoryItemsForSlot|GetInventoryItemsForSlot]](<span style="font-size:smaller; color:#ecbc2a">slot, returnTable [, transmogrify]</span>)
+
: [[API GetInventoryItemsForSlot|GetInventoryItemsForSlot]](<span class="apiarg">slot, returnTable [, transmogrify]</span>)
: [[API IsInventoryItemAnUpgrade|IsInventoryItemAnUpgrade]](<span style="font-size:smaller; color:#ecbc2a">unit, slot</span>)
+
: [[API IsInventoryItemAnUpgrade|IsInventoryItemAnUpgrade]](<span class="apiarg">unit, slot</span>)
 
: <small>UI</small> [[API EquipmentManager_UnpackLocation|EquipmentManager_UnpackLocation]]() - Unpacks a location integer to determine the actual inventory location.
 
: <small>UI</small> [[API EquipmentManager_UnpackLocation|EquipmentManager_UnpackLocation]]() - Unpacks a location integer to determine the actual inventory location.
   
 
==== Dressing Room ====
 
==== Dressing Room ====
 
The [[Dressing room]] was added in [[Patch 1.7.0]]
 
The [[Dressing room]] was added in [[Patch 1.7.0]]
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/DressUpItemLink DressUpItemLink](<span style="font-size:smaller; color:#ecbc2a">itemLink</span>) - Shows the Dressing Room with the given item equipped.
+
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/DressUpItemLink DressUpItemLink](<span class="apiarg">itemLink</span>) - Shows the Dressing Room with the given item equipped.
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/DressUpMountLink DressUpMountLink](<span style="font-size:smaller; color:#ecbc2a">itemLink | spellLink</span>) - Shows the Dressing Room for the mount.
+
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/DressUpMountLink DressUpMountLink](<span class="apiarg">itemLink | spellLink</span>) - Shows the Dressing Room for the mount.
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/DressUpTransmogLink DressUpTransmogLink](<span style="font-size:smaller; color:#ecbc2a">transmogLink</span>) - Shows the Dressing Room for transmog appearance or illusion.
+
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/DressUpTransmogLink DressUpTransmogLink](<span class="apiarg">transmogLink</span>) - Shows the Dressing Room for transmog appearance or illusion.
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/SetDressUpBackground SetDressUpBackground](<span style="font-size:smaller; color:#ecbc2a">frame, fileName, atlasPostfix</span>)
+
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/SetDressUpBackground SetDressUpBackground](<span class="apiarg">frame, fileName, atlasPostfix</span>)
   
 
==== Transmogrification ====
 
==== Transmogrification ====
 
[[Transmogrification]] was added in [[Patch 4.3.0]]. See also [[#Appearances|Appearances]] functions.
 
[[Transmogrification]] was added in [[Patch 4.3.0]]. See also [[#Appearances|Appearances]] functions.
: [[API C_Transmog.ApplyAllPending|C_Transmog.ApplyAllPending]]() - Applies all pending transmogrifications, and pays for the cost.
+
: [[API C_Transmog.ApplyAllPending|C_Transmog.ApplyAllPending]](<span class="apiarg">[currentSpecOnly]</span>) : <span class="apiret">requestSent</span> - Applies all pending transmogrifications, and pays for the cost.
: [[API C_Transmog.CanTransmogItemWithItem|C_Transmog.CanTransmogItemWithItem]](<span style="font-size:smaller; color:#ecbc2a">targetItemLink, sourceItemLink</span>) - Returns whether an item can be transmogrified to look like another item.
+
: [[API C_Transmog.CanHaveSecondaryAppearanceForSlotID|C_Transmog.CanHaveSecondaryAppearanceForSlotID]](<span class="apiarg">slotID</span>) : <span class="apiret">canHaveSecondaryAppearance</span>
  +
: [[API C_Transmog.CanTransmogItem|C_Transmog.CanTransmogItem]](<span class="apiarg">itemInfo</span>) : <span class="apiret">canBeTransmogged, selfFailureReason, canTransmogOthers, ...</span>
  +
: [[API C_Transmog.CanTransmogItemWithItem|C_Transmog.CanTransmogItemWithItem]](<span class="apiarg">targetItemInfo, sourceItemInfo</span>) : <span class="apiret">canTransmog, failureReason</span> - Returns whether an item can be transmogrified to look like another item.
 
: [[API C_Transmog.ClearAllPending|C_Transmog.ClearAllPending]]()
 
: [[API C_Transmog.ClearAllPending|C_Transmog.ClearAllPending]]()
: [[API C_Transmog.ClearPending|C_Transmog.ClearPending]](<span style="font-size:smaller; color:#ecbc2a">transmogLocation</span>) - Clears the specified transmogrify slot.
+
: [[API C_Transmog.ClearPending|C_Transmog.ClearPending]](<span class="apiarg">transmogLocation</span>) - Clears the specified transmogrify slot.
 
: [[API C_Transmog.Close|C_Transmog.Close]]()
 
: [[API C_Transmog.Close|C_Transmog.Close]]()
: [[API C_Transmog.GetApplyWarnings|C_Transmog.GetApplyWarnings]]()
+
: [[API C_Transmog.ExtractTransmogIDList|C_Transmog.ExtractTransmogIDList]](<span class="apiarg">input</span>) : <span class="apiret">transmogIDList </span>
: [[API C_Transmog.GetBaseCategory|C_Transmog.GetBaseCategory]](<span style="font-size:smaller; color:#ecbc2a">transmogID</span>) : <span style="font-size:smaller; color:#4ec9b0">categoryID</span>
+
: [[API C_Transmog.GetApplyCost|C_Transmog.GetApplyCost]]() : <span class="apiret">cost</span>
: [[API C_Transmog.GetCost|C_Transmog.GetCost]]()
+
: [[API C_Transmog.GetApplyWarnings|C_Transmog.GetApplyWarnings]]() : <span class="apiret">warnings</span>
: [[API C_Transmog.GetCreatureDisplayIDForSource|C_Transmog.GetCreatureDisplayIDForSource]](<span style="font-size:smaller; color:#ecbc2a">itemModifiedAppearanceID</span>) : <span style="font-size:smaller; color:#4ec9b0">creatureDisplayID</span>
+
: [[API C_Transmog.GetBaseCategory|C_Transmog.GetBaseCategory]](<span class="apiarg">transmogID</span>) : <span class="apiret">categoryID</span>
: [[API C_Transmog.GetItemIDForSource|C_Transmog.GetItemIDForSource]](<span style="font-size:smaller; color:#ecbc2a">itemModifiedAppearanceID</span>) : <span style="font-size:smaller; color:#4ec9b0">itemID</span>
+
: [[API C_Transmog.GetCreatureDisplayIDForSource|C_Transmog.GetCreatureDisplayIDForSource]](<span class="apiarg">itemModifiedAppearanceID</span>) : <span class="apiret">creatureDisplayID</span>
: [[API C_Transmog.GetItemInfo|C_Transmog.GetItemInfo]](<span style="font-size:smaller; color:#ecbc2a">item</span>) - Returns how an item can interact with transmogrification.
+
: [[API C_Transmog.GetItemIDForSource|C_Transmog.GetItemIDForSource]](<span class="apiarg">itemModifiedAppearanceID</span>) : <span class="apiret">itemID</span>
: [[API C_Transmog.GetSlotForInventoryType|C_Transmog.GetSlotForInventoryType]](<span style="font-size:smaller; color:#ecbc2a">inventoryType</span>) : <span style="font-size:smaller; color:#4ec9b0">slot</span> - Returns the equipment slot for an inventory type.
+
: [[API C_Transmog.GetPending|C_Transmog.GetPending]](<span class="apiarg">transmogLocation</span>) : <span class="apiret">pendingInfo</span>
: [[API C_Transmog.GetSlotInfo|C_Transmog.GetSlotInfo]](<span style="font-size:smaller; color:#ecbc2a">transmogLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">isTransmogrified, hasPending, isPendingCollected, canTransmogrify, ...</span>
+
: [[API C_Transmog.GetSlotEffectiveCategory|C_Transmog.GetSlotEffectiveCategory]](<span class="apiarg">transmogLocation</span>) : <span class="apiret">categoryID</span>
: [[API C_Transmog.GetSlotUseError|C_Transmog.GetSlotUseError]](<span style="font-size:smaller; color:#ecbc2a">transmogLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">errorCode, errorString</span>
+
: [[API C_Transmog.GetSlotForInventoryType|C_Transmog.GetSlotForInventoryType]](<span class="apiarg">inventoryType</span>) : <span class="apiret">slot</span> - Returns the equipment slot for an inventory type.
: [[API C_Transmog.GetSlotVisualInfo|C_Transmog.GetSlotVisualInfo]](<span style="font-size:smaller; color:#ecbc2a">transmogLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">baseSourceID, baseVisualID, appliedSourceID, appliedVisualID, ...</span>
+
: [[API C_Transmog.GetSlotInfo|C_Transmog.GetSlotInfo]](<span class="apiarg">transmogLocation</span>) : <span class="apiret">isTransmogrified, hasPending, isPendingCollected, canTransmogrify, ...</span>
: [[API C_Transmog.LoadOutfit|C_Transmog.LoadOutfit]](<span style="font-size:smaller; color:#ecbc2a">outfitID</span>)
+
: [[API C_Transmog.GetSlotUseError|C_Transmog.GetSlotUseError]](<span class="apiarg">transmogLocation</span>) : <span class="apiret">errorCode, errorString</span>
: [[API C_Transmog.LoadSources|C_Transmog.LoadSources]](<span style="font-size:smaller; color:#ecbc2a">sourceIDTable [, mainHandEnchant, offHandEnchant]</span>)
+
: [[API C_Transmog.GetSlotVisualInfo|C_Transmog.GetSlotVisualInfo]](<span class="apiarg">transmogLocation</span>) : <span class="apiret">baseSourceID, baseVisualID, appliedSourceID, appliedVisualID, ...</span>
: [[API C_Transmog.SetPending|C_Transmog.SetPending]](<span style="font-size:smaller; color:#ecbc2a">transmogLocation, transmogID [, categoryID]</span>)
+
: [[API C_Transmog.IsAtTransmogNPC|C_Transmog.IsAtTransmogNPC]]() : <span class="apiret">isAtNPC</span>
: [[API C_Transmog.ValidateAllPending|C_Transmog.ValidateAllPending]]()
+
: [[API C_Transmog.IsSlotBeingCollapsed|C_Transmog.IsSlotBeingCollapsed]](<span class="apiarg">transmogLocation</span>) : <span class="apiret">isBeingCollapsed</span>
  +
: [[API C_Transmog.LoadOutfit|C_Transmog.LoadOutfit]](<span class="apiarg">outfitID</span>)
  +
: [[API C_Transmog.SetPending|C_Transmog.SetPending]](<span class="apiarg">transmogLocation, pendingInfo</span>)
  +
: [[API C_Item.CanItemTransmogAppearance|C_Item.CanItemTransmogAppearance]](<span class="apiarg">itemLoc</span>) : <span class="apiret">canTransmog, errorCode</span>
  +
: [[API C_Item.GetAppliedItemTransmogInfo|C_Item.GetAppliedItemTransmogInfo]](<span class="apiarg">itemLoc</span>) : <span class="apiret">info</span>
  +
: [[API C_Item.GetBaseItemTransmogInfo|C_Item.GetBaseItemTransmogInfo]](<span class="apiarg">itemLoc</span>) : <span class="apiret">info</span>
  +
: [[API C_Item.GetCurrentItemTransmogInfo|C_Item.GetCurrentItemTransmogInfo]](<span class="apiarg">itemLoc</span>) : <span class="apiret">info</span>
  +
: [[API C_Item.IsDressableItemByID|C_Item.IsDressableItemByID]](<span class="apiarg">itemInfo</span>) : <span class="apiret">isDressableItem</span>
 
: [[API IsCosmeticItem|IsCosmeticItem]]()
 
: [[API IsCosmeticItem|IsCosmeticItem]]()
  +
: <small>DEPRECATED</small> [[API C_Transmog.GetCost|C_Transmog.GetCost]]()
   
 
==== Barber Shop ====
 
==== Barber Shop ====
 
The [[Barbershop]] was added in [[Patch 3.0.2]] and reworked in patch [[Patch 9.0.1]]
 
The [[Barbershop]] was added in [[Patch 3.0.2]] and reworked in patch [[Patch 9.0.1]]
: [[API C_BarberShop.ApplyCustomizationChoices|C_BarberShop.ApplyCustomizationChoices]]() : <span style="font-size:smaller; color:#4ec9b0">success</span>
+
: [[API C_BarberShop.ApplyCustomizationChoices|C_BarberShop.ApplyCustomizationChoices]]() : <span class="apiret">success</span>
 
: [[API C_BarberShop.Cancel|C_BarberShop.Cancel]]()
 
: [[API C_BarberShop.Cancel|C_BarberShop.Cancel]]()
: [[API C_BarberShop.ClearPreviewChoices|C_BarberShop.ClearPreviewChoices]]()
+
: [[API C_BarberShop.ClearPreviewChoices|C_BarberShop.ClearPreviewChoices]](<span class="apiarg">[clearSavedChoices]</span>)
: [[API C_BarberShop.GetAvailableCustomizations|C_BarberShop.GetAvailableCustomizations]]() : <span style="font-size:smaller; color:#4ec9b0">categories</span>
+
: [[API C_BarberShop.GetAvailableCustomizations|C_BarberShop.GetAvailableCustomizations]]() : <span class="apiret">categories</span>
: [[API C_BarberShop.GetCurrentCameraZoom|C_BarberShop.GetCurrentCameraZoom]]() : <span style="font-size:smaller; color:#4ec9b0">zoomLevel</span>
+
: [[API C_BarberShop.GetCurrentCameraZoom|C_BarberShop.GetCurrentCameraZoom]]() : <span class="apiret">zoomLevel</span>
: [[API C_BarberShop.GetCurrentCharacterData|C_BarberShop.GetCurrentCharacterData]]() : <span style="font-size:smaller; color:#4ec9b0">characterData</span>
+
: [[API C_BarberShop.GetCurrentCharacterData|C_BarberShop.GetCurrentCharacterData]]() : <span class="apiret">characterData</span>
: [[API C_BarberShop.GetCurrentCost|C_BarberShop.GetCurrentCost]]() : <span style="font-size:smaller; color:#4ec9b0">cost</span>
+
: [[API C_BarberShop.GetCurrentCost|C_BarberShop.GetCurrentCost]]() : <span class="apiret">cost</span>
: [[API C_BarberShop.HasAnyChanges|C_BarberShop.HasAnyChanges]]() : <span style="font-size:smaller; color:#4ec9b0">hasChanges</span>
+
: [[API C_BarberShop.HasAnyChanges|C_BarberShop.HasAnyChanges]]() : <span class="apiret">hasChanges</span>
: [[API C_BarberShop.IsViewingAlteredForm|C_BarberShop.IsViewingAlteredForm]]() : <span style="font-size:smaller; color:#4ec9b0">isViewingAlteredForm</span>
+
: [[API C_BarberShop.IsViewingAlteredForm|C_BarberShop.IsViewingAlteredForm]]() : <span class="apiret">isViewingAlteredForm</span>
: [[API C_BarberShop.OldBarberShopLoaded|C_BarberShop.OldBarberShopLoaded]]()
+
: [[API C_BarberShop.MarkCustomizationChoiceAsSeen|C_BarberShop.MarkCustomizationChoiceAsSeen]](<span class="apiarg">choiceID</span>)
: [[API C_BarberShop.PreviewCustomizationChoice|C_BarberShop.PreviewCustomizationChoice]](<span style="font-size:smaller; color:#ecbc2a">optionID, choiceID</span>)
+
: [[API C_BarberShop.MarkCustomizationOptionAsSeen|C_BarberShop.MarkCustomizationOptionAsSeen]](<span class="apiarg">optionID</span>)
  +
: [[API C_BarberShop.PreviewCustomizationChoice|C_BarberShop.PreviewCustomizationChoice]](<span class="apiarg">optionID, choiceID</span>)
  +
: [[API C_BarberShop.RandomizeCustomizationChoices|C_BarberShop.RandomizeCustomizationChoices]]()
 
: [[API C_BarberShop.ResetCameraRotation|C_BarberShop.ResetCameraRotation]]()
 
: [[API C_BarberShop.ResetCameraRotation|C_BarberShop.ResetCameraRotation]]()
 
: [[API C_BarberShop.ResetCustomizationChoices|C_BarberShop.ResetCustomizationChoices]]()
 
: [[API C_BarberShop.ResetCustomizationChoices|C_BarberShop.ResetCustomizationChoices]]()
: [[API C_BarberShop.RotateCamera|C_BarberShop.RotateCamera]](<span style="font-size:smaller; color:#ecbc2a">diffDegrees</span>)
+
: [[API C_BarberShop.RotateCamera|C_BarberShop.RotateCamera]](<span class="apiarg">diffDegrees</span>)
: [[API C_BarberShop.SetCameraDistanceOffset|C_BarberShop.SetCameraDistanceOffset]](<span style="font-size:smaller; color:#ecbc2a">offset</span>)
+
: [[API C_BarberShop.SaveSeenChoices|C_BarberShop.SaveSeenChoices]]()
: [[API C_BarberShop.SetCameraZoomLevel|C_BarberShop.SetCameraZoomLevel]](<span style="font-size:smaller; color:#ecbc2a">zoomLevel [, keepCustomZoom]</span>)
+
: [[API C_BarberShop.SetCameraDistanceOffset|C_BarberShop.SetCameraDistanceOffset]](<span class="apiarg">offset</span>)
: [[API C_BarberShop.SetCustomizationChoice|C_BarberShop.SetCustomizationChoice]](<span style="font-size:smaller; color:#ecbc2a">optionID, choiceID</span>)
+
: [[API C_BarberShop.SetCameraZoomLevel|C_BarberShop.SetCameraZoomLevel]](<span class="apiarg">zoomLevel [, keepCustomZoom]</span>)
: [[API C_BarberShop.SetModelDressState|C_BarberShop.SetModelDressState]](<span style="font-size:smaller; color:#ecbc2a">dressedState</span>)
+
: [[API C_BarberShop.SetCustomizationChoice|C_BarberShop.SetCustomizationChoice]](<span class="apiarg">optionID, choiceID</span>)
: [[API C_BarberShop.SetSelectedSex|C_BarberShop.SetSelectedSex]](<span style="font-size:smaller; color:#ecbc2a">sex</span>)
+
: [[API C_BarberShop.SetModelDressState|C_BarberShop.SetModelDressState]](<span class="apiarg">dressedState</span>)
: [[API C_BarberShop.SetViewingAlteredForm|C_BarberShop.SetViewingAlteredForm]](<span style="font-size:smaller; color:#ecbc2a">isViewingAlteredForm</span>)
+
: [[API C_BarberShop.SetSelectedSex|C_BarberShop.SetSelectedSex]](<span class="apiarg">sex</span>)
: [[API C_BarberShop.SetViewingShapeshiftForm|C_BarberShop.SetViewingShapeshiftForm]](<span style="font-size:smaller; color:#ecbc2a">[shapeshiftFormID]</span>)
+
: [[API C_BarberShop.SetViewingAlteredForm|C_BarberShop.SetViewingAlteredForm]](<span class="apiarg">isViewingAlteredForm</span>)
: [[API C_BarberShop.ZoomCamera|C_BarberShop.ZoomCamera]](<span style="font-size:smaller; color:#ecbc2a">zoomAmount</span>)
+
: [[API C_BarberShop.SetViewingShapeshiftForm|C_BarberShop.SetViewingShapeshiftForm]](<span class="apiarg">[shapeshiftFormID]</span>)
  +
: [[API C_BarberShop.ZoomCamera|C_BarberShop.ZoomCamera]](<span class="apiarg">zoomAmount</span>)
: [[API ApplyBarberShopStyle|ApplyBarberShopStyle]]() - Purchase and apply the cosmetic changes.
 
: [[API BarberShopReset|BarberShopReset]]() - Reset any changes made in the Barber Shop.
 
: [[API CancelBarberShop|CancelBarberShop]]() - Exit the Barber Shop chair.
 
: [[API GetBarberShopStyleInfo|GetBarberShopStyleInfo]](<span style="font-size:smaller; color:#ecbc2a">id</span>) - Returns information about the currently selected style.
 
: [[API GetBarberShopTotalCost|GetBarberShopTotalCost]]() - Returns the total costs of the cosmetic changes.
 
: [[API GetCustomizationDetails|GetCustomizationDetails]](<span style="font-size:smaller; color:#ecbc2a">customizationIndex</span>)
 
: [[API IsBarberShopStyleValid|IsBarberShopStyleValid]]()
 
: [[API SetBarberShopAlternateFormFrame|SetBarberShopAlternateFormFrame]]()
 
: [[API SetNextBarberShopStyle|SetNextBarberShopStyle]](<span style="font-size:smaller; color:#ecbc2a">id [, reverse]</span>) - Alters style selection in a particular category.
 
   
 
=== Cinematics ===
 
=== Cinematics ===
Line 1,102: Line 1,146:
 
: [[API StopCinematic|StopCinematic]]()
 
: [[API StopCinematic|StopCinematic]]()
 
Relates to pre-rendered movies.
 
Relates to pre-rendered movies.
: [[API CancelPreloadingMovie|CancelPreloadingMovie]](<span style="font-size:smaller; color:#ecbc2a">movieId</span>)
+
: [[API CancelPreloadingMovie|CancelPreloadingMovie]](<span class="apiarg">movieId</span>)
: [[API GetMovieDownloadProgress|GetMovieDownloadProgress]](<span style="font-size:smaller; color:#ecbc2a">movieId</span>)
+
: [[API GetMovieDownloadProgress|GetMovieDownloadProgress]](<span class="apiarg">movieId</span>)
 
: [[API GameMovieFinished|GameMovieFinished]]() - Ends the movie.
 
: [[API GameMovieFinished|GameMovieFinished]]() - Ends the movie.
: [[API IsMovieLocal|IsMovieLocal]](<span style="font-size:smaller; color:#ecbc2a">movieId</span>)
+
: [[API IsMovieLocal|IsMovieLocal]](<span class="apiarg">movieId</span>)
: [[API IsMoviePlayable|IsMoviePlayable]](<span style="font-size:smaller; color:#ecbc2a">movieId</span>) - Returns if a movie can be played.
+
: [[API IsMoviePlayable|IsMoviePlayable]](<span class="apiarg">movieId</span>) - Returns if a movie can be played.
: [[API PreloadMovie|PreloadMovie]](<span style="font-size:smaller; color:#ecbc2a">movieId</span>)
+
: [[API PreloadMovie|PreloadMovie]](<span class="apiarg">movieId</span>)
: <small>UI</small> [[API MovieFrame_PlayMovie|MovieFrame_PlayMovie]](<span style="font-size:smaller; color:#ecbc2a">MovieFrame, movieID</span>) - Plays a movie.
+
: <small>UI</small> [[API MovieFrame_PlayMovie|MovieFrame_PlayMovie]](<span class="apiarg">MovieFrame, movieID</span>) - Plays a movie.
   
 
=== Class ===
 
=== Class ===
: [[API C_ClassColor.GetClassColor|C_ClassColor.GetClassColor]](<span style="font-size:smaller; color:#ecbc2a">className</span>) : <span style="font-size:smaller; color:#4ec9b0">classColor</span> - Returns information about a class' color.
+
: [[API C_ClassColor.GetClassColor|C_ClassColor.GetClassColor]](<span class="apiarg">className</span>) : <span class="apiret">classColor</span> - Returns information about a class' color.
: [[API C_CreatureInfo.GetClassInfo|C_CreatureInfo.GetClassInfo]](<span style="font-size:smaller; color:#ecbc2a">classID</span>) : <span style="font-size:smaller; color:#4ec9b0">classInfo</span> - Returns both localized and locale-independent class names.
+
: [[API C_CreatureInfo.GetClassInfo|C_CreatureInfo.GetClassInfo]](<span class="apiarg">classID</span>) : <span class="apiret">classInfo</span> - Returns both localized and locale-independent class names.
: [[API FillLocalizedClassList|FillLocalizedClassList]](<span style="font-size:smaller; color:#ecbc2a">classTable [, isFemale]</span>) - Fills table with localized class names.
+
: [[API FillLocalizedClassList|FillLocalizedClassList]](<span class="apiarg">classTable [, isFemale]</span>) - Fills table with localized class names.
: [[API GetClassInfo|GetClassInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns information about a class.
+
: [[API GetClassInfo|GetClassInfo]](<span class="apiarg">index</span>) - Returns information about a class.
 
: [[API GetNumClasses|GetNumClasses]]() - Returns the amount of classes in the game.
 
: [[API GetNumClasses|GetNumClasses]]() - Returns the amount of classes in the game.
 
: [[API IsDemonHunterAvailable|IsDemonHunterAvailable]]()
 
: [[API IsDemonHunterAvailable|IsDemonHunterAvailable]]()
: <small>UI</small> [[API GetClassColor|GetClassColor]](<span style="font-size:smaller; color:#ecbc2a">classFilename</span>) - Returns a class color from RAID_CLASS_COLORS.
+
: <small>UI</small> [[API GetClassColor|GetClassColor]](<span class="apiarg">classFilename</span>) - Returns a class color from RAID_CLASS_COLORS.
 
[[Shaman totem]]s
 
[[Shaman totem]]s
: <small>PROTECTED</small> [[API DestroyTotem|DestroyTotem]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Destroys a totem/minion.
+
: <small>PROTECTED</small> [[API DestroyTotem|DestroyTotem]](<span class="apiarg">slot</span>) - Destroys a totem/minion.
: [[API GetMultiCastTotemSpells|GetMultiCastTotemSpells]](<span style="font-size:smaller; color:#ecbc2a">totemslot</span>) - Returns a list of spellIDs that are applicable for the specified totem slot (1-4)
+
: [[API GetMultiCastTotemSpells|GetMultiCastTotemSpells]](<span class="apiarg">totemslot</span>) - Returns a list of spellIDs that are applicable for the specified totem slot (1-4)
: [[API GetTotemCannotDismiss|GetTotemCannotDismiss]](<span style="font-size:smaller; color:#ecbc2a">slot</span>)
+
: [[API GetTotemCannotDismiss|GetTotemCannotDismiss]](<span class="apiarg">slot</span>)
: [[API GetTotemInfo|GetTotemInfo]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Returns information about a totem.
+
: [[API GetTotemInfo|GetTotemInfo]](<span class="apiarg">slot</span>) - Returns information about a totem.
: [[API GetTotemTimeLeft|GetTotemTimeLeft]](<span style="font-size:smaller; color:#ecbc2a">slot</span>)
+
: [[API GetTotemTimeLeft|GetTotemTimeLeft]](<span class="apiarg">slot</span>)
: [[API TargetTotem|TargetTotem]](<span style="font-size:smaller; color:#ecbc2a">slot</span>)
+
: [[API TargetTotem|TargetTotem]](<span class="apiarg">slot</span>)
: <small>PROTECTED</small> [[API SetMultiCastSpell|SetMultiCastSpell]](<span style="font-size:smaller; color:#ecbc2a">actionID, spellID</span>) - Assigns a spellID to a multicast (totem bar) actionID.
+
: <small>PROTECTED</small> [[API SetMultiCastSpell|SetMultiCastSpell]](<span class="apiarg">actionID, spellID</span>) - Assigns a spellID to a multicast (totem bar) actionID.
 
[[Druid shapeshift forms]]
 
[[Druid shapeshift forms]]
 
: <small>PROTECTED</small> [[API CancelShapeshiftForm|CancelShapeshiftForm]]() - Cancels a druid's shapeshift form buff.
 
: <small>PROTECTED</small> [[API CancelShapeshiftForm|CancelShapeshiftForm]]() - Cancels a druid's shapeshift form buff.
: <small>PROTECTED</small> [[API CastShapeshiftForm|CastShapeshiftForm]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: <small>PROTECTED</small> [[API CastShapeshiftForm|CastShapeshiftForm]](<span class="apiarg">index</span>)
 
: [[API GetNumShapeshiftForms|GetNumShapeshiftForms]]()
 
: [[API GetNumShapeshiftForms|GetNumShapeshiftForms]]()
: [[API GetShapeshiftForm|GetShapeshiftForm]](<span style="font-size:smaller; color:#ecbc2a">unknown</span>) - Returns zero-based index of current form/stance.
+
: [[API GetShapeshiftForm|GetShapeshiftForm]](<span class="apiarg">unknown</span>) - Returns zero-based index of current form/stance.
: [[API GetShapeshiftFormCooldown|GetShapeshiftFormCooldown]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetShapeshiftFormCooldown|GetShapeshiftFormCooldown]](<span class="apiarg">index</span>)
 
: [[API GetShapeshiftFormID|GetShapeshiftFormID]]() - Returns the current shapeshift form as a constant. If the player is not shapeshifted it returns nil.
 
: [[API GetShapeshiftFormID|GetShapeshiftFormID]]() - Returns the current shapeshift form as a constant. If the player is not shapeshifted it returns nil.
: [[API GetShapeshiftFormInfo|GetShapeshiftFormInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Retrieves information about an available ShapeshiftForm or Stance.
+
: [[API GetShapeshiftFormInfo|GetShapeshiftFormInfo]](<span class="apiarg">index</span>) - Retrieves information about an available ShapeshiftForm or Stance.
   
 
==== Talents ====
 
==== Talents ====
 
Relates to [[Specialization|Specializations]].
 
Relates to [[Specialization|Specializations]].
: [[API C_SpecializationInfo.CanPlayerUsePVPTalentUI|C_SpecializationInfo.CanPlayerUsePVPTalentUI]]() : <span style="font-size:smaller; color:#4ec9b0">canUse, failureReason</span>
+
: [[API C_SpecializationInfo.CanPlayerUsePVPTalentUI|C_SpecializationInfo.CanPlayerUsePVPTalentUI]]() : <span class="apiret">canUse, failureReason</span>
: [[API C_SpecializationInfo.CanPlayerUseTalentSpecUI|C_SpecializationInfo.CanPlayerUseTalentSpecUI]]() : <span style="font-size:smaller; color:#4ec9b0">canUse, failureReason</span>
+
: [[API C_SpecializationInfo.CanPlayerUseTalentSpecUI|C_SpecializationInfo.CanPlayerUseTalentSpecUI]]() : <span class="apiret">canUse, failureReason</span>
: [[API C_SpecializationInfo.CanPlayerUseTalentUI|C_SpecializationInfo.CanPlayerUseTalentUI]]() : <span style="font-size:smaller; color:#4ec9b0">canUse, failureReason</span>
+
: [[API C_SpecializationInfo.CanPlayerUseTalentUI|C_SpecializationInfo.CanPlayerUseTalentUI]]() : <span class="apiret">canUse, failureReason</span>
: [[API C_SpecializationInfo.GetAllSelectedPvpTalentIDs|C_SpecializationInfo.GetAllSelectedPvpTalentIDs]]() : <span style="font-size:smaller; color:#4ec9b0">selectedPvpTalentIDs</span>
+
: [[API C_SpecializationInfo.GetAllSelectedPvpTalentIDs|C_SpecializationInfo.GetAllSelectedPvpTalentIDs]]() : <span class="apiret">selectedPvpTalentIDs</span>
: [[API C_SpecializationInfo.GetInspectSelectedPvpTalent|C_SpecializationInfo.GetInspectSelectedPvpTalent]](<span style="font-size:smaller; color:#ecbc2a">inspectedUnit, talentIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">selectedTalentID</span>
+
: [[API C_SpecializationInfo.GetInspectSelectedPvpTalent|C_SpecializationInfo.GetInspectSelectedPvpTalent]](<span class="apiarg">inspectedUnit, talentIndex</span>) : <span class="apiret">selectedTalentID</span>
: [[API C_SpecializationInfo.GetPvpTalentAlertStatus|C_SpecializationInfo.GetPvpTalentAlertStatus]]() : <span style="font-size:smaller; color:#4ec9b0">hasUnspentSlot, hasNewTalent</span>
+
: [[API C_SpecializationInfo.GetPvpTalentAlertStatus|C_SpecializationInfo.GetPvpTalentAlertStatus]]() : <span class="apiret">hasUnspentSlot, hasNewTalent</span>
: [[API C_SpecializationInfo.GetPvpTalentSlotInfo|C_SpecializationInfo.GetPvpTalentSlotInfo]](<span style="font-size:smaller; color:#ecbc2a">talentIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">slotInfo</span>
+
: [[API C_SpecializationInfo.GetPvpTalentSlotInfo|C_SpecializationInfo.GetPvpTalentSlotInfo]](<span class="apiarg">talentIndex</span>) : <span class="apiret">slotInfo</span>
: [[API C_SpecializationInfo.GetPvpTalentSlotUnlockLevel|C_SpecializationInfo.GetPvpTalentSlotUnlockLevel]](<span style="font-size:smaller; color:#ecbc2a">talentIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">requiredLevel</span>
+
: [[API C_SpecializationInfo.GetPvpTalentSlotUnlockLevel|C_SpecializationInfo.GetPvpTalentSlotUnlockLevel]](<span class="apiarg">talentIndex</span>) : <span class="apiret">requiredLevel</span>
: [[API C_SpecializationInfo.GetPvpTalentUnlockLevel|C_SpecializationInfo.GetPvpTalentUnlockLevel]](<span style="font-size:smaller; color:#ecbc2a">talentID</span>) : <span style="font-size:smaller; color:#4ec9b0">requiredLevel</span>
+
: [[API C_SpecializationInfo.GetPvpTalentUnlockLevel|C_SpecializationInfo.GetPvpTalentUnlockLevel]](<span class="apiarg">talentID</span>) : <span class="apiret">requiredLevel</span>
: [[API C_SpecializationInfo.GetSpecIDs|C_SpecializationInfo.GetSpecIDs]](<span style="font-size:smaller; color:#ecbc2a">specSetID</span>) : <span style="font-size:smaller; color:#4ec9b0">specIDs</span>
+
: [[API C_SpecializationInfo.GetSpecIDs|C_SpecializationInfo.GetSpecIDs]](<span class="apiarg">specSetID</span>) : <span class="apiret">specIDs</span>
: [[API C_SpecializationInfo.GetSpellsDisplay|C_SpecializationInfo.GetSpellsDisplay]](<span style="font-size:smaller; color:#ecbc2a">specializationID</span>) : <span style="font-size:smaller; color:#4ec9b0">spellID</span>
+
: [[API C_SpecializationInfo.GetSpellsDisplay|C_SpecializationInfo.GetSpellsDisplay]](<span class="apiarg">specializationID</span>) : <span class="apiret">spellID</span>
: [[API C_SpecializationInfo.IsInitialized|C_SpecializationInfo.IsInitialized]]() : <span style="font-size:smaller; color:#4ec9b0">isSpecializationDataInitialized</span>
+
: [[API C_SpecializationInfo.IsInitialized|C_SpecializationInfo.IsInitialized]]() : <span class="apiret">isSpecializationDataInitialized</span>
: [[API C_SpecializationInfo.IsPvpTalentLocked|C_SpecializationInfo.IsPvpTalentLocked]](<span style="font-size:smaller; color:#ecbc2a">talentID</span>) : <span style="font-size:smaller; color:#4ec9b0">locked</span>
+
: [[API C_SpecializationInfo.IsPvpTalentLocked|C_SpecializationInfo.IsPvpTalentLocked]](<span class="apiarg">talentID</span>) : <span class="apiret">locked</span>
: [[API C_SpecializationInfo.MatchesCurrentSpecSet|C_SpecializationInfo.MatchesCurrentSpecSet]](<span style="font-size:smaller; color:#ecbc2a">specSetID</span>) : <span style="font-size:smaller; color:#4ec9b0">matches</span>
+
: [[API C_SpecializationInfo.MatchesCurrentSpecSet|C_SpecializationInfo.MatchesCurrentSpecSet]](<span class="apiarg">specSetID</span>) : <span class="apiret">matches</span>
: [[API C_SpecializationInfo.SetPvpTalentLocked|C_SpecializationInfo.SetPvpTalentLocked]](<span style="font-size:smaller; color:#ecbc2a">talentID, locked</span>)
+
: [[API C_SpecializationInfo.SetPvpTalentLocked|C_SpecializationInfo.SetPvpTalentLocked]](<span class="apiarg">talentID, locked</span>)
 
: [[API AreTalentsLocked|AreTalentsLocked]]()
 
: [[API AreTalentsLocked|AreTalentsLocked]]()
 
: [[API CheckTalentMasterDist|CheckTalentMasterDist]]() - Returns nil if the player is too far away from the talent master to use the talent methods.
 
: [[API CheckTalentMasterDist|CheckTalentMasterDist]]() - Returns nil if the player is too far away from the talent master to use the talent methods.
Line 1,157: Line 1,201:
 
: [[API ClearFailedTalentIDs|ClearFailedTalentIDs]]()
 
: [[API ClearFailedTalentIDs|ClearFailedTalentIDs]]()
 
: [[API ConfirmTalentWipe|ConfirmTalentWipe]]() - Confirms freeing all talent points.
 
: [[API ConfirmTalentWipe|ConfirmTalentWipe]]() - Confirms freeing all talent points.
: [[API GetActiveSpecGroup|GetActiveSpecGroup]](<span style="font-size:smaller; color:#ecbc2a">[isInspect]</span>) - Returns the index of the current active specialization/talent/glyph group.
+
: [[API GetActiveSpecGroup|GetActiveSpecGroup]](<span class="apiarg">[isInspect]</span>) - Returns the index of the current active specialization/talent/glyph group.
 
: [[API GetFailedPVPTalentIDs|GetFailedPVPTalentIDs]]()
 
: [[API GetFailedPVPTalentIDs|GetFailedPVPTalentIDs]]()
 
: [[API GetFailedTalentIDs|GetFailedTalentIDs]]()
 
: [[API GetFailedTalentIDs|GetFailedTalentIDs]]()
 
: [[API GetMaxTalentTier|GetMaxTalentTier]]() - Returns the number of available talent tiers.
 
: [[API GetMaxTalentTier|GetMaxTalentTier]]() - Returns the number of available talent tiers.
: [[API GetNumSpecGroups|GetNumSpecGroups]](<span style="font-size:smaller; color:#ecbc2a">[isInspect]</span>) - Returns the number of specialization group (dual specs) the player has.
+
: [[API GetNumSpecGroups|GetNumSpecGroups]](<span class="apiarg">[isInspect]</span>) - Returns the number of specialization group (dual specs) the player has.
: [[API GetNumSpecializations|GetNumSpecializations]](<span style="font-size:smaller; color:#ecbc2a">[isInspect, isPet]</span>) - Returns the number of available specializations.
+
: [[API GetNumSpecializations|GetNumSpecializations]](<span class="apiarg">[isInspect, isPet]</span>) - Returns the number of available specializations.
: [[API GetNumSpecializationsForClassID|GetNumSpecializationsForClassID]](<span style="font-size:smaller; color:#ecbc2a">classID</span>) - Returns the number of specializations available to a particular class.
+
: [[API GetNumSpecializationsForClassID|GetNumSpecializationsForClassID]](<span class="apiarg">classID</span>) - Returns the number of specializations available to a particular class.
 
: [[API GetNumUnspentPvpTalents|GetNumUnspentPvpTalents]]()
 
: [[API GetNumUnspentPvpTalents|GetNumUnspentPvpTalents]]()
 
: [[API GetNumUnspentTalents|GetNumUnspentTalents]]() - Returns the number of unspent talents.
 
: [[API GetNumUnspentTalents|GetNumUnspentTalents]]() - Returns the number of unspent talents.
 
: [[API GetPetTalentTree|GetPetTalentTree]]()
 
: [[API GetPetTalentTree|GetPetTalentTree]]()
 
: [[API GetPrimarySpecialization|GetPrimarySpecialization]]()
 
: [[API GetPrimarySpecialization|GetPrimarySpecialization]]()
: [[API GetPvpTalentInfoByID|GetPvpTalentInfoByID]](<span style="font-size:smaller; color:#ecbc2a">talentID [, specGroupIndex, isInspect, inspectUnit]</span>)
+
: [[API GetPvpTalentInfoByID|GetPvpTalentInfoByID]](<span class="apiarg">talentID [, specGroupIndex, isInspect, inspectUnit]</span>)
 
: [[API GetPvpTalentInfoBySpecialization|GetPvpTalentInfoBySpecialization]]()
 
: [[API GetPvpTalentInfoBySpecialization|GetPvpTalentInfoBySpecialization]]()
 
: [[API GetPvpTalentLink|GetPvpTalentLink]]()
 
: [[API GetPvpTalentLink|GetPvpTalentLink]]()
: [[API GetSetBonusesForSpecializationByItemID|GetSetBonusesForSpecializationByItemID]](<span style="font-size:smaller; color:#ecbc2a">specID, itemID</span>)
+
: [[API GetSetBonusesForSpecializationByItemID|GetSetBonusesForSpecializationByItemID]](<span class="apiarg">specID, itemID</span>)
 
: [[API GetSpecChangeCost|GetSpecChangeCost]]()
 
: [[API GetSpecChangeCost|GetSpecChangeCost]]()
: [[API GetSpecialization|GetSpecialization]](<span style="font-size:smaller; color:#ecbc2a">[isInspect, isPet, specGroup]</span>) - Returns the index of the player's current specialization.
+
: [[API GetSpecialization|GetSpecialization]](<span class="apiarg">[isInspect, isPet, specGroup]</span>) - Returns the index of the player's current specialization.
: [[API GetSpecializationInfo|GetSpecializationInfo]](<span style="font-size:smaller; color:#ecbc2a">specIndex [, isInspect, isPet, inspectTarget, sex]</span>) - Returns information about the player's specializations.
+
: [[API GetSpecializationInfo|GetSpecializationInfo]](<span class="apiarg">specIndex [, isInspect, isPet, inspectTarget, sex]</span>) - Returns information about the player's specializations.
: [[API GetSpecializationInfoByID|GetSpecializationInfoByID]](<span style="font-size:smaller; color:#ecbc2a">specID</span>) - Returns information about the specified specialization.
+
: [[API GetSpecializationInfoByID|GetSpecializationInfoByID]](<span class="apiarg">specID</span>) - Returns information about the specified specialization.
: [[API GetSpecializationInfoForClassID|GetSpecializationInfoForClassID]](<span style="font-size:smaller; color:#ecbc2a">classID, specIndex</span>) - Returns information about the specified specialization.
+
: [[API GetSpecializationInfoForClassID|GetSpecializationInfoForClassID]](<span class="apiarg">classID, specIndex</span>) - Returns information about the specified specialization.
: [[API GetSpecializationInfoForSpecID|GetSpecializationInfoForSpecID]](<span style="font-size:smaller; color:#ecbc2a">specID [, sex]</span>)
+
: [[API GetSpecializationInfoForSpecID|GetSpecializationInfoForSpecID]](<span class="apiarg">specID [, sex]</span>)
: [[API GetSpecializationMasterySpells|GetSpecializationMasterySpells]](<span style="font-size:smaller; color:#ecbc2a">specIndex [, isInspect, isPet]</span>) - Returns the mastery spellID of the current player's specialization.
+
: [[API GetSpecializationMasterySpells|GetSpecializationMasterySpells]](<span class="apiarg">specIndex [, isInspect, isPet]</span>) - Returns the mastery spellID of the current player's specialization.
: [[API GetSpecializationNameForSpecID|GetSpecializationNameForSpecID]](<span style="font-size:smaller; color:#ecbc2a">specID [, sex]</span>)
+
: [[API GetSpecializationNameForSpecID|GetSpecializationNameForSpecID]](<span class="apiarg">specID [, sex]</span>)
: [[API GetSpecializationRole|GetSpecializationRole]](<span style="font-size:smaller; color:#ecbc2a">specIndex [, isInspect, isPet]</span>) - Returns the role a specialization is intended to perform.
+
: [[API GetSpecializationRole|GetSpecializationRole]](<span class="apiarg">specIndex [, isInspect, isPet]</span>) - Returns the role a specialization is intended to perform.
: [[API GetSpecializationRoleByID|GetSpecializationRoleByID]](<span style="font-size:smaller; color:#ecbc2a">specID</span>) - Returns the role a specialization is intended to perform.
+
: [[API GetSpecializationRoleByID|GetSpecializationRoleByID]](<span class="apiarg">specID</span>) - Returns the role a specialization is intended to perform.
: [[API GetSpecializationSpells|GetSpecializationSpells]](<span style="font-size:smaller; color:#ecbc2a">specIndex [, isInspect, isPet]</span>) - Returns the spellID of key abilities used by the specified specialization.
+
: [[API GetSpecializationSpells|GetSpecializationSpells]](<span class="apiarg">specIndex [, isInspect, isPet]</span>) - Returns the spellID of key abilities used by the specified specialization.
: [[API GetSpecsForSpell|GetSpecsForSpell]](<span style="font-size:smaller; color:#ecbc2a">spellName or spellIndex, bookType</span>) - Returns the specs for which the specified spell can be used.
+
: [[API GetSpecsForSpell|GetSpecsForSpell]](<span class="apiarg">spellName or spellIndex, bookType</span>) - Returns the specs for which the specified spell can be used.
: [[API GetTalentInfo|GetTalentInfo]](<span style="font-size:smaller; color:#ecbc2a">tier, column, specGroupIndex [, isInspect, inspectUnit]</span>) - Returns information about a talent.
+
: [[API GetTalentInfo|GetTalentInfo]](<span class="apiarg">tier, column, specGroupIndex [, isInspect, inspectUnit]</span>) - Returns information about a talent.
: [[API GetTalentInfoByID|GetTalentInfoByID]](<span style="font-size:smaller; color:#ecbc2a">talentID, specGroupIndex [, isInspect, inspectUnit]</span>) - Returns information about a talent.
+
: [[API GetTalentInfoByID|GetTalentInfoByID]](<span class="apiarg">talentID, specGroupIndex [, isInspect, inspectUnit]</span>) - Returns information about a talent.
: [[API GetTalentInfoBySpecialization|GetTalentInfoBySpecialization]](<span style="font-size:smaller; color:#ecbc2a">specGroupIndex, tier, column</span>)
+
: [[API GetTalentInfoBySpecialization|GetTalentInfoBySpecialization]](<span class="apiarg">specGroupIndex, tier, column</span>)
: [[API GetTalentLink|GetTalentLink]](<span style="font-size:smaller; color:#ecbc2a">talentID [, isInspect, specGroup, inspectID, classID]</span>) - Returns the talent link.
+
: [[API GetTalentLink|GetTalentLink]](<span class="apiarg">talentID [, isInspect, specGroup, inspectID, classID]</span>) - Returns the talent link.
: [[API GetTalentTierInfo|GetTalentTierInfo]](<span style="font-size:smaller; color:#ecbc2a">tier</span>)
+
: [[API GetTalentTierInfo|GetTalentTierInfo]](<span class="apiarg">tier</span>)
 
: [[API IsPvpTalentSpell|IsPvpTalentSpell]]()
 
: [[API IsPvpTalentSpell|IsPvpTalentSpell]]()
: [[API IsSpellClassOrSpec|IsSpellClassOrSpec]](<span style="font-size:smaller; color:#ecbc2a">spellName or spellIndex, bookType</span>) - Returns whether a given spell is specific to a specialization and/or class.
+
: [[API IsSpellClassOrSpec|IsSpellClassOrSpec]](<span class="apiarg">spellName or spellIndex, bookType</span>) - Returns whether a given spell is specific to a specialization and/or class.
: [[API IsTalentSpell|IsTalentSpell]](<span style="font-size:smaller; color:#ecbc2a">slot, bookType</span>) - Returns whether or not the specified spell is learned from a talent.
+
: [[API IsTalentSpell|IsTalentSpell]](<span class="apiarg">slot, bookType</span>) - Returns whether or not the specified spell is learned from a talent.
 
: [[API LearnPvpTalent|LearnPvpTalent]]()
 
: [[API LearnPvpTalent|LearnPvpTalent]]()
 
: [[API LearnPvpTalents|LearnPvpTalents]]()
 
: [[API LearnPvpTalents|LearnPvpTalents]]()
: [[API LearnTalent|LearnTalent]]()
+
: [[API LearnTalent|LearnTalent]](talentID)
: <small>NOCOMBAT</small> [[API LearnTalents|LearnTalents]](<span style="font-size:smaller; color:#ecbc2a">talentID1, talentID2, ...</span>) - Learns the talents listed.
+
: <small>NOCOMBAT</small> [[API LearnTalents|LearnTalents]](<span class="apiarg">talentID1, talentID2, ...</span>) - Learns the talents listed.
 
: [[API RemovePvpTalent|RemovePvpTalent]]()
 
: [[API RemovePvpTalent|RemovePvpTalent]]()
: <small>NOCOMBAT</small> [[API RemoveTalent|RemoveTalent]](<span style="font-size:smaller; color:#ecbc2a">talentID</span>) - Removes the specified talent.
+
: <small>NOCOMBAT</small> [[API RemoveTalent|RemoveTalent]](<span class="apiarg">talentID</span>) - Removes the specified talent.
: <small>NOCOMBAT</small> [[API SetSpecialization|SetSpecialization]](<span style="font-size:smaller; color:#ecbc2a">specIndex [, isPet]</span>) - Selects a specialization.
+
: <small>NOCOMBAT</small> [[API SetSpecialization|SetSpecialization]](<span class="apiarg">specIndex [, isPet]</span>) - Selects a specialization.
: <small>NOCOMBAT</small> [[API UnlearnSpecialization|UnlearnSpecialization]](<span style="font-size:smaller; color:#ecbc2a">specIndex [, isPet]</span>)
+
: <small>NOCOMBAT</small> [[API UnlearnSpecialization|UnlearnSpecialization]](<span class="apiarg">specIndex [, isPet]</span>)
   
 
=== Collections ===
 
=== Collections ===
Line 1,206: Line 1,250:
 
==== Mount Journal ====
 
==== Mount Journal ====
 
The [[Mounts_tab|Mount Journal]] was added in [[Patch 6.0.2]]
 
The [[Mounts_tab|Mount Journal]] was added in [[Patch 6.0.2]]
: [[API C_MountJournal.ClearFanfare|C_MountJournal.ClearFanfare]](<span style="font-size:smaller; color:#ecbc2a">mountID</span>)
+
: [[API C_MountJournal.ClearFanfare|C_MountJournal.ClearFanfare]](<span class="apiarg">mountID</span>)
 
: [[API C_MountJournal.ClearRecentFanfares|C_MountJournal.ClearRecentFanfares]]()
 
: [[API C_MountJournal.ClearRecentFanfares|C_MountJournal.ClearRecentFanfares]]()
 
: [[API C_MountJournal.Dismiss|C_MountJournal.Dismiss]]() - Dismisses the currently summoned mount.
 
: [[API C_MountJournal.Dismiss|C_MountJournal.Dismiss]]() - Dismisses the currently summoned mount.
: [[API C_MountJournal.GetCollectedFilterSetting|C_MountJournal.GetCollectedFilterSetting]](<span style="font-size:smaller; color:#ecbc2a">filterIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">isChecked</span> - Indicates whether the specified mount journal filter is enabled.
+
: [[API C_MountJournal.GetCollectedFilterSetting|C_MountJournal.GetCollectedFilterSetting]](<span class="apiarg">filterIndex</span>) : <span class="apiret">isChecked</span> - Indicates whether the specified mount journal filter is enabled.
: [[API C_MountJournal.GetDisplayedMountAllCreatureDisplayInfo|C_MountJournal.GetDisplayedMountAllCreatureDisplayInfo]](<span style="font-size:smaller; color:#ecbc2a">mountIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">allDisplayInfo</span> - Returns all display IDs for a mount by index.
+
: [[API C_MountJournal.GetDisplayedMountAllCreatureDisplayInfo|C_MountJournal.GetDisplayedMountAllCreatureDisplayInfo]](<span class="apiarg">mountIndex</span>) : <span class="apiret">allDisplayInfo</span> - Returns all display IDs for a mount by index.
: [[API C_MountJournal.GetDisplayedMountInfo|C_MountJournal.GetDisplayedMountInfo]](<span style="font-size:smaller; color:#ecbc2a">displayIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">name, spellID, icon, isActive, isUsable, sourceType, isFavorite, ...</span> - Returns information about the specified mount.
+
: [[API C_MountJournal.GetDisplayedMountInfo|C_MountJournal.GetDisplayedMountInfo]](<span class="apiarg">displayIndex</span>) : <span class="apiret">name, spellID, icon, isActive, isUsable, sourceType, isFavorite, ...</span> - Returns information about the specified mount.
: [[API C_MountJournal.GetDisplayedMountInfoExtra|C_MountJournal.GetDisplayedMountInfoExtra]](<span style="font-size:smaller; color:#ecbc2a">mountIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">creatureDisplayInfoID, description, source, isSelfMount, mountTypeID, ...</span> - Returns extra information about the specified mount.
+
: [[API C_MountJournal.GetDisplayedMountInfoExtra|C_MountJournal.GetDisplayedMountInfoExtra]](<span class="apiarg">mountIndex</span>) : <span class="apiret">creatureDisplayInfoID, description, source, isSelfMount, mountTypeID, ...</span> - Returns extra information about the specified mount.
: [[API C_MountJournal.GetIsFavorite|C_MountJournal.GetIsFavorite]](<span style="font-size:smaller; color:#ecbc2a">mountIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">isFavorite, canSetFavorite</span> - Indicates whether the specified mount is marked as a favorite.
+
: [[API C_MountJournal.GetIsFavorite|C_MountJournal.GetIsFavorite]](<span class="apiarg">mountIndex</span>) : <span class="apiret">isFavorite, canSetFavorite</span> - Indicates whether the specified mount is marked as a favorite.
: [[API C_MountJournal.GetMountAllCreatureDisplayInfoByID|C_MountJournal.GetMountAllCreatureDisplayInfoByID]](<span style="font-size:smaller; color:#ecbc2a">mountID</span>) : <span style="font-size:smaller; color:#4ec9b0">allDisplayInfo</span> - Returns all display IDs for a mount by ID.
+
: [[API C_MountJournal.GetMountAllCreatureDisplayInfoByID|C_MountJournal.GetMountAllCreatureDisplayInfoByID]](<span class="apiarg">mountID</span>) : <span class="apiret">allDisplayInfo</span> - Returns all display IDs for a mount by ID.
: [[API C_MountJournal.GetMountFromItem|C_MountJournal.GetMountFromItem]](<span style="font-size:smaller; color:#ecbc2a">itemID</span>) : <span style="font-size:smaller; color:#4ec9b0">mountID</span> - Returns the mount for an item ID.
+
: [[API C_MountJournal.GetMountFromItem|C_MountJournal.GetMountFromItem]](<span class="apiarg">itemID</span>) : <span class="apiret">mountID</span> - Returns the mount for an item ID.
: [[API C_MountJournal.GetMountFromSpell|C_MountJournal.GetMountFromSpell]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>) : <span style="font-size:smaller; color:#4ec9b0">mountID</span> - Returns the mount for a spell ID.
+
: [[API C_MountJournal.GetMountFromSpell|C_MountJournal.GetMountFromSpell]](<span class="apiarg">spellID</span>) : <span class="apiret">mountID</span> - Returns the mount for a spell ID.
: [[API C_MountJournal.GetMountIDs|C_MountJournal.GetMountIDs]]() : <span style="font-size:smaller; color:#4ec9b0">mountIDs</span> - Returns the IDs of mounts listed in the mount journal.
+
: [[API C_MountJournal.GetMountIDs|C_MountJournal.GetMountIDs]]() : <span class="apiret">mountIDs</span> - Returns the IDs of mounts listed in the mount journal.
: [[API C_MountJournal.GetMountInfoByID|C_MountJournal.GetMountInfoByID]](<span style="font-size:smaller; color:#ecbc2a">mountID</span>) : <span style="font-size:smaller; color:#4ec9b0">name, spellID, icon, isActive, isUsable, sourceType, isFavorite, ...</span> - Returns information about the specified mount.
+
: [[API C_MountJournal.GetMountInfoByID|C_MountJournal.GetMountInfoByID]](<span class="apiarg">mountID</span>) : <span class="apiret">name, spellID, icon, isActive, isUsable, sourceType, isFavorite, ...</span> - Returns information about the specified mount.
: [[API C_MountJournal.GetMountInfoExtraByID|C_MountJournal.GetMountInfoExtraByID]](<span style="font-size:smaller; color:#ecbc2a">mountID</span>) : <span style="font-size:smaller; color:#4ec9b0">creatureDisplayInfoID, description, source, isSelfMount, mountTypeID, ...</span> - Returns extra information about the specified mount.
+
: [[API C_MountJournal.GetMountInfoExtraByID|C_MountJournal.GetMountInfoExtraByID]](<span class="apiarg">mountID</span>) : <span class="apiret">creatureDisplayInfoID, description, source, isSelfMount, mountTypeID, ...</span> - Returns extra information about the specified mount.
: [[API C_MountJournal.GetMountUsabilityByID|C_MountJournal.GetMountUsabilityByID]](<span style="font-size:smaller; color:#ecbc2a">mountID, checkIndoors</span>) : <span style="font-size:smaller; color:#4ec9b0">isUsable, useError</span> - Returns if a mount is currently usable by the player.
+
: [[API C_MountJournal.GetMountUsabilityByID|C_MountJournal.GetMountUsabilityByID]](<span class="apiarg">mountID, checkIndoors</span>) : <span class="apiret">isUsable, useError</span> - Returns if a mount is currently usable by the player.
: [[API C_MountJournal.GetNumDisplayedMounts|C_MountJournal.GetNumDisplayedMounts]]() : <span style="font-size:smaller; color:#4ec9b0">numMounts</span> - Returns the number of mounts shown in the mount journal.
+
: [[API C_MountJournal.GetNumDisplayedMounts|C_MountJournal.GetNumDisplayedMounts]]() : <span class="apiret">numMounts</span> - Returns the number of mounts shown in the mount journal.
: [[API C_MountJournal.GetNumMounts|C_MountJournal.GetNumMounts]]() : <span style="font-size:smaller; color:#4ec9b0">numMounts</span> - Returns the number of mounts listed in the mount journal.
+
: [[API C_MountJournal.GetNumMounts|C_MountJournal.GetNumMounts]]() : <span class="apiret">numMounts</span> - Returns the number of mounts listed in the mount journal.
: [[API C_MountJournal.GetNumMountsNeedingFanfare|C_MountJournal.GetNumMountsNeedingFanfare]]() : <span style="font-size:smaller; color:#4ec9b0">numMountsNeedingFanfare</span>
+
: [[API C_MountJournal.GetNumMountsNeedingFanfare|C_MountJournal.GetNumMountsNeedingFanfare]]() : <span class="apiret">numMountsNeedingFanfare</span>
: [[API C_MountJournal.IsSourceChecked|C_MountJournal.IsSourceChecked]](<span style="font-size:smaller; color:#ecbc2a">filterIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">isChecked</span>
+
: [[API C_MountJournal.IsSourceChecked|C_MountJournal.IsSourceChecked]](<span class="apiarg">filterIndex</span>) : <span class="apiret">isChecked</span>
: [[API C_MountJournal.IsValidSourceFilter|C_MountJournal.IsValidSourceFilter]](<span style="font-size:smaller; color:#ecbc2a">filterIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">isValid</span>
+
: [[API C_MountJournal.IsTypeChecked|C_MountJournal.IsTypeChecked]](<span class="apiarg">filterIndex</span>) : <span class="apiret">isChecked</span>
: [[API C_MountJournal.NeedsFanfare|C_MountJournal.NeedsFanfare]](<span style="font-size:smaller; color:#ecbc2a">mountID</span>) : <span style="font-size:smaller; color:#4ec9b0">needsFanfare</span>
+
: [[API C_MountJournal.IsValidSourceFilter|C_MountJournal.IsValidSourceFilter]](<span class="apiarg">filterIndex</span>) : <span class="apiret">isValid</span>
: [[API C_MountJournal.Pickup|C_MountJournal.Pickup]](<span style="font-size:smaller; color:#ecbc2a">displayIndex</span>) - Picks up the specified mount onto the cursor, usually in preparation for placing it on an action button.
+
: [[API C_MountJournal.IsValidTypeFilter|C_MountJournal.IsValidTypeFilter]](<span class="apiarg">filterIndex</span>) : <span class="apiret">isValid</span>
: [[API C_MountJournal.SetAllSourceFilters|C_MountJournal.SetAllSourceFilters]](<span style="font-size:smaller; color:#ecbc2a">isChecked</span>)
+
: [[API C_MountJournal.NeedsFanfare|C_MountJournal.NeedsFanfare]](<span class="apiarg">mountID</span>) : <span class="apiret">needsFanfare</span>
: [[API C_MountJournal.SetCollectedFilterSetting|C_MountJournal.SetCollectedFilterSetting]](<span style="font-size:smaller; color:#ecbc2a">filterIndex, isChecked</span>) - Enables or disables the specified mount journal filter.
+
: [[API C_MountJournal.Pickup|C_MountJournal.Pickup]](<span class="apiarg">displayIndex</span>) - Picks up the specified mount onto the cursor, usually in preparation for placing it on an action button.
: [[API C_MountJournal.SetIsFavorite|C_MountJournal.SetIsFavorite]](<span style="font-size:smaller; color:#ecbc2a">mountIndex, isFavorite</span>) - Marks or unmarks the specified mount as a favorite.
+
: [[API C_MountJournal.SetAllSourceFilters|C_MountJournal.SetAllSourceFilters]](<span class="apiarg">isChecked</span>)
: [[API C_MountJournal.SetSearch|C_MountJournal.SetSearch]](<span style="font-size:smaller; color:#ecbc2a">searchValue</span>)
+
: [[API C_MountJournal.SetAllTypeFilters|C_MountJournal.SetAllTypeFilters]](<span class="apiarg">isChecked</span>)
: [[API C_MountJournal.SetSourceFilter|C_MountJournal.SetSourceFilter]](<span style="font-size:smaller; color:#ecbc2a">filterIndex, isChecked</span>)
+
: [[API C_MountJournal.SetCollectedFilterSetting|C_MountJournal.SetCollectedFilterSetting]](<span class="apiarg">filterIndex, isChecked</span>) - Enables or disables the specified mount journal filter.
: [[API C_MountJournal.SummonByID|C_MountJournal.SummonByID]](<span style="font-size:smaller; color:#ecbc2a">mountID</span>) - Summons the specified mount.
+
: [[API C_MountJournal.SetIsFavorite|C_MountJournal.SetIsFavorite]](<span class="apiarg">mountIndex, isFavorite</span>) - Marks or unmarks the specified mount as a favorite.
  +
: [[API C_MountJournal.SetSearch|C_MountJournal.SetSearch]](<span class="apiarg">searchValue</span>)
  +
: [[API C_MountJournal.SetSourceFilter|C_MountJournal.SetSourceFilter]](<span class="apiarg">filterIndex, isChecked</span>)
  +
: [[API C_MountJournal.SetTypeFilter|C_MountJournal.SetTypeFilter]](<span class="apiarg">filterIndex, isChecked</span>)
  +
: [[API C_MountJournal.SummonByID|C_MountJournal.SummonByID]](<span class="apiarg">mountID</span>) - Summons the specified mount.
 
[[Mount equipment]] was added in [[Patch 8.2.0]]
 
[[Mount equipment]] was added in [[Patch 8.2.0]]
: <small>PROTECTED</small> [[API C_MountJournal.ApplyMountEquipment|C_MountJournal.ApplyMountEquipment]](<span style="font-size:smaller; color:#ecbc2a">itemLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">canContinue</span>
+
: <small>PROTECTED</small> [[API C_MountJournal.ApplyMountEquipment|C_MountJournal.ApplyMountEquipment]](<span class="apiarg">itemLocation</span>) : <span class="apiret">canContinue</span>
: [[API C_MountJournal.AreMountEquipmentEffectsSuppressed|C_MountJournal.AreMountEquipmentEffectsSuppressed]]() : <span style="font-size:smaller; color:#4ec9b0">areEffectsSuppressed</span>
+
: [[API C_MountJournal.AreMountEquipmentEffectsSuppressed|C_MountJournal.AreMountEquipmentEffectsSuppressed]]() : <span class="apiret">areEffectsSuppressed</span>
: [[API C_MountJournal.GetAppliedMountEquipmentID|C_MountJournal.GetAppliedMountEquipmentID]]() : <span style="font-size:smaller; color:#4ec9b0">itemID</span>
+
: [[API C_MountJournal.GetAppliedMountEquipmentID|C_MountJournal.GetAppliedMountEquipmentID]]() : <span class="apiret">itemID</span>
: [[API C_MountJournal.GetMountEquipmentUnlockLevel|C_MountJournal.GetMountEquipmentUnlockLevel]]() : <span style="font-size:smaller; color:#4ec9b0">level</span>
+
: [[API C_MountJournal.GetMountEquipmentUnlockLevel|C_MountJournal.GetMountEquipmentUnlockLevel]]() : <span class="apiret">level</span>
: [[API C_MountJournal.IsItemMountEquipment|C_MountJournal.IsItemMountEquipment]](<span style="font-size:smaller; color:#ecbc2a">itemLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">isMountEquipment</span>
+
: [[API C_MountJournal.IsItemMountEquipment|C_MountJournal.IsItemMountEquipment]](<span class="apiarg">itemLocation</span>) : <span class="apiret">isMountEquipment</span>
: [[API C_MountJournal.IsMountEquipmentApplied|C_MountJournal.IsMountEquipmentApplied]]() : <span style="font-size:smaller; color:#4ec9b0">isApplied</span>
+
: [[API C_MountJournal.IsMountEquipmentApplied|C_MountJournal.IsMountEquipmentApplied]]() : <span class="apiret">isApplied</span>
: [[API C_PlayerInfo.CanPlayerUseMountEquipment|C_PlayerInfo.CanPlayerUseMountEquipment]]() : <span style="font-size:smaller; color:#4ec9b0">canUseMountEquipment, failureReason</span> - Returns true if the player can use mount equipment.
+
: [[API C_PlayerInfo.CanPlayerUseMountEquipment|C_PlayerInfo.CanPlayerUseMountEquipment]]() : <span class="apiret">canUseMountEquipment, failureReason</span> - Returns true if the player can use mount equipment.
 
The old companion API (non-combat pets and mounts) was added in [[Patch 3.0.2]]
 
The old companion API (non-combat pets and mounts) was added in [[Patch 3.0.2]]
: [[API CallCompanion|CallCompanion]](<span style="font-size:smaller; color:#ecbc2a">type, slotid</span>) - Summons a companion.
+
: [[API CallCompanion|CallCompanion]](<span class="apiarg">type, slotid</span>) - Summons a companion.
: [[API DismissCompanion|DismissCompanion]](<span style="font-size:smaller; color:#ecbc2a">type</span>) - Dismisses an active companion.
+
: [[API DismissCompanion|DismissCompanion]](<span class="apiarg">type</span>) - Dismisses an active companion.
: [[API GetCompanionInfo|GetCompanionInfo]](<span style="font-size:smaller; color:#ecbc2a">type, slotid</span>) - Returns info about a selected companion.
+
: [[API GetCompanionInfo|GetCompanionInfo]](<span class="apiarg">type, slotid</span>) - Returns info about a selected companion.
: [[API GetNumCompanions|GetNumCompanions]](<span style="font-size:smaller; color:#ecbc2a">type</span>) - Get the number of companions of the specified type.
+
: [[API GetNumCompanions|GetNumCompanions]](<span class="apiarg">type</span>) - Get the number of companions of the specified type.
 
: [[API SummonRandomCritter|SummonRandomCritter]]() - Summons a random critter companion.
 
: [[API SummonRandomCritter|SummonRandomCritter]]() - Summons a random critter companion.
   
 
==== Pet Journal ====
 
==== Pet Journal ====
 
The [[Pet Journal]] was added in [[Patch 5.0.4]]. See also [[#Pet Battles|Pet Battle]] functions.
 
The [[Pet Journal]] was added in [[Patch 5.0.4]]. See also [[#Pet Battles|Pet Battle]] functions.
: [[API C_PetInfo.GetPetTamersForMap|C_PetInfo.GetPetTamersForMap]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">petTamers</span> - Returns the pet tamers on a map.
+
: [[API C_PetInfo.GetPetTamersForMap|C_PetInfo.GetPetTamersForMap]](<span class="apiarg">uiMapID</span>) : <span class="apiret">petTamers</span> - Returns the pet tamers on a map.
: [[API C_PetJournal.CagePetByID|C_PetJournal.CagePetByID]](<span style="font-size:smaller; color:#ecbc2a">petID</span>) - Puts the pet into a cage.
+
: [[API C_PetJournal.CagePetByID|C_PetJournal.CagePetByID]](<span class="apiarg">petID</span>) - Puts the pet into a cage.
 
: [[API C_PetJournal.ClearFanfare|C_PetJournal.ClearFanfare]]()
 
: [[API C_PetJournal.ClearFanfare|C_PetJournal.ClearFanfare]]()
 
: [[API C_PetJournal.ClearRecentFanfares|C_PetJournal.ClearRecentFanfares]]()
 
: [[API C_PetJournal.ClearRecentFanfares|C_PetJournal.ClearRecentFanfares]]()
 
: [[API C_PetJournal.ClearSearchFilter|C_PetJournal.ClearSearchFilter]]() - Clears the search box in the pet journal.
 
: [[API C_PetJournal.ClearSearchFilter|C_PetJournal.ClearSearchFilter]]() - Clears the search box in the pet journal.
 
: [[API C_PetJournal.FindPetIDByName|C_PetJournal.FindPetIDByName]]()
 
: [[API C_PetJournal.FindPetIDByName|C_PetJournal.FindPetIDByName]]()
: [[API C_PetJournal.GetBattlePetLink|C_PetJournal.GetBattlePetLink]](<span style="font-size:smaller; color:#ecbc2a">petID</span>) - Returns a battle pet hyperlink for the given petID.
+
: [[API C_PetJournal.GetBattlePetLink|C_PetJournal.GetBattlePetLink]](<span class="apiarg">petID</span>) - Returns a battle pet hyperlink for the given petID.
: [[API C_PetJournal.GetDisplayIDByIndex|C_PetJournal.GetDisplayIDByIndex]](<span style="font-size:smaller; color:#ecbc2a">speciesID, index</span>) : <span style="font-size:smaller; color:#4ec9b0">displayID</span>
+
: [[API C_PetJournal.GetDisplayIDByIndex|C_PetJournal.GetDisplayIDByIndex]](<span class="apiarg">speciesID, index</span>) : <span class="apiret">displayID</span>
: [[API C_PetJournal.GetDisplayProbabilityByIndex|C_PetJournal.GetDisplayProbabilityByIndex]](<span style="font-size:smaller; color:#ecbc2a">speciesID, index</span>) : <span style="font-size:smaller; color:#4ec9b0">displayProbability</span>
+
: [[API C_PetJournal.GetDisplayProbabilityByIndex|C_PetJournal.GetDisplayProbabilityByIndex]](<span class="apiarg">speciesID, index</span>) : <span class="apiret">displayProbability</span>
 
: [[API C_PetJournal.GetNumCollectedInfo|C_PetJournal.GetNumCollectedInfo]]()
 
: [[API C_PetJournal.GetNumCollectedInfo|C_PetJournal.GetNumCollectedInfo]]()
: [[API C_PetJournal.GetNumDisplays|C_PetJournal.GetNumDisplays]](<span style="font-size:smaller; color:#ecbc2a">speciesID</span>) : <span style="font-size:smaller; color:#4ec9b0">numDisplays</span>
+
: [[API C_PetJournal.GetNumDisplays|C_PetJournal.GetNumDisplays]](<span class="apiarg">speciesID</span>) : <span class="apiret">numDisplays</span>
: [[API C_PetJournal.GetNumMaxPets|C_PetJournal.GetNumMaxPets]]()
+
: [[API C_PetJournal.GetNumPets|C_PetJournal.GetNumPets]]() - Returns information about the number of battle pets.
  +
: [[API C_PetJournal.GetNumPetsNeedingFanfare|C_PetJournal.GetNumPetsNeedingFanfare]]()
 
: [[API C_PetJournal.GetNumPetSources|C_PetJournal.GetNumPetSources]]() - Returns information about the number of pet sources.
 
: [[API C_PetJournal.GetNumPetSources|C_PetJournal.GetNumPetSources]]() - Returns information about the number of pet sources.
 
: [[API C_PetJournal.GetNumPetTypes|C_PetJournal.GetNumPetTypes]]() - Returns information about the number of pet types.
 
: [[API C_PetJournal.GetNumPetTypes|C_PetJournal.GetNumPetTypes]]() - Returns information about the number of pet types.
: [[API C_PetJournal.GetNumPetsNeedingFanfare|C_PetJournal.GetNumPetsNeedingFanfare]]()
+
: [[API C_PetJournal.GetOwnedBattlePetString|C_PetJournal.GetOwnedBattlePetString]](<span class="apiarg">speciesID</span>) - Returns string about numbers of battle pets in journal.
: [[API C_PetJournal.GetNumPets|C_PetJournal.GetNumPets]]() - Returns information about the number of battle pets.
+
: [[API C_PetJournal.GetPetAbilityInfo|C_PetJournal.GetPetAbilityInfo]](<span class="apiarg">abilityID</span>) : <span class="apiret">name, icon, petType</span>
: [[API C_PetJournal.GetOwnedBattlePetString|C_PetJournal.GetOwnedBattlePetString]](<span style="font-size:smaller; color:#ecbc2a">speciesID</span>) - Returns string about numbers of battle pets in journal.
+
: [[API C_PetJournal.GetPetAbilityList|C_PetJournal.GetPetAbilityList]](<span class="apiarg">speciesID [, idTable, levelTable]</span>)
: [[API C_PetJournal.GetPetAbilityInfo|C_PetJournal.GetPetAbilityInfo]](<span style="font-size:smaller; color:#ecbc2a">abilityID</span>)
+
: [[API C_PetJournal.GetPetAbilityListTable|C_PetJournal.GetPetAbilityListTable]](<span class="apiarg">speciesID</span>) : <span class="apiret">info</span>
: [[API C_PetJournal.GetPetAbilityList|C_PetJournal.GetPetAbilityList]](<span style="font-size:smaller; color:#ecbc2a">speciesID [, idTable, levelTable]</span>)
 
 
: [[API C_PetJournal.GetPetCooldownByGUID|C_PetJournal.GetPetCooldownByGUID]]()
 
: [[API C_PetJournal.GetPetCooldownByGUID|C_PetJournal.GetPetCooldownByGUID]]()
: [[API C_PetJournal.GetPetInfoByIndex|C_PetJournal.GetPetInfoByIndex]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns information about a battle pet.
+
: [[API C_PetJournal.GetPetInfoByIndex|C_PetJournal.GetPetInfoByIndex]](<span class="apiarg">index</span>) - Returns information about a battle pet.
: [[API C_PetJournal.GetPetInfoByItemID|C_PetJournal.GetPetInfoByItemID]](<span style="font-size:smaller; color:#ecbc2a">itemID</span>)
+
: [[API C_PetJournal.GetPetInfoByItemID|C_PetJournal.GetPetInfoByItemID]](<span class="apiarg">itemID</span>)
: [[API C_PetJournal.GetPetInfoByPetID|C_PetJournal.GetPetInfoByPetID]](<span style="font-size:smaller; color:#ecbc2a">petID</span>) - Returns information about a battle pet.
+
: [[API C_PetJournal.GetPetInfoByPetID|C_PetJournal.GetPetInfoByPetID]](<span class="apiarg">petID</span>) - Returns information about a battle pet.
: [[API C_PetJournal.GetPetInfoBySpeciesID|C_PetJournal.GetPetInfoBySpeciesID]](<span style="font-size:smaller; color:#ecbc2a">speciesID</span>) - Returns information about a pet species.
+
: [[API C_PetJournal.GetPetInfoBySpeciesID|C_PetJournal.GetPetInfoBySpeciesID]](<span class="apiarg">speciesID</span>) - Returns information about a pet species.
: [[API C_PetJournal.GetPetLoadOutInfo|C_PetJournal.GetPetLoadOutInfo]](<span style="font-size:smaller; color:#ecbc2a">slotIndex</span>)
+
: [[API C_PetJournal.GetPetInfoTableByPetID|C_PetJournal.GetPetInfoTableByPetID]](<span class="apiarg">petID</span>) : <span class="apiret">info</span>
: [[API C_PetJournal.GetPetModelSceneInfoBySpeciesID|C_PetJournal.GetPetModelSceneInfoBySpeciesID]](<span style="font-size:smaller; color:#ecbc2a">speciesID</span>)
+
: [[API C_PetJournal.GetPetLoadOutInfo|C_PetJournal.GetPetLoadOutInfo]](<span class="apiarg">slot</span>) : <span class="apiret">petID, ability1ID, ability2ID, ability3ID, locked</span>
  +
: [[API C_PetJournal.GetPetModelSceneInfoBySpeciesID|C_PetJournal.GetPetModelSceneInfoBySpeciesID]](<span class="apiarg">speciesID</span>)
 
: [[API C_PetJournal.GetPetSortParameter|C_PetJournal.GetPetSortParameter]]()
 
: [[API C_PetJournal.GetPetSortParameter|C_PetJournal.GetPetSortParameter]]()
: [[API C_PetJournal.GetPetStats|C_PetJournal.GetPetStats]](<span style="font-size:smaller; color:#ecbc2a">petID</span>) - Returns a pet's stats from the Pet Journal.
+
: [[API C_PetJournal.GetPetStats|C_PetJournal.GetPetStats]](<span class="apiarg">petID</span>) - Returns a pet's stats from the Pet Journal.
: [[API C_PetJournal.GetPetSummonInfo|C_PetJournal.GetPetSummonInfo]](<span style="font-size:smaller; color:#ecbc2a">battlePetGUID</span>) : <span style="font-size:smaller; color:#4ec9b0">isSummonable, error, errorText</span>
+
: [[API C_PetJournal.GetPetSummonInfo|C_PetJournal.GetPetSummonInfo]](<span class="apiarg">battlePetGUID</span>) : <span class="apiret">isSummonable, error, errorText</span>
 
: [[API C_PetJournal.GetPetTeamAverageLevel|C_PetJournal.GetPetTeamAverageLevel]]()
 
: [[API C_PetJournal.GetPetTeamAverageLevel|C_PetJournal.GetPetTeamAverageLevel]]()
 
: [[API C_PetJournal.GetSummonBattlePetCooldown|C_PetJournal.GetSummonBattlePetCooldown]]()
 
: [[API C_PetJournal.GetSummonBattlePetCooldown|C_PetJournal.GetSummonBattlePetCooldown]]()
: [[API C_PetJournal.GetSummonRandomFavoritePetGUID|C_PetJournal.GetSummonRandomFavoritePetGUID]]()
 
 
: [[API C_PetJournal.GetSummonedPetGUID|C_PetJournal.GetSummonedPetGUID]]() - Returns information about a battle pet.
 
: [[API C_PetJournal.GetSummonedPetGUID|C_PetJournal.GetSummonedPetGUID]]() - Returns information about a battle pet.
  +
: [[API C_PetJournal.GetSummonRandomFavoritePetGUID|C_PetJournal.GetSummonRandomFavoritePetGUID]]()
 
: [[API C_PetJournal.IsFilterChecked|C_PetJournal.IsFilterChecked]]()
 
: [[API C_PetJournal.IsFilterChecked|C_PetJournal.IsFilterChecked]]()
 
: [[API C_PetJournal.IsFindBattleEnabled|C_PetJournal.IsFindBattleEnabled]]()
 
: [[API C_PetJournal.IsFindBattleEnabled|C_PetJournal.IsFindBattleEnabled]]()
Line 1,290: Line 1,339:
 
: [[API C_PetJournal.IsPetSourceChecked|C_PetJournal.IsPetSourceChecked]]()
 
: [[API C_PetJournal.IsPetSourceChecked|C_PetJournal.IsPetSourceChecked]]()
 
: [[API C_PetJournal.IsPetTypeChecked|C_PetJournal.IsPetTypeChecked]]()
 
: [[API C_PetJournal.IsPetTypeChecked|C_PetJournal.IsPetTypeChecked]]()
: [[API C_PetJournal.PetCanBeReleased|C_PetJournal.PetCanBeReleased]](<span style="font-size:smaller; color:#ecbc2a">petID</span>) - Returns true if you can release the pet.
+
: [[API C_PetJournal.PetCanBeReleased|C_PetJournal.PetCanBeReleased]](<span class="apiarg">petID</span>) - Returns true if you can release the pet.
: [[API C_PetJournal.PetIsCapturable|C_PetJournal.PetIsCapturable]](<span style="font-size:smaller; color:#ecbc2a">petID</span>)
+
: [[API C_PetJournal.PetIsCapturable|C_PetJournal.PetIsCapturable]](<span class="apiarg">petID</span>)
: [[API C_PetJournal.PetIsFavorite|C_PetJournal.PetIsFavorite]](<span style="font-size:smaller; color:#ecbc2a">petID</span>) - Returns true if this pet is marked as a favorite.
+
: [[API C_PetJournal.PetIsFavorite|C_PetJournal.PetIsFavorite]](<span class="apiarg">petID</span>) - Returns true if this pet is marked as a favorite.
: [[API C_PetJournal.PetIsHurt|C_PetJournal.PetIsHurt]](<span style="font-size:smaller; color:#ecbc2a">petID</span>)
+
: [[API C_PetJournal.PetIsHurt|C_PetJournal.PetIsHurt]](<span class="apiarg">petID</span>)
: [[API C_PetJournal.PetIsLockedForConvert|C_PetJournal.PetIsLockedForConvert]](<span style="font-size:smaller; color:#ecbc2a">petID</span>)
+
: [[API C_PetJournal.PetIsLockedForConvert|C_PetJournal.PetIsLockedForConvert]](<span class="apiarg">petID</span>)
: [[API C_PetJournal.PetIsRevoked|C_PetJournal.PetIsRevoked]](<span style="font-size:smaller; color:#ecbc2a">petID</span>)
+
: [[API C_PetJournal.PetIsRevoked|C_PetJournal.PetIsRevoked]](<span class="apiarg">petID</span>)
: [[API C_PetJournal.PetIsSlotted|C_PetJournal.PetIsSlotted]](<span style="font-size:smaller; color:#ecbc2a">petID</span>)
+
: [[API C_PetJournal.PetIsSlotted|C_PetJournal.PetIsSlotted]](<span class="apiarg">petID</span>)
: [[API C_PetJournal.PetIsSummonable|C_PetJournal.PetIsSummonable]](<span style="font-size:smaller; color:#ecbc2a">battlePetGUID</span>) : <span style="font-size:smaller; color:#4ec9b0">isSummonable</span> - Returns true if you can summon this pet.
+
: [[API C_PetJournal.PetIsSummonable|C_PetJournal.PetIsSummonable]](<span class="apiarg">battlePetGUID</span>) : <span class="apiret">isSummonable</span> - Returns true if you can summon this pet.
: [[API C_PetJournal.PetIsTradable|C_PetJournal.PetIsTradable]](<span style="font-size:smaller; color:#ecbc2a">petID</span>) - Returns whether or not a pet from the Pet Journal is tradable.
+
: [[API C_PetJournal.PetIsTradable|C_PetJournal.PetIsTradable]](<span class="apiarg">petID</span>) - Returns whether or not a pet from the Pet Journal is tradable.
: [[API C_PetJournal.PetIsUsable|C_PetJournal.PetIsUsable]](<span style="font-size:smaller; color:#ecbc2a">petID</span>)
+
: [[API C_PetJournal.PetIsUsable|C_PetJournal.PetIsUsable]](<span class="apiarg">petID</span>)
 
: [[API C_PetJournal.PetNeedsFanfare|C_PetJournal.PetNeedsFanfare]]()
 
: [[API C_PetJournal.PetNeedsFanfare|C_PetJournal.PetNeedsFanfare]]()
: [[API C_PetJournal.PetUsesRandomDisplay|C_PetJournal.PetUsesRandomDisplay]](<span style="font-size:smaller; color:#ecbc2a">speciesID</span>) : <span style="font-size:smaller; color:#4ec9b0">usesRandomDisplay</span>
+
: [[API C_PetJournal.PetUsesRandomDisplay|C_PetJournal.PetUsesRandomDisplay]](<span class="apiarg">speciesID</span>) : <span class="apiret">usesRandomDisplay</span>
: [[API C_PetJournal.PickupPet|C_PetJournal.PickupPet]](<span style="font-size:smaller; color:#ecbc2a">petID</span>)
+
: [[API C_PetJournal.PickupPet|C_PetJournal.PickupPet]](<span class="apiarg">petID</span>)
 
: [[API C_PetJournal.PickupSummonRandomPet|C_PetJournal.PickupSummonRandomPet]]()
 
: [[API C_PetJournal.PickupSummonRandomPet|C_PetJournal.PickupSummonRandomPet]]()
: [[API C_PetJournal.ReleasePetByID|C_PetJournal.ReleasePetByID]](<span style="font-size:smaller; color:#ecbc2a">petID</span>) - Releases the pet.
+
: [[API C_PetJournal.ReleasePetByID|C_PetJournal.ReleasePetByID]](<span class="apiarg">petID</span>) - Releases the pet.
: [[API C_PetJournal.SetAbility|C_PetJournal.SetAbility]](<span style="font-size:smaller; color:#ecbc2a">slotIndex, spellIndex, petSpellID</span>)
+
: [[API C_PetJournal.SetAbility|C_PetJournal.SetAbility]](<span class="apiarg">slotIndex, spellIndex, petSpellID</span>)
 
: [[API C_PetJournal.SetAllPetSourcesChecked|C_PetJournal.SetAllPetSourcesChecked]]()
 
: [[API C_PetJournal.SetAllPetSourcesChecked|C_PetJournal.SetAllPetSourcesChecked]]()
 
: [[API C_PetJournal.SetAllPetTypesChecked|C_PetJournal.SetAllPetTypesChecked]]()
 
: [[API C_PetJournal.SetAllPetTypesChecked|C_PetJournal.SetAllPetTypesChecked]]()
: [[API C_PetJournal.SetCustomName|C_PetJournal.SetCustomName]](<span style="font-size:smaller; color:#ecbc2a">petID, customName</span>) - Sets a custom name for the pet.
+
: [[API C_PetJournal.SetCustomName|C_PetJournal.SetCustomName]](<span class="apiarg">petID, customName</span>) - Sets a custom name for the pet.
: [[API C_PetJournal.SetFavorite|C_PetJournal.SetFavorite]](<span style="font-size:smaller; color:#ecbc2a">petID, value</span>) - Sets (or clears) the pet as a favorite.
+
: [[API C_PetJournal.SetFavorite|C_PetJournal.SetFavorite]](<span class="apiarg">petID, value</span>) - Sets (or clears) the pet as a favorite.
 
: [[API C_PetJournal.SetFilterChecked|C_PetJournal.SetFilterChecked]]()
 
: [[API C_PetJournal.SetFilterChecked|C_PetJournal.SetFilterChecked]]()
: [[API C_PetJournal.SetPetLoadOutInfo|C_PetJournal.SetPetLoadOutInfo]](<span style="font-size:smaller; color:#ecbc2a">slotIndex, petID</span>)
+
: [[API C_PetJournal.SetPetLoadOutInfo|C_PetJournal.SetPetLoadOutInfo]](<span class="apiarg">slotIndex, petID</span>)
 
: [[API C_PetJournal.SetPetSortParameter|C_PetJournal.SetPetSortParameter]]()
 
: [[API C_PetJournal.SetPetSortParameter|C_PetJournal.SetPetSortParameter]]()
 
: [[API C_PetJournal.SetPetSourceChecked|C_PetJournal.SetPetSourceChecked]]()
 
: [[API C_PetJournal.SetPetSourceChecked|C_PetJournal.SetPetSourceChecked]]()
: [[API C_PetJournal.SetPetTypeFilter|C_PetJournal.SetPetTypeFilter]](<span style="font-size:smaller; color:#ecbc2a">index, value</span>) - Sets the pet type in the filter menu.
+
: [[API C_PetJournal.SetPetTypeFilter|C_PetJournal.SetPetTypeFilter]](<span class="apiarg">index, value</span>) - Sets the pet type in the filter menu.
: [[API C_PetJournal.SetSearchFilter|C_PetJournal.SetSearchFilter]](<span style="font-size:smaller; color:#ecbc2a">text</span>) - Sets the search filter in the pet journal.
+
: [[API C_PetJournal.SetSearchFilter|C_PetJournal.SetSearchFilter]](<span class="apiarg">text</span>) - Sets the search filter in the pet journal.
: <small>NOCOMBAT</small> [[API C_PetJournal.SummonPetByGUID|C_PetJournal.SummonPetByGUID]](<span style="font-size:smaller; color:#ecbc2a">petID</span>) - Summons (or dismisses) a pet.
+
: <small>NOCOMBAT</small> [[API C_PetJournal.SummonPetByGUID|C_PetJournal.SummonPetByGUID]](<span class="apiarg">petID</span>) - Summons (or dismisses) a pet.
: <small>NOCOMBAT</small> [[API C_PetJournal.SummonRandomPet|C_PetJournal.SummonRandomPet]](<span style="font-size:smaller; color:#ecbc2a">allPets</span>) - Summons a random battle pet companion.
+
: <small>NOCOMBAT</small> [[API C_PetJournal.SummonRandomPet|C_PetJournal.SummonRandomPet]](<span class="apiarg">allPets</span>) - Summons a random battle pet companion.
   
 
==== Toy Box ====
 
==== Toy Box ====
Line 1,323: Line 1,372:
 
: [[API C_ToyBox.ForceToyRefilter|C_ToyBox.ForceToyRefilter]]()
 
: [[API C_ToyBox.ForceToyRefilter|C_ToyBox.ForceToyRefilter]]()
 
: [[API C_ToyBox.GetCollectedShown|C_ToyBox.GetCollectedShown]]()
 
: [[API C_ToyBox.GetCollectedShown|C_ToyBox.GetCollectedShown]]()
: [[API C_ToyBox.GetIsFavorite|C_ToyBox.GetIsFavorite]](<span style="font-size:smaller; color:#ecbc2a">itemID</span>)
+
: [[API C_ToyBox.GetIsFavorite|C_ToyBox.GetIsFavorite]](<span class="apiarg">itemID</span>)
 
: [[API C_ToyBox.GetNumFilteredToys|C_ToyBox.GetNumFilteredToys]]()
 
: [[API C_ToyBox.GetNumFilteredToys|C_ToyBox.GetNumFilteredToys]]()
 
: [[API C_ToyBox.GetNumLearnedDisplayedToys|C_ToyBox.GetNumLearnedDisplayedToys]]()
 
: [[API C_ToyBox.GetNumLearnedDisplayedToys|C_ToyBox.GetNumLearnedDisplayedToys]]()
 
: [[API C_ToyBox.GetNumTotalDisplayedToys|C_ToyBox.GetNumTotalDisplayedToys]]()
 
: [[API C_ToyBox.GetNumTotalDisplayedToys|C_ToyBox.GetNumTotalDisplayedToys]]()
 
: [[API C_ToyBox.GetNumToys|C_ToyBox.GetNumToys]]()
 
: [[API C_ToyBox.GetNumToys|C_ToyBox.GetNumToys]]()
: [[API C_ToyBox.GetToyFromIndex|C_ToyBox.GetToyFromIndex]](<span style="font-size:smaller; color:#ecbc2a">itemIndex</span>)
+
: [[API C_ToyBox.GetToyFromIndex|C_ToyBox.GetToyFromIndex]](<span class="apiarg">itemIndex</span>)
: [[API C_ToyBox.GetToyInfo|C_ToyBox.GetToyInfo]](<span style="font-size:smaller; color:#ecbc2a">itemID</span>) - Returns toy info.
+
: [[API C_ToyBox.GetToyInfo|C_ToyBox.GetToyInfo]](<span class="apiarg">itemID</span>) - Returns toy info.
: [[API C_ToyBox.GetToyLink|C_ToyBox.GetToyLink]](<span style="font-size:smaller; color:#ecbc2a">itemID</span>) - Returns item link.
+
: [[API C_ToyBox.GetToyLink|C_ToyBox.GetToyLink]](<span class="apiarg">itemID</span>) - Returns item link.
 
: [[API C_ToyBox.GetUncollectedShown|C_ToyBox.GetUncollectedShown]]()
 
: [[API C_ToyBox.GetUncollectedShown|C_ToyBox.GetUncollectedShown]]()
 
: [[API C_ToyBox.GetUnusableShown|C_ToyBox.GetUnusableShown]]()
 
: [[API C_ToyBox.GetUnusableShown|C_ToyBox.GetUnusableShown]]()
 
: [[API C_ToyBox.HasFavorites|C_ToyBox.HasFavorites]]()
 
: [[API C_ToyBox.HasFavorites|C_ToyBox.HasFavorites]]()
: [[API C_ToyBox.IsExpansionTypeFilterChecked|C_ToyBox.IsExpansionTypeFilterChecked]](<span style="font-size:smaller; color:#ecbc2a">expansionIndex</span>)
+
: [[API C_ToyBox.IsExpansionTypeFilterChecked|C_ToyBox.IsExpansionTypeFilterChecked]](<span class="apiarg">expansionIndex</span>)
: [[API C_ToyBox.IsSourceTypeFilterChecked|C_ToyBox.IsSourceTypeFilterChecked]](<span style="font-size:smaller; color:#ecbc2a">sourceIndex</span>)
+
: [[API C_ToyBox.IsSourceTypeFilterChecked|C_ToyBox.IsSourceTypeFilterChecked]](<span class="apiarg">sourceIndex</span>)
: [[API C_ToyBox.IsToyUsable|C_ToyBox.IsToyUsable]](<span style="font-size:smaller; color:#ecbc2a">itemID</span>)
+
: [[API C_ToyBox.IsToyUsable|C_ToyBox.IsToyUsable]](<span class="apiarg">itemID</span>)
: [[API C_ToyBox.PickupToyBoxItem|C_ToyBox.PickupToyBoxItem]](<span style="font-size:smaller; color:#ecbc2a">itemID</span>)
+
: [[API C_ToyBox.PickupToyBoxItem|C_ToyBox.PickupToyBoxItem]](<span class="apiarg">itemID</span>)
: [[API C_ToyBox.SetAllExpansionTypeFilters|C_ToyBox.SetAllExpansionTypeFilters]](<span style="font-size:smaller; color:#ecbc2a">[checked]</span>)
+
: [[API C_ToyBox.SetAllExpansionTypeFilters|C_ToyBox.SetAllExpansionTypeFilters]](<span class="apiarg">[checked]</span>)
: [[API C_ToyBox.SetAllSourceTypeFilters|C_ToyBox.SetAllSourceTypeFilters]](<span style="font-size:smaller; color:#ecbc2a">checked</span>)
+
: [[API C_ToyBox.SetAllSourceTypeFilters|C_ToyBox.SetAllSourceTypeFilters]](<span class="apiarg">checked</span>)
: [[API C_ToyBox.SetCollectedShown|C_ToyBox.SetCollectedShown]](<span style="font-size:smaller; color:#ecbc2a">checked</span>)
+
: [[API C_ToyBox.SetCollectedShown|C_ToyBox.SetCollectedShown]](<span class="apiarg">checked</span>)
: [[API C_ToyBox.SetExpansionTypeFilter|C_ToyBox.SetExpansionTypeFilter]](<span style="font-size:smaller; color:#ecbc2a">expansionIndex, checked</span>)
+
: [[API C_ToyBox.SetExpansionTypeFilter|C_ToyBox.SetExpansionTypeFilter]](<span class="apiarg">expansionIndex, checked</span>)
: [[API C_ToyBox.SetFilterString|C_ToyBox.SetFilterString]](<span style="font-size:smaller; color:#ecbc2a">searchString</span>)
+
: [[API C_ToyBox.SetFilterString|C_ToyBox.SetFilterString]](<span class="apiarg">searchString</span>)
: [[API C_ToyBox.SetIsFavorite|C_ToyBox.SetIsFavorite]](<span style="font-size:smaller; color:#ecbc2a">itemID, value</span>)
+
: [[API C_ToyBox.SetIsFavorite|C_ToyBox.SetIsFavorite]](<span class="apiarg">itemID, value</span>)
: [[API C_ToyBox.SetSourceTypeFilter|C_ToyBox.SetSourceTypeFilter]](<span style="font-size:smaller; color:#ecbc2a">sourceIndex, checked</span>)
+
: [[API C_ToyBox.SetSourceTypeFilter|C_ToyBox.SetSourceTypeFilter]](<span class="apiarg">sourceIndex, checked</span>)
: [[API C_ToyBox.SetUncollectedShown|C_ToyBox.SetUncollectedShown]](<span style="font-size:smaller; color:#ecbc2a">checked</span>)
+
: [[API C_ToyBox.SetUncollectedShown|C_ToyBox.SetUncollectedShown]](<span class="apiarg">checked</span>)
: [[API C_ToyBox.SetUnusableShown|C_ToyBox.SetUnusableShown]](<span style="font-size:smaller; color:#ecbc2a">checked</span>)
+
: [[API C_ToyBox.SetUnusableShown|C_ToyBox.SetUnusableShown]](<span class="apiarg">checked</span>)
: [[API C_ToyBoxInfo.ClearFanfare|C_ToyBoxInfo.ClearFanfare]](<span style="font-size:smaller; color:#ecbc2a">itemID</span>)
+
: [[API C_ToyBoxInfo.ClearFanfare|C_ToyBoxInfo.ClearFanfare]](<span class="apiarg">itemID</span>)
: [[API C_ToyBoxInfo.NeedsFanfare|C_ToyBoxInfo.NeedsFanfare]](<span style="font-size:smaller; color:#ecbc2a">itemID</span>) : <span style="font-size:smaller; color:#4ec9b0">needsFanfare</span>
+
: [[API C_ToyBoxInfo.NeedsFanfare|C_ToyBoxInfo.NeedsFanfare]](<span class="apiarg">itemID</span>) : <span class="apiret">needsFanfare</span>
: [[API PlayerHasToy|PlayerHasToy]](<span style="font-size:smaller; color:#ecbc2a">itemID</span>)
+
: [[API PlayerHasToy|PlayerHasToy]](<span class="apiarg">itemID</span>)
: [[API UseToy|UseToy]](<span style="font-size:smaller; color:#ecbc2a">itemID</span>)
+
: [[API UseToy|UseToy]](<span class="apiarg">itemID</span>)
: [[API UseToyByName|UseToyByName]](<span style="font-size:smaller; color:#ecbc2a">toyName</span>)
+
: [[API UseToyByName|UseToyByName]](<span class="apiarg">toyName</span>)
   
 
==== Heirlooms ====
 
==== Heirlooms ====
 
[[Heirloom]]s were added in [[Patch 3.0.3]] and added to the Collections window in [[Patch 6.1.0]]
 
[[Heirloom]]s were added in [[Patch 3.0.3]] and added to the Collections window in [[Patch 6.1.0]]
: [[API C_Heirloom.CanHeirloomUpgradeFromPending|C_Heirloom.CanHeirloomUpgradeFromPending]](<span style="font-size:smaller; color:#ecbc2a">itemID</span>)
+
: [[API C_Heirloom.CanHeirloomUpgradeFromPending|C_Heirloom.CanHeirloomUpgradeFromPending]](<span class="apiarg">itemID</span>)
: [[API C_Heirloom.CreateHeirloom|C_Heirloom.CreateHeirloom]](<span style="font-size:smaller; color:#ecbc2a">itemID</span>)
+
: [[API C_Heirloom.CreateHeirloom|C_Heirloom.CreateHeirloom]](<span class="apiarg">itemID</span>)
 
: [[API C_Heirloom.GetClassAndSpecFilters|C_Heirloom.GetClassAndSpecFilters]]()
 
: [[API C_Heirloom.GetClassAndSpecFilters|C_Heirloom.GetClassAndSpecFilters]]()
 
: [[API C_Heirloom.GetCollectedHeirloomFilter|C_Heirloom.GetCollectedHeirloomFilter]]()
 
: [[API C_Heirloom.GetCollectedHeirloomFilter|C_Heirloom.GetCollectedHeirloomFilter]]()
: [[API C_Heirloom.GetHeirloomInfo|C_Heirloom.GetHeirloomInfo]](<span style="font-size:smaller; color:#ecbc2a">itemID</span>)
+
: [[API C_Heirloom.GetHeirloomInfo|C_Heirloom.GetHeirloomInfo]](<span class="apiarg">itemID</span>)
: [[API C_Heirloom.GetHeirloomItemIDFromDisplayedIndex|C_Heirloom.GetHeirloomItemIDFromDisplayedIndex]](<span style="font-size:smaller; color:#ecbc2a">heirloomIndex</span>)
+
: [[API C_Heirloom.GetHeirloomItemIDFromDisplayedIndex|C_Heirloom.GetHeirloomItemIDFromDisplayedIndex]](<span class="apiarg">heirloomIndex</span>)
 
: [[API C_Heirloom.GetHeirloomItemIDs|C_Heirloom.GetHeirloomItemIDs]]()
 
: [[API C_Heirloom.GetHeirloomItemIDs|C_Heirloom.GetHeirloomItemIDs]]()
: [[API C_Heirloom.GetHeirloomLink|C_Heirloom.GetHeirloomLink]](<span style="font-size:smaller; color:#ecbc2a">itemID</span>)
+
: [[API C_Heirloom.GetHeirloomLink|C_Heirloom.GetHeirloomLink]](<span class="apiarg">itemID</span>)
: [[API C_Heirloom.GetHeirloomMaxUpgradeLevel|C_Heirloom.GetHeirloomMaxUpgradeLevel]](<span style="font-size:smaller; color:#ecbc2a">itemID</span>)
+
: [[API C_Heirloom.GetHeirloomMaxUpgradeLevel|C_Heirloom.GetHeirloomMaxUpgradeLevel]](<span class="apiarg">itemID</span>)
: [[API C_Heirloom.GetHeirloomSourceFilter|C_Heirloom.GetHeirloomSourceFilter]](<span style="font-size:smaller; color:#ecbc2a">source</span>)
+
: [[API C_Heirloom.GetHeirloomSourceFilter|C_Heirloom.GetHeirloomSourceFilter]](<span class="apiarg">source</span>)
 
: [[API C_Heirloom.GetNumDisplayedHeirlooms|C_Heirloom.GetNumDisplayedHeirlooms]]()
 
: [[API C_Heirloom.GetNumDisplayedHeirlooms|C_Heirloom.GetNumDisplayedHeirlooms]]()
 
: [[API C_Heirloom.GetNumHeirlooms|C_Heirloom.GetNumHeirlooms]]()
 
: [[API C_Heirloom.GetNumHeirlooms|C_Heirloom.GetNumHeirlooms]]()
 
: [[API C_Heirloom.GetNumKnownHeirlooms|C_Heirloom.GetNumKnownHeirlooms]]()
 
: [[API C_Heirloom.GetNumKnownHeirlooms|C_Heirloom.GetNumKnownHeirlooms]]()
 
: [[API C_Heirloom.GetUncollectedHeirloomFilter|C_Heirloom.GetUncollectedHeirloomFilter]]()
 
: [[API C_Heirloom.GetUncollectedHeirloomFilter|C_Heirloom.GetUncollectedHeirloomFilter]]()
: [[API C_Heirloom.IsHeirloomSourceValid|C_Heirloom.IsHeirloomSourceValid]](<span style="font-size:smaller; color:#ecbc2a">source</span>)
+
: [[API C_Heirloom.IsHeirloomSourceValid|C_Heirloom.IsHeirloomSourceValid]](<span class="apiarg">source</span>)
: [[API C_Heirloom.IsItemHeirloom|C_Heirloom.IsItemHeirloom]](<span style="font-size:smaller; color:#ecbc2a">itemID</span>)
+
: [[API C_Heirloom.IsItemHeirloom|C_Heirloom.IsItemHeirloom]](<span class="apiarg">itemID</span>)
 
: [[API C_Heirloom.IsPendingHeirloomUpgrade|C_Heirloom.IsPendingHeirloomUpgrade]]()
 
: [[API C_Heirloom.IsPendingHeirloomUpgrade|C_Heirloom.IsPendingHeirloomUpgrade]]()
: [[API C_Heirloom.PlayerHasHeirloom|C_Heirloom.PlayerHasHeirloom]](<span style="font-size:smaller; color:#ecbc2a">itemID</span>)
+
: [[API C_Heirloom.PlayerHasHeirloom|C_Heirloom.PlayerHasHeirloom]](<span class="apiarg">itemID</span>)
: [[API C_Heirloom.SetClassAndSpecFilters|C_Heirloom.SetClassAndSpecFilters]](<span style="font-size:smaller; color:#ecbc2a">classID, specID</span>)
+
: [[API C_Heirloom.SetClassAndSpecFilters|C_Heirloom.SetClassAndSpecFilters]](<span class="apiarg">classID, specID</span>)
: [[API C_Heirloom.SetCollectedHeirloomFilter|C_Heirloom.SetCollectedHeirloomFilter]](<span style="font-size:smaller; color:#ecbc2a">boolean</span>)
+
: [[API C_Heirloom.SetCollectedHeirloomFilter|C_Heirloom.SetCollectedHeirloomFilter]](<span class="apiarg">boolean</span>)
: [[API C_Heirloom.SetHeirloomSourceFilter|C_Heirloom.SetHeirloomSourceFilter]](<span style="font-size:smaller; color:#ecbc2a">source, filtered</span>)
+
: [[API C_Heirloom.SetHeirloomSourceFilter|C_Heirloom.SetHeirloomSourceFilter]](<span class="apiarg">source, filtered</span>)
: [[API C_Heirloom.SetSearch|C_Heirloom.SetSearch]](<span style="font-size:smaller; color:#ecbc2a">searchValue</span>)
+
: [[API C_Heirloom.SetSearch|C_Heirloom.SetSearch]](<span class="apiarg">searchValue</span>)
: [[API C_Heirloom.SetUncollectedHeirloomFilter|C_Heirloom.SetUncollectedHeirloomFilter]](<span style="font-size:smaller; color:#ecbc2a">boolean</span>)
+
: [[API C_Heirloom.SetUncollectedHeirloomFilter|C_Heirloom.SetUncollectedHeirloomFilter]](<span class="apiarg">boolean</span>)
 
: [[API C_Heirloom.ShouldShowHeirloomHelp|C_Heirloom.ShouldShowHeirloomHelp]]()
 
: [[API C_Heirloom.ShouldShowHeirloomHelp|C_Heirloom.ShouldShowHeirloomHelp]]()
: [[API C_Heirloom.UpgradeHeirloom|C_Heirloom.UpgradeHeirloom]](<span style="font-size:smaller; color:#ecbc2a">itemID</span>)
+
: [[API C_Heirloom.UpgradeHeirloom|C_Heirloom.UpgradeHeirloom]](<span class="apiarg">itemID</span>)
: [[API DoesItemContainSpec|DoesItemContainSpec]](<span style="font-size:smaller; color:#ecbc2a">item, classID [, specializationID]</span>)
+
: [[API DoesItemContainSpec|DoesItemContainSpec]](<span class="apiarg">item, classID [, specializationID]</span>)
   
 
==== Appearances ====
 
==== Appearances ====
 
The [[Appearances]] tab (also known as the Wardrobe) was added in [[Patch 7.0.3]]. See also [[#Transmogrification|Transmogrification]] functions.
 
The [[Appearances]] tab (also known as the Wardrobe) was added in [[Patch 7.0.3]]. See also [[#Transmogrification|Transmogrification]] functions.
: [[API C_TransmogCollection.CanSetFavoriteInCategory|C_TransmogCollection.CanSetFavoriteInCategory]](<span style="font-size:smaller; color:#ecbc2a">categoryID</span>)
+
: [[API C_TransmogCollection.AccountCanCollectSource|C_TransmogCollection.AccountCanCollectSource]](<span class="apiarg">sourceID</span>) : <span class="apiret">hasItemData, canCollect</span>
: [[API C_TransmogCollection.ClearNewAppearance|C_TransmogCollection.ClearNewAppearance]](<span style="font-size:smaller; color:#ecbc2a">visualID</span>)
+
: [[API C_TransmogCollection.CanAppearanceHaveIllusion|C_TransmogCollection.CanAppearanceHaveIllusion]](<span class="apiarg">appearanceID</span>) : <span class="apiret">canHaveIllusion</span>
: [[API C_TransmogCollection.ClearSearch|C_TransmogCollection.ClearSearch]](<span style="font-size:smaller; color:#ecbc2a">searchType</span>)
+
: [[API C_TransmogCollection.ClearNewAppearance|C_TransmogCollection.ClearNewAppearance]](<span class="apiarg">visualID</span>)
: [[API C_TransmogCollection.DeleteOutfit|C_TransmogCollection.DeleteOutfit]](<span style="font-size:smaller; color:#ecbc2a">outfitID</span>)
+
: [[API C_TransmogCollection.ClearSearch|C_TransmogCollection.ClearSearch]](<span class="apiarg">searchType</span>) : <span class="apiret">completed</span>
  +
: [[API C_TransmogCollection.DeleteOutfit|C_TransmogCollection.DeleteOutfit]](<span class="apiarg">outfitID</span>)
 
: [[API C_TransmogCollection.EndSearch|C_TransmogCollection.EndSearch]]()
 
: [[API C_TransmogCollection.EndSearch|C_TransmogCollection.EndSearch]]()
: [[API C_TransmogCollection.GetAllAppearanceSources|C_TransmogCollection.GetAllAppearanceSources]](<span style="font-size:smaller; color:#ecbc2a">appearanceID</span>)
+
: [[API C_TransmogCollection.GetAllAppearanceSources|C_TransmogCollection.GetAllAppearanceSources]](<span class="apiarg">itemAppearanceID</span>) : <span class="apiret">itemModifiedAppearanceIDs</span>
: [[API C_TransmogCollection.GetAppearanceCameraID|C_TransmogCollection.GetAppearanceCameraID]](<span style="font-size:smaller; color:#ecbc2a">visualID</span>)
+
: [[API C_TransmogCollection.GetAppearanceCameraID|C_TransmogCollection.GetAppearanceCameraID]](<span class="apiarg">itemAppearanceID [, variation]</span>) : <span class="apiret">cameraID</span>
: [[API C_TransmogCollection.GetAppearanceCameraIDBySource|C_TransmogCollection.GetAppearanceCameraIDBySource]](<span style="font-size:smaller; color:#ecbc2a">sourceID</span>)
+
: [[API C_TransmogCollection.GetAppearanceCameraIDBySource|C_TransmogCollection.GetAppearanceCameraIDBySource]](<span class="apiarg">itemModifiedAppearanceID [, variation]</span>) : <span class="apiret">cameraID</span>
: [[API C_TransmogCollection.GetAppearanceInfoBySource|C_TransmogCollection.GetAppearanceInfoBySource]](<span style="font-size:smaller; color:#ecbc2a">sourceID</span>)
+
: [[API C_TransmogCollection.GetAppearanceInfoBySource|C_TransmogCollection.GetAppearanceInfoBySource]](<span class="apiarg">itemModifiedAppearanceID</span>) : <span class="apiret">info</span>
: [[API C_TransmogCollection.GetAppearanceSourceDrops|C_TransmogCollection.GetAppearanceSourceDrops]](<span style="font-size:smaller; color:#ecbc2a">sourceID</span>)
+
: [[API C_TransmogCollection.GetAppearanceSourceDrops|C_TransmogCollection.GetAppearanceSourceDrops]](<span class="apiarg">itemModifiedAppearanceID</span>) : <span class="apiret">encounterInfo</span>
: [[API C_TransmogCollection.GetAppearanceSourceInfo|C_TransmogCollection.GetAppearanceSourceInfo]](<span style="font-size:smaller; color:#ecbc2a">sourceID</span>)
+
: [[API C_TransmogCollection.GetAppearanceSourceInfo|C_TransmogCollection.GetAppearanceSourceInfo]](<span class="apiarg">itemModifiedAppearanceID</span>) : <span class="apiret">category, itemAppearanceID, canHaveIllusion, icon, isCollected, ...</span>
: [[API C_TransmogCollection.GetAppearanceSources|C_TransmogCollection.GetAppearanceSources]](<span style="font-size:smaller; color:#ecbc2a">appearanceID [, categoryID]</span>) : <span style="font-size:smaller; color:#4ec9b0">sources</span>
+
: [[API C_TransmogCollection.GetAppearanceSources|C_TransmogCollection.GetAppearanceSources]](<span class="apiarg">appearanceID [, categoryType]</span>) : <span class="apiret">sources</span>
: [[API C_TransmogCollection.GetCategoryAppearances|C_TransmogCollection.GetCategoryAppearances]](<span style="font-size:smaller; color:#ecbc2a">categoryID [, transmogExclusionCategory]</span>)
+
: [[API C_TransmogCollection.GetArtifactAppearanceStrings|C_TransmogCollection.GetArtifactAppearanceStrings]](<span class="apiarg">appearanceID</span>) : <span class="apiret">name, hyperlink</span>
: [[API C_TransmogCollection.GetCategoryCollectedCount|C_TransmogCollection.GetCategoryCollectedCount]](<span style="font-size:smaller; color:#ecbc2a">categoryID</span>)
+
: [[API C_TransmogCollection.GetCategoryAppearances|C_TransmogCollection.GetCategoryAppearances]](<span class="apiarg">category</span>) : <span class="apiret">appearances</span>
: [[API C_TransmogCollection.GetCategoryInfo|C_TransmogCollection.GetCategoryInfo]](<span style="font-size:smaller; color:#ecbc2a">categoryID</span>)
+
: [[API C_TransmogCollection.GetCategoryCollectedCount|C_TransmogCollection.GetCategoryCollectedCount]](<span class="apiarg">category</span>) : <span class="apiret">count</span>
: [[API C_TransmogCollection.GetCategoryTotal|C_TransmogCollection.GetCategoryTotal]](<span style="font-size:smaller; color:#ecbc2a">categoryID</span>)
+
: [[API C_TransmogCollection.GetCategoryInfo|C_TransmogCollection.GetCategoryInfo]](<span class="apiarg">category</span>) : <span class="apiret">name, isWeapon, canHaveIllusions, canMainHand, canOffHand</span>
: [[API C_TransmogCollection.GetCollectedShown|C_TransmogCollection.GetCollectedShown]]()
+
: [[API C_TransmogCollection.GetCategoryTotal|C_TransmogCollection.GetCategoryTotal]](<span class="apiarg">category</span>) : <span class="apiret">total</span>
: [[API C_TransmogCollection.GetIllusionFallbackWeaponSource|C_TransmogCollection.GetIllusionFallbackWeaponSource]]()
+
: [[API C_TransmogCollection.GetCollectedShown|C_TransmogCollection.GetCollectedShown]]() : <span class="apiret">shown</span>
: [[API C_TransmogCollection.GetIllusionSourceInfo|C_TransmogCollection.GetIllusionSourceInfo]](<span style="font-size:smaller; color:#ecbc2a">sourceID</span>) : <span style="font-size:smaller; color:#4ec9b0">visualID, name, hyperlink, icon</span>
+
: [[API C_TransmogCollection.GetFallbackWeaponAppearance|C_TransmogCollection.GetFallbackWeaponAppearance]]() : <span class="apiret">appearanceID</span>
: [[API C_TransmogCollection.GetIllusions|C_TransmogCollection.GetIllusions]]()
+
: [[API C_TransmogCollection.GetIllusionInfo|C_TransmogCollection.GetIllusionInfo]](<span class="apiarg">illusionID</span>) : <span class="apiret">info</span>
: [[API C_TransmogCollection.GetInspectSources|C_TransmogCollection.GetInspectSources]]()
+
: [[API C_TransmogCollection.GetIllusions|C_TransmogCollection.GetIllusions]]() : <span class="apiret">illusions</span>
: [[API C_TransmogCollection.GetIsAppearanceFavorite|C_TransmogCollection.GetIsAppearanceFavorite]](<span style="font-size:smaller; color:#ecbc2a">appearanceID</span>)
+
: [[API C_TransmogCollection.GetIllusionStrings|C_TransmogCollection.GetIllusionStrings]](<span class="apiarg">illusionID</span>) : <span class="apiret">name, hyperlink, sourceText</span>
: [[API C_TransmogCollection.GetItemInfo|C_TransmogCollection.GetItemInfo]](<span style="font-size:smaller; color:#ecbc2a">itemID [, itemModID]/itemLink/itemName</span>)
+
: [[API C_TransmogCollection.GetInspectItemTransmogInfoList|C_TransmogCollection.GetInspectItemTransmogInfoList]]() : <span class="apiret">list</span>
: [[API C_TransmogCollection.GetLatestAppearance|C_TransmogCollection.GetLatestAppearance]]()
+
: [[API C_TransmogCollection.GetIsAppearanceFavorite|C_TransmogCollection.GetIsAppearanceFavorite]](<span class="apiarg">itemAppearanceID</span>) : <span class="apiret">isFavorite</span>
: [[API C_TransmogCollection.GetNumMaxOutfits|C_TransmogCollection.GetNumMaxOutfits]]()
+
: [[API C_TransmogCollection.GetItemInfo|C_TransmogCollection.GetItemInfo]](<span class="apiarg">itemInfo</span>) : <span class="apiret">itemAppearanceID, itemModifiedAppearanceID</span>
: [[API C_TransmogCollection.GetNumTransmogSources|C_TransmogCollection.GetNumTransmogSources]]()
+
: [[API C_TransmogCollection.GetItemTransmogInfoListFromOutfitHyperlink|C_TransmogCollection.GetItemTransmogInfoListFromOutfitHyperlink]](<span class="apiarg">hyperlink</span>) : <span class="apiret">list</span>
: [[API C_TransmogCollection.GetOutfitName|C_TransmogCollection.GetOutfitName]](<span style="font-size:smaller; color:#ecbc2a">outfitID</span>)
+
: [[API C_TransmogCollection.GetLatestAppearance|C_TransmogCollection.GetLatestAppearance]]() : <span class="apiret">visualID, category</span>
: [[API C_TransmogCollection.GetOutfitSources|C_TransmogCollection.GetOutfitSources]](<span style="font-size:smaller; color:#ecbc2a">outfitID</span>)
+
: [[API C_TransmogCollection.GetNumMaxOutfits|C_TransmogCollection.GetNumMaxOutfits]]() : <span class="apiret">maxOutfits</span>
: [[API C_TransmogCollection.GetOutfits|C_TransmogCollection.GetOutfits]]()
+
: [[API C_TransmogCollection.GetNumTransmogSources|C_TransmogCollection.GetNumTransmogSources]]() : <span class="apiret">count</span>
: [[API C_TransmogCollection.GetShowMissingSourceInItemTooltips|C_TransmogCollection.GetShowMissingSourceInItemTooltips]]()
+
: [[API C_TransmogCollection.GetOutfitHyperlinkFromItemTransmogInfoList|C_TransmogCollection.GetOutfitHyperlinkFromItemTransmogInfoList]](<span class="apiarg">itemTransmogInfoList</span>) : <span class="apiret">hyperlink</span>
: [[API C_TransmogCollection.GetSourceIcon|C_TransmogCollection.GetSourceIcon]](<span style="font-size:smaller; color:#ecbc2a">itemModifiedAppearanceID</span>) : <span style="font-size:smaller; color:#4ec9b0">icon</span>
+
: [[API C_TransmogCollection.GetOutfitInfo|C_TransmogCollection.GetOutfitInfo]](<span class="apiarg">outfitID</span>) : <span class="apiret">name, icon</span>
: [[API C_TransmogCollection.GetSourceInfo|C_TransmogCollection.GetSourceInfo]](<span style="font-size:smaller; color:#ecbc2a">sourceID</span>) : <span style="font-size:smaller; color:#4ec9b0">sourceInfo</span>
+
: [[API C_TransmogCollection.GetOutfitItemTransmogInfoList|C_TransmogCollection.GetOutfitItemTransmogInfoList]](<span class="apiarg">outfitID</span>) : <span class="apiret">list</span>
: [[API C_TransmogCollection.GetSourceRequiredHoliday|C_TransmogCollection.GetSourceRequiredHoliday]](<span style="font-size:smaller; color:#ecbc2a">sourceID</span>)
+
: [[API C_TransmogCollection.GetOutfits|C_TransmogCollection.GetOutfits]]() : <span class="apiret">outfitID</span>
: [[API C_TransmogCollection.GetUncollectedShown|C_TransmogCollection.GetUncollectedShown]]()
+
: [[API C_TransmogCollection.GetPairedArtifactAppearance|C_TransmogCollection.GetPairedArtifactAppearance]](<span class="apiarg">itemModifiedAppearanceID</span>) : <span class="apiret">pairedItemModifiedAppearanceID</span>
: [[API C_TransmogCollection.HasFavorites|C_TransmogCollection.HasFavorites]]()
+
: [[API C_TransmogCollection.GetSourceIcon|C_TransmogCollection.GetSourceIcon]](<span class="apiarg">itemModifiedAppearanceID</span>) : <span class="apiret">icon</span>
: [[API C_TransmogCollection.IsCategoryValidForItem|C_TransmogCollection.IsCategoryValidForItem]](<span style="font-size:smaller; color:#ecbc2a">categoryID, itemID</span>)
+
: [[API C_TransmogCollection.GetSourceInfo|C_TransmogCollection.GetSourceInfo]](<span class="apiarg">sourceID</span>) : <span class="apiret">sourceInfo</span>
: [[API C_TransmogCollection.IsNewAppearance|C_TransmogCollection.IsNewAppearance]](<span style="font-size:smaller; color:#ecbc2a">visualID</span>)
+
: [[API C_TransmogCollection.GetSourceItemID|C_TransmogCollection.GetSourceItemID]](<span class="apiarg">itemModifiedAppearanceID</span>) : <span class="apiret">itemID</span>
: [[API C_TransmogCollection.IsSearchDBLoading|C_TransmogCollection.IsSearchDBLoading]]()
+
: [[API C_TransmogCollection.GetSourceRequiredHoliday|C_TransmogCollection.GetSourceRequiredHoliday]](<span class="apiarg">itemModifiedAppearanceID</span>) : <span class="apiret">holidayName</span>
: [[API C_TransmogCollection.IsSearchInProgress|C_TransmogCollection.IsSearchInProgress]](<span style="font-size:smaller; color:#ecbc2a">searchType</span>)
+
: [[API C_TransmogCollection.GetUncollectedShown|C_TransmogCollection.GetUncollectedShown]]() : <span class="apiret">shown</span>
: [[API C_TransmogCollection.IsSourceTypeFilterChecked|C_TransmogCollection.IsSourceTypeFilterChecked]](<span style="font-size:smaller; color:#ecbc2a">sourceIndex</span>)
+
: [[API C_TransmogCollection.HasFavorites|C_TransmogCollection.HasFavorites]]() : <span class="apiret">hasFavorites</span>
: [[API C_TransmogCollection.ModifyOutfit|C_TransmogCollection.ModifyOutfit]](<span style="font-size:smaller; color:#ecbc2a">outfitID, newName [, newIcon]</span>)
+
: [[API C_TransmogCollection.IsAppearanceHiddenVisual|C_TransmogCollection.IsAppearanceHiddenVisual]](<span class="apiarg">appearanceID</span>) : <span class="apiret">isHiddenVisual</span>
: [[API C_TransmogCollection.PlayerCanCollectSource|C_TransmogCollection.PlayerCanCollectSource]](<span style="font-size:smaller; color:#ecbc2a">sourceID</span>)
+
: [[API C_TransmogCollection.IsCategoryValidForItem|C_TransmogCollection.IsCategoryValidForItem]](<span class="apiarg">category, itemInfo</span>) : <span class="apiret">isValid</span>
: [[API C_TransmogCollection.PlayerHasTransmog|C_TransmogCollection.PlayerHasTransmog]](<span style="font-size:smaller; color:#ecbc2a">itemID [, itemAppearanceModID]</span>)
+
: [[API C_TransmogCollection.IsNewAppearance|C_TransmogCollection.IsNewAppearance]](<span class="apiarg">visualID</span>) : <span class="apiret">isNew</span>
: [[API C_TransmogCollection.PlayerHasTransmogItemModifiedAppearance|C_TransmogCollection.PlayerHasTransmogItemModifiedAppearance]](<span style="font-size:smaller; color:#ecbc2a">itemModifiedAppearanceID</span>)
+
: [[API C_TransmogCollection.IsSearchDBLoading|C_TransmogCollection.IsSearchDBLoading]]() : <span class="apiret">isLoading</span>
: [[API C_TransmogCollection.PlayerKnowsSource|C_TransmogCollection.PlayerKnowsSource]](<span style="font-size:smaller; color:#ecbc2a">sourceID</span>)
+
: [[API C_TransmogCollection.IsSearchInProgress|C_TransmogCollection.IsSearchInProgress]](<span class="apiarg">searchType</span>) : <span class="apiret">inProgress</span>
: [[API C_TransmogCollection.SaveOutfit|C_TransmogCollection.SaveOutfit]](<span style="font-size:smaller; color:#ecbc2a">name, sourceIDTable [, mainHandEnchant, offHandEnchant, icon]</span>)
+
: [[API C_TransmogCollection.IsSourceTypeFilterChecked|C_TransmogCollection.IsSourceTypeFilterChecked]](<span class="apiarg">index</span>) : <span class="apiret">checked</span>
: [[API C_TransmogCollection.SearchProgress|C_TransmogCollection.SearchProgress]](<span style="font-size:smaller; color:#ecbc2a">searchType</span>)
+
: [[API C_TransmogCollection.ModifyOutfit|C_TransmogCollection.ModifyOutfit]](<span class="apiarg">outfitID, itemTransmogInfoList</span>)
: [[API C_TransmogCollection.SearchSize|C_TransmogCollection.SearchSize]](<span style="font-size:smaller; color:#ecbc2a">searchType</span>)
+
: [[API C_TransmogCollection.NewOutfit|C_TransmogCollection.NewOutfit]](<span class="apiarg">name, icon, itemTransmogInfoList</span>) : <span class="apiret">outfitID</span>
: [[API C_TransmogCollection.SetAllSourceTypeFilters|C_TransmogCollection.SetAllSourceTypeFilters]](<span style="font-size:smaller; color:#ecbc2a">checked</span>)
+
: [[API C_TransmogCollection.PlayerCanCollectSource|C_TransmogCollection.PlayerCanCollectSource]](<span class="apiarg">sourceID</span>) : <span class="apiret">hasItemData, canCollect</span>
: [[API C_TransmogCollection.SetCollectedShown|C_TransmogCollection.SetCollectedShown]](<span style="font-size:smaller; color:#ecbc2a">checked</span>)
+
: [[API C_TransmogCollection.PlayerHasTransmog|C_TransmogCollection.PlayerHasTransmog]](<span class="apiarg">itemID [, itemAppearanceModID]</span>) : <span class="apiret">hasTransmog</span>
: [[API C_TransmogCollection.SetIsAppearanceFavorite|C_TransmogCollection.SetIsAppearanceFavorite]](<span style="font-size:smaller; color:#ecbc2a">appearanceID, value</span>)
+
: [[API C_TransmogCollection.PlayerHasTransmogByItemInfo|C_TransmogCollection.PlayerHasTransmogByItemInfo]](<span class="apiarg">itemInfo</span>) : <span class="apiret">hasTransmog</span>
: [[API C_TransmogCollection.SetSearch|C_TransmogCollection.SetSearch]](<span style="font-size:smaller; color:#ecbc2a">searchValue</span>)
+
: [[API C_TransmogCollection.PlayerHasTransmogItemModifiedAppearance|C_TransmogCollection.PlayerHasTransmogItemModifiedAppearance]](<span class="apiarg">itemModifiedAppearanceID</span>) : <span class="apiret">hasTransmog</span>
: [[API C_TransmogCollection.SetSearchAndFilterCategory|C_TransmogCollection.SetSearchAndFilterCategory]](<span style="font-size:smaller; color:#ecbc2a">category</span>)
+
: [[API C_TransmogCollection.PlayerKnowsSource|C_TransmogCollection.PlayerKnowsSource]](<span class="apiarg">sourceID</span>) : <span class="apiret">isKnown</span>
: [[API C_TransmogCollection.SetShowMissingSourceInItemTooltips|C_TransmogCollection.SetShowMissingSourceInItemTooltips]](<span style="font-size:smaller; color:#ecbc2a">bool</span>)
+
: [[API C_TransmogCollection.RenameOutfit|C_TransmogCollection.RenameOutfit]](<span class="apiarg">outfitID, name</span>)
: [[API C_TransmogCollection.SetSourceTypeFilter|C_TransmogCollection.SetSourceTypeFilter]](<span style="font-size:smaller; color:#ecbc2a">sourceIndex, checked</span>)
+
: [[API C_TransmogCollection.SearchProgress|C_TransmogCollection.SearchProgress]](<span class="apiarg">searchType</span>) : <span class="apiret">progress</span>
: [[API C_TransmogCollection.SetUncollectedShown|C_TransmogCollection.SetUncollectedShown]](<span style="font-size:smaller; color:#ecbc2a">checked</span>)
+
: [[API C_TransmogCollection.SearchSize|C_TransmogCollection.SearchSize]](<span class="apiarg">searchType</span>) : <span class="apiret">size</span>
  +
: [[API C_TransmogCollection.SetAllSourceTypeFilters|C_TransmogCollection.SetAllSourceTypeFilters]](<span class="apiarg">checked</span>)
  +
: [[API C_TransmogCollection.SetCollectedShown|C_TransmogCollection.SetCollectedShown]](<span class="apiarg">shown</span>)
  +
: [[API C_TransmogCollection.SetIsAppearanceFavorite|C_TransmogCollection.SetIsAppearanceFavorite]](<span class="apiarg">itemAppearanceID, isFavorite</span>)
  +
: [[API C_TransmogCollection.SetSearch|C_TransmogCollection.SetSearch]](<span class="apiarg">searchType, searchText</span>) : <span class="apiret">completed</span>
  +
: [[API C_TransmogCollection.SetSearchAndFilterCategory|C_TransmogCollection.SetSearchAndFilterCategory]](<span class="apiarg">category</span>)
  +
: [[API C_TransmogCollection.SetSourceTypeFilter|C_TransmogCollection.SetSourceTypeFilter]](<span class="apiarg">index, checked</span>)
  +
: [[API C_TransmogCollection.SetUncollectedShown|C_TransmogCollection.SetUncollectedShown]](<span class="apiarg">shown</span>)
 
: [[API C_TransmogCollection.UpdateUsableAppearances|C_TransmogCollection.UpdateUsableAppearances]]()
 
: [[API C_TransmogCollection.UpdateUsableAppearances|C_TransmogCollection.UpdateUsableAppearances]]()
  +
: <small>DEPRECATED</small> [[API C_TransmogCollection.CanSetFavoriteInCategory|C_TransmogCollection.CanSetFavoriteInCategory]](<span class="apiarg">categoryID</span>)
  +
: <small>DEPRECATED</small> [[API C_TransmogCollection.GetIllusionFallbackWeaponSource|C_TransmogCollection.GetIllusionFallbackWeaponSource]]()
  +
: <small>DEPRECATED</small> [[API C_TransmogCollection.GetIllusionSourceInfo|C_TransmogCollection.GetIllusionSourceInfo]](<span class="apiarg">sourceID</span>) : <span class="apiret">visualID, name, hyperlink, icon</span>
  +
: <small>DEPRECATED</small> [[API C_TransmogCollection.GetShowMissingSourceInItemTooltips|C_TransmogCollection.GetShowMissingSourceInItemTooltips]]()
  +
: <small>DEPRECATED</small> [[API C_TransmogCollection.SetShowMissingSourceInItemTooltips|C_TransmogCollection.SetShowMissingSourceInItemTooltips]](<span class="apiarg">bool</span>)
 
: [[API C_TransmogSets.ClearLatestSource|C_TransmogSets.ClearLatestSource]]()
 
: [[API C_TransmogSets.ClearLatestSource|C_TransmogSets.ClearLatestSource]]()
: [[API C_TransmogSets.ClearNewSource|C_TransmogSets.ClearNewSource]](<span style="font-size:smaller; color:#ecbc2a">sourceID</span>)
+
: [[API C_TransmogSets.ClearNewSource|C_TransmogSets.ClearNewSource]](<span class="apiarg">sourceID</span>)
: [[API C_TransmogSets.ClearSetNewSourcesForSlot|C_TransmogSets.ClearSetNewSourcesForSlot]](<span style="font-size:smaller; color:#ecbc2a">transmogSetID, slot</span>)
+
: [[API C_TransmogSets.ClearSetNewSourcesForSlot|C_TransmogSets.ClearSetNewSourcesForSlot]](<span class="apiarg">transmogSetID, slot</span>)
: [[API C_TransmogSets.GetAllSets|C_TransmogSets.GetAllSets]]()
+
: [[API C_TransmogSets.GetAllSets|C_TransmogSets.GetAllSets]]() : <span class="apiret">sets</span>
: [[API C_TransmogSets.GetAllSourceIDs|C_TransmogSets.GetAllSourceIDs]](<span style="font-size:smaller; color:#ecbc2a">transmogSetID</span>) : <span style="font-size:smaller; color:#4ec9b0">sources</span>
+
: [[API C_TransmogSets.GetAllSourceIDs|C_TransmogSets.GetAllSourceIDs]](<span class="apiarg">transmogSetID</span>) : <span class="apiret">sources</span>
: [[API C_TransmogSets.GetBaseSetID|C_TransmogSets.GetBaseSetID]](<span style="font-size:smaller; color:#ecbc2a">setID</span>)
+
: [[API C_TransmogSets.GetBaseSetID|C_TransmogSets.GetBaseSetID]](<span class="apiarg">transmogSetID</span>) : <span class="apiret">baseTransmogSetID</span>
: [[API C_TransmogSets.GetBaseSets|C_TransmogSets.GetBaseSets]]()
+
: [[API C_TransmogSets.GetBaseSets|C_TransmogSets.GetBaseSets]]() : <span class="apiret">sets</span>
: [[API C_TransmogSets.GetBaseSetsCounts|C_TransmogSets.GetBaseSetsCounts]]() : <span style="font-size:smaller; color:#4ec9b0">numCollected, numTotal</span>
+
: [[API C_TransmogSets.GetBaseSetsCounts|C_TransmogSets.GetBaseSetsCounts]]() : <span class="apiret">numCollected, numTotal</span>
: [[API C_TransmogSets.GetBaseSetsFilter|C_TransmogSets.GetBaseSetsFilter]](<span style="font-size:smaller; color:#ecbc2a">index</span>) : <span style="font-size:smaller; color:#4ec9b0">isChecked</span>
+
: [[API C_TransmogSets.GetBaseSetsFilter|C_TransmogSets.GetBaseSetsFilter]](<span class="apiarg">index</span>) : <span class="apiret">isChecked</span>
: [[API C_TransmogSets.GetCameraIDs|C_TransmogSets.GetCameraIDs]]() : <span style="font-size:smaller; color:#4ec9b0">detailsCameraID, vendorCameraID</span>
+
: [[API C_TransmogSets.GetCameraIDs|C_TransmogSets.GetCameraIDs]]() : <span class="apiret">detailsCameraID, vendorCameraID</span>
: [[API C_TransmogSets.GetIsFavorite|C_TransmogSets.GetIsFavorite]](<span style="font-size:smaller; color:#ecbc2a">transmogSetID</span>) : <span style="font-size:smaller; color:#4ec9b0">isFavorite, isGroupFavorite</span>
+
: [[API C_TransmogSets.GetIsFavorite|C_TransmogSets.GetIsFavorite]](<span class="apiarg">transmogSetID</span>) : <span class="apiret">isFavorite, isGroupFavorite</span>
: [[API C_TransmogSets.GetLatestSource|C_TransmogSets.GetLatestSource]]() : <span style="font-size:smaller; color:#4ec9b0">sourceID</span>
+
: [[API C_TransmogSets.GetLatestSource|C_TransmogSets.GetLatestSource]]() : <span class="apiret">sourceID</span>
: [[API C_TransmogSets.GetSetInfo|C_TransmogSets.GetSetInfo]](<span style="font-size:smaller; color:#ecbc2a">setID</span>)
+
: [[API C_TransmogSets.GetSetInfo|C_TransmogSets.GetSetInfo]](<span class="apiarg">transmogSetID</span>) : <span class="apiret">set</span>
: [[API C_TransmogSets.GetSetNewSources|C_TransmogSets.GetSetNewSources]](<span style="font-size:smaller; color:#ecbc2a">transmogSetID</span>) : <span style="font-size:smaller; color:#4ec9b0">sourceIDs</span>
+
: [[API C_TransmogSets.GetSetNewSources|C_TransmogSets.GetSetNewSources]](<span class="apiarg">transmogSetID</span>) : <span class="apiret">sourceIDs</span>
: [[API C_TransmogSets.GetSetSources|C_TransmogSets.GetSetSources]](<span style="font-size:smaller; color:#ecbc2a">setID</span>)
+
: [[API C_TransmogSets.GetSetPrimaryAppearances|C_TransmogSets.GetSetPrimaryAppearances]](<span class="apiarg">transmogSetID</span>) : <span class="apiret">apppearances</span>
: [[API C_TransmogSets.GetSetsContainingSourceID|C_TransmogSets.GetSetsContainingSourceID]](<span style="font-size:smaller; color:#ecbc2a">sourceID</span>) : <span style="font-size:smaller; color:#4ec9b0">setIDs</span>
+
: [[API C_TransmogSets.GetSetsContainingSourceID|C_TransmogSets.GetSetsContainingSourceID]](<span class="apiarg">sourceID</span>) : <span class="apiret">setIDs</span>
: [[API C_TransmogSets.GetSourceIDsForSlot|C_TransmogSets.GetSourceIDsForSlot]](<span style="font-size:smaller; color:#ecbc2a">transmogSetID, slot</span>) : <span style="font-size:smaller; color:#4ec9b0">sources</span>
+
: [[API C_TransmogSets.GetSourceIDsForSlot|C_TransmogSets.GetSourceIDsForSlot]](<span class="apiarg">transmogSetID, slot</span>) : <span class="apiret">sources</span>
: [[API C_TransmogSets.GetSourcesForSlot|C_TransmogSets.GetSourcesForSlot]](<span style="font-size:smaller; color:#ecbc2a">transmogSetID, slot</span>) : <span style="font-size:smaller; color:#4ec9b0">sources</span>
+
: [[API C_TransmogSets.GetSourcesForSlot|C_TransmogSets.GetSourcesForSlot]](<span class="apiarg">transmogSetID, slot</span>) : <span class="apiret">sources</span>
: [[API C_TransmogSets.GetUsableSets|C_TransmogSets.GetUsableSets]]()
+
: [[API C_TransmogSets.GetUsableSets|C_TransmogSets.GetUsableSets]]() : <span class="apiret">sets</span>
: [[API C_TransmogSets.GetVariantSets|C_TransmogSets.GetVariantSets]](<span style="font-size:smaller; color:#ecbc2a">setID</span>)
+
: [[API C_TransmogSets.GetVariantSets|C_TransmogSets.GetVariantSets]](<span class="apiarg">transmogSetID</span>) : <span class="apiret">sets</span>
: [[API C_TransmogSets.HasUsableSets|C_TransmogSets.HasUsableSets]]() : <span style="font-size:smaller; color:#4ec9b0">hasUsableSets</span>
+
: [[API C_TransmogSets.HasUsableSets|C_TransmogSets.HasUsableSets]]() : <span class="apiret">hasUsableSets</span>
: [[API C_TransmogSets.IsBaseSetCollected|C_TransmogSets.IsBaseSetCollected]](<span style="font-size:smaller; color:#ecbc2a">transmogSetID</span>) : <span style="font-size:smaller; color:#4ec9b0">isCollected</span>
+
: [[API C_TransmogSets.IsBaseSetCollected|C_TransmogSets.IsBaseSetCollected]](<span class="apiarg">transmogSetID</span>) : <span class="apiret">isCollected</span>
: [[API C_TransmogSets.IsNewSource|C_TransmogSets.IsNewSource]](<span style="font-size:smaller; color:#ecbc2a">sourceID</span>) : <span style="font-size:smaller; color:#4ec9b0">isNew</span>
+
: [[API C_TransmogSets.IsNewSource|C_TransmogSets.IsNewSource]](<span class="apiarg">sourceID</span>) : <span class="apiret">isNew</span>
: [[API C_TransmogSets.IsSetCollected|C_TransmogSets.IsSetCollected]](<span style="font-size:smaller; color:#ecbc2a">setID</span>)
+
: [[API C_TransmogSets.IsSetVisible|C_TransmogSets.IsSetVisible]](<span class="apiarg">transmogSetID</span>) : <span class="apiret">isVisible</span>
: [[API C_TransmogSets.IsSetUsable|C_TransmogSets.IsSetUsable]](<span style="font-size:smaller; color:#ecbc2a">setID</span>)
+
: [[API C_TransmogSets.SetBaseSetsFilter|C_TransmogSets.SetBaseSetsFilter]](<span class="apiarg">index, isChecked</span>)
: [[API C_TransmogSets.SetBaseSetsFilter|C_TransmogSets.SetBaseSetsFilter]](<span style="font-size:smaller; color:#ecbc2a">index, isChecked</span>)
+
: [[API C_TransmogSets.SetHasNewSources|C_TransmogSets.SetHasNewSources]](<span class="apiarg">transmogSetID</span>) : <span class="apiret">hasNewSources</span>
: [[API C_TransmogSets.SetHasNewSources|C_TransmogSets.SetHasNewSources]](<span style="font-size:smaller; color:#ecbc2a">transmogSetID</span>) : <span style="font-size:smaller; color:#4ec9b0">hasNewSources</span>
+
: [[API C_TransmogSets.SetHasNewSourcesForSlot|C_TransmogSets.SetHasNewSourcesForSlot]](<span class="apiarg">transmogSetID, slot</span>) : <span class="apiret">hasNewSources</span>
: [[API C_TransmogSets.SetHasNewSourcesForSlot|C_TransmogSets.SetHasNewSourcesForSlot]](<span style="font-size:smaller; color:#ecbc2a">transmogSetID, slot</span>) : <span style="font-size:smaller; color:#4ec9b0">hasNewSources</span>
+
: [[API C_TransmogSets.SetIsFavorite|C_TransmogSets.SetIsFavorite]](<span class="apiarg">transmogSetID, isFavorite</span>)
: [[API C_TransmogSets.SetIsFavorite|C_TransmogSets.SetIsFavorite]](<span style="font-size:smaller; color:#ecbc2a">transmogSetID, isFavorite</span>)
+
: <small>DEPRECATED</small> [[API C_TransmogSets.GetSetSources|C_TransmogSets.GetSetSources]](<span class="apiarg">setID</span>)
: [[API IsUnitModelReadyForUI|IsUnitModelReadyForUI]](<span style="font-size:smaller; color:#ecbc2a">unitToken</span>) : <span style="font-size:smaller; color:#4ec9b0">isReady</span>
+
: [[API IsUnitModelReadyForUI|IsUnitModelReadyForUI]](<span class="apiarg">unitToken</span>) : <span class="apiret">isReady</span>
   
 
=== Combat Log ===
 
=== Combat Log ===
 
Relates to the [[Combat Log]].
 
Relates to the [[Combat Log]].
: [[API CombatLogAddFilter|CombatLogAddFilter]](<span style="font-size:smaller; color:#ecbc2a">[eList, sourceFlags, destFlags]</span>)
+
: [[API CombatLogAddFilter|CombatLogAddFilter]](<span class="apiarg">[eList, sourceFlags, destFlags]</span>)
: [[API CombatLogAdvanceEntry|CombatLogAdvanceEntry]](<span style="font-size:smaller; color:#ecbc2a">count [, ignoreFilter]</span>)
+
: [[API CombatLogAdvanceEntry|CombatLogAdvanceEntry]](<span class="apiarg">count [, ignoreFilter]</span>)
 
: [[API CombatLogClearEntries|CombatLogClearEntries]]()
 
: [[API CombatLogClearEntries|CombatLogClearEntries]]()
 
: [[API CombatLogGetCurrentEntry|CombatLogGetCurrentEntry]]()
 
: [[API CombatLogGetCurrentEntry|CombatLogGetCurrentEntry]]()
Line 1,482: Line 1,544:
 
: [[API CombatLogGetRetentionTime|CombatLogGetRetentionTime]]()
 
: [[API CombatLogGetRetentionTime|CombatLogGetRetentionTime]]()
 
: [[API CombatLogResetFilter|CombatLogResetFilter]]()
 
: [[API CombatLogResetFilter|CombatLogResetFilter]]()
: [[API CombatLogSetCurrentEntry|CombatLogSetCurrentEntry]](<span style="font-size:smaller; color:#ecbc2a">index [, ignoreFilter]</span>)
+
: [[API CombatLogSetCurrentEntry|CombatLogSetCurrentEntry]](<span class="apiarg">index [, ignoreFilter]</span>)
: [[API CombatLogSetRetentionTime|CombatLogSetRetentionTime]](<span style="font-size:smaller; color:#ecbc2a">seconds</span>)
+
: [[API CombatLogSetRetentionTime|CombatLogSetRetentionTime]](<span class="apiarg">seconds</span>)
 
: [[API CombatLog_Object_IsA|CombatLog_Object_IsA]]()
 
: [[API CombatLog_Object_IsA|CombatLog_Object_IsA]]()
: [[API CombatTextSetActiveUnit|CombatTextSetActiveUnit]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Changes the entity for which COMBAT_TEXT_UPDATE events fire.
+
: [[API CombatTextSetActiveUnit|CombatTextSetActiveUnit]](<span class="apiarg">unit</span>) - Changes the entity for which COMBAT_TEXT_UPDATE events fire.
 
: [[API GetCurrentCombatTextEventInfo|GetCurrentCombatTextEventInfo]]()
 
: [[API GetCurrentCombatTextEventInfo|GetCurrentCombatTextEventInfo]]()
   
Line 1,491: Line 1,553:
 
Relates to [[Combat pet|Combat Pet]]s.
 
Relates to [[Combat pet|Combat Pet]]s.
 
: [[API CancelPetPossess|CancelPetPossess]]()
 
: [[API CancelPetPossess|CancelPetPossess]]()
: <small>PROTECTED</small> [[API CastPetAction|CastPetAction]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Cast the corresponding pet skill.
+
: <small>PROTECTED</small> [[API CastPetAction|CastPetAction]](<span class="apiarg">index</span>) - Cast the corresponding pet skill.
 
: [[API DisableSpellAutocast|DisableSpellAutocast]]() - Disables autocasting for a pet spell.
 
: [[API DisableSpellAutocast|DisableSpellAutocast]]() - Disables autocasting for a pet spell.
 
: [[API EnableSpellAutocast|EnableSpellAutocast]]() - Enables autocasting for a pet spell.
 
: [[API EnableSpellAutocast|EnableSpellAutocast]]() - Enables autocasting for a pet spell.
: [[API GetCallPetSpellInfo|GetCallPetSpellInfo]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>)
+
: [[API GetCallPetSpellInfo|GetCallPetSpellInfo]](<span class="apiarg">spellID</span>)
: [[API GetPetActionCooldown|GetPetActionCooldown]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns cooldown information for the pet action at the specificed pet action bar slot.
+
: [[API GetPetActionCooldown|GetPetActionCooldown]](<span class="apiarg">index</span>) - Returns cooldown information for the pet action at the specificed pet action bar slot.
: [[API GetPetActionInfo|GetPetActionInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns information on the pet action at the specified pet action bar slot.
+
: [[API GetPetActionInfo|GetPetActionInfo]](<span class="apiarg">index</span>) - Returns information on the pet action at the specified pet action bar slot.
: [[API GetPetActionSlotUsable|GetPetActionSlotUsable]](<span style="font-size:smaller; color:#ecbc2a">slot</span>)
+
: [[API GetPetActionSlotUsable|GetPetActionSlotUsable]](<span class="apiarg">slot</span>)
 
: [[API GetPetActionsUsable|GetPetActionsUsable]]() - Returns a value indicating if the player's pet's actions can be used at this time.
 
: [[API GetPetActionsUsable|GetPetActionsUsable]]() - Returns a value indicating if the player's pet's actions can be used at this time.
 
: [[API GetPetExperience|GetPetExperience]]() - Returns the pet's current xp, and total xp required for next level.
 
: [[API GetPetExperience|GetPetExperience]]() - Returns the pet's current xp, and total xp required for next level.
Line 1,512: Line 1,574:
 
: <small>PROTECTED</small> [[API PetAttack|PetAttack]]() - Instruct your pet to attack your target.
 
: <small>PROTECTED</small> [[API PetAttack|PetAttack]]() - Instruct your pet to attack your target.
 
: [[API PetCanBeAbandoned|PetCanBeAbandoned]]() - Returns true if the pet is abandonable.
 
: [[API PetCanBeAbandoned|PetCanBeAbandoned]]() - Returns true if the pet is abandonable.
: <small>PROTECTED</small> [[API PetMoveTo|PetMoveTo]](<span style="font-size:smaller; color:#ecbc2a">target</span>)
+
: <small>PROTECTED</small> [[API PetMoveTo|PetMoveTo]](<span class="apiarg">target</span>)
 
: [[API PetCanBeDismissed|PetCanBeDismissed]]()
 
: [[API PetCanBeDismissed|PetCanBeDismissed]]()
 
: [[API PetCanBeRenamed|PetCanBeRenamed]]() - Returns true if the pet can be renamed.
 
: [[API PetCanBeRenamed|PetCanBeRenamed]]() - Returns true if the pet can be renamed.
Line 1,521: Line 1,583:
 
: [[API PetHasSpellbook|PetHasSpellbook]]()
 
: [[API PetHasSpellbook|PetHasSpellbook]]()
 
: <small>PROTECTED</small> [[API PetPassiveMode|PetPassiveMode]]() - Set your pet into passive mode.
 
: <small>PROTECTED</small> [[API PetPassiveMode|PetPassiveMode]]() - Set your pet into passive mode.
: [[API PetRename|PetRename]](<span style="font-size:smaller; color:#ecbc2a">name</span>) - Renames the pet.
+
: [[API PetRename|PetRename]](<span class="apiarg">name</span>) - Renames the pet.
 
: [[API PetStopAttack|PetStopAttack]]() - Stop the attack of the pet.
 
: [[API PetStopAttack|PetStopAttack]]() - Stop the attack of the pet.
 
: [[API PetUsesPetFrame|PetUsesPetFrame]]()
 
: [[API PetUsesPetFrame|PetUsesPetFrame]]()
 
: <small>PROTECTED</small> [[API PetWait|PetWait]]() - Instruct your pet to remain still.
 
: <small>PROTECTED</small> [[API PetWait|PetWait]]() - Instruct your pet to remain still.
: <small>PROTECTED</small> [[API TogglePetAutocast|TogglePetAutocast]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Toggles whether the specified pet ability should autocast or not.
+
: <small>PROTECTED</small> [[API TogglePetAutocast|TogglePetAutocast]](<span class="apiarg">index</span>) - Toggles whether the specified pet ability should autocast or not.
: <small>PROTECTED</small> [[API ToggleSpellAutocast|ToggleSpellAutocast]](<span style="font-size:smaller; color:#ecbc2a">spellName | spellId, bookType</span>) - Toggles whether the specified Pet spell should autocast or not.
+
: <small>PROTECTED</small> [[API ToggleSpellAutocast|ToggleSpellAutocast]](<span class="apiarg">spellName | spellId, bookType</span>) - Toggles whether the specified Pet spell should autocast or not.
 
Relates to the [[Stable Master]].
 
Relates to the [[Stable Master]].
 
: [[API ClosePetStables|ClosePetStables]]() - Close the pet stables user interface.
 
: [[API ClosePetStables|ClosePetStables]]() - Close the pet stables user interface.
: [[API GetStablePetFoodTypes|GetStablePetFoodTypes]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns a list of the food types a specific stabled pet can eat.
+
: [[API GetStablePetFoodTypes|GetStablePetFoodTypes]](<span class="apiarg">index</span>) - Returns a list of the food types a specific stabled pet can eat.
: [[API GetStablePetInfo|GetStablePetInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns information about a specific stabled pet.
+
: [[API GetStablePetInfo|GetStablePetInfo]](<span class="apiarg">index</span>) - Returns information about a specific stabled pet.
 
: [[API IsAtStableMaster|IsAtStableMaster]]()
 
: [[API IsAtStableMaster|IsAtStableMaster]]()
: [[API SetPetSlot|SetPetSlot]](<span style="font-size:smaller; color:#ecbc2a">index, slot</span>)
+
: [[API SetPetSlot|SetPetSlot]](<span class="apiarg">index, slot</span>)
: [[API SetPetStablePaperdoll|SetPetStablePaperdoll]](<span style="font-size:smaller; color:#ecbc2a">modelObject</span>)
+
: [[API SetPetStablePaperdoll|SetPetStablePaperdoll]](<span class="apiarg">modelObject</span>)
   
 
=== Controls ===
 
=== Controls ===
 
==== Action Bars ====
 
==== Action Bars ====
: [[API C_ActionBar.GetBonusBarIndexForSlot|C_ActionBar.GetBonusBarIndexForSlot]](<span style="font-size:smaller; color:#ecbc2a">slotID</span>) : <span style="font-size:smaller; color:#4ec9b0">bonusBarIndex</span>
+
: [[API C_ActionBar.GetBonusBarIndexForSlot|C_ActionBar.GetBonusBarIndexForSlot]](<span class="apiarg">slotID</span>) : <span class="apiret">bonusBarIndex</span>
: [[API C_ActionBar.IsHarmfulAction|C_ActionBar.IsHarmfulAction]](<span style="font-size:smaller; color:#ecbc2a">actionID, useNeutral</span>) : <span style="font-size:smaller; color:#4ec9b0">isHarmful</span>
+
: [[API C_ActionBar.IsHarmfulAction|C_ActionBar.IsHarmfulAction]](<span class="apiarg">actionID, useNeutral</span>) : <span class="apiret">isHarmful</span>
: [[API C_ActionBar.IsHelpfulAction|C_ActionBar.IsHelpfulAction]](<span style="font-size:smaller; color:#ecbc2a">actionID, useNeutral</span>) : <span style="font-size:smaller; color:#4ec9b0">isHelpful</span>
+
: [[API C_ActionBar.IsHelpfulAction|C_ActionBar.IsHelpfulAction]](<span class="apiarg">actionID, useNeutral</span>) : <span class="apiret">isHelpful</span>
: [[API C_ActionBar.IsOnBarOrSpecialBar|C_ActionBar.IsOnBarOrSpecialBar]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>) : <span style="font-size:smaller; color:#4ec9b0">isOnBarOrSpecialBar</span>
+
: [[API C_ActionBar.IsOnBarOrSpecialBar|C_ActionBar.IsOnBarOrSpecialBar]](<span class="apiarg">spellID</span>) : <span class="apiret">isOnBarOrSpecialBar</span>
: [[API C_ActionBar.PutActionInSlot|C_ActionBar.PutActionInSlot]](<span style="font-size:smaller; color:#ecbc2a">slotID</span>)
+
: [[API C_ActionBar.PutActionInSlot|C_ActionBar.PutActionInSlot]](<span class="apiarg">slotID</span>)
: [[API C_ActionBar.ShouldOverrideBarShowHealthBar|C_ActionBar.ShouldOverrideBarShowHealthBar]]() : <span style="font-size:smaller; color:#4ec9b0">showHealthBar</span>
+
: [[API C_ActionBar.ShouldOverrideBarShowHealthBar|C_ActionBar.ShouldOverrideBarShowHealthBar]]() : <span class="apiret">showHealthBar</span>
: [[API C_ActionBar.ShouldOverrideBarShowManaBar|C_ActionBar.ShouldOverrideBarShowManaBar]]() : <span style="font-size:smaller; color:#4ec9b0">showManaBar</span>
+
: [[API C_ActionBar.ShouldOverrideBarShowManaBar|C_ActionBar.ShouldOverrideBarShowManaBar]]() : <span class="apiret">showManaBar</span>
: <small>NOCOMBAT</small> [[API ChangeActionBarPage|ChangeActionBarPage]](<span style="font-size:smaller; color:#ecbc2a">page</span>) - Changes the current action bar page.
+
: <small>NOCOMBAT</small> [[API ChangeActionBarPage|ChangeActionBarPage]](<span class="apiarg">page</span>) - Changes the current action bar page.
 
: [[API GetActionBarPage|GetActionBarPage]]() - Returns the current action bar page. CURRENT_ACTIONBAR_PAGE is obsolete.
 
: [[API GetActionBarPage|GetActionBarPage]]() - Returns the current action bar page. CURRENT_ACTIONBAR_PAGE is obsolete.
 
: [[API GetActionBarToggles|GetActionBarToggles]]() - Returns the toggles for each action bar.
 
: [[API GetActionBarToggles|GetActionBarToggles]]() - Returns the toggles for each action bar.
Line 1,562: Line 1,624:
 
: [[API IsPossessBarVisible|IsPossessBarVisible]]()
 
: [[API IsPossessBarVisible|IsPossessBarVisible]]()
 
: [[API PetHasActionBar|PetHasActionBar]]() - Determine if player has a pet with an action bar.
 
: [[API PetHasActionBar|PetHasActionBar]]() - Determine if player has a pet with an action bar.
: [[API SetActionBarToggles|SetActionBarToggles]](<span style="font-size:smaller; color:#ecbc2a">show1, show2, show3, show4 [, alwaysShow]</span>) - Set show toggle for each action bar.
+
: [[API SetActionBarToggles|SetActionBarToggles]](<span class="apiarg">show1, show2, show3, show4 [, alwaysShow]</span>) - Set show toggle for each action bar.
   
 
==== Action Buttons ====
 
==== Action Buttons ====
: [[API C_ActionBar.FindPetActionButtons|C_ActionBar.FindPetActionButtons]](<span style="font-size:smaller; color:#ecbc2a">petActionID</span>) : <span style="font-size:smaller; color:#4ec9b0">slots</span>
+
: [[API C_ActionBar.FindPetActionButtons|C_ActionBar.FindPetActionButtons]](<span class="apiarg">petActionID</span>) : <span class="apiret">slots</span>
: [[API C_ActionBar.FindSpellActionButtons|C_ActionBar.FindSpellActionButtons]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>) : <span style="font-size:smaller; color:#4ec9b0">slots</span>
+
: [[API C_ActionBar.FindSpellActionButtons|C_ActionBar.FindSpellActionButtons]](<span class="apiarg">spellID</span>) : <span class="apiret">slots</span>
: [[API C_ActionBar.GetPetActionPetBarIndices|C_ActionBar.GetPetActionPetBarIndices]](<span style="font-size:smaller; color:#ecbc2a">petActionID</span>) : <span style="font-size:smaller; color:#4ec9b0">slots</span>
+
: [[API C_ActionBar.GetPetActionPetBarIndices|C_ActionBar.GetPetActionPetBarIndices]](<span class="apiarg">petActionID</span>) : <span class="apiret">slots</span>
: [[API C_ActionBar.HasPetActionButtons|C_ActionBar.HasPetActionButtons]](<span style="font-size:smaller; color:#ecbc2a">petActionID</span>) : <span style="font-size:smaller; color:#4ec9b0">hasPetActionButtons</span>
+
: [[API C_ActionBar.HasPetActionButtons|C_ActionBar.HasPetActionButtons]](<span class="apiarg">petActionID</span>) : <span class="apiret">hasPetActionButtons</span>
: [[API C_ActionBar.HasPetActionPetBarIndices|C_ActionBar.HasPetActionPetBarIndices]](<span style="font-size:smaller; color:#ecbc2a">petActionID</span>) : <span style="font-size:smaller; color:#4ec9b0">hasPetActionPetBarIndices</span>
+
: [[API C_ActionBar.HasPetActionPetBarIndices|C_ActionBar.HasPetActionPetBarIndices]](<span class="apiarg">petActionID</span>) : <span class="apiret">hasPetActionPetBarIndices</span>
: [[API C_ActionBar.HasSpellActionButtons|C_ActionBar.HasSpellActionButtons]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>) : <span style="font-size:smaller; color:#4ec9b0">hasSpellActionButtons</span>
+
: [[API C_ActionBar.HasSpellActionButtons|C_ActionBar.HasSpellActionButtons]](<span class="apiarg">spellID</span>) : <span class="apiret">hasSpellActionButtons</span>
: [[API C_ActionBar.IsAutoCastPetAction|C_ActionBar.IsAutoCastPetAction]](<span style="font-size:smaller; color:#ecbc2a">slotID</span>) : <span style="font-size:smaller; color:#4ec9b0">isAutoCastPetAction</span>
+
: [[API C_ActionBar.IsAutoCastPetAction|C_ActionBar.IsAutoCastPetAction]](<span class="apiarg">slotID</span>) : <span class="apiret">isAutoCastPetAction</span>
: [[API C_ActionBar.IsEnabledAutoCastPetAction|C_ActionBar.IsEnabledAutoCastPetAction]](<span style="font-size:smaller; color:#ecbc2a">slotID</span>) : <span style="font-size:smaller; color:#4ec9b0">isEnabledAutoCastPetAction</span>
+
: [[API C_ActionBar.IsEnabledAutoCastPetAction|C_ActionBar.IsEnabledAutoCastPetAction]](<span class="apiarg">slotID</span>) : <span class="apiret">isEnabledAutoCastPetAction</span>
: [[API C_ActionBar.ToggleAutoCastPetAction|C_ActionBar.ToggleAutoCastPetAction]](<span style="font-size:smaller; color:#ecbc2a">slotID</span>)
+
: [[API C_ActionBar.ToggleAutoCastPetAction|C_ActionBar.ToggleAutoCastPetAction]](<span class="apiarg">slotID</span>)
: [[API ActionHasRange|ActionHasRange]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Determine if the specified action is a range restriction (1 if yes, nil if no)
+
: [[API ActionHasRange|ActionHasRange]](<span class="apiarg">slot</span>) - Determine if the specified action is a range restriction (1 if yes, nil if no)
 
: [[API ClickWorldMapActionButton|ClickWorldMapActionButton]]()
 
: [[API ClickWorldMapActionButton|ClickWorldMapActionButton]]()
: [[API GetActionAutocast|GetActionAutocast]](<span style="font-size:smaller; color:#ecbc2a">slot</span>)
+
: [[API GetActionAutocast|GetActionAutocast]](<span class="apiarg">slot</span>)
: [[API GetActionCharges|GetActionCharges]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Returns information about the charges of a charge-accumulating player ability.
+
: [[API GetActionCharges|GetActionCharges]](<span class="apiarg">slot</span>) - Returns information about the charges of a charge-accumulating player ability.
: [[API GetActionCooldown|GetActionCooldown]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - This returns the cooldown values of the specified action.
+
: [[API GetActionCooldown|GetActionCooldown]](<span class="apiarg">slot</span>) - This returns the cooldown values of the specified action.
: [[API GetActionCount|GetActionCount]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Get the count (bandage/potion/etc) for an action, returns 0 if none or not applicable.
+
: [[API GetActionCount|GetActionCount]](<span class="apiarg">slot</span>) - Get the count (bandage/potion/etc) for an action, returns 0 if none or not applicable.
: [[API GetActionInfo|GetActionInfo]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Returns type, id, subtype.
+
: [[API GetActionInfo|GetActionInfo]](<span class="apiarg">slot</span>) - Returns type, id, subtype.
: [[API GetActionTexture|GetActionTexture]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Gets the texture path for the specified action.
+
: [[API GetActionTexture|GetActionTexture]](<span class="apiarg">slot</span>) - Gets the texture path for the specified action.
: [[API GetActionText|GetActionText]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Get the text label (macros, etc) for an action, returns nil if none.
+
: [[API GetActionText|GetActionText]](<span class="apiarg">slot</span>) - Get the text label (macros, etc) for an action, returns nil if none.
: [[API GetPossessInfo|GetPossessInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns texture, name, enabled.
+
: [[API GetPossessInfo|GetPossessInfo]](<span class="apiarg">index</span>) - Returns texture, name, enabled.
 
: [[API GetWorldMapActionButtonSpellInfo|GetWorldMapActionButtonSpellInfo]]()
 
: [[API GetWorldMapActionButtonSpellInfo|GetWorldMapActionButtonSpellInfo]]()
: [[API HasAction|HasAction]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Returns 1 if the player has an action in the specified slot, nil otherwise.
+
: [[API HasAction|HasAction]](<span class="apiarg">slot</span>) - Returns 1 if the player has an action in the specified slot, nil otherwise.
: [[API IsActionInRange|IsActionInRange]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Test if an action is in range (1=yes, 0=no, nil=not applicable).
+
: [[API IsActionInRange|IsActionInRange]](<span class="apiarg">slot</span>) - Test if an action is in range (1=yes, 0=no, nil=not applicable).
: [[API IsAttackAction|IsAttackAction]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Returns 1 if an action is an 'attack' action (flashes during combat), nil otherwise.
+
: [[API IsAttackAction|IsAttackAction]](<span class="apiarg">slot</span>) - Returns 1 if an action is an 'attack' action (flashes during combat), nil otherwise.
: [[API IsAutoRepeatAction|IsAutoRepeatAction]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Returns 1 if an action is auto-repeating, nil otherwise.
+
: [[API IsAutoRepeatAction|IsAutoRepeatAction]](<span class="apiarg">slot</span>) - Returns 1 if an action is auto-repeating, nil otherwise.
: [[API IsConsumableAction|IsConsumableAction]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Returns 1 if an action is consumable (i.e. has a count), nil otherwise.
+
: [[API IsConsumableAction|IsConsumableAction]](<span class="apiarg">slot</span>) - Returns 1 if an action is consumable (i.e. has a count), nil otherwise.
: [[API IsCurrentAction|IsCurrentAction]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Returns 1 if an action is the one currently underway, nil otherwise.
+
: [[API IsCurrentAction|IsCurrentAction]](<span class="apiarg">slot</span>) - Returns 1 if an action is the one currently underway, nil otherwise.
: [[API IsEquippedAction|IsEquippedAction]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Returns 1 if an action is equipped (i.e. connected to an item that must be equipped), nil otherwise.
+
: [[API IsEquippedAction|IsEquippedAction]](<span class="apiarg">slot</span>) - Returns 1 if an action is equipped (i.e. connected to an item that must be equipped), nil otherwise.
: [[API IsItemAction|IsItemAction]](<span style="font-size:smaller; color:#ecbc2a">slot</span>)
+
: [[API IsItemAction|IsItemAction]](<span class="apiarg">slot</span>)
: [[API IsPetAttackAction|IsPetAttackAction]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API IsPetAttackAction|IsPetAttackAction]](<span class="apiarg">index</span>)
: [[API IsStackableAction|IsStackableAction]](<span style="font-size:smaller; color:#ecbc2a">slot</span>)
+
: [[API IsStackableAction|IsStackableAction]](<span class="apiarg">slot</span>)
: [[API IsUsableAction|IsUsableAction]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Returns 1 if an action can be used at present, nil otherwise.
+
: [[API IsUsableAction|IsUsableAction]](<span class="apiarg">slot</span>) - Returns 1 if an action can be used at present, nil otherwise.
: [[API SetActionUIButton|SetActionUIButton]](<span style="font-size:smaller; color:#ecbc2a">checkboxFrame, actionSlot, cooldownFrame</span>)
+
: [[API SetActionUIButton|SetActionUIButton]](<span class="apiarg">checkboxFrame, actionSlot, cooldownFrame</span>)
: [[API SetSpellbookPetAction|SetSpellbookPetAction]](<span style="font-size:smaller; color:#ecbc2a">slot, target</span>)
+
: [[API SetSpellbookPetAction|SetSpellbookPetAction]](<span class="apiarg">slot, target</span>)
: <small>PROTECTED</small> [[API UseAction|UseAction]](<span style="font-size:smaller; color:#ecbc2a">slot [, checkCursor, onSelf]</span>) - This instructs the interface to use the action associated with the specified ID, optionally on the player (regardless of target).
+
: <small>PROTECTED</small> [[API UseAction|UseAction]](<span class="apiarg">slot [, checkCursor, onSelf]</span>) - This instructs the interface to use the action associated with the specified ID, optionally on the player (regardless of target).
 
: [[API UseWorldMapActionButtonSpellOnQuest|UseWorldMapActionButtonSpellOnQuest]]()
 
: [[API UseWorldMapActionButtonSpellOnQuest|UseWorldMapActionButtonSpellOnQuest]]()
 
Flyout Buttons
 
Flyout Buttons
: [[API C_ActionBar.FindFlyoutActionButtons|C_ActionBar.FindFlyoutActionButtons]](<span style="font-size:smaller; color:#ecbc2a">flyoutID</span>) : <span style="font-size:smaller; color:#4ec9b0">slots</span>
+
: [[API C_ActionBar.FindFlyoutActionButtons|C_ActionBar.FindFlyoutActionButtons]](<span class="apiarg">flyoutID</span>) : <span class="apiret">slots</span>
: [[API C_ActionBar.HasFlyoutActionButtons|C_ActionBar.HasFlyoutActionButtons]](<span style="font-size:smaller; color:#ecbc2a">flyoutID</span>) : <span style="font-size:smaller; color:#4ec9b0">hasFlyoutActionButtons</span>
+
: [[API C_ActionBar.HasFlyoutActionButtons|C_ActionBar.HasFlyoutActionButtons]](<span class="apiarg">flyoutID</span>) : <span class="apiret">hasFlyoutActionButtons</span>
: [[API FindFlyoutSlotBySpellID|FindFlyoutSlotBySpellID]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>)
+
: [[API FindFlyoutSlotBySpellID|FindFlyoutSlotBySpellID]](<span class="apiarg">spellID</span>)
: [[API FlyoutHasSpell|FlyoutHasSpell]](<span style="font-size:smaller; color:#ecbc2a">flyoutID, spellID</span>)
+
: [[API FlyoutHasSpell|FlyoutHasSpell]](<span class="apiarg">flyoutID, spellID</span>)
: [[API GetFlyoutID|GetFlyoutID]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetFlyoutID|GetFlyoutID]](<span class="apiarg">index</span>)
: [[API GetFlyoutInfo|GetFlyoutInfo]](<span style="font-size:smaller; color:#ecbc2a">flyoutID</span>)
+
: [[API GetFlyoutInfo|GetFlyoutInfo]](<span class="apiarg">flyoutID</span>)
: [[API GetFlyoutSlotInfo|GetFlyoutSlotInfo]](<span style="font-size:smaller; color:#ecbc2a">flyoutID, slot</span>)
+
: [[API GetFlyoutSlotInfo|GetFlyoutSlotInfo]](<span class="apiarg">flyoutID, slot</span>)
 
: [[API GetNumFlyouts|GetNumFlyouts]]()
 
: [[API GetNumFlyouts|GetNumFlyouts]]()
   
 
==== Key Bindings ====
 
==== Key Bindings ====
 
Relates to [[Key Bindings]].
 
Relates to [[Key Bindings]].
: [[API C_KeyBindings.GetCustomBindingType|C_KeyBindings.GetCustomBindingType]](<span style="font-size:smaller; color:#ecbc2a">bindingIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">customBindingType</span> - Returns the type of a custom binding.
+
: [[API C_KeyBindings.GetCustomBindingType|C_KeyBindings.GetCustomBindingType]](<span class="apiarg">bindingIndex</span>) : <span class="apiret">customBindingType</span> - Returns the type of a custom binding.
: [[API GetBinding|GetBinding]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Get action and key bindings for that index.
+
: [[API GetBinding|GetBinding]](<span class="apiarg">index</span>) - Get action and key bindings for that index.
: [[API GetBindingAction|GetBindingAction]](<span style="font-size:smaller; color:#ecbc2a">key [, checkOverride]</span>) - Get the action bound to that key.
+
: [[API GetBindingAction|GetBindingAction]](<span class="apiarg">key [, checkOverride]</span>) - Get the action bound to that key.
: [[API GetBindingByKey|GetBindingByKey]](<span style="font-size:smaller; color:#ecbc2a">action [, mode]</span>)
+
: [[API GetBindingByKey|GetBindingByKey]](<span class="apiarg">action [, mode]</span>)
: [[API GetBindingKey|GetBindingKey]](<span style="font-size:smaller; color:#ecbc2a">command</span>) - Get the key(s) bound to that action.
+
: [[API GetBindingKey|GetBindingKey]](<span class="apiarg">command</span>) - Get the key(s) bound to that action.
: [[API GetBindingText|GetBindingText]](<span style="font-size:smaller; color:#ecbc2a">[key, prefix, abbreviate]</span>) - Gets the string value for the key.
+
: [[API GetBindingText|GetBindingText]](<span class="apiarg">[key, prefix, abbreviate]</span>) - Gets the string value for the key.
 
: [[API GetCurrentBindingSet|GetCurrentBindingSet]]() - Queries if current set of key bindings is character or account specific.
 
: [[API GetCurrentBindingSet|GetCurrentBindingSet]]() - Queries if current set of key bindings is character or account specific.
 
: [[API GetNumBindings|GetNumBindings]]() - Get total number key bindings and headers.
 
: [[API GetNumBindings|GetNumBindings]]() - Get total number key bindings and headers.
: [[API LoadBindings|LoadBindings]](<span style="font-size:smaller; color:#ecbc2a">which</span>) - Loads default, account or character specific key binding set into memory from disk.
+
: [[API LoadBindings|LoadBindings]](<span class="apiarg">which</span>) - Loads default, account or character specific key binding set into memory from disk.
: [[API RunBinding|RunBinding]](<span style="font-size:smaller; color:#ecbc2a">command [, up]</span>) - Executes the key binding named "command".
+
: [[API RunBinding|RunBinding]](<span class="apiarg">command [, up]</span>) - Executes the key binding named "command".
: [[API SaveBindings|SaveBindings]](<span style="font-size:smaller; color:#ecbc2a">which</span>) - Saves account or character specific key bindings from memory to disk.
+
: [[API SaveBindings|SaveBindings]](<span class="apiarg">which</span>) - Saves account or character specific key bindings from memory to disk.
: <small>NOCOMBAT</small> [[API SetBinding|SetBinding]](<span style="font-size:smaller; color:#ecbc2a">key [, command, mode]</span>) - Sets or unsets key bindings. (Can not be used in combat.)
+
: <small>NOCOMBAT</small> [[API SetBinding|SetBinding]](<span class="apiarg">key [, command, mode]</span>) - Sets or unsets key bindings. (Can not be used in combat.)
: <small>NOCOMBAT</small> [[API SetBindingSpell|SetBindingSpell]](<span style="font-size:smaller; color:#ecbc2a">key, spellName</span>) - Set a key binding directly to a spell, uses the same spell name syntax as /cast.
+
: <small>NOCOMBAT</small> [[API SetBindingSpell|SetBindingSpell]](<span class="apiarg">key, spellName</span>) - Set a key binding directly to a spell, uses the same spell name syntax as /cast.
: <small>NOCOMBAT</small> [[API SetBindingClick|SetBindingClick]](<span style="font-size:smaller; color:#ecbc2a">key, ButtonName [, mouseButton]</span>) - Set a key binding directly to a Button object. The click sends a mouse down when the key is pressed, and a mouse up when it is released.
+
: <small>NOCOMBAT</small> [[API SetBindingClick|SetBindingClick]](<span class="apiarg">key, ButtonName [, mouseButton]</span>) - Set a key binding directly to a Button object. The click sends a mouse down when the key is pressed, and a mouse up when it is released.
: <small>NOCOMBAT</small> [[API SetBindingItem|SetBindingItem]](<span style="font-size:smaller; color:#ecbc2a">key, itemname</span>)
+
: <small>NOCOMBAT</small> [[API SetBindingItem|SetBindingItem]](<span class="apiarg">key, itemname</span>)
: <small>NOCOMBAT</small> [[API SetBindingMacro|SetBindingMacro]](<span style="font-size:smaller; color:#ecbc2a">key, macroname or macroId</span>)
+
: <small>NOCOMBAT</small> [[API SetBindingMacro|SetBindingMacro]](<span class="apiarg">key, macroname or macroId</span>)
: <small>NOCOMBAT</small> [[API SetOverrideBinding|SetOverrideBinding]](<span style="font-size:smaller; color:#ecbc2a">owner, isPriority, key [, command]</span>) - Set (or clear) an override key binding.
+
: <small>NOCOMBAT</small> [[API SetOverrideBinding|SetOverrideBinding]](<span class="apiarg">owner, isPriority, key [, command]</span>) - Set (or clear) an override key binding.
: <small>NOCOMBAT</small> [[API SetOverrideBindingSpell|SetOverrideBindingSpell]](<span style="font-size:smaller; color:#ecbc2a">owner, isPriority, key, spellname</span>)
+
: <small>NOCOMBAT</small> [[API SetOverrideBindingSpell|SetOverrideBindingSpell]](<span class="apiarg">owner, isPriority, key, spellname</span>)
: <small>NOCOMBAT</small> [[API SetOverrideBindingClick|SetOverrideBindingClick]](<span style="font-size:smaller; color:#ecbc2a">owner, isPriority, key, buttonName [, mouseClick]</span>) - Sets an override binding that acts like a mouse click on a button.
+
: <small>NOCOMBAT</small> [[API SetOverrideBindingClick|SetOverrideBindingClick]](<span class="apiarg">owner, isPriority, key, buttonName [, mouseClick]</span>) - Sets an override binding that acts like a mouse click on a button.
: <small>NOCOMBAT</small> [[API SetOverrideBindingItem|SetOverrideBindingItem]](<span style="font-size:smaller; color:#ecbc2a">owner, isPriority, key, itemname</span>)
+
: <small>NOCOMBAT</small> [[API SetOverrideBindingItem|SetOverrideBindingItem]](<span class="apiarg">owner, isPriority, key, itemname</span>)
: <small>NOCOMBAT</small> [[API SetOverrideBindingMacro|SetOverrideBindingMacro]](<span style="font-size:smaller; color:#ecbc2a">owner, isPriority, key, macroname or macroId</span>)
+
: <small>NOCOMBAT</small> [[API SetOverrideBindingMacro|SetOverrideBindingMacro]](<span class="apiarg">owner, isPriority, key, macroname or macroId</span>)
: <small>NOCOMBAT</small> [[API ClearOverrideBindings|ClearOverrideBindings]](<span style="font-size:smaller; color:#ecbc2a">owner</span>) - Reset all overrides belonging to an owner.
+
: <small>NOCOMBAT</small> [[API ClearOverrideBindings|ClearOverrideBindings]](<span class="apiarg">owner</span>) - Reset all overrides belonging to an owner.
: [[API SetMouselookOverrideBinding|SetMouselookOverrideBinding]](<span style="font-size:smaller; color:#ecbc2a">key [, command]</span>)
+
: [[API SetMouselookOverrideBinding|SetMouselookOverrideBinding]](<span class="apiarg">key [, command]</span>)
   
 
==== Key Modifiers ====
 
==== Key Modifiers ====
: [[API GetModifiedClick|GetModifiedClick]](<span style="font-size:smaller; color:#ecbc2a">action</span>)
+
: [[API GetModifiedClick|GetModifiedClick]](<span class="apiarg">action</span>)
: [[API GetModifiedClickAction|GetModifiedClickAction]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetModifiedClickAction|GetModifiedClickAction]](<span class="apiarg">index</span>)
 
: [[API GetMouseButtonClicked|GetMouseButtonClicked]]() - Returns the name of the button that triggered a mouse down/up/click/doubleclick event.
 
: [[API GetMouseButtonClicked|GetMouseButtonClicked]]() - Returns the name of the button that triggered a mouse down/up/click/doubleclick event.
 
: [[API GetNumModifiedClickActions|GetNumModifiedClickActions]]()
 
: [[API GetNumModifiedClickActions|GetNumModifiedClickActions]]()
 
: [[API IsAltKeyDown|IsAltKeyDown]]() - Returns true if the alt key is currently depressed.
 
: [[API IsAltKeyDown|IsAltKeyDown]]() - Returns true if the alt key is currently depressed.
 
: [[API IsControlKeyDown|IsControlKeyDown]]() - Returns true if the control key is currently depressed.
 
: [[API IsControlKeyDown|IsControlKeyDown]]() - Returns true if the control key is currently depressed.
: [[API IsKeyDown|IsKeyDown]](<span style="font-size:smaller; color:#ecbc2a">keyOrMouseName [, excludeCurrentBindingState]</span>)
+
: [[API IsKeyDown|IsKeyDown]](<span class="apiarg">keyOrMouseName [, excludeCurrentBindingState]</span>)
 
: [[API IsLeftAltKeyDown|IsLeftAltKeyDown]]() - Returns true if the left alt key is currently depressed.
 
: [[API IsLeftAltKeyDown|IsLeftAltKeyDown]]() - Returns true if the left alt key is currently depressed.
 
: [[API IsLeftControlKeyDown|IsLeftControlKeyDown]]() - Returns true if the left control key is currently depressed.
 
: [[API IsLeftControlKeyDown|IsLeftControlKeyDown]]() - Returns true if the left control key is currently depressed.
Line 1,649: Line 1,711:
 
: [[API IsLeftShiftKeyDown|IsLeftShiftKeyDown]]() - Returns true if the left shift key is currently depressed.
 
: [[API IsLeftShiftKeyDown|IsLeftShiftKeyDown]]() - Returns true if the left shift key is currently depressed.
 
: [[API IsMetaKeyDown|IsMetaKeyDown]]()
 
: [[API IsMetaKeyDown|IsMetaKeyDown]]()
: [[API IsModifiedClick|IsModifiedClick]](<span style="font-size:smaller; color:#ecbc2a">action</span>) - Returns 1 if the keys for the specified action are down, nil otherwise.
+
: [[API IsModifiedClick|IsModifiedClick]](<span class="apiarg">action</span>) - Returns 1 if the keys for the specified action are down, nil otherwise.
 
: [[API IsModifierKeyDown|IsModifierKeyDown]]() - Equivalent to (IsShiftKeyDown() or IsControlKeyDown() or IsAltKeyDown()).
 
: [[API IsModifierKeyDown|IsModifierKeyDown]]() - Equivalent to (IsShiftKeyDown() or IsControlKeyDown() or IsAltKeyDown()).
: [[API IsMouseButtonDown|IsMouseButtonDown]](<span style="font-size:smaller; color:#ecbc2a">[button]</span>)
+
: [[API IsMouseButtonDown|IsMouseButtonDown]](<span class="apiarg">[button]</span>)
 
: [[API IsRightAltKeyDown|IsRightAltKeyDown]]() - Returns true if the right alt key is currently depressed.
 
: [[API IsRightAltKeyDown|IsRightAltKeyDown]]() - Returns true if the right alt key is currently depressed.
 
: [[API IsRightControlKeyDown|IsRightControlKeyDown]]() - Returns true if the right control key is currently depressed.
 
: [[API IsRightControlKeyDown|IsRightControlKeyDown]]() - Returns true if the right control key is currently depressed.
Line 1,657: Line 1,719:
 
: [[API IsRightShiftKeyDown|IsRightShiftKeyDown]]() - Returns true if the right shift key is currently depressed.
 
: [[API IsRightShiftKeyDown|IsRightShiftKeyDown]]() - Returns true if the right shift key is currently depressed.
 
: [[API IsShiftKeyDown|IsShiftKeyDown]]() - Returns true if the shift key is currently depressed.
 
: [[API IsShiftKeyDown|IsShiftKeyDown]]() - Returns true if the shift key is currently depressed.
: [[API SetModifiedClick|SetModifiedClick]](<span style="font-size:smaller; color:#ecbc2a">action, binding</span>)
+
: [[API SetModifiedClick|SetModifiedClick]](<span class="apiarg">action, binding</span>)
   
 
==== Cursor ====
 
==== Cursor ====
 
Relates to the [[Cursor]].
 
Relates to the [[Cursor]].
: [[API C_CurrencyInfo.PickupCurrency|C_CurrencyInfo.PickupCurrency]](<span style="font-size:smaller; color:#ecbc2a">type</span>)
+
: [[API C_CurrencyInfo.PickupCurrency|C_CurrencyInfo.PickupCurrency]](<span class="apiarg">type</span>)
 
: [[API AutoEquipCursorItem|AutoEquipCursorItem]]() - Causes the equipment on the cursor to be equipped.
 
: [[API AutoEquipCursorItem|AutoEquipCursorItem]]() - Causes the equipment on the cursor to be equipped.
 
: [[API ClearCursor|ClearCursor]]() - Clears whatever item the cursor is dragging from the cursor.
 
: [[API ClearCursor|ClearCursor]]() - Clears whatever item the cursor is dragging from the cursor.
: [[API ClickSocketButton|ClickSocketButton]](<span style="font-size:smaller; color:#ecbc2a">id</span>) - If the cursor is currently holding a gem, tentatively insert it into the socket.
+
: [[API ClickSocketButton|ClickSocketButton]](<span class="apiarg">id</span>) - If the cursor is currently holding a gem, tentatively insert it into the socket.
: [[API CursorCanGoInSlot|CursorCanGoInSlot]](<span style="font-size:smaller; color:#ecbc2a">invSlot</span>) - Returns true if the item currently held by the cursor can go into the given inventory (equipment) slot.
+
: [[API CursorCanGoInSlot|CursorCanGoInSlot]](<span class="apiarg">invSlot</span>) - Returns true if the item currently held by the cursor can go into the given inventory (equipment) slot.
 
: [[API CursorHasItem|CursorHasItem]]() - Returns true if the cursor currently holds an item.
 
: [[API CursorHasItem|CursorHasItem]]() - Returns true if the cursor currently holds an item.
 
: [[API CursorHasMacro|CursorHasMacro]]() - Returns 1 if the cursor is currently dragging a macro.
 
: [[API CursorHasMacro|CursorHasMacro]]() - Returns 1 if the cursor is currently dragging a macro.
 
: [[API CursorHasMoney|CursorHasMoney]]() - Returns true if the cursor currently holds money.
 
: [[API CursorHasMoney|CursorHasMoney]]() - Returns true if the cursor currently holds money.
 
: [[API CursorHasSpell|CursorHasSpell]]() - Returns true if the cursor currently holds a spell.
 
: [[API CursorHasSpell|CursorHasSpell]]() - Returns true if the cursor currently holds a spell.
: [[API DeleteCursorItem|DeleteCursorItem]]() - Destroys the item on the cursor.
+
: <small>HW, SCRIPT</small> [[API DeleteCursorItem|DeleteCursorItem]]() - Destroys the item on the cursor.
 
: [[API DropCursorMoney|DropCursorMoney]]() - Drops the amount of money held by the cursor.
 
: [[API DropCursorMoney|DropCursorMoney]]() - Drops the amount of money held by the cursor.
: [[API DropItemOnUnit|DropItemOnUnit]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Drops an item from the cursor onto a unit.
+
: [[API DropItemOnUnit|DropItemOnUnit]](<span class="apiarg">unit</span>) - Drops an item from the cursor onto a unit.
: [[API EquipCursorItem|EquipCursorItem]](<span style="font-size:smaller; color:#ecbc2a">invSlot</span>) - Equips the currently picked up item to a specific inventory slot.
+
: [[API EquipCursorItem|EquipCursorItem]](<span class="apiarg">invSlot</span>) - Equips the currently picked up item to a specific inventory slot.
 
: [[API GetCursorDelta|GetCursorDelta]]()
 
: [[API GetCursorDelta|GetCursorDelta]]()
 
: [[API GetCursorInfo|GetCursorInfo]]() - Returns information about what the cursor is holding.
 
: [[API GetCursorInfo|GetCursorInfo]]() - Returns information about what the cursor is holding.
Line 1,680: Line 1,742:
 
: [[API HideRepairCursor|HideRepairCursor]]() - Hides the repair cursor.
 
: [[API HideRepairCursor|HideRepairCursor]]() - Hides the repair cursor.
 
: [[API InRepairMode|InRepairMode]]() - Returns true if your cursor is in repair mode.
 
: [[API InRepairMode|InRepairMode]]() - Returns true if your cursor is in repair mode.
: [[API PickupAction|PickupAction]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Drags an action out of the specified quickbar slot and holds it on the cursor.
+
: [[API PickupAction|PickupAction]](<span class="apiarg">slot</span>) - Drags an action out of the specified quickbar slot and holds it on the cursor.
: [[API PickupBagFromSlot|PickupBagFromSlot]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Picks up the bag from the specified slot, placing it in the cursor.
+
: [[API PickupBagFromSlot|PickupBagFromSlot]](<span class="apiarg">slot</span>) - Picks up the bag from the specified slot, placing it in the cursor.
: [[API PickupCompanion|PickupCompanion]](<span style="font-size:smaller; color:#ecbc2a">type, index</span>) - Picks up the indexed companion onto the mouse cursor.
+
: [[API PickupCompanion|PickupCompanion]](<span class="apiarg">type, index</span>) - Picks up the indexed companion onto the mouse cursor.
: [[API PickupContainerItem|PickupContainerItem]](<span style="font-size:smaller; color:#ecbc2a">bagID, slot</span>)
+
: [[API PickupContainerItem|PickupContainerItem]](<span class="apiarg">bagID, slot</span>)
: [[API PickupGuildBankItem|PickupGuildBankItem]](<span style="font-size:smaller; color:#ecbc2a">tab, slot</span>) - Picks up an item from the guild bank.
+
: [[API PickupGuildBankItem|PickupGuildBankItem]](<span class="apiarg">tab, slot</span>) - Picks up an item from the guild bank.
: [[API PickupGuildBankMoney|PickupGuildBankMoney]](<span style="font-size:smaller; color:#ecbc2a">money</span>) - Picks up "money" copper from the guild bank.
+
: [[API PickupGuildBankMoney|PickupGuildBankMoney]](<span class="apiarg">money</span>) - Picks up "money" copper from the guild bank.
: [[API PickupInventoryItem|PickupInventoryItem]](<span style="font-size:smaller; color:#ecbc2a">invSlot</span>) - Picks up an item from the player's worn inventory.
+
: [[API PickupInventoryItem|PickupInventoryItem]](<span class="apiarg">invSlot</span>) - Picks up an item from the player's worn inventory.
: [[API PickupItem|PickupItem]](<span style="font-size:smaller; color:#ecbc2a">item</span>)
+
: [[API PickupItem|PickupItem]](<span class="apiarg">item</span>)
: [[API PickupMacro|PickupMacro]](<span style="font-size:smaller; color:#ecbc2a">macroName or index</span>) - Places the specified macro onto the cursor.
+
: [[API PickupMacro|PickupMacro]](<span class="apiarg">macroName or index</span>) - Places the specified macro onto the cursor.
: [[API PickupMerchantItem|PickupMerchantItem]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Places the item onto the cursor. If the cursor already has an item, the item in the cursor will be sold.
+
: [[API PickupMerchantItem|PickupMerchantItem]](<span class="apiarg">index</span>) - Places the item onto the cursor. If the cursor already has an item, the item in the cursor will be sold.
: [[API PickupPetAction|PickupPetAction]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Drags an action from the specified pet action bar slot into the cursor.
+
: [[API PickupPetAction|PickupPetAction]](<span class="apiarg">slot</span>) - Drags an action from the specified pet action bar slot into the cursor.
: [[API PickupPetSpell|PickupPetSpell]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>)
+
: [[API PickupPetSpell|PickupPetSpell]](<span class="apiarg">spellID</span>)
: [[API PickupPlayerMoney|PickupPlayerMoney]](<span style="font-size:smaller; color:#ecbc2a">copper</span>) - Picks up an amount of money from the player.
+
: [[API PickupPlayerMoney|PickupPlayerMoney]](<span class="apiarg">copper</span>) - Picks up an amount of money from the player.
 
: [[API PickupPvpTalent|PickupPvpTalent]]()
 
: [[API PickupPvpTalent|PickupPvpTalent]]()
: [[API PickupSpell|PickupSpell]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>) - Places the specified spell onto the cursor.
+
: [[API PickupSpell|PickupSpell]](<span class="apiarg">spellID</span>) - Places the specified spell onto the cursor.
: [[API PickupSpellBookItem|PickupSpellBookItem]](<span style="font-size:smaller; color:#ecbc2a">spellSlot</span>)
+
: [[API PickupSpellBookItem|PickupSpellBookItem]](<span class="apiarg">spellSlot</span>)
: [[API PickupStablePet|PickupStablePet]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API PickupStablePet|PickupStablePet]](<span class="apiarg">index</span>)
: [[API PickupTalent|PickupTalent]](<span style="font-size:smaller; color:#ecbc2a">talentID</span>) - Grabs the selected talent spell for placement on an action bar.
+
: [[API PickupTalent|PickupTalent]](<span class="apiarg">talentID</span>) - Grabs the selected talent spell for placement on an action bar.
: [[API PickupTradeMoney|PickupTradeMoney]](<span style="font-size:smaller; color:#ecbc2a">copper</span>) - Picks up an amount of money from the player's trade offer.
+
: [[API PickupTradeMoney|PickupTradeMoney]](<span class="apiarg">copper</span>) - Picks up an amount of money from the player's trade offer.
: [[API PlaceAction|PlaceAction]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Drops an action from the cursor into the specified quickbar slot.
+
: [[API PlaceAction|PlaceAction]](<span class="apiarg">slot</span>) - Drops an action from the cursor into the specified quickbar slot.
 
: [[API ResetCursor|ResetCursor]]()
 
: [[API ResetCursor|ResetCursor]]()
 
: [[API SellCursorItem|SellCursorItem]]()
 
: [[API SellCursorItem|SellCursorItem]]()
: [[API SetCursor|SetCursor]](<span style="font-size:smaller; color:#ecbc2a">cursor</span>) - Path to a texture to use as the cursor image (must be 32x32 pixels) or one of the built-in cursor tokens or nil.
+
: [[API SetCursor|SetCursor]](<span class="apiarg">cursor</span>) - Path to a texture to use as the cursor image (must be 32x32 pixels) or one of the built-in cursor tokens or nil.
  +
: [[API ShowBuybackSellCursor|ShowBuybackSellCursor]](<span class="apiarg">index</span>)
: [[API SetItemUpgradeFromCursorItem|SetItemUpgradeFromCursorItem]]()
 
: [[API ShowBuybackSellCursor|ShowBuybackSellCursor]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API ShowContainerSellCursor|ShowContainerSellCursor]](<span class="apiarg">index, slot</span>)
: [[API ShowContainerSellCursor|ShowContainerSellCursor]](<span style="font-size:smaller; color:#ecbc2a">index, slot</span>)
 
 
: [[API ShowInventorySellCursor|ShowInventorySellCursor]]()
 
: [[API ShowInventorySellCursor|ShowInventorySellCursor]]()
 
: [[API ShowRepairCursor|ShowRepairCursor]]()
 
: [[API ShowRepairCursor|ShowRepairCursor]]()
Line 1,711: Line 1,772:
 
==== Camera ====
 
==== Camera ====
 
: <small>PROTECTED</small> [[API CameraOrSelectOrMoveStart|CameraOrSelectOrMoveStart]]() - Begin "Left click" in the 3D world.
 
: <small>PROTECTED</small> [[API CameraOrSelectOrMoveStart|CameraOrSelectOrMoveStart]]() - Begin "Left click" in the 3D world.
: <small>PROTECTED</small> [[API CameraOrSelectOrMoveStop|CameraOrSelectOrMoveStop]](<span style="font-size:smaller; color:#ecbc2a">[stickyFlag]</span>) - End "Left click" in the 3D world.
+
: <small>PROTECTED</small> [[API CameraOrSelectOrMoveStop|CameraOrSelectOrMoveStop]](<span class="apiarg">[stickyFlag]</span>) - End "Left click" in the 3D world.
: [[API CameraZoomIn|CameraZoomIn]](<span style="font-size:smaller; color:#ecbc2a">increment</span>) - Zooms the camera into the viewplane by increment.
+
: [[API CameraZoomIn|CameraZoomIn]](<span class="apiarg">increment</span>) - Zooms the camera into the viewplane by increment.
: [[API CameraZoomOut|CameraZoomOut]](<span style="font-size:smaller; color:#ecbc2a">increment</span>) - Zooms the camera out of the viewplane by increment.
+
: [[API CameraZoomOut|CameraZoomOut]](<span class="apiarg">increment</span>) - Zooms the camera out of the viewplane by increment.
 
: [[API CenterCamera|CenterCamera]]()
 
: [[API CenterCamera|CenterCamera]]()
: [[API FlipCameraYaw|FlipCameraYaw]](<span style="font-size:smaller; color:#ecbc2a">degrees</span>) - Rotates the camera about the Z-axis by the angle amount specified in degrees.
+
: [[API FlipCameraYaw|FlipCameraYaw]](<span class="apiarg">degrees</span>) - Rotates the camera about the Z-axis by the angle amount specified in degrees.
 
: [[API GetCameraZoom|GetCameraZoom]]() - Returns the current zoom level, ignoring camera collisions.
 
: [[API GetCameraZoom|GetCameraZoom]]() - Returns the current zoom level, ignoring camera collisions.
 
: [[API IsMouselooking|IsMouselooking]]() - Returns 1 if mouselook is currently active, nil otherwise.
 
: [[API IsMouselooking|IsMouselooking]]() - Returns 1 if mouselook is currently active, nil otherwise.
Line 1,738: Line 1,799:
 
: [[API NextView|NextView]]() - Cycles forward through the five predefined camera positions.
 
: [[API NextView|NextView]]() - Cycles forward through the five predefined camera positions.
 
: [[API PrevView|PrevView]]() - Cycles backward through the five predefined camera positions.
 
: [[API PrevView|PrevView]]() - Cycles backward through the five predefined camera positions.
: [[API ResetView|ResetView]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Resets the specified (1-5) predefined camera position to it's default if it was changed using [[API SaveView|SaveView]](index).
+
: [[API ResetView|ResetView]](<span class="apiarg">index</span>) - Resets the specified (1-5) predefined camera position to it's default if it was changed using [[API SaveView|SaveView]](index).
: [[API SaveView|SaveView]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Replaces the specified (1-5) predefined camera positions with the current camera position.
+
: [[API SaveView|SaveView]](<span class="apiarg">index</span>) - Replaces the specified (1-5) predefined camera positions with the current camera position.
: [[API SetView|SetView]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Sets camera position to a specified (1-5) predefined camera position.
+
: [[API SetView|SetView]](<span class="apiarg">index</span>) - Sets camera position to a specified (1-5) predefined camera position.
   
 
==== Targeting ====
 
==== Targeting ====
 
Relates to [[Target]]s.
 
Relates to [[Target]]s.
: <small>PROTECTED</small> [[API AssistUnit|AssistUnit]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Instructs your character to assist the specified unit.
+
: <small>PROTECTED</small> [[API AssistUnit|AssistUnit]](<span class="apiarg">unit</span>) - Instructs your character to assist the specified unit.
 
: <small>PROTECTED</small> [[API ClearFocus|ClearFocus]]() - Removes any focus you may have set.
 
: <small>PROTECTED</small> [[API ClearFocus|ClearFocus]]() - Removes any focus you may have set.
 
: <small>PROTECTED</small> [[API ClearTarget|ClearTarget]]() - Clears the selected target.
 
: <small>PROTECTED</small> [[API ClearTarget|ClearTarget]]() - Clears the selected target.
: <small>PROTECTED</small> [[API FocusUnit|FocusUnit]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Sets your unit for focus.
+
: <small>PROTECTED</small> [[API FocusUnit|FocusUnit]](<span class="apiarg">unit</span>) - Sets your unit for focus.
 
: [[API IsReplacingUnit|IsReplacingUnit]]()
 
: [[API IsReplacingUnit|IsReplacingUnit]]()
: <small>PROTECTED</small> [[API TargetDirectionEnemy|TargetDirectionEnemy]](<span style="font-size:smaller; color:#ecbc2a">facing</span>)
+
: <small>PROTECTED</small> [[API TargetDirectionEnemy|TargetDirectionEnemy]](<span class="apiarg">facing</span>)
 
: <small>PROTECTED</small> [[API TargetDirectionFinished|TargetDirectionFinished]]()
 
: <small>PROTECTED</small> [[API TargetDirectionFinished|TargetDirectionFinished]]()
: <small>PROTECTED</small> [[API TargetDirectionFriend|TargetDirectionFriend]](<span style="font-size:smaller; color:#ecbc2a">facing</span>)
+
: <small>PROTECTED</small> [[API TargetDirectionFriend|TargetDirectionFriend]](<span class="apiarg">facing</span>)
 
: <small>PROTECTED</small> [[API TargetLastEnemy|TargetLastEnemy]]() - Selects the last targetted enemy as the current target.
 
: <small>PROTECTED</small> [[API TargetLastEnemy|TargetLastEnemy]]() - Selects the last targetted enemy as the current target.
 
: <small>PROTECTED</small> [[API TargetLastFriend|TargetLastFriend]]()
 
: <small>PROTECTED</small> [[API TargetLastFriend|TargetLastFriend]]()
 
: <small>PROTECTED</small> [[API TargetLastTarget|TargetLastTarget]]() - Selects the last target as the current target.
 
: <small>PROTECTED</small> [[API TargetLastTarget|TargetLastTarget]]() - Selects the last target as the current target.
: <small>PROTECTED</small> [[API TargetNearestEnemy|TargetNearestEnemy]](<span style="font-size:smaller; color:#ecbc2a">[reverseFlag]</span>) - Selects the nearest enemy as the current target.
+
: <small>PROTECTED</small> [[API TargetNearestEnemy|TargetNearestEnemy]](<span class="apiarg">[reverseFlag]</span>) - Selects the nearest enemy as the current target.
: <small>PROTECTED</small> [[API TargetNearestEnemyPlayer|TargetNearestEnemyPlayer]](<span style="font-size:smaller; color:#ecbc2a">[reverseFlag]</span>) - Selects the nearest enemy player as the current target.
+
: <small>PROTECTED</small> [[API TargetNearestEnemyPlayer|TargetNearestEnemyPlayer]](<span class="apiarg">[reverseFlag]</span>) - Selects the nearest enemy player as the current target.
: <small>PROTECTED</small> [[API TargetNearestFriend|TargetNearestFriend]](<span style="font-size:smaller; color:#ecbc2a">[reverseFlag]</span>) - Selects the nearest friendly unit as the current target.
+
: <small>PROTECTED</small> [[API TargetNearestFriend|TargetNearestFriend]](<span class="apiarg">[reverseFlag]</span>) - Selects the nearest friendly unit as the current target.
: <small>PROTECTED</small> [[API TargetNearestFriendPlayer|TargetNearestFriendPlayer]](<span style="font-size:smaller; color:#ecbc2a">[reverseFlag]</span>) - Selects the nearest friendly player as the current target.
+
: <small>PROTECTED</small> [[API TargetNearestFriendPlayer|TargetNearestFriendPlayer]](<span class="apiarg">[reverseFlag]</span>) - Selects the nearest friendly player as the current target.
 
: <small>PROTECTED</small> [[API TargetNearest|TargetNearest]]()
 
: <small>PROTECTED</small> [[API TargetNearest|TargetNearest]]()
 
: <small>PROTECTED</small> [[API TargetNearestPartyMember|TargetNearestPartyMember]]() - Selects the nearest Party member as the current target.
 
: <small>PROTECTED</small> [[API TargetNearestPartyMember|TargetNearestPartyMember]]() - Selects the nearest Party member as the current target.
Line 1,764: Line 1,825:
 
: <small>PROTECTED</small> [[API TargetPriorityHighlightEnd|TargetPriorityHighlightEnd]]()
 
: <small>PROTECTED</small> [[API TargetPriorityHighlightEnd|TargetPriorityHighlightEnd]]()
 
: <small>PROTECTED</small> [[API TargetPriorityHighlightStart|TargetPriorityHighlightStart]]()
 
: <small>PROTECTED</small> [[API TargetPriorityHighlightStart|TargetPriorityHighlightStart]]()
: <small>PROTECTED</small> [[API TargetUnit|TargetUnit]](<span style="font-size:smaller; color:#ecbc2a">unit [, exactMatch]</span>) - Selects the specified unit as the current target.
+
: <small>PROTECTED</small> [[API TargetUnit|TargetUnit]](<span class="apiarg">unit [, exactMatch]</span>) - Selects the specified unit as the current target.
   
 
==== Movement ====
 
==== Movement ====
Line 1,771: Line 1,832:
 
: <small>PROTECTED</small> [[API AttackTarget|AttackTarget]]() - Attacks the targetted unit.
 
: <small>PROTECTED</small> [[API AttackTarget|AttackTarget]]() - Attacks the targetted unit.
 
: <small>PROTECTED</small> [[API DescendStop|DescendStop]]() - The player stops descending (while swimming or flying)
 
: <small>PROTECTED</small> [[API DescendStop|DescendStop]]() - The player stops descending (while swimming or flying)
: <small>PROTECTED</small> [[API InteractUnit|InteractUnit]](<span style="font-size:smaller; color:#ecbc2a">unitToken [, exactMatch]</span>)
+
: <small>PROTECTED</small> [[API InteractUnit|InteractUnit]](<span class="apiarg">unitToken [, exactMatch]</span>)
: [[API FollowUnit|FollowUnit]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Follow an ally with the specified UnitID.
+
: [[API FollowUnit|FollowUnit]](<span class="apiarg">unit</span>) - Follow an ally with the specified UnitID.
 
: [[API IsPlayerMoving|IsPlayerMoving]]()
 
: [[API IsPlayerMoving|IsPlayerMoving]]()
 
: <small>PROTECTED</small> [[API JumpOrAscendStart|JumpOrAscendStart]]() - Makes the player jump.
 
: <small>PROTECTED</small> [[API JumpOrAscendStart|JumpOrAscendStart]]() - Makes the player jump.
Line 1,804: Line 1,865:
 
Native gamepad support was added in [[Patch 9.0.1]], where previously [https://github.com/topher-au/WoWmapper WoWmapper] was needed.
 
Native gamepad support was added in [[Patch 9.0.1]], where previously [https://github.com/topher-au/WoWmapper WoWmapper] was needed.
 
: [[API C_GamePad.ApplyConfigs|C_GamePad.ApplyConfigs]]()
 
: [[API C_GamePad.ApplyConfigs|C_GamePad.ApplyConfigs]]()
: [[API C_GamePad.AxisIndexToConfigName|C_GamePad.AxisIndexToConfigName]](<span style="font-size:smaller; color:#ecbc2a">axisIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">configName</span>
+
: [[API C_GamePad.AxisIndexToConfigName|C_GamePad.AxisIndexToConfigName]](<span class="apiarg">axisIndex</span>) : <span class="apiret">configName</span>
: [[API C_GamePad.ButtonBindingToIndex|C_GamePad.ButtonBindingToIndex]](<span style="font-size:smaller; color:#ecbc2a">bindingName</span>) : <span style="font-size:smaller; color:#4ec9b0">buttonIndex</span>
+
: [[API C_GamePad.ButtonBindingToIndex|C_GamePad.ButtonBindingToIndex]](<span class="apiarg">bindingName</span>) : <span class="apiret">buttonIndex</span>
: [[API C_GamePad.ButtonIndexToBinding|C_GamePad.ButtonIndexToBinding]](<span style="font-size:smaller; color:#ecbc2a">buttonIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">bindingName</span>
+
: [[API C_GamePad.ButtonIndexToBinding|C_GamePad.ButtonIndexToBinding]](<span class="apiarg">buttonIndex</span>) : <span class="apiret">bindingName</span>
: [[API C_GamePad.ButtonIndexToConfigName|C_GamePad.ButtonIndexToConfigName]](<span style="font-size:smaller; color:#ecbc2a">buttonIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">configName</span>
+
: [[API C_GamePad.ButtonIndexToConfigName|C_GamePad.ButtonIndexToConfigName]](<span class="apiarg">buttonIndex</span>) : <span class="apiret">configName</span>
: [[API C_GamePad.DeleteConfig|C_GamePad.DeleteConfig]](<span style="font-size:smaller; color:#ecbc2a">configID</span>)
+
: [[API C_GamePad.DeleteConfig|C_GamePad.DeleteConfig]](<span class="apiarg">configID</span>)
: [[API C_GamePad.GetActiveDeviceID|C_GamePad.GetActiveDeviceID]]() : <span style="font-size:smaller; color:#4ec9b0">deviceID</span>
+
: [[API C_GamePad.GetActiveDeviceID|C_GamePad.GetActiveDeviceID]]() : <span class="apiret">deviceID</span>
: [[API C_GamePad.GetAllConfigIDs|C_GamePad.GetAllConfigIDs]]() : <span style="font-size:smaller; color:#4ec9b0">configIDs</span>
+
: [[API C_GamePad.GetAllConfigIDs|C_GamePad.GetAllConfigIDs]]() : <span class="apiret">configIDs</span>
: [[API C_GamePad.GetAllDeviceIDs|C_GamePad.GetAllDeviceIDs]]() : <span style="font-size:smaller; color:#4ec9b0">deviceIDs</span>
+
: [[API C_GamePad.GetAllDeviceIDs|C_GamePad.GetAllDeviceIDs]]() : <span class="apiret">deviceIDs</span>
: [[API C_GamePad.GetCombinedDeviceID|C_GamePad.GetCombinedDeviceID]]() : <span style="font-size:smaller; color:#4ec9b0">deviceID</span>
+
: [[API C_GamePad.GetCombinedDeviceID|C_GamePad.GetCombinedDeviceID]]() : <span class="apiret">deviceID</span>
: [[API C_GamePad.GetConfig|C_GamePad.GetConfig]](<span style="font-size:smaller; color:#ecbc2a">configID</span>) : <span style="font-size:smaller; color:#4ec9b0">config</span>
+
: [[API C_GamePad.GetConfig|C_GamePad.GetConfig]](<span class="apiarg">configID</span>) : <span class="apiret">config</span>
: [[API C_GamePad.GetDeviceMappedState|C_GamePad.GetDeviceMappedState]](<span style="font-size:smaller; color:#ecbc2a">[deviceID]</span>) : <span style="font-size:smaller; color:#4ec9b0">state</span>
+
: [[API C_GamePad.GetDeviceMappedState|C_GamePad.GetDeviceMappedState]](<span class="apiarg">[deviceID]</span>) : <span class="apiret">state</span>
: [[API C_GamePad.GetDeviceRawState|C_GamePad.GetDeviceRawState]](<span style="font-size:smaller; color:#ecbc2a">deviceID</span>) : <span style="font-size:smaller; color:#4ec9b0">rawState</span>
+
: [[API C_GamePad.GetDeviceRawState|C_GamePad.GetDeviceRawState]](<span class="apiarg">deviceID</span>) : <span class="apiret">rawState</span>
: [[API C_GamePad.IsEnabled|C_GamePad.IsEnabled]]() : <span style="font-size:smaller; color:#4ec9b0">enabled</span>
+
: [[API C_GamePad.IsEnabled|C_GamePad.IsEnabled]]() : <span class="apiret">enabled</span>
: [[API C_GamePad.SetConfig|C_GamePad.SetConfig]](<span style="font-size:smaller; color:#ecbc2a">config</span>)
+
: [[API C_GamePad.SetConfig|C_GamePad.SetConfig]](<span class="apiarg">config</span>)
: [[API C_GamePad.StickIndexToConfigName|C_GamePad.StickIndexToConfigName]](<span style="font-size:smaller; color:#ecbc2a">stickIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">configName</span>
+
: [[API C_GamePad.SetVibration|C_GamePad.SetVibration]](<span class="apiarg">vibrationType, intensity</span>)
  +
: [[API C_GamePad.StickIndexToConfigName|C_GamePad.StickIndexToConfigName]](<span class="apiarg">stickIndex</span>) : <span class="apiret">configName</span>
  +
: [[API C_GamePad.StopVibration|C_GamePad.StopVibration]]()
 
: [[API CanAutoSetGamePadCursorControl|CanAutoSetGamePadCursorControl]]()
 
: [[API CanAutoSetGamePadCursorControl|CanAutoSetGamePadCursorControl]]()
 
: [[API CanGamePadControlCursor|CanGamePadControlCursor]]()
 
: [[API CanGamePadControlCursor|CanGamePadControlCursor]]()
: [[API IsBindingForGamePad|IsBindingForGamePad]](<span style="font-size:smaller; color:#ecbc2a">KEY</span>)
+
: [[API IsBindingForGamePad|IsBindingForGamePad]](<span class="apiarg">KEY</span>)
 
: [[API IsGamePadCursorControlEnabled|IsGamePadCursorControlEnabled]]()
 
: [[API IsGamePadCursorControlEnabled|IsGamePadCursorControlEnabled]]()
 
: [[API IsGamePadFreelookEnabled|IsGamePadFreelookEnabled]]()
 
: [[API IsGamePadFreelookEnabled|IsGamePadFreelookEnabled]]()
Line 1,829: Line 1,892:
 
=== Currency ===
 
=== Currency ===
 
[[Currencies]] were added in [[Patch 3.0.2]].
 
[[Currencies]] were added in [[Patch 3.0.2]].
: [[API C_CurrencyInfo.DoesWarModeBonusApply|C_CurrencyInfo.DoesWarModeBonusApply]](<span style="font-size:smaller; color:#ecbc2a">currencyID</span>) : <span style="font-size:smaller; color:#4ec9b0">warModeApplies, limitOncePerTooltip</span>
+
: [[API C_CurrencyInfo.DoesWarModeBonusApply|C_CurrencyInfo.DoesWarModeBonusApply]](<span class="apiarg">currencyID</span>) : <span class="apiret">warModeApplies, limitOncePerTooltip</span>
: [[API C_CurrencyInfo.ExpandCurrencyList|C_CurrencyInfo.ExpandCurrencyList]](<span style="font-size:smaller; color:#ecbc2a">index, expand</span>) - Sets the expanded/collapsed state of a currency list header.
+
: [[API C_CurrencyInfo.ExpandCurrencyList|C_CurrencyInfo.ExpandCurrencyList]](<span class="apiarg">index, expand</span>) - Sets the expanded/collapsed state of a currency list header.
: [[API C_CurrencyInfo.GetAzeriteCurrencyID|C_CurrencyInfo.GetAzeriteCurrencyID]]() : <span style="font-size:smaller; color:#4ec9b0">azeriteCurrencyID</span>
+
: [[API C_CurrencyInfo.GetAzeriteCurrencyID|C_CurrencyInfo.GetAzeriteCurrencyID]]() : <span class="apiret">azeriteCurrencyID</span>
: [[API C_CurrencyInfo.GetBackpackCurrencyInfo|C_CurrencyInfo.GetBackpackCurrencyInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span> - Returns information about a watched currency.
+
: [[API C_CurrencyInfo.GetBackpackCurrencyInfo|C_CurrencyInfo.GetBackpackCurrencyInfo]](<span class="apiarg">index</span>) : <span class="apiret">info</span> - Returns information about a watched currency.
: [[API C_CurrencyInfo.GetBasicCurrencyInfo|C_CurrencyInfo.GetBasicCurrencyInfo]](<span style="font-size:smaller; color:#ecbc2a">currencyType [, quantity]</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_CurrencyInfo.GetBasicCurrencyInfo|C_CurrencyInfo.GetBasicCurrencyInfo]](<span class="apiarg">currencyType [, quantity]</span>) : <span class="apiret">info</span>
: [[API C_CurrencyInfo.GetCurrencyContainerInfo|C_CurrencyInfo.GetCurrencyContainerInfo]](<span style="font-size:smaller; color:#ecbc2a">currencyType, quantity</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_CurrencyInfo.GetCurrencyContainerInfo|C_CurrencyInfo.GetCurrencyContainerInfo]](<span class="apiarg">currencyType, quantity</span>) : <span class="apiret">info</span>
: [[API C_CurrencyInfo.GetCurrencyIDFromLink|C_CurrencyInfo.GetCurrencyIDFromLink]](<span style="font-size:smaller; color:#ecbc2a">currencyLink</span>) : <span style="font-size:smaller; color:#4ec9b0">currencyID</span>
+
: [[API C_CurrencyInfo.GetCurrencyIDFromLink|C_CurrencyInfo.GetCurrencyIDFromLink]](<span class="apiarg">currencyLink</span>) : <span class="apiret">currencyID</span>
: [[API C_CurrencyInfo.GetCurrencyInfo|C_CurrencyInfo.GetCurrencyInfo]](<span style="font-size:smaller; color:#ecbc2a">type</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span> - Returns information about currencies.
+
: [[API C_CurrencyInfo.GetCurrencyInfo|C_CurrencyInfo.GetCurrencyInfo]](<span class="apiarg">type</span>) : <span class="apiret">info</span> - Returns information about currencies.
: [[API C_CurrencyInfo.GetCurrencyInfoFromLink|C_CurrencyInfo.GetCurrencyInfoFromLink]](<span style="font-size:smaller; color:#ecbc2a">link</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span> - Returns information about currencies from a link.
+
: [[API C_CurrencyInfo.GetCurrencyInfoFromLink|C_CurrencyInfo.GetCurrencyInfoFromLink]](<span class="apiarg">link</span>) : <span class="apiret">info</span> - Returns information about currencies from a link.
: [[API C_CurrencyInfo.GetCurrencyLink|C_CurrencyInfo.GetCurrencyLink]](<span style="font-size:smaller; color:#ecbc2a">type, amount</span>) : <span style="font-size:smaller; color:#4ec9b0">link</span> - Returns the currencyLink for the specified currencyID.
+
: [[API C_CurrencyInfo.GetCurrencyLink|C_CurrencyInfo.GetCurrencyLink]](<span class="apiarg">type [, amount]</span>) : <span class="apiret">link</span> - Returns the currencyLink for the specified currencyID.
: [[API C_CurrencyInfo.GetCurrencyListInfo|C_CurrencyInfo.GetCurrencyListInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span> - Returns information about an element in the currency list.
+
: [[API C_CurrencyInfo.GetCurrencyListInfo|C_CurrencyInfo.GetCurrencyListInfo]](<span class="apiarg">index</span>) : <span class="apiret">info</span> - Returns information about an element in the currency list.
: [[API C_CurrencyInfo.GetCurrencyListLink|C_CurrencyInfo.GetCurrencyListLink]](<span style="font-size:smaller; color:#ecbc2a">index</span>) : <span style="font-size:smaller; color:#4ec9b0">link</span>
+
: [[API C_CurrencyInfo.GetCurrencyListLink|C_CurrencyInfo.GetCurrencyListLink]](<span class="apiarg">index</span>) : <span class="apiret">link</span>
: [[API C_CurrencyInfo.GetCurrencyListSize|C_CurrencyInfo.GetCurrencyListSize]]() : <span style="font-size:smaller; color:#4ec9b0">currencyListSize</span> - Returns the number of elements (both headers and currencies) in the currency list.
+
: [[API C_CurrencyInfo.GetCurrencyListSize|C_CurrencyInfo.GetCurrencyListSize]]() : <span class="apiret">currencyListSize</span> - Returns the number of elements (both headers and currencies) in the currency list.
: [[API C_CurrencyInfo.GetFactionGrantedByCurrency|C_CurrencyInfo.GetFactionGrantedByCurrency]](<span style="font-size:smaller; color:#ecbc2a">currencyID</span>) : <span style="font-size:smaller; color:#4ec9b0">factionID</span> - Gets the faction ID for currency that is immediately converted into reputation with that faction instead.
+
: [[API C_CurrencyInfo.GetFactionGrantedByCurrency|C_CurrencyInfo.GetFactionGrantedByCurrency]](<span class="apiarg">currencyID</span>) : <span class="apiret">factionID</span> - Gets the faction ID for currency that is immediately converted into reputation with that faction instead.
: [[API C_CurrencyInfo.GetWarResourcesCurrencyID|C_CurrencyInfo.GetWarResourcesCurrencyID]]() : <span style="font-size:smaller; color:#4ec9b0">warResourceCurrencyID</span>
+
: [[API C_CurrencyInfo.GetWarResourcesCurrencyID|C_CurrencyInfo.GetWarResourcesCurrencyID]]() : <span class="apiret">warResourceCurrencyID</span>
: [[API C_CurrencyInfo.IsCurrencyContainer|C_CurrencyInfo.IsCurrencyContainer]](<span style="font-size:smaller; color:#ecbc2a">currencyID, quantity</span>) : <span style="font-size:smaller; color:#4ec9b0">isCurrencyContainer</span>
+
: [[API C_CurrencyInfo.IsCurrencyContainer|C_CurrencyInfo.IsCurrencyContainer]](<span class="apiarg">currencyID, quantity</span>) : <span class="apiret">isCurrencyContainer</span>
: [[API C_CurrencyInfo.SetCurrencyBackpack|C_CurrencyInfo.SetCurrencyBackpack]](<span style="font-size:smaller; color:#ecbc2a">index, backpack</span>) - Alters whether a currency is tracked.
+
: [[API C_CurrencyInfo.SetCurrencyBackpack|C_CurrencyInfo.SetCurrencyBackpack]](<span class="apiarg">index, backpack</span>) - Alters whether a currency is tracked.
: [[API C_CurrencyInfo.SetCurrencyUnused|C_CurrencyInfo.SetCurrencyUnused]](<span style="font-size:smaller; color:#ecbc2a">index, unused</span>) - Alters whether a currency is marked as unused.
+
: [[API C_CurrencyInfo.SetCurrencyUnused|C_CurrencyInfo.SetCurrencyUnused]](<span class="apiarg">index, unused</span>) - Alters whether a currency is marked as unused.
: [[API GetCoinText|GetCoinText]](<span style="font-size:smaller; color:#ecbc2a">amount, separator</span>) - Breaks down money and inserts separator strings.
+
: [[API GetCoinText|GetCoinText]](<span class="apiarg">amount, separator</span>) - Breaks down money and inserts separator strings.
: [[API GetCoinTextureString|GetCoinTextureString]](<span style="font-size:smaller; color:#ecbc2a">amount [, fontHeight]</span>) - Breaks down money and inserts texture strings.
+
: [[API GetCoinTextureString|GetCoinTextureString]](<span class="apiarg">amount [, fontHeight]</span>) - Breaks down money and inserts texture strings.
 
: [[API GetPlayerTradeCurrency|GetPlayerTradeCurrency]]()
 
: [[API GetPlayerTradeCurrency|GetPlayerTradeCurrency]]()
 
: [[API GetTargetTradeCurrency|GetTargetTradeCurrency]]()
 
: [[API GetTargetTradeCurrency|GetTargetTradeCurrency]]()
: [[API SetTradeCurrency|SetTradeCurrency]](<span style="font-size:smaller; color:#ecbc2a">type, amount</span>)
+
: [[API SetTradeCurrency|SetTradeCurrency]](<span class="apiarg">type, amount</span>)
 
: <small>UI</small> [[API GetNumWatchedTokens|GetNumWatchedTokens]]() - Returns the number of currently watched currencies.
 
: <small>UI</small> [[API GetNumWatchedTokens|GetNumWatchedTokens]]() - Returns the number of currently watched currencies.
   
 
=== Customer Support ===
 
=== Customer Support ===
 
Relates to [[Customer Support]].
 
Relates to [[Customer Support]].
: [[API AcknowledgeSurvey|AcknowledgeSurvey]](<span style="font-size:smaller; color:#ecbc2a">caseIndex</span>)
+
: [[API AcknowledgeSurvey|AcknowledgeSurvey]](<span class="apiarg">caseIndex</span>)
 
: <small>PROTECTED</small> [[API DeleteGMTicket|DeleteGMTicket]]()
 
: <small>PROTECTED</small> [[API DeleteGMTicket|DeleteGMTicket]]()
 
: [[API GetWebTicket|GetWebTicket]]()
 
: [[API GetWebTicket|GetWebTicket]]()
Line 1,869: Line 1,932:
 
: [[API GMRequestPlayerInfo|GMRequestPlayerInfo]]()
 
: [[API GMRequestPlayerInfo|GMRequestPlayerInfo]]()
 
: [[API GMResponseResolve|GMResponseResolve]]()
 
: [[API GMResponseResolve|GMResponseResolve]]()
: [[API C_UserFeedback.SubmitBug|C_UserFeedback.SubmitBug]](<span style="font-size:smaller; color:#ecbc2a">bugInfo [, suppressNotification]</span>) : <span style="font-size:smaller; color:#4ec9b0">success</span>
+
: [[API C_UserFeedback.SubmitBug|C_UserFeedback.SubmitBug]](<span class="apiarg">bugInfo [, suppressNotification]</span>) : <span class="apiret">success</span>
: [[API C_UserFeedback.SubmitSuggestion|C_UserFeedback.SubmitSuggestion]](<span style="font-size:smaller; color:#ecbc2a">suggestion</span>) : <span style="font-size:smaller; color:#4ec9b0">success</span>
+
: [[API C_UserFeedback.SubmitSuggestion|C_UserFeedback.SubmitSuggestion]](<span class="apiarg">suggestion</span>) : <span class="apiret">success</span>
: [[API GMSurveyAnswerSubmit|GMSurveyAnswerSubmit]](<span style="font-size:smaller; color:#ecbc2a">question, rank, comment</span>)
+
: [[API GMSurveyAnswerSubmit|GMSurveyAnswerSubmit]](<span class="apiarg">question, rank, comment</span>)
 
: [[API GMSurveyAnswer|GMSurveyAnswer]]()
 
: [[API GMSurveyAnswer|GMSurveyAnswer]]()
: [[API GMSurveyCommentSubmit|GMSurveyCommentSubmit]](<span style="font-size:smaller; color:#ecbc2a">comment</span>)
+
: [[API GMSurveyCommentSubmit|GMSurveyCommentSubmit]](<span class="apiarg">comment</span>)
 
: [[API GMSurveyNumAnswers|GMSurveyNumAnswers]]()
 
: [[API GMSurveyNumAnswers|GMSurveyNumAnswers]]()
 
: [[API GMSurveyQuestion|GMSurveyQuestion]]()
 
: [[API GMSurveyQuestion|GMSurveyQuestion]]()
Line 1,879: Line 1,942:
 
: [[API GetGMStatus|GetGMStatus]]()
 
: [[API GetGMStatus|GetGMStatus]]()
 
: [[API GetGMTicket|GetGMTicket]]()
 
: [[API GetGMTicket|GetGMTicket]]()
: [[API RegisterStaticConstants|RegisterStaticConstants]](<span style="font-size:smaller; color:#ecbc2a">table</span>) - Populates the STATIC_CONSTANTS table for [[API GetGMTicketCategories|GetGMTicketCategories]].
+
: [[API RegisterStaticConstants|RegisterStaticConstants]](<span class="apiarg">table</span>) - Populates the STATIC_CONSTANTS table for [[API GetGMTicketCategories|GetGMTicketCategories]].
: [[API ReportBug|ReportBug]](<span style="font-size:smaller; color:#ecbc2a">description</span>)
+
: [[API ReportBug|ReportBug]](<span class="apiarg">description</span>)
: [[API ReportSuggestion|ReportSuggestion]](<span style="font-size:smaller; color:#ecbc2a">description</span>)
+
: [[API ReportSuggestion|ReportSuggestion]](<span class="apiarg">description</span>)
 
Knowledge Base
 
Knowledge Base
: [[API KBArticle_BeginLoading|KBArticle_BeginLoading]](<span style="font-size:smaller; color:#ecbc2a">articleId, searchType</span>) - Starts the article loading process.
+
: [[API KBArticle_BeginLoading|KBArticle_BeginLoading]](<span class="apiarg">articleId, searchType</span>) - Starts the article loading process.
 
: [[API KBArticle_GetData|KBArticle_GetData]]() - Returns information about the current article.
 
: [[API KBArticle_GetData|KBArticle_GetData]]() - Returns information about the current article.
 
: [[API KBArticle_IsLoaded|KBArticle_IsLoaded]]() - Returns true if an article is loaded.
 
: [[API KBArticle_IsLoaded|KBArticle_IsLoaded]]() - Returns true if an article is loaded.
: [[API KBQuery_BeginLoading|KBQuery_BeginLoading]](<span style="font-size:smaller; color:#ecbc2a">searchText, categoryIndex, subcategoryIndex, articlesPerPage, curPage</span>) - Starts a query for articles.
+
: [[API KBQuery_BeginLoading|KBQuery_BeginLoading]](<span class="apiarg">searchText, categoryIndex, subcategoryIndex, articlesPerPage, curPage</span>) - Starts a query for articles.
 
: [[API KBQuery_GetArticleHeaderCount|KBQuery_GetArticleHeaderCount]]() - Returns the number of article headers in the current query.
 
: [[API KBQuery_GetArticleHeaderCount|KBQuery_GetArticleHeaderCount]]() - Returns the number of article headers in the current query.
: [[API KBQuery_GetArticleHeaderData|KBQuery_GetArticleHeaderData]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns information about an article header of the current query.
+
: [[API KBQuery_GetArticleHeaderData|KBQuery_GetArticleHeaderData]](<span class="apiarg">index</span>) - Returns information about an article header of the current query.
 
: [[API KBQuery_GetTotalArticleCount|KBQuery_GetTotalArticleCount]]() - Returns the total number of articles that matches the current query.
 
: [[API KBQuery_GetTotalArticleCount|KBQuery_GetTotalArticleCount]]() - Returns the total number of articles that matches the current query.
 
: [[API KBQuery_IsLoaded|KBQuery_IsLoaded]]() - Returns true if a query loaded successfuly.
 
: [[API KBQuery_IsLoaded|KBQuery_IsLoaded]]() - Returns true if a query loaded successfuly.
: [[API KBSetup_BeginLoading|KBSetup_BeginLoading]](<span style="font-size:smaller; color:#ecbc2a">articlesPerPage, curPage</span>) - Starts the loading process for the KB start page.
+
: [[API KBSetup_BeginLoading|KBSetup_BeginLoading]](<span class="apiarg">articlesPerPage, curPage</span>) - Starts the loading process for the KB start page.
 
: [[API KBSetup_GetArticleHeaderCount|KBSetup_GetArticleHeaderCount]]() - Returns the number of articles for the current page.
 
: [[API KBSetup_GetArticleHeaderCount|KBSetup_GetArticleHeaderCount]]() - Returns the number of articles for the current page.
: [[API KBSetup_GetArticleHeaderData|KBSetup_GetArticleHeaderData]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns information for an article header.
+
: [[API KBSetup_GetArticleHeaderData|KBSetup_GetArticleHeaderData]](<span class="apiarg">index</span>) - Returns information for an article header.
 
: [[API KBSetup_GetCategoryCount|KBSetup_GetCategoryCount]]() - Returns the number of categories in the knowledge base.
 
: [[API KBSetup_GetCategoryCount|KBSetup_GetCategoryCount]]() - Returns the number of categories in the knowledge base.
: [[API KBSetup_GetCategoryData|KBSetup_GetCategoryData]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns information about a category.
+
: [[API KBSetup_GetCategoryData|KBSetup_GetCategoryData]](<span class="apiarg">index</span>) - Returns information about a category.
 
: [[API KBSetup_GetLanguageCount|KBSetup_GetLanguageCount]]() - Returns the number of languages in the knowledge base.
 
: [[API KBSetup_GetLanguageCount|KBSetup_GetLanguageCount]]() - Returns the number of languages in the knowledge base.
: [[API KBSetup_GetLanguageData|KBSetup_GetLanguageData]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns information about a language.
+
: [[API KBSetup_GetLanguageData|KBSetup_GetLanguageData]](<span class="apiarg">index</span>) - Returns information about a language.
: [[API KBSetup_GetSubCategoryCount|KBSetup_GetSubCategoryCount]](<span style="font-size:smaller; color:#ecbc2a">category</span>) - Returns the number of subcategories for a category.
+
: [[API KBSetup_GetSubCategoryCount|KBSetup_GetSubCategoryCount]](<span class="apiarg">category</span>) - Returns the number of subcategories for a category.
: [[API KBSetup_GetSubCategoryData|KBSetup_GetSubCategoryData]](<span style="font-size:smaller; color:#ecbc2a">category, index</span>) - Returns information about a subcategory.
+
: [[API KBSetup_GetSubCategoryData|KBSetup_GetSubCategoryData]](<span class="apiarg">category, index</span>) - Returns information about a subcategory.
 
: [[API KBSetup_GetTotalArticleCount|KBSetup_GetTotalArticleCount]]() - Returns the total number of articles in the knowlege base.
 
: [[API KBSetup_GetTotalArticleCount|KBSetup_GetTotalArticleCount]]() - Returns the total number of articles in the knowlege base.
 
: [[API KBSetup_IsLoaded|KBSetup_IsLoaded]]() - Returns true if the knowledge base is loaded successfuly.
 
: [[API KBSetup_IsLoaded|KBSetup_IsLoaded]]() - Returns true if the knowledge base is loaded successfuly.
Line 1,908: Line 1,971:
 
=== Expansions ===
 
=== Expansions ===
 
Relates to [[Expansion]]s.
 
Relates to [[Expansion]]s.
: [[API CanUpgradeExpansion|CanUpgradeExpansion]]() : <span style="font-size:smaller; color:#4ec9b0">canUpgradeExpansion</span>
+
: [[API CanUpgradeExpansion|CanUpgradeExpansion]]() : <span class="apiret">canUpgradeExpansion</span>
: [[API DoesCurrentLocaleSellExpansionLevels|DoesCurrentLocaleSellExpansionLevels]]() : <span style="font-size:smaller; color:#4ec9b0">regionSellsExpansions</span>
+
: [[API DoesCurrentLocaleSellExpansionLevels|DoesCurrentLocaleSellExpansionLevels]]() : <span class="apiret">regionSellsExpansions</span>
: [[API GetAccountExpansionLevel|GetAccountExpansionLevel]]() : <span style="font-size:smaller; color:#4ec9b0">expansionLevel</span> - Returns the expansion level the account has been flagged for.
+
: [[API GetAccountExpansionLevel|GetAccountExpansionLevel]]() : <span class="apiret">expansionLevel</span> - Returns the expansion level the account has been flagged for.
: [[API GetClientDisplayExpansionLevel|GetClientDisplayExpansionLevel]]() : <span style="font-size:smaller; color:#4ec9b0">expansionLevel</span> - Returns the expansion level of the game client.
+
: [[API GetClientDisplayExpansionLevel|GetClientDisplayExpansionLevel]]() : <span class="apiret">expansionLevel</span> - Returns the expansion level of the game client.
: [[API GetExpansionDisplayInfo|GetExpansionDisplayInfo]](<span style="font-size:smaller; color:#ecbc2a">expansionLevel</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API GetExpansionDisplayInfo|GetExpansionDisplayInfo]](<span class="apiarg">expansionLevel</span>) : <span class="apiret">info</span>
: [[API GetExpansionForLevel|GetExpansionForLevel]](<span style="font-size:smaller; color:#ecbc2a">playerLevel</span>) : <span style="font-size:smaller; color:#4ec9b0">expansionLevel</span>
+
: [[API GetExpansionForLevel|GetExpansionForLevel]](<span class="apiarg">playerLevel</span>) : <span class="apiret">expansionLevel</span>
: [[API GetExpansionLevel|GetExpansionLevel]]() : <span style="font-size:smaller; color:#4ec9b0">expansionLevel</span> - Returns the expansion level currently accessible by the player.
+
: [[API GetExpansionLevel|GetExpansionLevel]]() : <span class="apiret">expansionLevel</span> - Returns the expansion level currently accessible by the player.
: [[API GetExpansionTrialInfo|GetExpansionTrialInfo]]() : <span style="font-size:smaller; color:#4ec9b0">isExpansionTrialAccount, expansionTrialRemainingSeconds</span>
+
: [[API GetExpansionTrialInfo|GetExpansionTrialInfo]]() : <span class="apiret">isExpansionTrialAccount, expansionTrialRemainingSeconds</span>
: [[API GetMaximumExpansionLevel|GetMaximumExpansionLevel]]() : <span style="font-size:smaller; color:#4ec9b0">expansionLevel</span>
+
: [[API GetMaximumExpansionLevel|GetMaximumExpansionLevel]]() : <span class="apiret">expansionLevel</span>
: [[API GetMaxLevelForExpansionLevel|GetMaxLevelForExpansionLevel]](<span style="font-size:smaller; color:#ecbc2a">expansionLevel</span>) : <span style="font-size:smaller; color:#4ec9b0">maxLevel</span>
+
: [[API GetMaxLevelForExpansionLevel|GetMaxLevelForExpansionLevel]](<span class="apiarg">expansionLevel</span>) : <span class="apiret">maxLevel</span>
: [[API GetMaxLevelForLatestExpansion|GetMaxLevelForLatestExpansion]]() : <span style="font-size:smaller; color:#4ec9b0">maxLevel</span>
+
: [[API GetMaxLevelForLatestExpansion|GetMaxLevelForLatestExpansion]]() : <span class="apiret">maxLevel</span>
: [[API GetMaxLevelForPlayerExpansion|GetMaxLevelForPlayerExpansion]]() : <span style="font-size:smaller; color:#4ec9b0">maxLevel</span>
+
: [[API GetMaxLevelForPlayerExpansion|GetMaxLevelForPlayerExpansion]]() : <span class="apiret">maxLevel</span>
 
: [[API GetMaxPlayerLevel|GetMaxPlayerLevel]]()
 
: [[API GetMaxPlayerLevel|GetMaxPlayerLevel]]()
: [[API GetMinimumExpansionLevel|GetMinimumExpansionLevel]]() : <span style="font-size:smaller; color:#4ec9b0">expansionLevel</span>
+
: [[API GetMinimumExpansionLevel|GetMinimumExpansionLevel]]() : <span class="apiret">expansionLevel</span>
: [[API GetNumExpansions|GetNumExpansions]]() : <span style="font-size:smaller; color:#4ec9b0">numExpansions</span>
+
: [[API GetNumExpansions|GetNumExpansions]]() : <span class="apiret">numExpansions</span>
: [[API GetServerExpansionLevel|GetServerExpansionLevel]]() : <span style="font-size:smaller; color:#4ec9b0">serverExpansionLevel</span> - Returns the expansion level currently active on the server.
+
: [[API GetServerExpansionLevel|GetServerExpansionLevel]]() : <span class="apiret">serverExpansionLevel</span> - Returns the expansion level currently active on the server.
: [[API IsExpansionTrial|IsExpansionTrial]]() : <span style="font-size:smaller; color:#4ec9b0">isExpansionTrialAccount</span>
+
: [[API IsExpansionTrial|IsExpansionTrial]]() : <span class="apiret">isExpansionTrialAccount</span>
: [[API C_LevelSquish.ConvertFollowerLevel|C_LevelSquish.ConvertFollowerLevel]](<span style="font-size:smaller; color:#ecbc2a">level, maxFollowerLevel</span>) : <span style="font-size:smaller; color:#4ec9b0">squishedLevel</span>
+
: [[API C_LevelSquish.ConvertFollowerLevel|C_LevelSquish.ConvertFollowerLevel]](<span class="apiarg">level, maxFollowerLevel</span>) : <span class="apiret">squishedLevel</span>
: [[API C_LevelSquish.ConvertPlayerLevel|C_LevelSquish.ConvertPlayerLevel]](<span style="font-size:smaller; color:#ecbc2a">level</span>) : <span style="font-size:smaller; color:#4ec9b0">squishedLevel</span>
+
: [[API C_LevelSquish.ConvertPlayerLevel|C_LevelSquish.ConvertPlayerLevel]](<span class="apiarg">level</span>) : <span class="apiret">squishedLevel</span>
   
 
==== Chromie Time ====
 
==== Chromie Time ====
 
[[Timewalking Campaigns]] scale older expansion zones up to level 50.
 
[[Timewalking Campaigns]] scale older expansion zones up to level 50.
 
: [[API C_ChromieTime.CloseUI|C_ChromieTime.CloseUI]]()
 
: [[API C_ChromieTime.CloseUI|C_ChromieTime.CloseUI]]()
: [[API C_ChromieTime.GetChromieTimeExpansionOption|C_ChromieTime.GetChromieTimeExpansionOption]](<span style="font-size:smaller; color:#ecbc2a">expansionRecID</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_ChromieTime.GetChromieTimeExpansionOption|C_ChromieTime.GetChromieTimeExpansionOption]](<span class="apiarg">expansionRecID</span>) : <span class="apiret">info</span>
: [[API C_ChromieTime.GetChromieTimeExpansionOptions|C_ChromieTime.GetChromieTimeExpansionOptions]]() : <span style="font-size:smaller; color:#4ec9b0">expansionOptions</span>
+
: [[API C_ChromieTime.GetChromieTimeExpansionOptions|C_ChromieTime.GetChromieTimeExpansionOptions]]() : <span class="apiret">expansionOptions</span>
: [[API C_ChromieTime.SelectChromieTimeOption|C_ChromieTime.SelectChromieTimeOption]](<span style="font-size:smaller; color:#ecbc2a">chromieTimeExpansionInfoId</span>)
+
: [[API C_ChromieTime.SelectChromieTimeOption|C_ChromieTime.SelectChromieTimeOption]](<span class="apiarg">chromieTimeExpansionInfoId</span>)
: [[API C_PlayerInfo.CanPlayerEnterChromieTime|C_PlayerInfo.CanPlayerEnterChromieTime]]() : <span style="font-size:smaller; color:#4ec9b0">canEnter</span>
+
: [[API C_PlayerInfo.CanPlayerEnterChromieTime|C_PlayerInfo.CanPlayerEnterChromieTime]]() : <span class="apiret">canEnter</span>
: [[API C_PlayerInfo.IsPlayerInChromieTime|C_PlayerInfo.IsPlayerInChromieTime]]() : <span style="font-size:smaller; color:#4ec9b0">inChromieTime</span>
+
: [[API C_PlayerInfo.IsPlayerInChromieTime|C_PlayerInfo.IsPlayerInChromieTime]]() : <span class="apiret">inChromieTime</span>
: [[API UnitChromieTimeID|UnitChromieTimeID]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) : <span style="font-size:smaller; color:#4ec9b0">ID</span>
+
: [[API UnitChromieTimeID|UnitChromieTimeID]](<span class="apiarg">unit</span>) : <span class="apiret">ID</span>
   
 
=== Friends ===
 
=== Friends ===
 
Relates to the [[Friends list]].
 
Relates to the [[Friends list]].
: [[API C_FriendList.AddFriend|C_FriendList.AddFriend]](<span style="font-size:smaller; color:#ecbc2a">name [, notes]</span>) - Adds a friend to your friend list.
+
: <small>NOSCRIPT</small> [[API C_FriendList.AddFriend|C_FriendList.AddFriend]](<span class="apiarg">name [, notes]</span>) - Adds a friend to your friend list.
: [[API C_FriendList.AddIgnore|C_FriendList.AddIgnore]](<span style="font-size:smaller; color:#ecbc2a">name</span>) : <span style="font-size:smaller; color:#4ec9b0">added</span> - Adds a player to your ignore list.
+
: [[API C_FriendList.AddIgnore|C_FriendList.AddIgnore]](<span class="apiarg">name</span>) : <span class="apiret">added</span> - Adds a player to your ignore list.
: [[API C_FriendList.AddOrDelIgnore|C_FriendList.AddOrDelIgnore]](<span style="font-size:smaller; color:#ecbc2a">name</span>) - Adds or removes a player to/from the ignore list.
+
: [[API C_FriendList.AddOrDelIgnore|C_FriendList.AddOrDelIgnore]](<span class="apiarg">name</span>) - Adds or removes a player to/from the ignore list.
: [[API C_FriendList.AddOrRemoveFriend|C_FriendList.AddOrRemoveFriend]](<span style="font-size:smaller; color:#ecbc2a">name, notes</span>) - Adds or removes a player to or from the friends list.
+
: [[API C_FriendList.AddOrRemoveFriend|C_FriendList.AddOrRemoveFriend]](<span class="apiarg">name, notes</span>) - Adds or removes a player to or from the friends list.
: [[API C_FriendList.DelIgnore|C_FriendList.DelIgnore]](<span style="font-size:smaller; color:#ecbc2a">name</span>) : <span style="font-size:smaller; color:#4ec9b0">removed</span> - Removes a player from your ignore list.
+
: [[API C_FriendList.DelIgnore|C_FriendList.DelIgnore]](<span class="apiarg">name</span>) : <span class="apiret">removed</span> - Removes a player from your ignore list.
: [[API C_FriendList.DelIgnoreByIndex|C_FriendList.DelIgnoreByIndex]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Removes a player from your ignore list.
+
: [[API C_FriendList.DelIgnoreByIndex|C_FriendList.DelIgnoreByIndex]](<span class="apiarg">index</span>) - Removes a player from your ignore list.
: [[API C_FriendList.GetFriendInfo|C_FriendList.GetFriendInfo]](<span style="font-size:smaller; color:#ecbc2a">name</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span> - Retrieves information about a person on your friends list.
+
: [[API C_FriendList.GetFriendInfo|C_FriendList.GetFriendInfo]](<span class="apiarg">name</span>) : <span class="apiret">info</span> - Retrieves information about a person on your friends list.
: [[API C_FriendList.GetFriendInfoByIndex|C_FriendList.GetFriendInfoByIndex]](<span style="font-size:smaller; color:#ecbc2a">index</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span> - Retrieves information about a person on your friends list.
+
: [[API C_FriendList.GetFriendInfoByIndex|C_FriendList.GetFriendInfoByIndex]](<span class="apiarg">index</span>) : <span class="apiret">info</span> - Retrieves information about a person on your friends list.
: [[API C_FriendList.GetIgnoreName|C_FriendList.GetIgnoreName]](<span style="font-size:smaller; color:#ecbc2a">index</span>) : <span style="font-size:smaller; color:#4ec9b0">name</span> - Returns the name of a currently ignored player.
+
: [[API C_FriendList.GetIgnoreName|C_FriendList.GetIgnoreName]](<span class="apiarg">index</span>) : <span class="apiret">name</span> - Returns the name of a currently ignored player.
: [[API C_FriendList.GetNumFriends|C_FriendList.GetNumFriends]]() : <span style="font-size:smaller; color:#4ec9b0">numFriends</span> - Returns how many friends you have.
+
: [[API C_FriendList.GetNumFriends|C_FriendList.GetNumFriends]]() : <span class="apiret">numFriends</span> - Returns how many friends you have.
: [[API C_FriendList.GetNumIgnores|C_FriendList.GetNumIgnores]]() : <span style="font-size:smaller; color:#4ec9b0">numIgnores</span> - Returns the number of entries on your ignore list.
+
: [[API C_FriendList.GetNumIgnores|C_FriendList.GetNumIgnores]]() : <span class="apiret">numIgnores</span> - Returns the number of entries on your ignore list.
: [[API C_FriendList.GetNumOnlineFriends|C_FriendList.GetNumOnlineFriends]]() : <span style="font-size:smaller; color:#4ec9b0">numOnline</span> - Returns the number of online friends.
+
: [[API C_FriendList.GetNumOnlineFriends|C_FriendList.GetNumOnlineFriends]]() : <span class="apiret">numOnline</span> - Returns the number of online friends.
: [[API C_FriendList.GetSelectedFriend|C_FriendList.GetSelectedFriend]]() : <span style="font-size:smaller; color:#4ec9b0">index</span> - Returns the index of the currently selected friend.
+
: [[API C_FriendList.GetSelectedFriend|C_FriendList.GetSelectedFriend]]() : <span class="apiret">index</span> - Returns the index of the currently selected friend.
: [[API C_FriendList.GetSelectedIgnore|C_FriendList.GetSelectedIgnore]]() : <span style="font-size:smaller; color:#4ec9b0">index</span> - Returns the currently selected index in the ignore listing.
+
: [[API C_FriendList.GetSelectedIgnore|C_FriendList.GetSelectedIgnore]]() : <span class="apiret">index</span> - Returns the currently selected index in the ignore listing.
: [[API C_FriendList.IsFriend|C_FriendList.IsFriend]](<span style="font-size:smaller; color:#ecbc2a">guid</span>) : <span style="font-size:smaller; color:#4ec9b0">isFriend</span> - Returns whether a character is your friend.
+
: [[API C_FriendList.IsFriend|C_FriendList.IsFriend]](<span class="apiarg">guid</span>) : <span class="apiret">isFriend</span> - Returns whether a character is your friend.
: [[API C_FriendList.IsIgnored|C_FriendList.IsIgnored]](<span style="font-size:smaller; color:#ecbc2a">token</span>) : <span style="font-size:smaller; color:#4ec9b0">isIgnored</span> - Returns whether a character is being ignored by you.
+
: [[API C_FriendList.IsIgnored|C_FriendList.IsIgnored]](<span class="apiarg">token</span>) : <span class="apiret">isIgnored</span> - Returns whether a character is being ignored by you.
: [[API C_FriendList.IsIgnoredByGuid|C_FriendList.IsIgnoredByGuid]](<span style="font-size:smaller; color:#ecbc2a">guid</span>) : <span style="font-size:smaller; color:#4ec9b0">isIgnored</span> - Returns whether a character is being ignored by you.
+
: [[API C_FriendList.IsIgnoredByGuid|C_FriendList.IsIgnoredByGuid]](<span class="apiarg">guid</span>) : <span class="apiret">isIgnored</span> - Returns whether a character is being ignored by you.
: [[API C_FriendList.RemoveFriend|C_FriendList.RemoveFriend]](<span style="font-size:smaller; color:#ecbc2a">name</span>) : <span style="font-size:smaller; color:#4ec9b0">removed</span> - Removes a friend from the friends list.
+
: [[API C_FriendList.RemoveFriend|C_FriendList.RemoveFriend]](<span class="apiarg">name</span>) : <span class="apiret">removed</span> - Removes a friend from the friends list.
: [[API C_FriendList.RemoveFriendByIndex|C_FriendList.RemoveFriendByIndex]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Removes a friend from the friends list.
+
: [[API C_FriendList.RemoveFriendByIndex|C_FriendList.RemoveFriendByIndex]](<span class="apiarg">index</span>) - Removes a friend from the friends list.
: [[API C_FriendList.SetFriendNotes|C_FriendList.SetFriendNotes]](<span style="font-size:smaller; color:#ecbc2a">name, notes</span>) : <span style="font-size:smaller; color:#4ec9b0">found</span> - Sets the note text for a friend.
+
: [[API C_FriendList.SetFriendNotes|C_FriendList.SetFriendNotes]](<span class="apiarg">name, notes</span>) : <span class="apiret">found</span> - Sets the note text for a friend.
: [[API C_FriendList.SetFriendNotesByIndex|C_FriendList.SetFriendNotesByIndex]](<span style="font-size:smaller; color:#ecbc2a">index, notes</span>) - Sets the note text for a friend.
+
: [[API C_FriendList.SetFriendNotesByIndex|C_FriendList.SetFriendNotesByIndex]](<span class="apiarg">index, notes</span>) - Sets the note text for a friend.
: [[API C_FriendList.SetSelectedFriend|C_FriendList.SetSelectedFriend]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Updates the current selected friend.
+
: [[API C_FriendList.SetSelectedFriend|C_FriendList.SetSelectedFriend]](<span class="apiarg">index</span>) - Updates the current selected friend.
: [[API C_FriendList.SetSelectedIgnore|C_FriendList.SetSelectedIgnore]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Sets the currently selected ignore entry.
+
: [[API C_FriendList.SetSelectedIgnore|C_FriendList.SetSelectedIgnore]](<span class="apiarg">index</span>) - Sets the currently selected ignore entry.
 
: [[API C_FriendList.ShowFriends|C_FriendList.ShowFriends]]() - Requests updated friends information from server.
 
: [[API C_FriendList.ShowFriends|C_FriendList.ShowFriends]]() - Requests updated friends information from server.
   
 
==== Who List ====
 
==== Who List ====
 
Relates to the [[Who List]].
 
Relates to the [[Who List]].
: [[API C_FriendList.GetNumWhoResults|C_FriendList.GetNumWhoResults]]() : <span style="font-size:smaller; color:#4ec9b0">numWhos, totalNumWhos</span> - Get the number of entries resulting from your most recent /who query.
+
: [[API C_FriendList.GetNumWhoResults|C_FriendList.GetNumWhoResults]]() : <span class="apiret">numWhos, totalNumWhos</span> - Get the number of entries resulting from your most recent /who query.
: [[API C_FriendList.GetWhoInfo|C_FriendList.GetWhoInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span> - Retrieves info about a character on your current /who list.
+
: [[API C_FriendList.GetWhoInfo|C_FriendList.GetWhoInfo]](<span class="apiarg">index</span>) : <span class="apiret">info</span> - Retrieves info about a character on your current /who list.
: <small>HW</small> [[API C_FriendList.SendWho|C_FriendList.SendWho]](<span style="font-size:smaller; color:#ecbc2a">filter</span>) - Sends a Who request, much like using the slash command /who or entering a query in the entry field of the Who List.
+
: <small>HW</small> [[API C_FriendList.SendWho|C_FriendList.SendWho]](<span class="apiarg">filter</span>) - Sends a Who request, much like using the slash command /who or entering a query in the entry field of the Who List.
: [[API C_FriendList.SetWhoToUi|C_FriendList.SetWhoToUi]](<span style="font-size:smaller; color:#ecbc2a">whoToUi</span>) - Sets how the result of a /who request will be handled.
+
: [[API C_FriendList.SetWhoToUi|C_FriendList.SetWhoToUi]](<span class="apiarg">whoToUi</span>) - Sets how the result of a /who request will be handled.
: [[API C_FriendList.SortWho|C_FriendList.SortWho]](<span style="font-size:smaller; color:#ecbc2a">sorting</span>) - Sorts the last /who reply received by the client.
+
: [[API C_FriendList.SortWho|C_FriendList.SortWho]](<span class="apiarg">sorting</span>) - Sorts the last /who reply received by the client.
   
 
==== Battle.net ====
 
==== Battle.net ====
 
[[Real ID]] friends were added in [[Patch 3.3.5]]
 
[[Real ID]] friends were added in [[Patch 3.3.5]]
: [[API C_BattleNet.GetAccountInfoByID|C_BattleNet.GetAccountInfoByID]](<span style="font-size:smaller; color:#ecbc2a">id [, wowAccountGUID]</span>) : <span style="font-size:smaller; color:#4ec9b0">accountInfo</span> - Returns information about a Battle.net friend account.
+
: [[API C_BattleNet.GetAccountInfoByID|C_BattleNet.GetAccountInfoByID]](<span class="apiarg">id [, wowAccountGUID]</span>) : <span class="apiret">accountInfo</span> - Returns information about a Battle.net friend account.
: [[API C_BattleNet.GetAccountInfoByGUID|C_BattleNet.GetAccountInfoByGUID]](<span style="font-size:smaller; color:#ecbc2a">guid</span>) : <span style="font-size:smaller; color:#4ec9b0">accountInfo</span>
+
: [[API C_BattleNet.GetAccountInfoByGUID|C_BattleNet.GetAccountInfoByGUID]](<span class="apiarg">guid</span>) : <span class="apiret">accountInfo</span>
: [[API C_BattleNet.GetFriendAccountInfo|C_BattleNet.GetFriendAccountInfo]](<span style="font-size:smaller; color:#ecbc2a">friendIndex [, wowAccountGUID]</span>) : <span style="font-size:smaller; color:#4ec9b0">accountInfo</span>
+
: [[API C_BattleNet.GetFriendAccountInfo|C_BattleNet.GetFriendAccountInfo]](<span class="apiarg">friendIndex [, wowAccountGUID]</span>) : <span class="apiret">accountInfo</span>
: [[API C_BattleNet.GetGameAccountInfoByID|C_BattleNet.GetGameAccountInfoByID]](<span style="font-size:smaller; color:#ecbc2a">id</span>) : <span style="font-size:smaller; color:#4ec9b0">gameAccountInfo</span> - Returns information on the game the Battle.net friend is playing.
+
: [[API C_BattleNet.GetGameAccountInfoByID|C_BattleNet.GetGameAccountInfoByID]](<span class="apiarg">id</span>) : <span class="apiret">gameAccountInfo</span> - Returns information on the game the Battle.net friend is playing.
: [[API C_BattleNet.GetGameAccountInfoByGUID|C_BattleNet.GetGameAccountInfoByGUID]](<span style="font-size:smaller; color:#ecbc2a">guid</span>) : <span style="font-size:smaller; color:#4ec9b0">gameAccountInfo</span>
+
: [[API C_BattleNet.GetGameAccountInfoByGUID|C_BattleNet.GetGameAccountInfoByGUID]](<span class="apiarg">guid</span>) : <span class="apiret">gameAccountInfo</span>
: [[API C_BattleNet.GetFriendGameAccountInfo|C_BattleNet.GetFriendGameAccountInfo]](<span style="font-size:smaller; color:#ecbc2a">friendIndex, accountIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">gameAccountInfo</span>
+
: [[API C_BattleNet.GetFriendGameAccountInfo|C_BattleNet.GetFriendGameAccountInfo]](<span class="apiarg">friendIndex, accountIndex</span>) : <span class="apiret">gameAccountInfo</span>
: [[API C_BattleNet.GetFriendNumGameAccounts|C_BattleNet.GetFriendNumGameAccounts]](<span style="font-size:smaller; color:#ecbc2a">friendIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">numGameAccounts</span> - Returns the Battle.net friend's number of game accounts.
+
: [[API C_BattleNet.GetFriendNumGameAccounts|C_BattleNet.GetFriendNumGameAccounts]](<span class="apiarg">friendIndex</span>) : <span class="apiret">numGameAccounts</span> - Returns the Battle.net friend's number of game accounts.
: [[API C_AccountInfo.GetIDFromBattleNetAccountGUID|C_AccountInfo.GetIDFromBattleNetAccountGUID]](<span style="font-size:smaller; color:#ecbc2a">battleNetAccountGUID</span>) : <span style="font-size:smaller; color:#4ec9b0">battleNetAccountID</span>
+
: [[API C_AccountInfo.GetIDFromBattleNetAccountGUID|C_AccountInfo.GetIDFromBattleNetAccountGUID]](<span class="apiarg">battleNetAccountGUID</span>) : <span class="apiret">battleNetAccountID</span>
: [[API C_AccountInfo.IsGUIDBattleNetAccountType|C_AccountInfo.IsGUIDBattleNetAccountType]](<span style="font-size:smaller; color:#ecbc2a">guid</span>) : <span style="font-size:smaller; color:#4ec9b0">isBNet</span>
+
: [[API C_AccountInfo.IsGUIDBattleNetAccountType|C_AccountInfo.IsGUIDBattleNetAccountType]](<span class="apiarg">guid</span>) : <span class="apiret">isBNet</span>
: [[API C_AccountInfo.IsGUIDRelatedToLocalAccount|C_AccountInfo.IsGUIDRelatedToLocalAccount]](<span style="font-size:smaller; color:#ecbc2a">guid</span>) : <span style="font-size:smaller; color:#4ec9b0">isLocalUser</span>
+
: [[API C_AccountInfo.IsGUIDRelatedToLocalAccount|C_AccountInfo.IsGUIDRelatedToLocalAccount]](<span class="apiarg">guid</span>) : <span class="apiret">isLocalUser</span>
: [[API BNAcceptFriendInvite|BNAcceptFriendInvite]](<span style="font-size:smaller; color:#ecbc2a">ID</span>)
+
: [[API BNAcceptFriendInvite|BNAcceptFriendInvite]](<span class="apiarg">ID</span>)
: [[API BNCheckBattleTagInviteToGuildMember|BNCheckBattleTagInviteToGuildMember]](<span style="font-size:smaller; color:#ecbc2a">fullname</span>)
+
: [[API BNCheckBattleTagInviteToGuildMember|BNCheckBattleTagInviteToGuildMember]](<span class="apiarg">fullname</span>)
: [[API BNCheckBattleTagInviteToUnit|BNCheckBattleTagInviteToUnit]](<span style="font-size:smaller; color:#ecbc2a">unit</span>)
+
: [[API BNCheckBattleTagInviteToUnit|BNCheckBattleTagInviteToUnit]](<span class="apiarg">unit</span>)
 
: [[API BNConnected|BNConnected]]() - Returns whether your battle.net state is connected.
 
: [[API BNConnected|BNConnected]]() - Returns whether your battle.net state is connected.
: [[API BNDeclineFriendInvite|BNDeclineFriendInvite]](<span style="font-size:smaller; color:#ecbc2a">ID</span>)
+
: [[API BNDeclineFriendInvite|BNDeclineFriendInvite]](<span class="apiarg">ID</span>)
 
: [[API BNFeaturesEnabledAndConnected|BNFeaturesEnabledAndConnected]]()
 
: [[API BNFeaturesEnabledAndConnected|BNFeaturesEnabledAndConnected]]()
 
: [[API BNFeaturesEnabled|BNFeaturesEnabled]]()
 
: [[API BNFeaturesEnabled|BNFeaturesEnabled]]()
: [[API BNGetBlockedInfo|BNGetBlockedInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API BNGetBlockedInfo|BNGetBlockedInfo]](<span class="apiarg">index</span>)
: [[API BNGetDisplayName|BNGetDisplayName]](<span style="font-size:smaller; color:#ecbc2a">bnetIdAccount</span>)
+
: [[API BNGetDisplayName|BNGetDisplayName]](<span class="apiarg">bnetIdAccount</span>)
: [[API BNGetFOFInfo|BNGetFOFInfo]](<span style="font-size:smaller; color:#ecbc2a">mutual, nonMutual, index</span>) - Returns presenceID, givenName, surname, isFriend.
+
: [[API BNGetFOFInfo|BNGetFOFInfo]](<span class="apiarg">mutual, nonMutual, index</span>) - Returns presenceID, givenName, surname, isFriend.
: [[API BNGetFriendIndex|BNGetFriendIndex]](<span style="font-size:smaller; color:#ecbc2a">presenceID</span>)
+
: [[API BNGetFriendIndex|BNGetFriendIndex]](<span class="apiarg">presenceID</span>)
: [[API BNGetFriendInviteInfo|BNGetFriendInviteInfo]](<span style="font-size:smaller; color:#ecbc2a">menuValue</span>) - Returns presenceID, givenName, surname.
+
: [[API BNGetFriendInviteInfo|BNGetFriendInviteInfo]](<span class="apiarg">menuValue</span>) - Returns presenceID, givenName, surname.
 
: [[API BNGetInfo|BNGetInfo]]() - Returns own battle.net data like battleTag.
 
: [[API BNGetInfo|BNGetInfo]]() - Returns own battle.net data like battleTag.
 
: [[API BNGetNumBlocked|BNGetNumBlocked]]()
 
: [[API BNGetNumBlocked|BNGetNumBlocked]]()
: [[API BNGetNumFOF|BNGetNumFOF]](<span style="font-size:smaller; color:#ecbc2a">ID, mutual, non</span>)
+
: [[API BNGetNumFOF|BNGetNumFOF]](<span class="apiarg">ID, mutual, non</span>)
 
: [[API BNGetNumFriendInvites|BNGetNumFriendInvites]]()
 
: [[API BNGetNumFriendInvites|BNGetNumFriendInvites]]()
 
: [[API BNGetNumFriends|BNGetNumFriends]]() - Returns numBNetTotal, numBNetOnline, numBNetFavorite, numBNetFavoriteOnline.
 
: [[API BNGetNumFriends|BNGetNumFriends]]() - Returns numBNetTotal, numBNetOnline, numBNetFavorite, numBNetFavoriteOnline.
 
: [[API BNGetSelectedBlock|BNGetSelectedBlock]]()
 
: [[API BNGetSelectedBlock|BNGetSelectedBlock]]()
 
: [[API BNGetSelectedFriend|BNGetSelectedFriend]]()
 
: [[API BNGetSelectedFriend|BNGetSelectedFriend]]()
: [[API BNInviteFriend|BNInviteFriend]](<span style="font-size:smaller; color:#ecbc2a">bnetIDGameAccount</span>)
+
: [[API BNInviteFriend|BNInviteFriend]](<span class="apiarg">bnetIDGameAccount</span>)
: [[API BNIsBlocked|BNIsBlocked]](<span style="font-size:smaller; color:#ecbc2a">ID</span>)
+
: [[API BNIsBlocked|BNIsBlocked]](<span class="apiarg">ID</span>)
: [[API BNIsFriend|BNIsFriend]](<span style="font-size:smaller; color:#ecbc2a">presenceID</span>)
+
: [[API BNIsFriend|BNIsFriend]](<span class="apiarg">presenceID</span>)
: [[API BNIsSelf|BNIsSelf]](<span style="font-size:smaller; color:#ecbc2a">presenceID</span>) - Returns true if the specified presenceID is your own, false otherwise.
+
: [[API BNIsSelf|BNIsSelf]](<span class="apiarg">presenceID</span>) - Returns true if the specified presenceID is your own, false otherwise.
: [[API BNRemoveFriend|BNRemoveFriend]](<span style="font-size:smaller; color:#ecbc2a">ID</span>)
+
: [[API BNRemoveFriend|BNRemoveFriend]](<span class="apiarg">ID</span>)
: [[API BNRequestFOFInfo|BNRequestFOFInfo]](<span style="font-size:smaller; color:#ecbc2a">bnetIDAccount</span>)
+
: [[API BNRequestFOFInfo|BNRequestFOFInfo]](<span class="apiarg">bnetIDAccount</span>)
: [[API BNRequestInviteFriend|BNRequestInviteFriend]](<span style="font-size:smaller; color:#ecbc2a">presenceID [, tank, heal, dps]</span>)
+
: [[API BNRequestInviteFriend|BNRequestInviteFriend]](<span class="apiarg">presenceID [, tank, heal, dps]</span>)
: [[API BNSendFriendInviteByID|BNSendFriendInviteByID]](<span style="font-size:smaller; color:#ecbc2a">ID, noteText</span>)
+
: [[API BNSendFriendInviteByID|BNSendFriendInviteByID]](<span class="apiarg">ID, noteText</span>)
: [[API BNSendFriendInvite|BNSendFriendInvite]](<span style="font-size:smaller; color:#ecbc2a">text, noteText</span>)
+
: [[API BNSendFriendInvite|BNSendFriendInvite]](<span class="apiarg">text, noteText</span>)
: [[API BNSendGameData|BNSendGameData]](<span style="font-size:smaller; color:#ecbc2a">id, addonPrefix, text</span>) - BNet equivalent of SendAddonMessage.
+
: [[API BNSendGameData|BNSendGameData]](<span class="apiarg">id, addonPrefix, text</span>) - BNet equivalent of SendAddonMessage.
: [[API BNSendSoR|BNSendSoR]](<span style="font-size:smaller; color:#ecbc2a">target, comment</span>)
+
: [[API BNSendSoR|BNSendSoR]](<span class="apiarg">target, comment</span>)
 
: [[API BNSendVerifiedBattleTagInvite|BNSendVerifiedBattleTagInvite]]() - Unit should have been set with [[API BNCheckBattleTagInviteToUnit|BNCheckBattleTagInviteToUnit]] or [[API BNCheckBattleTagInviteToGuildMember|BNCheckBattleTagInviteToGuildMember]].
 
: [[API BNSendVerifiedBattleTagInvite|BNSendVerifiedBattleTagInvite]]() - Unit should have been set with [[API BNCheckBattleTagInviteToUnit|BNCheckBattleTagInviteToUnit]] or [[API BNCheckBattleTagInviteToGuildMember|BNCheckBattleTagInviteToGuildMember]].
: [[API BNSendWhisper|BNSendWhisper]](<span style="font-size:smaller; color:#ecbc2a">id, text</span>)
+
: [[API BNSendWhisper|BNSendWhisper]](<span class="apiarg">id, text</span>)
: [[API BNSetAFK|BNSetAFK]](<span style="font-size:smaller; color:#ecbc2a">bool</span>) - Set or unset afk status.
+
: [[API BNSetAFK|BNSetAFK]](<span class="apiarg">bool</span>) - Set or unset afk status.
: [[API BNSetBlocked|BNSetBlocked]](<span style="font-size:smaller; color:#ecbc2a">ID, bool</span>)
+
: [[API BNSetBlocked|BNSetBlocked]](<span class="apiarg">ID, bool</span>)
: [[API BNSetCustomMessage|BNSetCustomMessage]](<span style="font-size:smaller; color:#ecbc2a">text</span>)
+
: [[API BNSetCustomMessage|BNSetCustomMessage]](<span class="apiarg">text</span>)
: [[API BNSetDND|BNSetDND]](<span style="font-size:smaller; color:#ecbc2a">bool</span>) - Set or unset dnd status.
+
: [[API BNSetDND|BNSetDND]](<span class="apiarg">bool</span>) - Set or unset dnd status.
: [[API BNSetFriendFavoriteFlag|BNSetFriendFavoriteFlag]](<span style="font-size:smaller; color:#ecbc2a">id, isFavorite</span>) - Set a battle.net friend as favorite.
+
: [[API BNSetFriendFavoriteFlag|BNSetFriendFavoriteFlag]](<span class="apiarg">id, isFavorite</span>) - Set a battle.net friend as favorite.
: [[API BNSetFriendNote|BNSetFriendNote]](<span style="font-size:smaller; color:#ecbc2a">ID, noteText</span>)
+
: [[API BNSetFriendNote|BNSetFriendNote]](<span class="apiarg">ID, noteText</span>)
: [[API BNSetSelectedBlock|BNSetSelectedBlock]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API BNSetSelectedBlock|BNSetSelectedBlock]](<span class="apiarg">index</span>)
: [[API BNSetSelectedFriend|BNSetSelectedFriend]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API BNSetSelectedFriend|BNSetSelectedFriend]](<span class="apiarg">index</span>)
: [[API BNSummonFriendByIndex|BNSummonFriendByIndex]](<span style="font-size:smaller; color:#ecbc2a">id</span>)
+
: [[API BNSummonFriendByIndex|BNSummonFriendByIndex]](<span class="apiarg">id</span>)
: [[API BNTokenFindName|BNTokenFindName]](<span style="font-size:smaller; color:#ecbc2a">target</span>)
+
: [[API BNTokenFindName|BNTokenFindName]](<span class="apiarg">target</span>)
: [[API GetAutoCompletePresenceID|GetAutoCompletePresenceID]](<span style="font-size:smaller; color:#ecbc2a">name</span>)
+
: [[API GetAutoCompletePresenceID|GetAutoCompletePresenceID]](<span class="apiarg">name</span>)
 
: [[API IsBNLogin|IsBNLogin]]()
 
: [[API IsBNLogin|IsBNLogin]]()
   
 
==== Recruit-a-Friend ====
 
==== Recruit-a-Friend ====
 
[[Recruit-A-Friend]] was reworked in [[Patch 8.2.5]]
 
[[Recruit-A-Friend]] was reworked in [[Patch 8.2.5]]
: [[API C_RecruitAFriend.ClaimActivityReward|C_RecruitAFriend.ClaimActivityReward]](<span style="font-size:smaller; color:#ecbc2a">activityID, acceptanceID</span>) : <span style="font-size:smaller; color:#4ec9b0">success</span>
+
: [[API C_RecruitAFriend.ClaimActivityReward|C_RecruitAFriend.ClaimActivityReward]](<span class="apiarg">activityID, acceptanceID</span>) : <span class="apiret">success</span>
: [[API C_RecruitAFriend.ClaimNextReward|C_RecruitAFriend.ClaimNextReward]]() : <span style="font-size:smaller; color:#4ec9b0">success</span>
+
: [[API C_RecruitAFriend.ClaimNextReward|C_RecruitAFriend.ClaimNextReward]]() : <span class="apiret">success</span>
: [[API C_RecruitAFriend.GenerateRecruitmentLink|C_RecruitAFriend.GenerateRecruitmentLink]]() : <span style="font-size:smaller; color:#4ec9b0">success</span>
+
: [[API C_RecruitAFriend.GenerateRecruitmentLink|C_RecruitAFriend.GenerateRecruitmentLink]]() : <span class="apiret">success</span>
: [[API C_RecruitAFriend.GetRAFInfo|C_RecruitAFriend.GetRAFInfo]]() : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_RecruitAFriend.GetRAFInfo|C_RecruitAFriend.GetRAFInfo]]() : <span class="apiret">info</span>
: [[API C_RecruitAFriend.GetRAFSystemInfo|C_RecruitAFriend.GetRAFSystemInfo]]() : <span style="font-size:smaller; color:#4ec9b0">systemInfo</span>
+
: [[API C_RecruitAFriend.GetRAFSystemInfo|C_RecruitAFriend.GetRAFSystemInfo]]() : <span class="apiret">systemInfo</span>
: [[API C_RecruitAFriend.GetRecruitActivityRequirementsText|C_RecruitAFriend.GetRecruitActivityRequirementsText]](<span style="font-size:smaller; color:#ecbc2a">activityID, acceptanceID</span>) : <span style="font-size:smaller; color:#4ec9b0">requirementsText</span>
+
: [[API C_RecruitAFriend.GetRecruitActivityRequirementsText|C_RecruitAFriend.GetRecruitActivityRequirementsText]](<span class="apiarg">activityID, acceptanceID</span>) : <span class="apiret">requirementsText</span>
: [[API C_RecruitAFriend.GetRecruitInfo|C_RecruitAFriend.GetRecruitInfo]]() : <span style="font-size:smaller; color:#4ec9b0">active, faction</span>
+
: [[API C_RecruitAFriend.GetRecruitInfo|C_RecruitAFriend.GetRecruitInfo]]() : <span class="apiret">active, faction</span>
: [[API C_RecruitAFriend.IsEnabled|C_RecruitAFriend.IsEnabled]]() : <span style="font-size:smaller; color:#4ec9b0">enabled</span>
+
: [[API C_RecruitAFriend.IsEnabled|C_RecruitAFriend.IsEnabled]]() : <span class="apiret">enabled</span>
: [[API C_RecruitAFriend.IsRecruitingEnabled|C_RecruitAFriend.IsRecruitingEnabled]]() : <span style="font-size:smaller; color:#4ec9b0">enabled</span>
+
: [[API C_RecruitAFriend.IsRecruitingEnabled|C_RecruitAFriend.IsRecruitingEnabled]]() : <span class="apiret">enabled</span>
: [[API C_RecruitAFriend.RemoveRAFRecruit|C_RecruitAFriend.RemoveRAFRecruit]](<span style="font-size:smaller; color:#ecbc2a">wowAccountGUID</span>) : <span style="font-size:smaller; color:#4ec9b0">success</span>
+
: [[API C_RecruitAFriend.RemoveRAFRecruit|C_RecruitAFriend.RemoveRAFRecruit]](<span class="apiarg">wowAccountGUID</span>) : <span class="apiret">success</span>
: [[API C_RecruitAFriend.RequestUpdatedRecruitmentInfo|C_RecruitAFriend.RequestUpdatedRecruitmentInfo]]() : <span style="font-size:smaller; color:#4ec9b0">success</span>
+
: [[API C_RecruitAFriend.RequestUpdatedRecruitmentInfo|C_RecruitAFriend.RequestUpdatedRecruitmentInfo]]() : <span class="apiret">success</span>
: [[API CanSummonFriend|CanSummonFriend]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns whether you can RaF summon a particular unit.
+
: [[API CanSummonFriend|CanSummonFriend]](<span class="apiarg">unit</span>) - Returns whether you can RaF summon a particular unit.
 
: [[API GetSummonFriendCooldown|GetSummonFriendCooldown]]() - Returns the cooldown (start, duration) of the RaF Summon Friend ability.
 
: [[API GetSummonFriendCooldown|GetSummonFriendCooldown]]() - Returns the cooldown (start, duration) of the RaF Summon Friend ability.
 
: [[API IsRecruitAFriendLinked|IsRecruitAFriendLinked]]()
 
: [[API IsRecruitAFriendLinked|IsRecruitAFriendLinked]]()
 
: [[API SelectedRealmName|SelectedRealmName]]() - Returns the realm name that will be used in Recruit-a-Friend invitations.
 
: [[API SelectedRealmName|SelectedRealmName]]() - Returns the realm name that will be used in Recruit-a-Friend invitations.
: [[API SummonFriend|SummonFriend]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Summons a player using the RaF system.
+
: [[API SummonFriend|SummonFriend]](<span class="apiarg">unit</span>) - Summons a player using the RaF system.
   
 
==== Mentor System ====
 
==== Mentor System ====
 
[https://www.wowhead.com/news=317554/guide-mentor-system-requirements-changed-in-shadowlands-build-35598 Newcomer Guides] were added in [[Patch 9.0.1]]
 
[https://www.wowhead.com/news=317554/guide-mentor-system-requirements-changed-in-shadowlands-build-35598 Newcomer Guides] were added in [[Patch 9.0.1]]
: [[API C_PlayerMentorship.GetMentorLevelRequirement|C_PlayerMentorship.GetMentorLevelRequirement]]() : <span style="font-size:smaller; color:#4ec9b0">level</span>
+
: [[API C_PlayerMentorship.GetMentorLevelRequirement|C_PlayerMentorship.GetMentorLevelRequirement]]() : <span class="apiret">level</span>
: [[API C_PlayerMentorship.GetMentorOptionalAchievementIDs|C_PlayerMentorship.GetMentorOptionalAchievementIDs]]() : <span style="font-size:smaller; color:#4ec9b0">achievementIDs</span>
+
: [[API C_PlayerMentorship.GetMentorRequirements|C_PlayerMentorship.GetMentorRequirements]]() : <span class="apiret">achievementIDs, optionalAchievementIDs, ...</span>
: [[API C_PlayerMentorship.GetMentorshipStatus|C_PlayerMentorship.GetMentorshipStatus]](<span style="font-size:smaller; color:#ecbc2a">playerLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">status</span>
+
: [[API C_PlayerMentorship.GetMentorshipStatus|C_PlayerMentorship.GetMentorshipStatus]](<span class="apiarg">playerLocation</span>) : <span class="apiret">status</span>
: [[API C_PlayerMentorship.IsActivePlayerConsideredNewcomer|C_PlayerMentorship.IsActivePlayerConsideredNewcomer]]() : <span style="font-size:smaller; color:#4ec9b0">isConsideredNewcomer</span>
+
: [[API C_PlayerMentorship.IsActivePlayerConsideredNewcomer|C_PlayerMentorship.IsActivePlayerConsideredNewcomer]]() : <span class="apiret">isConsideredNewcomer</span>
: [[API C_PlayerMentorship.IsMentorRestricted|C_PlayerMentorship.IsMentorRestricted]]() : <span style="font-size:smaller; color:#4ec9b0">isRestricted</span>
+
: [[API C_PlayerMentorship.IsMentorRestricted|C_PlayerMentorship.IsMentorRestricted]]() : <span class="apiret">isRestricted</span>
   
 
=== Groups ===
 
=== Groups ===
: [[API C_PartyInfo.AllowedToDoPartyConversion|C_PartyInfo.AllowedToDoPartyConversion]](<span style="font-size:smaller; color:#ecbc2a">toRaid</span>) : <span style="font-size:smaller; color:#4ec9b0">allowed</span>
+
: [[API C_PartyInfo.AllowedToDoPartyConversion|C_PartyInfo.AllowedToDoPartyConversion]](<span class="apiarg">toRaid</span>) : <span class="apiret">allowed</span>
: [[API C_PartyInfo.CanInvite|C_PartyInfo.CanInvite]]() : <span style="font-size:smaller; color:#4ec9b0">allowedToInvite</span>
+
: [[API C_PartyInfo.CanInvite|C_PartyInfo.CanInvite]]() : <span class="apiret">allowedToInvite</span>
 
: [[API C_PartyInfo.ConfirmConvertToRaid|C_PartyInfo.ConfirmConvertToRaid]]()
 
: [[API C_PartyInfo.ConfirmConvertToRaid|C_PartyInfo.ConfirmConvertToRaid]]()
: [[API C_PartyInfo.ConfirmInviteTravelPass|C_PartyInfo.ConfirmInviteTravelPass]](<span style="font-size:smaller; color:#ecbc2a">targetName, targetGUID</span>)
+
: [[API C_PartyInfo.ConfirmInviteTravelPass|C_PartyInfo.ConfirmInviteTravelPass]](<span class="apiarg">targetName, targetGUID</span>)
: [[API C_PartyInfo.ConfirmInviteUnit|C_PartyInfo.ConfirmInviteUnit]](<span style="font-size:smaller; color:#ecbc2a">targetName</span>)
+
: [[API C_PartyInfo.ConfirmInviteUnit|C_PartyInfo.ConfirmInviteUnit]](<span class="apiarg">targetName</span>)
: [[API C_PartyInfo.ConfirmLeaveParty|C_PartyInfo.ConfirmLeaveParty]](<span style="font-size:smaller; color:#ecbc2a">[category]</span>)
+
: [[API C_PartyInfo.ConfirmLeaveParty|C_PartyInfo.ConfirmLeaveParty]](<span class="apiarg">[category]</span>)
 
: [[API C_PartyInfo.ConvertToParty|C_PartyInfo.ConvertToParty]]() - Converts a raid group with 5 or less members to a party.
 
: [[API C_PartyInfo.ConvertToParty|C_PartyInfo.ConvertToParty]]() - Converts a raid group with 5 or less members to a party.
 
: [[API C_PartyInfo.ConvertToRaid|C_PartyInfo.ConvertToRaid]]() - Converts a party to a raid.
 
: [[API C_PartyInfo.ConvertToRaid|C_PartyInfo.ConvertToRaid]]() - Converts a party to a raid.
: [[API C_PartyInfo.DoCountdown|C_PartyInfo.DoCountdown]](<span style="font-size:smaller; color:#ecbc2a">seconds</span>)
+
: [[API C_PartyInfo.DoCountdown|C_PartyInfo.DoCountdown]](<span class="apiarg">seconds</span>)
: [[API C_PartyInfo.GetMinLevel|C_PartyInfo.GetMinLevel]](<span style="font-size:smaller; color:#ecbc2a">[category]</span>) : <span style="font-size:smaller; color:#4ec9b0">minLevel</span>
+
: [[API C_PartyInfo.GetMinLevel|C_PartyInfo.GetMinLevel]](<span class="apiarg">[category]</span>) : <span class="apiret">minLevel</span>
: [[API C_PartyInfo.InviteUnit|C_PartyInfo.InviteUnit]](<span style="font-size:smaller; color:#ecbc2a">targetName</span>) - Invites the specified player to the group you are currently in.
+
: [[API C_PartyInfo.InviteUnit|C_PartyInfo.InviteUnit]](<span class="apiarg">targetName</span>) - Invites the specified player to the group you are currently in.
: [[API C_PartyInfo.IsPartyFull|C_PartyInfo.IsPartyFull]](<span style="font-size:smaller; color:#ecbc2a">[category]</span>) : <span style="font-size:smaller; color:#4ec9b0">isFull</span>
+
: [[API C_PartyInfo.IsPartyFull|C_PartyInfo.IsPartyFull]](<span class="apiarg">[category]</span>) : <span class="apiret">isFull</span>
: [[API C_PartyInfo.LeaveParty|C_PartyInfo.LeaveParty]](<span style="font-size:smaller; color:#ecbc2a">[category]</span>) - Quit the party, often useful to troubleshoot "phantom party" bugs which may list you in a party when you are in fact not.
+
: [[API C_PartyInfo.LeaveParty|C_PartyInfo.LeaveParty]](<span class="apiarg">[category]</span>) - Quit the party, often useful to troubleshoot "phantom party" bugs which may list you in a party when you are in fact not.
 
: [[API AcceptGroup|AcceptGroup]]() - Accept the invitation to party.
 
: [[API AcceptGroup|AcceptGroup]]() - Accept the invitation to party.
: [[API ConfirmReadyCheck|ConfirmReadyCheck]](<span style="font-size:smaller; color:#ecbc2a">isReady</span>) - Indicate if you are ready or not.
+
: [[API ConfirmReadyCheck|ConfirmReadyCheck]](<span class="apiarg">isReady</span>) - Indicate if you are ready or not.
 
: [[API DeclineGroup|DeclineGroup]]() - Decline the invitation to a party.
 
: [[API DeclineGroup|DeclineGroup]]() - Decline the invitation to a party.
 
: [[API DoReadyCheck|DoReadyCheck]]() - Initiate a ready check.
 
: [[API DoReadyCheck|DoReadyCheck]]() - Initiate a ready check.
 
: [[API GetHomePartyInfo|GetHomePartyInfo]]()
 
: [[API GetHomePartyInfo|GetHomePartyInfo]]()
: [[API GetInviteConfirmationInfo|GetInviteConfirmationInfo]](<span style="font-size:smaller; color:#ecbc2a">guid</span>)
+
: [[API GetInviteConfirmationInfo|GetInviteConfirmationInfo]](<span class="apiarg">guid</span>)
 
: [[API GetNextPendingInviteConfirmation|GetNextPendingInviteConfirmation]]()
 
: [[API GetNextPendingInviteConfirmation|GetNextPendingInviteConfirmation]]()
: [[API GetNumGroupMembers|GetNumGroupMembers]](<span style="font-size:smaller; color:#ecbc2a">[groupType]</span>) - Returns the total number of players in your group/raid.
+
: [[API GetNumGroupMembers|GetNumGroupMembers]](<span class="apiarg">[groupType]</span>) - Returns the total number of players in your group/raid.
: [[API GetNumSubgroupMembers|GetNumSubgroupMembers]](<span style="font-size:smaller; color:#ecbc2a">[groupType]</span>) - Returns the number of ''other'' players in your party (or raid subgroup).
+
: [[API GetNumSubgroupMembers|GetNumSubgroupMembers]](<span class="apiarg">[groupType]</span>) - Returns the number of ''other'' players in your party (or raid subgroup).
 
: [[API GetPendingInviteConfirmations|GetPendingInviteConfirmations]]()
 
: [[API GetPendingInviteConfirmations|GetPendingInviteConfirmations]]()
: [[API GetReadyCheckStatus|GetReadyCheckStatus]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns a group member's response to the current ready check.
+
: [[API GetReadyCheckStatus|GetReadyCheckStatus]](<span class="apiarg">unit</span>) - Returns a group member's response to the current ready check.
 
: [[API GetReadyCheckTimeLeft|GetReadyCheckTimeLeft]]()
 
: [[API GetReadyCheckTimeLeft|GetReadyCheckTimeLeft]]()
 
: [[API InGuildParty|InGuildParty]]()
 
: [[API InGuildParty|InGuildParty]]()
: [[API IsGUIDInGroup|IsGUIDInGroup]](<span style="font-size:smaller; color:#ecbc2a">guid [, groupType]</span>)
+
: [[API IsGUIDInGroup|IsGUIDInGroup]](<span class="apiarg">guid [, groupType]</span>)
: [[API IsInGroup|IsInGroup]](<span style="font-size:smaller; color:#ecbc2a">[groupType]</span>) - Returns true if in a group.
+
: [[API IsInGroup|IsInGroup]](<span class="apiarg">[groupType]</span>) - Returns true if in a group.
 
: [[API IsInGuildGroup|IsInGuildGroup]]()
 
: [[API IsInGuildGroup|IsInGuildGroup]]()
: [[API IsInRaid|IsInRaid]](<span style="font-size:smaller; color:#ecbc2a">[groupType]</span>) - Returns true if in a raid.
+
: [[API IsInRaid|IsInRaid]](<span class="apiarg">[groupType]</span>) - Returns true if in a raid.
: [[API PromoteToLeader|PromoteToLeader]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Promote a unit to party leader.
+
: [[API PromoteToLeader|PromoteToLeader]](<span class="apiarg">unit</span>) - Promote a unit to party leader.
: [[API RespondToInviteConfirmation|RespondToInviteConfirmation]](<span style="font-size:smaller; color:#ecbc2a">guid, accept</span>)
+
: [[API RespondToInviteConfirmation|RespondToInviteConfirmation]](<span class="apiarg">guid, accept</span>)
: <small>HW</small> [[API UninviteUnit|UninviteUnit]](<span style="font-size:smaller; color:#ecbc2a">name [, reason]</span>) - Kick a unit from the party if player is group leader; or initiate a kick vote in an LFD group.
+
: <small>HW</small> [[API UninviteUnit|UninviteUnit]](<span class="apiarg">name [, reason]</span>) - Kick a unit from the party if player is group leader; or initiate a kick vote in an LFD group.
 
: [[API UnitInAnyGroup|UnitInAnyGroup]]()
 
: [[API UnitInAnyGroup|UnitInAnyGroup]]()
: [[API UnitInParty|UnitInParty]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns true if the unit is a member of your party.
+
: [[API UnitInParty|UnitInParty]](<span class="apiarg">unit</span>) - Returns true if the unit is a member of your party.
: [[API UnitIsGroupLeader|UnitIsGroupLeader]](<span style="font-size:smaller; color:#ecbc2a">unit [, partyCategory]</span>) - Returns whether the unit is the leader of a party or raid.
+
: [[API UnitIsGroupLeader|UnitIsGroupLeader]](<span class="apiarg">unit [, partyCategory]</span>) - Returns whether the unit is the leader of a party or raid.
   
 
==== Raid Groups ====
 
==== Raid Groups ====
 
: [[API ClearPartyAssignment|ClearPartyAssignment]]()
 
: [[API ClearPartyAssignment|ClearPartyAssignment]]()
: [[API DemoteAssistant|DemoteAssistant]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Demotes player from assistant status. Requires raid leadership.
+
: [[API DemoteAssistant|DemoteAssistant]](<span class="apiarg">unit</span>) - Demotes player from assistant status. Requires raid leadership.
 
: [[API GetAllowLowLevelRaid|GetAllowLowLevelRaid]]() - Returns whether joining low-level raids is enabled for the current character.
 
: [[API GetAllowLowLevelRaid|GetAllowLowLevelRaid]]() - Returns whether joining low-level raids is enabled for the current character.
: [[API GetPartyAssignment|GetPartyAssignment]](<span style="font-size:smaller; color:#ecbc2a">assignment [, unit, exactMatch]</span>) - Returns a value based on whether the unit is assigned to given role.
+
: [[API GetPartyAssignment|GetPartyAssignment]](<span class="apiarg">assignment [, unit, exactMatch]</span>) - Returns a value based on whether the unit is assigned to given role.
: [[API GetRaidRosterInfo|GetRaidRosterInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns information about the members of your raid.
+
: [[API GetRaidRosterInfo|GetRaidRosterInfo]](<span class="apiarg">index</span>) - Returns information about the members of your raid.
 
: [[API InitiateRolePoll|InitiateRolePoll]]()
 
: [[API InitiateRolePoll|InitiateRolePoll]]()
 
: [[API IsEveryoneAssistant|IsEveryoneAssistant]]()
 
: [[API IsEveryoneAssistant|IsEveryoneAssistant]]()
: [[API PromoteToAssistant|PromoteToAssistant]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Promotes player to assistant status. Requires raid leadership.
+
: [[API PromoteToAssistant|PromoteToAssistant]](<span class="apiarg">unit</span>) - Promotes player to assistant status. Requires raid leadership.
: [[API SetAllowLowLevelRaid|SetAllowLowLevelRaid]](<span style="font-size:smaller; color:#ecbc2a">allowed</span>) - Controls whether the current character can join low-level raids.
+
: [[API SetAllowLowLevelRaid|SetAllowLowLevelRaid]](<span class="apiarg">allowed</span>) - Controls whether the current character can join low-level raids.
 
: [[API SetEveryoneIsAssistant|SetEveryoneIsAssistant]]()
 
: [[API SetEveryoneIsAssistant|SetEveryoneIsAssistant]]()
: <small>PROTECTED</small> [[API SetPartyAssignment|SetPartyAssignment]](<span style="font-size:smaller; color:#ecbc2a">assignment, player</span>)
+
: <small>PROTECTED</small> [[API SetPartyAssignment|SetPartyAssignment]](<span class="apiarg">assignment, player</span>)
: <small>NOCOMBAT</small> [[API SetRaidSubgroup|SetRaidSubgroup]](<span style="font-size:smaller; color:#ecbc2a">index, subgroup</span>) - Move a raid member from his current subgroup into a different (non-full) subgroup.
+
: <small>NOCOMBAT</small> [[API SetRaidSubgroup|SetRaidSubgroup]](<span class="apiarg">index, subgroup</span>) - Move a raid member from his current subgroup into a different (non-full) subgroup.
: <small>NOCOMBAT</small> [[API SwapRaidSubgroup|SwapRaidSubgroup]](<span style="font-size:smaller; color:#ecbc2a">index1, index2</span>) - Swaps raid members into different groups.
+
: <small>NOCOMBAT</small> [[API SwapRaidSubgroup|SwapRaidSubgroup]](<span class="apiarg">index1, index2</span>) - Swaps raid members into different groups.
: [[API UnitInRaid|UnitInRaid]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns 1 if unit is in your raid, nil if not.
+
: [[API UnitInRaid|UnitInRaid]](<span class="apiarg">unit</span>) - Returns 1 if unit is in your raid, nil if not.
 
: [[API UnitInSubgroup|UnitInSubgroup]]()
 
: [[API UnitInSubgroup|UnitInSubgroup]]()
 
Relates to [[Target_marker|Raid Target]]s and [[World Marker]]s.
 
Relates to [[Target_marker|Raid Target]]s and [[World Marker]]s.
: [[API CanBeRaidTarget|CanBeRaidTarget]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns if a unit can be marked with a raid target symbol.
+
: [[API CanBeRaidTarget|CanBeRaidTarget]](<span class="apiarg">unit</span>) - Returns if a unit can be marked with a raid target symbol.
: [[API ClearRaidMarker|ClearRaidMarker]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Removes a raid marker from the world.
+
: [[API ClearRaidMarker|ClearRaidMarker]](<span class="apiarg">index</span>) - Removes a raid marker from the world.
: [[API GetRaidTargetIndex|GetRaidTargetIndex]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Get the raid target index assigned to a unit.
+
: [[API GetRaidTargetIndex|GetRaidTargetIndex]](<span class="apiarg">unit</span>) - Get the raid target index assigned to a unit.
: [[API IsRaidMarkerActive|IsRaidMarkerActive]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns whether or not the raid marker specified by index is active.
+
: [[API IsRaidMarkerActive|IsRaidMarkerActive]](<span class="apiarg">index</span>) - Returns whether or not the raid marker specified by index is active.
: <small>PROTECTED</small> [[API PlaceRaidMarker|PlaceRaidMarker]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Brings up a targeting circle to place a raid marker in the world.
+
: <small>PROTECTED</small> [[API PlaceRaidMarker|PlaceRaidMarker]](<span class="apiarg">index</span>) - Brings up a targeting circle to place a raid marker in the world.
: [[API SetRaidTarget|SetRaidTarget]](<span style="font-size:smaller; color:#ecbc2a">unit, index</span>) - Sets a raid icon on a unit.
+
: [[API SetRaidTarget|SetRaidTarget]](<span class="apiarg">unit, index</span>) - Sets a raid icon on a unit.
: [[API SetRaidTargetProtected|SetRaidTargetProtected]](<span style="font-size:smaller; color:#ecbc2a">unit, index</span>)
+
: [[API SetRaidTargetProtected|SetRaidTargetProtected]](<span class="apiarg">unit, index</span>)
: <small>UI</small> [[API SetRaidTargetIcon|SetRaidTargetIcon]](<span style="font-size:smaller; color:#ecbc2a">unit, index</span>) - Sets or resets a raid icon on a unit.
+
: <small>UI</small> [[API SetRaidTargetIcon|SetRaidTargetIcon]](<span class="apiarg">unit, index</span>) - Sets or resets a raid icon on a unit.
 
Raid Profiles
 
Raid Profiles
: [[API CreateNewRaidProfile|CreateNewRaidProfile]](<span style="font-size:smaller; color:#ecbc2a">name [, baseOnProfile]</span>)
+
: [[API CreateNewRaidProfile|CreateNewRaidProfile]](<span class="apiarg">name [, baseOnProfile]</span>)
: [[API DeleteRaidProfile|DeleteRaidProfile]](<span style="font-size:smaller; color:#ecbc2a">profile</span>)
+
: [[API DeleteRaidProfile|DeleteRaidProfile]](<span class="apiarg">profile</span>)
 
: [[API GetMaxNumCUFProfiles|GetMaxNumCUFProfiles]]()
 
: [[API GetMaxNumCUFProfiles|GetMaxNumCUFProfiles]]()
 
: [[API GetNumRaidProfiles|GetNumRaidProfiles]]()
 
: [[API GetNumRaidProfiles|GetNumRaidProfiles]]()
: [[API GetRaidProfileFlattenedOptions|GetRaidProfileFlattenedOptions]](<span style="font-size:smaller; color:#ecbc2a">profile</span>)
+
: [[API GetRaidProfileFlattenedOptions|GetRaidProfileFlattenedOptions]](<span class="apiarg">profile</span>)
: [[API GetRaidProfileName|GetRaidProfileName]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetRaidProfileName|GetRaidProfileName]](<span class="apiarg">index</span>)
: [[API GetRaidProfileOption|GetRaidProfileOption]](<span style="font-size:smaller; color:#ecbc2a">profile, optionName</span>)
+
: [[API GetRaidProfileOption|GetRaidProfileOption]](<span class="apiarg">profile, optionName</span>)
: [[API GetRaidProfileSavedPosition|GetRaidProfileSavedPosition]](<span style="font-size:smaller; color:#ecbc2a">profile</span>)
+
: [[API GetRaidProfileSavedPosition|GetRaidProfileSavedPosition]](<span class="apiarg">profile</span>)
 
: [[API HasLoadedCUFProfiles|HasLoadedCUFProfiles]]()
 
: [[API HasLoadedCUFProfiles|HasLoadedCUFProfiles]]()
: [[API RaidProfileExists|RaidProfileExists]](<span style="font-size:smaller; color:#ecbc2a">profile</span>)
+
: [[API RaidProfileExists|RaidProfileExists]](<span class="apiarg">profile</span>)
 
: [[API RaidProfileHasUnsavedChanges|RaidProfileHasUnsavedChanges]]()
 
: [[API RaidProfileHasUnsavedChanges|RaidProfileHasUnsavedChanges]]()
 
: [[API RestoreRaidProfileFromCopy|RestoreRaidProfileFromCopy]]()
 
: [[API RestoreRaidProfileFromCopy|RestoreRaidProfileFromCopy]]()
: [[API SaveRaidProfileCopy|SaveRaidProfileCopy]](<span style="font-size:smaller; color:#ecbc2a">profile</span>)
+
: [[API SaveRaidProfileCopy|SaveRaidProfileCopy]](<span class="apiarg">profile</span>)
: [[API SetRaidProfileOption|SetRaidProfileOption]](<span style="font-size:smaller; color:#ecbc2a">profile, optionName, value</span>)
+
: [[API SetRaidProfileOption|SetRaidProfileOption]](<span class="apiarg">profile, optionName, value</span>)
: [[API SetRaidProfileSavedPosition|SetRaidProfileSavedPosition]](<span style="font-size:smaller; color:#ecbc2a">profile, isDynamic, topPoint, topOffset, bottomPoint, bottomOffset, leftPoint, leftOffset</span>)
+
: [[API SetRaidProfileSavedPosition|SetRaidProfileSavedPosition]](<span class="apiarg">profile, isDynamic, topPoint, topOffset, bottomPoint, bottomOffset, leftPoint, leftOffset</span>)
   
 
==== Party Sync ====
 
==== Party Sync ====
 
[[Party Sync]] was added in [[Patch 8.2.5]]
 
[[Party Sync]] was added in [[Patch 8.2.5]]
: [[API C_LevelLink.IsActionLocked|C_LevelLink.IsActionLocked]](<span style="font-size:smaller; color:#ecbc2a">actionID</span>) : <span style="font-size:smaller; color:#4ec9b0">isLocked</span>
+
: [[API C_LevelLink.IsActionLocked|C_LevelLink.IsActionLocked]](<span class="apiarg">actionID</span>) : <span class="apiret">isLocked</span>
: [[API C_LevelLink.IsSpellLocked|C_LevelLink.IsSpellLocked]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>) : <span style="font-size:smaller; color:#4ec9b0">isLocked</span>
+
: [[API C_LevelLink.IsSpellLocked|C_LevelLink.IsSpellLocked]](<span class="apiarg">spellID</span>) : <span class="apiret">isLocked</span>
: [[API C_QuestLog.IsQuestDisabledForSession|C_QuestLog.IsQuestDisabledForSession]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">isDisabled</span>
+
: [[API C_QuestLog.IsQuestDisabledForSession|C_QuestLog.IsQuestDisabledForSession]](<span class="apiarg">questID</span>) : <span class="apiret">isDisabled</span>
: [[API C_QuestLog.IsQuestReplayable|C_QuestLog.IsQuestReplayable]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">isReplayable</span>
+
: [[API C_QuestLog.IsQuestReplayable|C_QuestLog.IsQuestReplayable]](<span class="apiarg">questID</span>) : <span class="apiret">isReplayable</span>
: [[API C_QuestLog.IsQuestReplayedRecently|C_QuestLog.IsQuestReplayedRecently]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">recentlyReplayed</span>
+
: [[API C_QuestLog.IsQuestReplayedRecently|C_QuestLog.IsQuestReplayedRecently]](<span class="apiarg">questID</span>) : <span class="apiret">recentlyReplayed</span>
: [[API C_QuestLog.QuestHasQuestSessionBonus|C_QuestLog.QuestHasQuestSessionBonus]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">hasBonus</span>
+
: [[API C_QuestLog.QuestHasQuestSessionBonus|C_QuestLog.QuestHasQuestSessionBonus]](<span class="apiarg">questID</span>) : <span class="apiret">hasBonus</span>
: [[API C_QuestSession.CanStart|C_QuestSession.CanStart]]() : <span style="font-size:smaller; color:#4ec9b0">allowed</span>
+
: [[API C_QuestSession.CanStart|C_QuestSession.CanStart]]() : <span class="apiret">allowed</span>
: [[API C_QuestSession.CanStop|C_QuestSession.CanStop]]() : <span style="font-size:smaller; color:#4ec9b0">allowed</span>
+
: [[API C_QuestSession.CanStop|C_QuestSession.CanStop]]() : <span class="apiret">allowed</span>
: [[API C_QuestSession.Exists|C_QuestSession.Exists]]() : <span style="font-size:smaller; color:#4ec9b0">exists</span>
+
: [[API C_QuestSession.Exists|C_QuestSession.Exists]]() : <span class="apiret">exists</span>
: [[API C_QuestSession.GetAvailableSessionCommand|C_QuestSession.GetAvailableSessionCommand]]() : <span style="font-size:smaller; color:#4ec9b0">command</span>
+
: [[API C_QuestSession.GetAvailableSessionCommand|C_QuestSession.GetAvailableSessionCommand]]() : <span class="apiret">command</span>
: [[API C_QuestSession.GetPendingCommand|C_QuestSession.GetPendingCommand]]() : <span style="font-size:smaller; color:#4ec9b0">command</span>
+
: [[API C_QuestSession.GetPendingCommand|C_QuestSession.GetPendingCommand]]() : <span class="apiret">command</span>
: [[API C_QuestSession.GetProposedMaxLevelForSession|C_QuestSession.GetProposedMaxLevelForSession]]() : <span style="font-size:smaller; color:#4ec9b0">proposedMaxLevel</span>
+
: [[API C_QuestSession.GetProposedMaxLevelForSession|C_QuestSession.GetProposedMaxLevelForSession]]() : <span class="apiret">proposedMaxLevel</span>
: [[API C_QuestSession.GetSessionBeginDetails|C_QuestSession.GetSessionBeginDetails]]() : <span style="font-size:smaller; color:#4ec9b0">details</span>
+
: [[API C_QuestSession.GetSessionBeginDetails|C_QuestSession.GetSessionBeginDetails]]() : <span class="apiret">details</span>
: [[API C_QuestSession.GetSuperTrackedQuest|C_QuestSession.GetSuperTrackedQuest]]() : <span style="font-size:smaller; color:#4ec9b0">questID</span>
+
: [[API C_QuestSession.GetSuperTrackedQuest|C_QuestSession.GetSuperTrackedQuest]]() : <span class="apiret">questID</span>
: [[API C_QuestSession.HasJoined|C_QuestSession.HasJoined]]() : <span style="font-size:smaller; color:#4ec9b0">hasJoined</span>
+
: [[API C_QuestSession.HasJoined|C_QuestSession.HasJoined]]() : <span class="apiret">hasJoined</span>
: [[API C_QuestSession.HasPendingCommand|C_QuestSession.HasPendingCommand]]() : <span style="font-size:smaller; color:#4ec9b0">hasPendingCommand</span>
+
: [[API C_QuestSession.HasPendingCommand|C_QuestSession.HasPendingCommand]]() : <span class="apiret">hasPendingCommand</span>
 
: [[API C_QuestSession.RequestSessionStart|C_QuestSession.RequestSessionStart]]()
 
: [[API C_QuestSession.RequestSessionStart|C_QuestSession.RequestSessionStart]]()
 
: [[API C_QuestSession.RequestSessionStop|C_QuestSession.RequestSessionStop]]()
 
: [[API C_QuestSession.RequestSessionStop|C_QuestSession.RequestSessionStop]]()
: [[API C_QuestSession.SendSessionBeginResponse|C_QuestSession.SendSessionBeginResponse]](<span style="font-size:smaller; color:#ecbc2a">beginSession</span>)
+
: [[API C_QuestSession.SendSessionBeginResponse|C_QuestSession.SendSessionBeginResponse]](<span class="apiarg">beginSession</span>)
: [[API C_QuestSession.SetQuestIsSuperTracked|C_QuestSession.SetQuestIsSuperTracked]](<span style="font-size:smaller; color:#ecbc2a">questID, superTrack</span>)
+
: [[API C_QuestSession.SetQuestIsSuperTracked|C_QuestSession.SetQuestIsSuperTracked]](<span class="apiarg">questID, superTrack</span>)
: [[API ConfirmBNRequestInviteFriend|ConfirmBNRequestInviteFriend]](<span style="font-size:smaller; color:#ecbc2a">presenceID [, tank, heal, dps]</span>)
+
: [[API ConfirmBNRequestInviteFriend|ConfirmBNRequestInviteFriend]](<span class="apiarg">presenceID [, tank, heal, dps]</span>)
   
 
=== Group Finder ===
 
=== Group Finder ===
 
The Looking For Group tool was added in [[Patch 2.0.1]]. It was renamed to the [[Dungeon Finder]] in [[Patch 3.3.0]] and raid queuing moved to a separate [[Raid Browser]]. The [[Raid Finder]] was added in [[Patch 4.3.0]] and merged into the Dungeon Finder in [[Patch 5.0.4]]. The Dungeon Finder was reworked in [[Patch 6.0.2]] into the [[Group Finder]].
 
The Looking For Group tool was added in [[Patch 2.0.1]]. It was renamed to the [[Dungeon Finder]] in [[Patch 3.3.0]] and raid queuing moved to a separate [[Raid Browser]]. The [[Raid Finder]] was added in [[Patch 4.3.0]] and merged into the Dungeon Finder in [[Patch 5.0.4]]. The Dungeon Finder was reworked in [[Patch 6.0.2]] into the [[Group Finder]].
: [[API C_LFGInfo.CanPlayerUseGroupFinder|C_LFGInfo.CanPlayerUseGroupFinder]]() : <span style="font-size:smaller; color:#4ec9b0">canUse, failureReason</span>
+
: [[API C_LFGInfo.CanPlayerUseGroupFinder|C_LFGInfo.CanPlayerUseGroupFinder]]() : <span class="apiret">canUse, failureReason</span>
: [[API C_LFGInfo.CanPlayerUseLFD|C_LFGInfo.CanPlayerUseLFD]]() : <span style="font-size:smaller; color:#4ec9b0">canUse, failureReason</span>
+
: [[API C_LFGInfo.CanPlayerUseLFD|C_LFGInfo.CanPlayerUseLFD]]() : <span class="apiret">canUse, failureReason</span>
: [[API C_LFGInfo.CanPlayerUseLFR|C_LFGInfo.CanPlayerUseLFR]]() : <span style="font-size:smaller; color:#4ec9b0">canUse, failureReason</span>
+
: [[API C_LFGInfo.CanPlayerUseLFR|C_LFGInfo.CanPlayerUseLFR]]() : <span class="apiret">canUse, failureReason</span>
: [[API C_LFGInfo.CanPlayerUsePremadeGroup|C_LFGInfo.CanPlayerUsePremadeGroup]]() : <span style="font-size:smaller; color:#4ec9b0">canUse, failureReason</span>
+
: [[API C_LFGInfo.CanPlayerUsePremadeGroup|C_LFGInfo.CanPlayerUsePremadeGroup]]() : <span class="apiret">canUse, failureReason</span>
: [[API C_LFGInfo.CanPlayerUsePVP|C_LFGInfo.CanPlayerUsePVP]]() : <span style="font-size:smaller; color:#4ec9b0">canUse, failureReason</span>
+
: [[API C_LFGInfo.CanPlayerUsePVP|C_LFGInfo.CanPlayerUsePVP]]() : <span class="apiret">canUse, failureReason</span>
 
: [[API C_LFGInfo.ConfirmLfgExpandSearch|C_LFGInfo.ConfirmLfgExpandSearch]]()
 
: [[API C_LFGInfo.ConfirmLfgExpandSearch|C_LFGInfo.ConfirmLfgExpandSearch]]()
: [[API C_LFGInfo.GetAllEntriesForCategory|C_LFGInfo.GetAllEntriesForCategory]](<span style="font-size:smaller; color:#ecbc2a">category</span>) : <span style="font-size:smaller; color:#4ec9b0">lfgDungeonIDs</span>
+
: [[API C_LFGInfo.GetAllEntriesForCategory|C_LFGInfo.GetAllEntriesForCategory]](<span class="apiarg">category</span>) : <span class="apiret">lfgDungeonIDs</span>
: [[API C_LFGInfo.GetLFDLockStates|C_LFGInfo.GetLFDLockStates]]() : <span style="font-size:smaller; color:#4ec9b0">lockInfo</span>
+
: [[API C_LFGInfo.GetDungeonInfo|C_LFGInfo.GetDungeonInfo]](<span class="apiarg">lfgDungeonID</span>) : <span class="apiret">dungeonInfo</span>
: [[API C_LFGInfo.GetRoleCheckDifficultyDetails|C_LFGInfo.GetRoleCheckDifficultyDetails]]() : <span style="font-size:smaller; color:#4ec9b0">maxLevel, isLevelReduced</span>
+
: [[API C_LFGInfo.GetLFDLockStates|C_LFGInfo.GetLFDLockStates]]() : <span class="apiret">lockInfo</span>
: [[API C_LFGInfo.HideNameFromUI|C_LFGInfo.HideNameFromUI]](<span style="font-size:smaller; color:#ecbc2a">dungeonID</span>) : <span style="font-size:smaller; color:#4ec9b0">shouldHide</span>
+
: [[API C_LFGInfo.GetRoleCheckDifficultyDetails|C_LFGInfo.GetRoleCheckDifficultyDetails]]() : <span class="apiret">maxLevel, isLevelReduced</span>
: [[API C_LFGList.AcceptInvite|C_LFGList.AcceptInvite]](<span style="font-size:smaller; color:#ecbc2a">resultID</span>)
+
: [[API C_LFGInfo.HideNameFromUI|C_LFGInfo.HideNameFromUI]](<span class="apiarg">dungeonID</span>) : <span class="apiret">shouldHide</span>
  +
: [[API AcceptProposal|AcceptProposal]]() - Accept an LFD group invite and enter the dungeon.
: [[API C_LFGList.ApplyToGroup|C_LFGList.ApplyToGroup]](<span style="font-size:smaller; color:#ecbc2a">resultID, comment, tank, healer, dps</span>)
 
  +
: [[API GetDungeonForRandomSlot|GetDungeonForRandomSlot]](<span class="apiarg">randomID, index</span>)
: [[API C_LFGList.CanActiveEntryUseAutoAccept|C_LFGList.CanActiveEntryUseAutoAccept]]() : <span style="font-size:smaller; color:#4ec9b0">canUseAutoAccept</span>
 
  +
: [[API GetGroupMemberCounts|GetGroupMemberCounts]]()
: [[API C_LFGList.CancelApplication|C_LFGList.CancelApplication]](<span style="font-size:smaller; color:#ecbc2a">resultID</span>)
 
  +
: [[API GetNumDungeonForRandomSlot|GetNumDungeonForRandomSlot]](<span class="apiarg">randomID</span>)
: [[API C_LFGList.CanCreateQuestGroup|C_LFGList.CanCreateQuestGroup]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">canCreate</span>
 
  +
: [[API GetNumRandomDungeons|GetNumRandomDungeons]]() - Returns the number of specific dungeons that can be queued for.
  +
: [[API GetRandomDungeonBestChoice|GetRandomDungeonBestChoice]]() - Returns the suggested random dungeon ID.
  +
: [[API GroupHasOfflineMember|GroupHasOfflineMember]]()
  +
: [[API IsAllowedToUserTeleport|IsAllowedToUserTeleport]]()
  +
: [[API IsServerControlledBackfill|IsServerControlledBackfill]]()
  +
: [[API RejectProposal|RejectProposal]]() - Rejects an LFG group invite and exits the queue.
  +
: [[API RequestBattlegroundInstanceInfo|RequestBattlegroundInstanceInfo]](<span class="apiarg">index</span>) - Requests data about the available instances of a battleground.
  +
  +
==== LFGList ====
  +
: [[API C_LFGList.AcceptInvite|C_LFGList.AcceptInvite]](<span class="apiarg">resultID</span>)
  +
: [[API C_LFGList.ApplyToGroup|C_LFGList.ApplyToGroup]](<span class="apiarg">resultID, comment, tank, healer, dps</span>)
  +
: [[API C_LFGList.CanActiveEntryUseAutoAccept|C_LFGList.CanActiveEntryUseAutoAccept]]() : <span class="apiret">canUseAutoAccept</span>
  +
: [[API C_LFGList.CancelApplication|C_LFGList.CancelApplication]](<span class="apiarg">resultID</span>)
  +
: [[API C_LFGList.CanCreateQuestGroup|C_LFGList.CanCreateQuestGroup]](<span class="apiarg">questID</span>) : <span class="apiret">canCreate</span>
 
: [[API C_LFGList.ClearApplicationTextFields|C_LFGList.ClearApplicationTextFields]]()
 
: [[API C_LFGList.ClearApplicationTextFields|C_LFGList.ClearApplicationTextFields]]()
 
: [[API C_LFGList.ClearCreationTextFields|C_LFGList.ClearCreationTextFields]]()
 
: [[API C_LFGList.ClearCreationTextFields|C_LFGList.ClearCreationTextFields]]()
Line 2,183: Line 2,260:
 
: [[API C_LFGList.ClearSearchTextFields|C_LFGList.ClearSearchTextFields]]()
 
: [[API C_LFGList.ClearSearchTextFields|C_LFGList.ClearSearchTextFields]]()
 
: [[API C_LFGList.CopyActiveEntryInfoToCreationFields|C_LFGList.CopyActiveEntryInfoToCreationFields]]()
 
: [[API C_LFGList.CopyActiveEntryInfoToCreationFields|C_LFGList.CopyActiveEntryInfoToCreationFields]]()
: <small>HW</small> [[API C_LFGList.CreateListing|C_LFGList.CreateListing]](<span style="font-size:smaller; color:#ecbc2a">activityID, itemLevel, honorLevel [, autoAccept, privateGroup, questID]</span>) - Creates a group finder listing.
+
: <small>HW</small> [[API C_LFGList.CreateListing|C_LFGList.CreateListing]](<span class="apiarg">activityID, itemLevel, honorLevel [, autoAccept, privateGroup, questID]</span>) - Creates a group finder listing.
: [[API C_LFGList.DeclineApplicant|C_LFGList.DeclineApplicant]](<span style="font-size:smaller; color:#ecbc2a">applicantID</span>)
+
: [[API C_LFGList.DeclineApplicant|C_LFGList.DeclineApplicant]](<span class="apiarg">applicantID</span>)
: [[API C_LFGList.DeclineInvite|C_LFGList.DeclineInvite]](<span style="font-size:smaller; color:#ecbc2a">searchResultID</span>)
+
: [[API C_LFGList.DeclineInvite|C_LFGList.DeclineInvite]](<span class="apiarg">searchResultID</span>)
: [[API C_LFGList.GetActiveEntryInfo|C_LFGList.GetActiveEntryInfo]]() : <span style="font-size:smaller; color:#4ec9b0">entryData</span> - Returns information about your currently listed group.
+
: [[API C_LFGList.GetActiveEntryInfo|C_LFGList.GetActiveEntryInfo]]() : <span class="apiret">entryData</span> - Returns information about your currently listed group.
: [[API C_LFGList.GetActivityGroupInfo|C_LFGList.GetActivityGroupInfo]](<span style="font-size:smaller; color:#ecbc2a">groupID</span>) - Returns information about an activity group.
+
: [[API C_LFGList.GetActivityFullName|C_LFGList.GetActivityFullName]](<span class="apiarg">activityID [, questID, showWarmode]</span>) : <span class="apiret">fullName</span>
: [[API C_LFGList.GetActivityIDForQuestID|C_LFGList.GetActivityIDForQuestID]](<span style="font-size:smaller; color:#ecbc2a">questID</span>)
+
: [[API C_LFGList.GetActivityGroupInfo|C_LFGList.GetActivityGroupInfo]](<span class="apiarg">groupID</span>) : <span class="apiret">name, orderIndex</span> - Returns information about an activity group.
: [[API C_LFGList.GetActivityInfo|C_LFGList.GetActivityInfo]](<span style="font-size:smaller; color:#ecbc2a">activityID</span>) - Returns information about an activity for premade groups.
+
: [[API C_LFGList.GetActivityIDForQuestID|C_LFGList.GetActivityIDForQuestID]](<span class="apiarg">questID</span>)
: [[API C_LFGList.GetActivityInfoExpensive|C_LFGList.GetActivityInfoExpensive]](<span style="font-size:smaller; color:#ecbc2a">activityID</span>) - Checks if you are in the zone associated with an activity.
+
: [[API C_LFGList.GetActivityInfoExpensive|C_LFGList.GetActivityInfoExpensive]](<span class="apiarg">activityID</span>) - Checks if you are in the zone associated with an activity.
: [[API C_LFGList.GetApplicantInfo|C_LFGList.GetApplicantInfo]](<span style="font-size:smaller; color:#ecbc2a">applicantID</span>) : <span style="font-size:smaller; color:#4ec9b0">applicantData</span> - Returns status informations and custom message of an applicant.
+
: [[API C_LFGList.GetActivityInfoTable|C_LFGList.GetActivityInfoTable]](<span class="apiarg">activityID [, questID, showWarmode]</span>) : <span class="apiret">activityInfo</span>
: [[API C_LFGList.GetApplicantMemberInfo|C_LFGList.GetApplicantMemberInfo]](<span style="font-size:smaller; color:#ecbc2a">applicantID</span>) - Returns name, class, level and more about an applicant group member.
+
: [[API C_LFGList.GetApplicantDungeonScoreForListing|C_LFGList.GetApplicantDungeonScoreForListing]](<span class="apiarg">localID, applicantIndex, activityID</span>) : <span class="apiret">bestDungeonScoreForListing</span>
: [[API C_LFGList.GetApplicantMemberStats|C_LFGList.GetApplicantMemberStats]](<span style="font-size:smaller; color:#ecbc2a">applicantID</span>) - Returns stats about an applicant group member.
+
: [[API C_LFGList.GetApplicantInfo|C_LFGList.GetApplicantInfo]](<span class="apiarg">applicantID</span>) : <span class="apiret">applicantData</span> - Returns status informations and custom message of an applicant.
  +
: [[API C_LFGList.GetApplicantMemberInfo|C_LFGList.GetApplicantMemberInfo]](<span class="apiarg">applicantID</span>) - Returns name, class, level and more about an applicant group member.
  +
: [[API C_LFGList.GetApplicantMemberStats|C_LFGList.GetApplicantMemberStats]](<span class="apiarg">applicantID</span>) - Returns stats about an applicant group member.
  +
: [[API C_LFGList.GetApplicantPvpRatingInfoForListing|C_LFGList.GetApplicantPvpRatingInfoForListing]](<span class="apiarg">localID, applicantIndex, activityID</span>) : <span class="apiret">pvpRatingInfo</span>
 
: [[API C_LFGList.GetApplicants|C_LFGList.GetApplicants]]() - Returns a table with applicantIDs.
 
: [[API C_LFGList.GetApplicants|C_LFGList.GetApplicants]]() - Returns a table with applicantIDs.
: [[API C_LFGList.GetApplicationInfo|C_LFGList.GetApplicationInfo]](<span style="font-size:smaller; color:#ecbc2a">searchResultID</span>)
+
: [[API C_LFGList.GetApplicationInfo|C_LFGList.GetApplicationInfo]](<span class="apiarg">searchResultID</span>)
 
: [[API C_LFGList.GetApplications|C_LFGList.GetApplications]]()
 
: [[API C_LFGList.GetApplications|C_LFGList.GetApplications]]()
: [[API C_LFGList.GetAvailableActivities|C_LFGList.GetAvailableActivities]](<span style="font-size:smaller; color:#ecbc2a">[categoryID, groupID, filter]</span>) - Returns a list of available activityIDs.
+
: [[API C_LFGList.GetAvailableActivities|C_LFGList.GetAvailableActivities]](<span class="apiarg">[categoryID, groupID, filter]</span>) - Returns a list of available activityIDs.
: [[API C_LFGList.GetAvailableActivityGroups|C_LFGList.GetAvailableActivityGroups]](<span style="font-size:smaller; color:#ecbc2a">categoryID [, filter]</span>) - Returns a list of available groupIDs.
+
: [[API C_LFGList.GetAvailableActivityGroups|C_LFGList.GetAvailableActivityGroups]](<span class="apiarg">categoryID [, filter]</span>) - Returns a list of available groupIDs.
: [[API C_LFGList.GetAvailableCategories|C_LFGList.GetAvailableCategories]](<span style="font-size:smaller; color:#ecbc2a">[filter]</span>) - Returns a list of available categoryIDs.
+
: [[API C_LFGList.GetAvailableCategories|C_LFGList.GetAvailableCategories]](<span class="apiarg">[filter]</span>) - Returns a list of available categoryIDs.
 
: [[API C_LFGList.GetAvailableLanguageSearchFilter|C_LFGList.GetAvailableLanguageSearchFilter]]()
 
: [[API C_LFGList.GetAvailableLanguageSearchFilter|C_LFGList.GetAvailableLanguageSearchFilter]]()
 
: [[API C_LFGList.GetAvailableRoles|C_LFGList.GetAvailableRoles]]()
 
: [[API C_LFGList.GetAvailableRoles|C_LFGList.GetAvailableRoles]]()
: [[API C_LFGList.GetCategoryInfo|C_LFGList.GetCategoryInfo]](<span style="font-size:smaller; color:#ecbc2a">categoryID</span>) - Returns information about a specific category.
 
 
: [[API C_LFGList.GetDefaultLanguageSearchFilter|C_LFGList.GetDefaultLanguageSearchFilter]]()
 
: [[API C_LFGList.GetDefaultLanguageSearchFilter|C_LFGList.GetDefaultLanguageSearchFilter]]()
: [[API C_LFGList.GetFilteredSearchResults|C_LFGList.GetFilteredSearchResults]]() : <span style="font-size:smaller; color:#4ec9b0">totalResultsFound, filteredResults</span>
+
: [[API C_LFGList.GetFilteredSearchResults|C_LFGList.GetFilteredSearchResults]]() : <span class="apiret">totalResultsFound, filteredResults</span>
  +
: [[API C_LFGList.GetKeystoneForActivity|C_LFGList.GetKeystoneForActivity]](<span class="apiarg">activityID</span>) : <span class="apiret">level</span>
 
: [[API C_LFGList.GetLanguageSearchFilter|C_LFGList.GetLanguageSearchFilter]]()
 
: [[API C_LFGList.GetLanguageSearchFilter|C_LFGList.GetLanguageSearchFilter]]()
  +
: [[API C_LFGList.GetLfgCategoryInfo|C_LFGList.GetLfgCategoryInfo]](<span class="apiarg">categoryID</span>) : <span class="apiret">categoryData</span>
 
: [[API C_LFGList.GetNumApplicants|C_LFGList.GetNumApplicants]]()
 
: [[API C_LFGList.GetNumApplicants|C_LFGList.GetNumApplicants]]()
 
: [[API C_LFGList.GetNumApplications|C_LFGList.GetNumApplications]]()
 
: [[API C_LFGList.GetNumApplications|C_LFGList.GetNumApplications]]()
 
: [[API C_LFGList.GetNumInvitedApplicantMembers|C_LFGList.GetNumInvitedApplicantMembers]]()
 
: [[API C_LFGList.GetNumInvitedApplicantMembers|C_LFGList.GetNumInvitedApplicantMembers]]()
 
: [[API C_LFGList.GetNumPendingApplicantMembers|C_LFGList.GetNumPendingApplicantMembers]]()
 
: [[API C_LFGList.GetNumPendingApplicantMembers|C_LFGList.GetNumPendingApplicantMembers]]()
  +
: [[API C_LFGList.GetOwnedKeystoneActivityAndGroupAndLevel|C_LFGList.GetOwnedKeystoneActivityAndGroupAndLevel]](<span class="apiarg">[getTimewalking]</span>) : <span class="apiret">activityID, groupID, keystoneLevel</span>
  +
: [[API C_LFGList.GetPlaystyleString|C_LFGList.GetPlaystyleString]](<span class="apiarg">playstyle, activityInfo</span>) : <span class="apiret">playstyleString</span>
 
: [[API C_LFGList.GetRoleCheckInfo|C_LFGList.GetRoleCheckInfo]]()
 
: [[API C_LFGList.GetRoleCheckInfo|C_LFGList.GetRoleCheckInfo]]()
: [[API C_LFGList.GetSearchResultEncounterInfo|C_LFGList.GetSearchResultEncounterInfo]](<span style="font-size:smaller; color:#ecbc2a">searchResultID</span>)
+
: [[API C_LFGList.GetSearchResultEncounterInfo|C_LFGList.GetSearchResultEncounterInfo]](<span class="apiarg">searchResultID</span>)
: [[API C_LFGList.GetSearchResultFriends|C_LFGList.GetSearchResultFriends]](<span style="font-size:smaller; color:#ecbc2a">searchResultID</span>)
+
: [[API C_LFGList.GetSearchResultFriends|C_LFGList.GetSearchResultFriends]](<span class="apiarg">searchResultID</span>)
: [[API C_LFGList.GetSearchResultInfo|C_LFGList.GetSearchResultInfo]](<span style="font-size:smaller; color:#ecbc2a">searchResultID</span>) : <span style="font-size:smaller; color:#4ec9b0">searchResultData</span>
+
: [[API C_LFGList.GetSearchResultInfo|C_LFGList.GetSearchResultInfo]](<span class="apiarg">searchResultID</span>) : <span class="apiret">searchResultData</span>
: [[API C_LFGList.GetSearchResultMemberCounts|C_LFGList.GetSearchResultMemberCounts]](<span style="font-size:smaller; color:#ecbc2a">searchResultID</span>)
+
: [[API C_LFGList.GetSearchResultMemberCounts|C_LFGList.GetSearchResultMemberCounts]](<span class="apiarg">searchResultID</span>)
: [[API C_LFGList.GetSearchResultMemberInfo|C_LFGList.GetSearchResultMemberInfo]](<span style="font-size:smaller; color:#ecbc2a">searchResultID, memberIndex</span>)
+
: [[API C_LFGList.GetSearchResultMemberInfo|C_LFGList.GetSearchResultMemberInfo]](<span class="apiarg">searchResultID, memberIndex</span>)
: [[API C_LFGList.GetSearchResults|C_LFGList.GetSearchResults]]() : <span style="font-size:smaller; color:#4ec9b0">totalResultsFound, results</span>
+
: [[API C_LFGList.GetSearchResults|C_LFGList.GetSearchResults]]() : <span class="apiret">totalResultsFound, results</span>
: [[API C_LFGList.HasActiveEntryInfo|C_LFGList.HasActiveEntryInfo]]() : <span style="font-size:smaller; color:#4ec9b0">hasActiveEntryInfo</span>
+
: [[API C_LFGList.HasActiveEntryInfo|C_LFGList.HasActiveEntryInfo]]() : <span class="apiret">hasActiveEntryInfo</span>
 
: [[API C_LFGList.HasActivityList|C_LFGList.HasActivityList]]()
 
: [[API C_LFGList.HasActivityList|C_LFGList.HasActivityList]]()
: [[API C_LFGList.HasSearchResultInfo|C_LFGList.HasSearchResultInfo]](<span style="font-size:smaller; color:#ecbc2a">searchResultID</span>) : <span style="font-size:smaller; color:#4ec9b0">hasSearchResultInfo</span>
+
: [[API C_LFGList.HasSearchResultInfo|C_LFGList.HasSearchResultInfo]](<span class="apiarg">searchResultID</span>) : <span class="apiret">hasSearchResultInfo</span>
: [[API C_LFGList.InviteApplicant|C_LFGList.InviteApplicant]](<span style="font-size:smaller; color:#ecbc2a">applicantID</span>)
+
: [[API C_LFGList.InviteApplicant|C_LFGList.InviteApplicant]](<span class="apiarg">applicantID</span>)
 
: [[API C_LFGList.IsCurrentlyApplying|C_LFGList.IsCurrentlyApplying]]()
 
: [[API C_LFGList.IsCurrentlyApplying|C_LFGList.IsCurrentlyApplying]]()
  +
: [[API C_LFGList.IsPlayerAuthenticatedForLFG|C_LFGList.IsPlayerAuthenticatedForLFG]](<span class="apiarg">[activityID]</span>) : <span class="apiret">isAuthenticated</span>
 
: [[API C_LFGList.RefreshApplicants|C_LFGList.RefreshApplicants]]()
 
: [[API C_LFGList.RefreshApplicants|C_LFGList.RefreshApplicants]]()
: [[API C_LFGList.RemoveApplicant|C_LFGList.RemoveApplicant]](<span style="font-size:smaller; color:#ecbc2a">applicantID</span>)
+
: [[API C_LFGList.RemoveApplicant|C_LFGList.RemoveApplicant]](<span class="apiarg">applicantID</span>)
 
: [[API C_LFGList.RemoveListing|C_LFGList.RemoveListing]]()
 
: [[API C_LFGList.RemoveListing|C_LFGList.RemoveListing]]()
: [[API C_LFGList.ReportApplicant|C_LFGList.ReportApplicant]](<span style="font-size:smaller; color:#ecbc2a">applicantID</span>)
+
: [[API C_LFGList.ReportApplicant|C_LFGList.ReportApplicant]](<span class="apiarg">applicantID</span>)
: [[API C_LFGList.ReportSearchResult|C_LFGList.ReportSearchResult]](<span style="font-size:smaller; color:#ecbc2a">resultID, complaintType</span>)
+
: [[API C_LFGList.ReportSearchResult|C_LFGList.ReportSearchResult]](<span class="apiarg">resultID, complaintType</span>)
 
: [[API C_LFGList.RequestAvailableActivities|C_LFGList.RequestAvailableActivities]]()
 
: [[API C_LFGList.RequestAvailableActivities|C_LFGList.RequestAvailableActivities]]()
: [[API C_LFGList.SaveLanguageSearchFilter|C_LFGList.SaveLanguageSearchFilter]](<span style="font-size:smaller; color:#ecbc2a">enabled</span>)
+
: [[API C_LFGList.SaveLanguageSearchFilter|C_LFGList.SaveLanguageSearchFilter]](<span class="apiarg">enabled</span>)
: [[API C_LFGList.Search|C_LFGList.Search]](<span style="font-size:smaller; color:#ecbc2a">categoryID [, filter, preferredFilters, languageFilter]</span>)
+
: [[API C_LFGList.Search|C_LFGList.Search]](<span class="apiarg">categoryID [, filter, preferredFilters, languageFilter]</span>)
: [[API C_LFGList.SetApplicantMemberRole|C_LFGList.SetApplicantMemberRole]](<span style="font-size:smaller; color:#ecbc2a">applicantID, memberIndex, role</span>)
+
: [[API C_LFGList.SetApplicantMemberRole|C_LFGList.SetApplicantMemberRole]](<span class="apiarg">applicantID, memberIndex, role</span>)
: [[API C_LFGList.SetSearchToActivity|C_LFGList.SetSearchToActivity]](<span style="font-size:smaller; color:#ecbc2a">activityID</span>)
+
: [[API C_LFGList.SetEntryTitle|C_LFGList.SetEntryTitle]](<span class="apiarg">activityID, groupID [, playstyle]</span>)
: [[API C_LFGList.SetSearchToQuestID|C_LFGList.SetSearchToQuestID]](<span style="font-size:smaller; color:#ecbc2a">questID</span>)
+
: [[API C_LFGList.SetSearchToActivity|C_LFGList.SetSearchToActivity]](<span class="apiarg">activityID</span>)
: [[API C_LFGList.UpdateListing|C_LFGList.UpdateListing]](<span style="font-size:smaller; color:#ecbc2a">lfgID, itemLevel, honorLevel, autoAccept, private [, questID]</span>)
+
: [[API C_LFGList.SetSearchToQuestID|C_LFGList.SetSearchToQuestID]](<span class="apiarg">questID</span>)
  +
: [[API C_LFGList.UpdateListing|C_LFGList.UpdateListing]](<span class="apiarg">lfgID, itemLevel, honorLevel, autoAccept, private [, questID]</span>)
: [[API AcceptProposal|AcceptProposal]]() - Accept an LFD group invite and enter the dungeon.
 
  +
: [[API C_LFGList.ValidateRequiredDungeonScore|C_LFGList.ValidateRequiredDungeonScore]](<span class="apiarg">dungeonScore</span>) : <span class="apiret">passes</span>
  +
: [[API C_LFGList.ValidateRequiredPvpRatingForActivity|C_LFGList.ValidateRequiredPvpRatingForActivity]](<span class="apiarg">activityID, rating</span>) : <span class="apiret">passes</span>
  +
: <small>DEPRECATED</small> [[API C_LFGList.GetActivityInfo|C_LFGList.GetActivityInfo]](<span class="apiarg">activityID</span>) - Returns information about an activity for premade groups.
  +
: <small>DEPRECATED</small> [[API C_LFGList.GetCategoryInfo|C_LFGList.GetCategoryInfo]](<span class="apiarg">categoryID</span>) - Returns information about a specific category.
  +
  +
==== LFG ====
  +
LFG is used for for generic functions/values that may be used for LFD, LFR, and any other LF_ system we may implement in the future.<sup>[https://github.com/Gethe/wow-ui-source/blob/live/Interface/FrameXML/LFGFrame.lua]</sup>
 
: [[API CanPartyLFGBackfill|CanPartyLFGBackfill]]() - Returns whether the party is eligible to recruit additional members from the LFG pool.
 
: [[API CanPartyLFGBackfill|CanPartyLFGBackfill]]() - Returns whether the party is eligible to recruit additional members from the LFG pool.
: [[API ClearAllLFGDungeons|ClearAllLFGDungeons]](<span style="font-size:smaller; color:#ecbc2a">category</span>)
+
: [[API ClearAllLFGDungeons|ClearAllLFGDungeons]](<span class="apiarg">category</span>)
: [[API CompleteLFGReadyCheck|CompleteLFGReadyCheck]](<span style="font-size:smaller; color:#ecbc2a">isReady</span>)
+
: [[API CompleteLFGReadyCheck|CompleteLFGReadyCheck]](<span class="apiarg">isReady</span>)
: [[API CompleteLFGRoleCheck|CompleteLFGRoleCheck]](<span style="font-size:smaller; color:#ecbc2a">isReady</span>) - Returns true if the role check was successful.
+
: [[API CompleteLFGRoleCheck|CompleteLFGRoleCheck]](<span class="apiarg">isReady</span>) - Returns true if the role check was successful.
: [[API DungeonAppearsInRandomLFD|DungeonAppearsInRandomLFD]](<span style="font-size:smaller; color:#ecbc2a">dungeonID</span>)
 
: [[API GetDungeonForRandomSlot|GetDungeonForRandomSlot]](<span style="font-size:smaller; color:#ecbc2a">randomID, index</span>)
 
: [[API GetDungeonInfo|GetDungeonInfo]]()
 
: [[API GetGroupMemberCounts|GetGroupMemberCounts]]()
 
: [[API GetLFDChoiceCollapseState|GetLFDChoiceCollapseState]](<span style="font-size:smaller; color:#ecbc2a">[LFGCollapseList]</span>)
 
: [[API GetLFDChoiceEnabledState|GetLFDChoiceEnabledState]](<span style="font-size:smaller; color:#ecbc2a">[LFGEnabledList]</span>)
 
: [[API GetLFDChoiceOrder|GetLFDChoiceOrder]](<span style="font-size:smaller; color:#ecbc2a">[LFDDungeonList]</span>)
 
: [[API GetLFDLockInfo|GetLFDLockInfo]](<span style="font-size:smaller; color:#ecbc2a">dungeonID, playerIndex</span>)
 
: [[API GetLFDLockPlayerCount|GetLFDLockPlayerCount]]()
 
: [[API GetLFDRoleLockInfo|GetLFDRoleLockInfo]](<span style="font-size:smaller; color:#ecbc2a">dungeonID, roleID</span>)
 
: [[API GetLFDRoleRestrictions|GetLFDRoleRestrictions]](<span style="font-size:smaller; color:#ecbc2a">dungeonID</span>)
 
 
: [[API GetLFGBootProposal|GetLFGBootProposal]]() - Returns info about a LFG Kick vote in progress.
 
: [[API GetLFGBootProposal|GetLFGBootProposal]]() - Returns info about a LFG Kick vote in progress.
: [[API GetLFGCategoryForID|GetLFGCategoryForID]](<span style="font-size:smaller; color:#ecbc2a">partySlot</span>)
+
: [[API GetLFGCategoryForID|GetLFGCategoryForID]](<span class="apiarg">partySlot</span>)
 
: [[API GetLFGCompletionReward|GetLFGCompletionReward]]()
 
: [[API GetLFGCompletionReward|GetLFGCompletionReward]]()
: [[API GetLFGCompletionRewardItem|GetLFGCompletionRewardItem]](<span style="font-size:smaller; color:#ecbc2a">rewardIndex</span>)
+
: [[API GetLFGCompletionRewardItem|GetLFGCompletionRewardItem]](<span class="apiarg">rewardIndex</span>)
: [[API GetLFGCompletionRewardItemLink|GetLFGCompletionRewardItemLink]](<span style="font-size:smaller; color:#ecbc2a">rewardIndex</span>)
+
: [[API GetLFGCompletionRewardItemLink|GetLFGCompletionRewardItemLink]](<span class="apiarg">rewardIndex</span>)
 
: [[API GetLFGDeserterExpiration|GetLFGDeserterExpiration]]() - Returns the time at which you may once again use the dungeon finder after prematurely leaving a group.
 
: [[API GetLFGDeserterExpiration|GetLFGDeserterExpiration]]() - Returns the time at which you may once again use the dungeon finder after prematurely leaving a group.
: [[API GetLFGDungeonEncounterInfo|GetLFGDungeonEncounterInfo]](<span style="font-size:smaller; color:#ecbc2a">dungeonID, encounterIndex</span>)
+
: [[API GetLFGDungeonEncounterInfo|GetLFGDungeonEncounterInfo]](<span class="apiarg">dungeonID, encounterIndex</span>)
: [[API GetLFGDungeonInfo|GetLFGDungeonInfo]](<span style="font-size:smaller; color:#ecbc2a">dungeonID</span>) - Returns dungeon information.
+
: [[API GetLFGDungeonInfo|GetLFGDungeonInfo]](<span class="apiarg">dungeonID</span>) - Returns dungeon information.
: [[API GetLFGDungeonNumEncounters|GetLFGDungeonNumEncounters]](<span style="font-size:smaller; color:#ecbc2a">dungeonID</span>)
+
: [[API GetLFGDungeonNumEncounters|GetLFGDungeonNumEncounters]](<span class="apiarg">dungeonID</span>)
: [[API GetLFGDungeonRewardCapBarInfo|GetLFGDungeonRewardCapBarInfo]](<span style="font-size:smaller; color:#ecbc2a">dungeonID</span>) - Returns information on the weekly point limits.
+
: [[API GetLFGDungeonRewardCapBarInfo|GetLFGDungeonRewardCapBarInfo]](<span class="apiarg">dungeonID</span>) - Returns information on the weekly point limits.
: [[API GetLFGDungeonRewardCapInfo|GetLFGDungeonRewardCapInfo]](<span style="font-size:smaller; color:#ecbc2a">dungeonID</span>)
+
: [[API GetLFGDungeonRewardCapInfo|GetLFGDungeonRewardCapInfo]](<span class="apiarg">dungeonID</span>)
: [[API GetLFGDungeonRewardInfo|GetLFGDungeonRewardInfo]](<span style="font-size:smaller; color:#ecbc2a">dungeonID, rewardIndex</span>)
+
: [[API GetLFGDungeonRewardInfo|GetLFGDungeonRewardInfo]](<span class="apiarg">dungeonID, rewardIndex</span>)
: [[API GetLFGDungeonRewardLink|GetLFGDungeonRewardLink]](<span style="font-size:smaller; color:#ecbc2a">dungeonID, rewardIndex</span>)
+
: [[API GetLFGDungeonRewardLink|GetLFGDungeonRewardLink]](<span class="apiarg">dungeonID, rewardIndex</span>)
: [[API GetLFGDungeonRewards|GetLFGDungeonRewards]](<span style="font-size:smaller; color:#ecbc2a">dungeonID</span>)
+
: [[API GetLFGDungeonRewards|GetLFGDungeonRewards]](<span class="apiarg">dungeonID</span>)
: [[API GetLFGDungeonShortageRewardInfo|GetLFGDungeonShortageRewardInfo]](<span style="font-size:smaller; color:#ecbc2a">dungeonID, shortageIndex, rewardIndex</span>)
+
: [[API GetLFGDungeonShortageRewardInfo|GetLFGDungeonShortageRewardInfo]](<span class="apiarg">dungeonID, shortageIndex, rewardIndex</span>)
: [[API GetLFGDungeonShortageRewardLink|GetLFGDungeonShortageRewardLink]](<span style="font-size:smaller; color:#ecbc2a">dungeonID, shortageIndex, rewardIndex</span>)
+
: [[API GetLFGDungeonShortageRewardLink|GetLFGDungeonShortageRewardLink]](<span class="apiarg">dungeonID, shortageIndex, rewardIndex</span>)
: [[API GetLFGInfoServer|GetLFGInfoServer]](<span style="font-size:smaller; color:#ecbc2a">category [, lfgID]</span>)
+
: [[API GetLFGInfoServer|GetLFGInfoServer]](<span class="apiarg">category [, lfgID]</span>)
: [[API GetLFGInviteRoleAvailability|GetLFGInviteRoleAvailability]](<span style="font-size:smaller; color:#ecbc2a">roleID</span>)
+
: [[API GetLFGInviteRoleAvailability|GetLFGInviteRoleAvailability]](<span class="apiarg">roleID</span>)
: [[API GetLFGInviteRoleRestrictions|GetLFGInviteRoleRestrictions]](<span style="font-size:smaller; color:#ecbc2a">roleID</span>)
+
: [[API GetLFGInviteRoleRestrictions|GetLFGInviteRoleRestrictions]](<span class="apiarg">roleID</span>)
 
: [[API GetLFGProposal|GetLFGProposal]]()
 
: [[API GetLFGProposal|GetLFGProposal]]()
: [[API GetLFGProposalEncounter|GetLFGProposalEncounter]](<span style="font-size:smaller; color:#ecbc2a">encounterIndex</span>)
+
: [[API GetLFGProposalEncounter|GetLFGProposalEncounter]](<span class="apiarg">encounterIndex</span>)
: [[API GetLFGProposalMember|GetLFGProposalMember]](<span style="font-size:smaller; color:#ecbc2a">memberIndex</span>) - Returns info about the players in the LFG proposal.
+
: [[API GetLFGProposalMember|GetLFGProposalMember]](<span class="apiarg">memberIndex</span>) - Returns info about the players in the LFG proposal.
: [[API GetLFGQueuedList|GetLFGQueuedList]](<span style="font-size:smaller; color:#ecbc2a">category [, table]</span>)
+
: [[API GetLFGQueuedList|GetLFGQueuedList]](<span class="apiarg">category [, table]</span>)
: [[API GetLFGQueueStats|GetLFGQueueStats]](<span style="font-size:smaller; color:#ecbc2a">category [, lfgID]</span>) - Returns current state and wait times for being in queue.
+
: [[API GetLFGQueueStats|GetLFGQueueStats]](<span class="apiarg">category [, lfgID]</span>) - Returns current state and wait times for being in queue.
 
: [[API GetLFGRandomCooldownExpiration|GetLFGRandomCooldownExpiration]]() - Returns the time at which you may once again queue for a random dungeon.
 
: [[API GetLFGRandomCooldownExpiration|GetLFGRandomCooldownExpiration]]() - Returns the time at which you may once again queue for a random dungeon.
: [[API GetLFGRandomDungeonInfo|GetLFGRandomDungeonInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns information about a random dungeon queue.
+
: [[API GetLFGRandomDungeonInfo|GetLFGRandomDungeonInfo]](<span class="apiarg">index</span>) - Returns information about a random dungeon queue.
 
: [[API GetLFGReadyCheckUpdate|GetLFGReadyCheckUpdate]]()
 
: [[API GetLFGReadyCheckUpdate|GetLFGReadyCheckUpdate]]()
 
: [[API GetLFGReadyCheckUpdateBattlegroundInfo|GetLFGReadyCheckUpdateBattlegroundInfo]]()
 
: [[API GetLFGReadyCheckUpdateBattlegroundInfo|GetLFGReadyCheckUpdateBattlegroundInfo]]()
 
: [[API GetLFGRoles|GetLFGRoles]]() - Returns the roles you signed up as, not the role you were assigned.
 
: [[API GetLFGRoles|GetLFGRoles]]() - Returns the roles you signed up as, not the role you were assigned.
: [[API GetLFGRoleShortageRewards|GetLFGRoleShortageRewards]](<span style="font-size:smaller; color:#ecbc2a">dungeonID, shortageIndex</span>) - Returns information about the LFG Call to Arms rewards.
+
: [[API GetLFGRoleShortageRewards|GetLFGRoleShortageRewards]](<span class="apiarg">dungeonID, shortageIndex</span>) - Returns information about the LFG Call to Arms rewards.
 
: [[API GetLFGRoleUpdate|GetLFGRoleUpdate]]()
 
: [[API GetLFGRoleUpdate|GetLFGRoleUpdate]]()
 
: [[API GetLFGRoleUpdateBattlegroundInfo|GetLFGRoleUpdateBattlegroundInfo]]()
 
: [[API GetLFGRoleUpdateBattlegroundInfo|GetLFGRoleUpdateBattlegroundInfo]]()
: [[API GetLFGRoleUpdateMember|GetLFGRoleUpdateMember]](<span style="font-size:smaller; color:#ecbc2a">memberIndex</span>)
+
: [[API GetLFGRoleUpdateMember|GetLFGRoleUpdateMember]](<span class="apiarg">memberIndex</span>)
: [[API GetLFGRoleUpdateSlot|GetLFGRoleUpdateSlot]](<span style="font-size:smaller; color:#ecbc2a">slotIndex</span>)
+
: [[API GetLFGRoleUpdateSlot|GetLFGRoleUpdateSlot]](<span class="apiarg">slotIndex</span>)
: [[API GetLFGSuspendedPlayers|GetLFGSuspendedPlayers]](<span style="font-size:smaller; color:#ecbc2a">category</span>)
+
: [[API GetLFGSuspendedPlayers|GetLFGSuspendedPlayers]](<span class="apiarg">category</span>)
: [[API GetNumDungeonForRandomSlot|GetNumDungeonForRandomSlot]](<span style="font-size:smaller; color:#ecbc2a">randomID</span>)
 
: [[API GetNumRandomDungeons|GetNumRandomDungeons]]() - Returns the number of specific dungeons that can be queued for.
 
 
: [[API GetPartyLFGBackfillInfo|GetPartyLFGBackfillInfo]]() - Returns information about the dungeon for which you may currently recruit additional members from the LFG pool.
 
: [[API GetPartyLFGBackfillInfo|GetPartyLFGBackfillInfo]]() - Returns information about the dungeon for which you may currently recruit additional members from the LFG pool.
 
: [[API GetPartyLFGID|GetPartyLFGID]]()
 
: [[API GetPartyLFGID|GetPartyLFGID]]()
: [[API GetRandomDungeonBestChoice|GetRandomDungeonBestChoice]]() - Returns the suggested random dungeon ID.
 
: [[API GroupHasOfflineMember|GroupHasOfflineMember]]()
 
 
: [[API HasLFGRestrictions|HasLFGRestrictions]]() - Returns whether the player is in a random party formed by the dungeon finder system.
 
: [[API HasLFGRestrictions|HasLFGRestrictions]]() - Returns whether the player is in a random party formed by the dungeon finder system.
: [[API IsAllowedToUserTeleport|IsAllowedToUserTeleport]]()
 
 
: [[API IsInLFGDungeon|IsInLFGDungeon]]()
 
: [[API IsInLFGDungeon|IsInLFGDungeon]]()
 
: [[API IsLFGComplete|IsLFGComplete]]() - Returns whether you have currently finished a Dungeon Finder instance.
 
: [[API IsLFGComplete|IsLFGComplete]]() - Returns whether you have currently finished a Dungeon Finder instance.
 
: [[API IsLFGDungeonJoinable|IsLFGDungeonJoinable]]() - Returns whether you can queue for a particular dungeon
 
: [[API IsLFGDungeonJoinable|IsLFGDungeonJoinable]]() - Returns whether you can queue for a particular dungeon
 
: [[API IsPartyLFG|IsPartyLFG]]()
 
: [[API IsPartyLFG|IsPartyLFG]]()
  +
: [[API JoinLFG|JoinLFG]](<span class="apiarg">category</span>)
: [[API IsServerControlledBackfill|IsServerControlledBackfill]]()
 
: [[API JoinLFG|JoinLFG]](<span style="font-size:smaller; color:#ecbc2a">category</span>)
+
: [[API JoinSingleLFG|JoinSingleLFG]](<span class="apiarg">category, lfgID</span>)
: [[API JoinSingleLFG|JoinSingleLFG]](<span style="font-size:smaller; color:#ecbc2a">category, lfgID</span>)
+
: [[API LeaveLFG|LeaveLFG]](<span class="apiarg">category</span>)
: [[API LeaveLFG|LeaveLFG]](<span style="font-size:smaller; color:#ecbc2a">category</span>)
+
: [[API LeaveSingleLFG|LeaveSingleLFG]](<span class="apiarg">category, lfgID</span>)
  +
: [[API LFGTeleport|LFGTeleport]](<span class="apiarg">[toSafety]</span>) - Teleports the player to or from a dungeon.
: [[API LeaveSingleLFG|LeaveSingleLFG]](<span style="font-size:smaller; color:#ecbc2a">category, lfgID</span>)
 
: [[API LFGTeleport|LFGTeleport]](<span style="font-size:smaller; color:#ecbc2a">[toSafety]</span>) - Teleports the player to or from a dungeon.
 
 
: [[API PartyLFGStartBackfill|PartyLFGStartBackfill]]()
 
: [[API PartyLFGStartBackfill|PartyLFGStartBackfill]]()
 
: [[API RefreshLFGList|RefreshLFGList]]()
 
: [[API RefreshLFGList|RefreshLFGList]]()
  +
: [[API SearchLFGGetEncounterResults|SearchLFGGetEncounterResults]](<span class="apiarg">index, encounterIndex</span>)
: [[API RejectProposal|RejectProposal]]() - Rejects an LFG group invite and exits the queue.
 
: [[API RequestBattlegroundInstanceInfo|RequestBattlegroundInstanceInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Requests data about the available instances of a battleground.
 
: [[API RequestLFDPartyLockInfo|RequestLFDPartyLockInfo]]()
 
: [[API RequestLFDPlayerLockInfo|RequestLFDPlayerLockInfo]]()
 
: [[API SearchLFGGetEncounterResults|SearchLFGGetEncounterResults]](<span style="font-size:smaller; color:#ecbc2a">index, encounterIndex</span>)
 
 
: [[API SearchLFGGetJoinedID|SearchLFGGetJoinedID]]() - Returns the currently selected raid ID.
 
: [[API SearchLFGGetJoinedID|SearchLFGGetJoinedID]]() - Returns the currently selected raid ID.
 
: [[API SearchLFGGetNumResults|SearchLFGGetNumResults]]()
 
: [[API SearchLFGGetNumResults|SearchLFGGetNumResults]]()
: [[API SearchLFGGetPartyResults|SearchLFGGetPartyResults]](<span style="font-size:smaller; color:#ecbc2a">[index, memberIndex]</span>)
+
: [[API SearchLFGGetPartyResults|SearchLFGGetPartyResults]](<span class="apiarg">[index, memberIndex]</span>)
: [[API SearchLFGGetResults|SearchLFGGetResults]](<span style="font-size:smaller; color:#ecbc2a">[index]</span>)
+
: [[API SearchLFGGetResults|SearchLFGGetResults]](<span class="apiarg">[index]</span>)
: <small>HW</small> [[API SearchLFGJoin|SearchLFGJoin]](<span style="font-size:smaller; color:#ecbc2a">typeID, lfgID</span>)
 
 
: [[API SearchLFGLeave|SearchLFGLeave]]() - Removes yourself from looking through the Raid Browser. Equivalent to selecting "none" in the Raid Browser.
 
: [[API SearchLFGLeave|SearchLFGLeave]]() - Removes yourself from looking through the Raid Browser. Equivalent to selecting "none" in the Raid Browser.
: [[API SearchLFGSort|SearchLFGSort]](<span style="font-size:smaller; color:#ecbc2a">type</span>)
+
: <small>HW</small> [[API SearchLFGJoin|SearchLFGJoin]](<span class="apiarg">typeID, lfgID</span>)
: [[API SetLFGBootVote|SetLFGBootVote]](<span style="font-size:smaller; color:#ecbc2a">shouldKick</span>) - Responds to a vote-kick.
+
: [[API SearchLFGSort|SearchLFGSort]](<span class="apiarg">type</span>)
: [[API SetLFGComment|SetLFGComment]](<span style="font-size:smaller; color:#ecbc2a">[comment]</span>) - Sets the comment in the raid browser.
+
: [[API SetLFGBootVote|SetLFGBootVote]](<span class="apiarg">shouldKick</span>) - Responds to a vote-kick.
  +
: [[API SetLFGComment|SetLFGComment]](<span class="apiarg">[comment]</span>) - Sets the comment in the raid browser.
: [[API SetLFGDungeon|SetLFGDungeon]](<span style="font-size:smaller; color:#ecbc2a">LE_LFG_CATEGORY, type</span>)
 
: [[API SetLFGDungeonEnabled|SetLFGDungeonEnabled]](<span style="font-size:smaller; color:#ecbc2a">dungeonID, isEnabled</span>)
+
: [[API SetLFGDungeon|SetLFGDungeon]](<span class="apiarg">LE_LFG_CATEGORY, type</span>)
: [[API SetLFGHeaderCollapsed|SetLFGHeaderCollapsed]](<span style="font-size:smaller; color:#ecbc2a">headerID, isCollapsed</span>)
+
: [[API SetLFGDungeonEnabled|SetLFGDungeonEnabled]](<span class="apiarg">dungeonID, isEnabled</span>)
  +
: [[API SetLFGHeaderCollapsed|SetLFGHeaderCollapsed]](<span class="apiarg">headerID, isCollapsed</span>)
: [[API SetLFGRoles|SetLFGRoles]](<span style="font-size:smaller; color:#ecbc2a">[leader, tank, healer, dps]</span>) - Changes the selected roles.
 
  +
: [[API SetLFGRoles|SetLFGRoles]](<span class="apiarg">[leader, tank, healer, dps]</span>) - Changes the selected roles.
   
==== Raid Finder ====
+
==== LFD ====
  +
LFD is used for Dungeon-specific functions and values
  +
: [[API DungeonAppearsInRandomLFD|DungeonAppearsInRandomLFD]](<span class="apiarg">dungeonID</span>)
  +
: [[API GetLFDChoiceCollapseState|GetLFDChoiceCollapseState]](<span class="apiarg">[LFGCollapseList]</span>)
  +
: [[API GetLFDChoiceEnabledState|GetLFDChoiceEnabledState]](<span class="apiarg">[LFGEnabledList]</span>)
  +
: [[API GetLFDChoiceOrder|GetLFDChoiceOrder]](<span class="apiarg">[LFDDungeonList]</span>)
  +
: [[API GetLFDLockInfo|GetLFDLockInfo]](<span class="apiarg">dungeonID, playerIndex</span>)
  +
: [[API GetLFDLockPlayerCount|GetLFDLockPlayerCount]]()
  +
: [[API GetLFDRoleLockInfo|GetLFDRoleLockInfo]](<span class="apiarg">dungeonID, roleID</span>)
  +
: [[API GetLFDRoleRestrictions|GetLFDRoleRestrictions]](<span class="apiarg">dungeonID</span>)
  +
: [[API RequestLFDPartyLockInfo|RequestLFDPartyLockInfo]]()
  +
: [[API RequestLFDPlayerLockInfo|RequestLFDPlayerLockInfo]]()
  +
  +
==== Flex Raid ====
 
: [[API GetBestFlexRaidChoice|GetBestFlexRaidChoice]]()
 
: [[API GetBestFlexRaidChoice|GetBestFlexRaidChoice]]()
  +
: [[API GetFlexRaidDungeonInfo|GetFlexRaidDungeonInfo]](<span class="apiarg">index</span>)
: [[API GetBestRFChoice|GetBestRFChoice]]() - Returns the suggested/default dungeonId for the Raid Finder.
 
: [[API GetFlexRaidDungeonInfo|GetFlexRaidDungeonInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
 
: [[API GetLFRChoiceOrder|GetLFRChoiceOrder]](<span style="font-size:smaller; color:#ecbc2a">[LFRRaidList]</span>)
 
 
: [[API GetNumFlexRaidDungeons|GetNumFlexRaidDungeons]]()
 
: [[API GetNumFlexRaidDungeons|GetNumFlexRaidDungeons]]()
  +
  +
==== Raid Finder ====
  +
: [[API GetBestRFChoice|GetBestRFChoice]]() - Returns the suggested/default dungeonId for the Raid Finder.
  +
: [[API GetLFRChoiceOrder|GetLFRChoiceOrder]](<span class="apiarg">[LFRRaidList]</span>)
 
: [[API GetNumRFDungeons|GetNumRFDungeons]]()
 
: [[API GetNumRFDungeons|GetNumRFDungeons]]()
: [[API GetRFDungeonInfo|GetRFDungeonInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetRFDungeonInfo|GetRFDungeonInfo]](<span class="apiarg">index</span>)
   
 
==== Quick Join ====
 
==== Quick Join ====
 
[[Quick Join]] was added in [[Patch 7.1.0]]
 
[[Quick Join]] was added in [[Patch 7.1.0]]
: [[API C_PartyInfo.ConfirmRequestInviteFromUnit|C_PartyInfo.ConfirmRequestInviteFromUnit]](<span style="font-size:smaller; color:#ecbc2a">targetName [, tank, healer, dps]</span>)
+
: [[API C_PartyInfo.ConfirmRequestInviteFromUnit|C_PartyInfo.ConfirmRequestInviteFromUnit]](<span class="apiarg">targetName [, tank, healer, dps]</span>)
: [[API C_PartyInfo.GetActiveCategories|C_PartyInfo.GetActiveCategories]]() : <span style="font-size:smaller; color:#4ec9b0">categories</span>
+
: [[API C_PartyInfo.GetActiveCategories|C_PartyInfo.GetActiveCategories]]() : <span class="apiret">categories</span>
: [[API C_PartyInfo.GetInviteConfirmationInvalidQueues|C_PartyInfo.GetInviteConfirmationInvalidQueues]](<span style="font-size:smaller; color:#ecbc2a">inviteGUID</span>) : <span style="font-size:smaller; color:#4ec9b0">invalidQueues</span>
+
: [[API C_PartyInfo.GetInviteConfirmationInvalidQueues|C_PartyInfo.GetInviteConfirmationInvalidQueues]](<span class="apiarg">inviteGUID</span>) : <span class="apiret">invalidQueues</span>
: [[API C_PartyInfo.GetInviteReferralInfo|C_PartyInfo.GetInviteReferralInfo]](<span style="font-size:smaller; color:#ecbc2a">inviteGUID</span>) : <span style="font-size:smaller; color:#4ec9b0">outReferredByGuid, outReferredByName, outRelationType, outIsQuickJoin, ...</span> - Returns info for Quick join invites.
+
: [[API C_PartyInfo.GetInviteReferralInfo|C_PartyInfo.GetInviteReferralInfo]](<span class="apiarg">inviteGUID</span>) : <span class="apiret">outReferredByGuid, outReferredByName, outRelationType, outIsQuickJoin, ...</span> - Returns info for Quick join invites.
: [[API C_PartyInfo.RequestInviteFromUnit|C_PartyInfo.RequestInviteFromUnit]](<span style="font-size:smaller; color:#ecbc2a">targetName [, tank, healer, dps]</span>)
+
: [[API C_PartyInfo.RequestInviteFromUnit|C_PartyInfo.RequestInviteFromUnit]](<span class="apiarg">targetName [, tank, healer, dps]</span>)
: [[API C_SocialQueue.GetAllGroups|C_SocialQueue.GetAllGroups]](<span style="font-size:smaller; color:#ecbc2a">[allowNonJoinable, allowNonQueuedGroups]</span>) : <span style="font-size:smaller; color:#4ec9b0">groupGUIDs</span>
+
: [[API C_SocialQueue.GetAllGroups|C_SocialQueue.GetAllGroups]](<span class="apiarg">[allowNonJoinable, allowNonQueuedGroups]</span>) : <span class="apiret">groupGUIDs</span>
: [[API C_SocialQueue.GetConfig|C_SocialQueue.GetConfig]]() : <span style="font-size:smaller; color:#4ec9b0">config</span>
+
: [[API C_SocialQueue.GetConfig|C_SocialQueue.GetConfig]]() : <span class="apiret">config</span>
: [[API C_SocialQueue.GetGroupForPlayer|C_SocialQueue.GetGroupForPlayer]](<span style="font-size:smaller; color:#ecbc2a">playerGUID</span>) : <span style="font-size:smaller; color:#4ec9b0">groupGUID, isSoloQueueParty</span>
+
: [[API C_SocialQueue.GetGroupForPlayer|C_SocialQueue.GetGroupForPlayer]](<span class="apiarg">playerGUID</span>) : <span class="apiret">groupGUID, isSoloQueueParty</span>
: [[API C_SocialQueue.GetGroupInfo|C_SocialQueue.GetGroupInfo]](<span style="font-size:smaller; color:#ecbc2a">groupGUID</span>) : <span style="font-size:smaller; color:#4ec9b0">canJoin, numQueues, needTank, needHealer, needDamage, isSoloQueueParty, ...</span>
+
: [[API C_SocialQueue.GetGroupInfo|C_SocialQueue.GetGroupInfo]](<span class="apiarg">groupGUID</span>) : <span class="apiret">canJoin, numQueues, needTank, needHealer, needDamage, isSoloQueueParty, ...</span>
: [[API C_SocialQueue.GetGroupMembers|C_SocialQueue.GetGroupMembers]](<span style="font-size:smaller; color:#ecbc2a">groupGUID</span>) : <span style="font-size:smaller; color:#4ec9b0">groupMembers</span>
+
: [[API C_SocialQueue.GetGroupMembers|C_SocialQueue.GetGroupMembers]](<span class="apiarg">groupGUID</span>) : <span class="apiret">groupMembers</span>
: [[API C_SocialQueue.GetGroupQueues|C_SocialQueue.GetGroupQueues]](<span style="font-size:smaller; color:#ecbc2a">groupGUID</span>) : <span style="font-size:smaller; color:#4ec9b0">queues</span>
+
: [[API C_SocialQueue.GetGroupQueues|C_SocialQueue.GetGroupQueues]](<span class="apiarg">groupGUID</span>) : <span class="apiret">queues</span>
: [[API C_SocialQueue.RequestToJoin|C_SocialQueue.RequestToJoin]](<span style="font-size:smaller; color:#ecbc2a">groupGUID [, applyAsTank, applyAsHealer, applyAsDamage]</span>) : <span style="font-size:smaller; color:#4ec9b0">requestSuccessful</span>
+
: [[API C_SocialQueue.RequestToJoin|C_SocialQueue.RequestToJoin]](<span class="apiarg">groupGUID [, applyAsTank, applyAsHealer, applyAsDamage]</span>) : <span class="apiret">requestSuccessful</span>
: [[API C_SocialQueue.SignalToastDisplayed|C_SocialQueue.SignalToastDisplayed]](<span style="font-size:smaller; color:#ecbc2a">groupGUID, priority</span>)
+
: [[API C_SocialQueue.SignalToastDisplayed|C_SocialQueue.SignalToastDisplayed]](<span class="apiarg">groupGUID, priority</span>)
   
 
=== Guild ===
 
=== Guild ===
: [[API C_GuildInfo.CanEditOfficerNote|C_GuildInfo.CanEditOfficerNote]]() : <span style="font-size:smaller; color:#4ec9b0">canEditOfficerNote</span> - Returns if the player is allowed to edit guild officer notes.
+
: [[API C_GuildInfo.CanEditOfficerNote|C_GuildInfo.CanEditOfficerNote]]() : <span class="apiret">canEditOfficerNote</span> - Returns if the player is allowed to edit guild officer notes.
: [[API C_GuildInfo.CanSpeakInGuildChat|C_GuildInfo.CanSpeakInGuildChat]]() : <span style="font-size:smaller; color:#4ec9b0">canSpeakInGuildChat</span> - Returns if the player is allowed to use guild chat.
+
: [[API C_GuildInfo.CanSpeakInGuildChat|C_GuildInfo.CanSpeakInGuildChat]]() : <span class="apiret">canSpeakInGuildChat</span> - Returns if the player is allowed to use guild chat.
: [[API C_GuildInfo.CanViewOfficerNote|C_GuildInfo.CanViewOfficerNote]]() : <span style="font-size:smaller; color:#4ec9b0">canViewOfficerNote</span> - Returns if the player is allowed to view guild officer notes.
+
: [[API C_GuildInfo.CanViewOfficerNote|C_GuildInfo.CanViewOfficerNote]]() : <span class="apiret">canViewOfficerNote</span> - Returns if the player is allowed to view guild officer notes.
: [[API C_GuildInfo.GetGuildNewsInfo|C_GuildInfo.GetGuildNewsInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) : <span style="font-size:smaller; color:#4ec9b0">newsInfo</span>
+
: [[API C_GuildInfo.GetGuildNewsInfo|C_GuildInfo.GetGuildNewsInfo]](<span class="apiarg">index</span>) : <span class="apiret">newsInfo</span>
: [[API C_GuildInfo.GetGuildRankOrder|C_GuildInfo.GetGuildRankOrder]](<span style="font-size:smaller; color:#ecbc2a">guid</span>) : <span style="font-size:smaller; color:#4ec9b0">rankOrder</span> - Returns the current rank of a guild member.
+
: [[API C_GuildInfo.GetGuildRankOrder|C_GuildInfo.GetGuildRankOrder]](<span class="apiarg">guid</span>) : <span class="apiret">rankOrder</span> - Returns the current rank of a guild member.
: [[API C_GuildInfo.GetGuildTabardInfo|C_GuildInfo.GetGuildTabardInfo]](<span style="font-size:smaller; color:#ecbc2a">[unit]</span>) : <span style="font-size:smaller; color:#4ec9b0">tabardInfo</span>
+
: [[API C_GuildInfo.GetGuildTabardInfo|C_GuildInfo.GetGuildTabardInfo]](<span class="apiarg">[unit]</span>) : <span class="apiret">tabardInfo</span>
: [[API C_GuildInfo.GuildControlGetRankFlags|C_GuildInfo.GuildControlGetRankFlags]](<span style="font-size:smaller; color:#ecbc2a">rankOrder</span>) : <span style="font-size:smaller; color:#4ec9b0">permissions</span> - Returns the permission flags for a rank index.
+
: [[API C_GuildInfo.GuildControlGetRankFlags|C_GuildInfo.GuildControlGetRankFlags]](<span class="apiarg">rankOrder</span>) : <span class="apiret">permissions</span> - Returns the permission flags for a rank index.
 
: [[API C_GuildInfo.GuildRoster|C_GuildInfo.GuildRoster]]() - Requests updated guild roster information from the server.
 
: [[API C_GuildInfo.GuildRoster|C_GuildInfo.GuildRoster]]() - Requests updated guild roster information from the server.
: [[API C_GuildInfo.IsGuildOfficer|C_GuildInfo.IsGuildOfficer]]() : <span style="font-size:smaller; color:#4ec9b0">isOfficer</span>
+
: [[API C_GuildInfo.IsGuildOfficer|C_GuildInfo.IsGuildOfficer]]() : <span class="apiret">isOfficer</span>
: [[API C_GuildInfo.IsGuildRankAssignmentAllowed|C_GuildInfo.IsGuildRankAssignmentAllowed]](<span style="font-size:smaller; color:#ecbc2a">guid, rankOrder</span>) : <span style="font-size:smaller; color:#4ec9b0">isGuildRankAssignmentAllowed</span>
+
: [[API C_GuildInfo.IsGuildRankAssignmentAllowed|C_GuildInfo.IsGuildRankAssignmentAllowed]](<span class="apiarg">guid, rankOrder</span>) : <span class="apiret">isGuildRankAssignmentAllowed</span>
: [[API C_GuildInfo.QueryGuildMemberRecipes|C_GuildInfo.QueryGuildMemberRecipes]](<span style="font-size:smaller; color:#ecbc2a">guildMemberGUID, skillLineID</span>) - Shows the guild member recipes for a profession.
+
: [[API C_GuildInfo.QueryGuildMemberRecipes|C_GuildInfo.QueryGuildMemberRecipes]](<span class="apiarg">guildMemberGUID, skillLineID</span>) - Shows the guild member recipes for a profession.
: [[API C_GuildInfo.QueryGuildMembersForRecipe|C_GuildInfo.QueryGuildMembersForRecipe]](<span style="font-size:smaller; color:#ecbc2a">skillLineID, recipeSpellID [, recipeLevel]</span>) : <span style="font-size:smaller; color:#4ec9b0">updatedRecipeSpellID</span>
+
: [[API C_GuildInfo.QueryGuildMembersForRecipe|C_GuildInfo.QueryGuildMembersForRecipe]](<span class="apiarg">skillLineID, recipeSpellID [, recipeLevel]</span>) : <span class="apiret">updatedRecipeSpellID</span>
: [[API C_GuildInfo.RemoveFromGuild|C_GuildInfo.RemoveFromGuild]](<span style="font-size:smaller; color:#ecbc2a">guid</span>) - Removes a member from the guild.
+
: [[API C_GuildInfo.RemoveFromGuild|C_GuildInfo.RemoveFromGuild]](<span class="apiarg">guid</span>) - Removes a member from the guild.
: [[API C_GuildInfo.SetGuildRankOrder|C_GuildInfo.SetGuildRankOrder]](<span style="font-size:smaller; color:#ecbc2a">guid, rankOrder</span>) - Sets the guild rank for a member.
+
: [[API C_GuildInfo.SetGuildRankOrder|C_GuildInfo.SetGuildRankOrder]](<span class="apiarg">guid, rankOrder</span>) - Sets the guild rank for a member.
: [[API C_GuildInfo.SetNote|C_GuildInfo.SetNote]](<span style="font-size:smaller; color:#ecbc2a">guid, note, isPublic</span>) - Sets the guild note for a member.
+
: [[API C_GuildInfo.SetNote|C_GuildInfo.SetNote]](<span class="apiarg">guid, note, isPublic</span>) - Sets the guild note for a member.
 
: [[API AcceptGuild|AcceptGuild]]() - The player accepts the invitation to join a guild.
 
: [[API AcceptGuild|AcceptGuild]]() - The player accepts the invitation to join a guild.
: [[API BuyGuildCharter|BuyGuildCharter]](<span style="font-size:smaller; color:#ecbc2a">guildName</span>) - Purchases a guild charter for ''guildName''.
+
: [[API BuyGuildCharter|BuyGuildCharter]](<span class="apiarg">guildName</span>) - Purchases a guild charter for ''guildName''.
 
: [[API CanEditGuildEvent|CanEditGuildEvent]]() - Returns true if you are allowed to edit guild events (in the calendar).
 
: [[API CanEditGuildEvent|CanEditGuildEvent]]() - Returns true if you are allowed to edit guild events (in the calendar).
 
: [[API CanEditGuildInfo|CanEditGuildInfo]]() - Returns true if you are allowed to edit the guild info.
 
: [[API CanEditGuildInfo|CanEditGuildInfo]]() - Returns true if you are allowed to edit the guild info.
: [[API CanEditGuildTabInfo|CanEditGuildTabInfo]](<span style="font-size:smaller; color:#ecbc2a">tab</span>)
+
: [[API CanEditGuildTabInfo|CanEditGuildTabInfo]](<span class="apiarg">tab</span>)
 
: [[API CanEditMOTD|CanEditMOTD]]() - Returns true if you are allowed to edit the guild motd.
 
: [[API CanEditMOTD|CanEditMOTD]]() - Returns true if you are allowed to edit the guild motd.
 
: [[API CanEditPublicNote|CanEditPublicNote]]() - Returns true if you are allowed to edit a guild member's public note.
 
: [[API CanEditPublicNote|CanEditPublicNote]]() - Returns true if you are allowed to edit a guild member's public note.
Line 2,377: Line 2,462:
 
: [[API CanGuildRemove|CanGuildRemove]]() - Returns true if you are allowed to remove a guild member.
 
: [[API CanGuildRemove|CanGuildRemove]]() - Returns true if you are allowed to remove a guild member.
 
: [[API CanReplaceGuildMaster|CanReplaceGuildMaster]]() - Returns whether you can impeach the Guild Master due to inactivity.
 
: [[API CanReplaceGuildMaster|CanReplaceGuildMaster]]() - Returns whether you can impeach the Guild Master due to inactivity.
: [[API CanViewGuildRecipes|CanViewGuildRecipes]](<span style="font-size:smaller; color:#ecbc2a">skillLineID</span>)
+
: [[API CanViewGuildRecipes|CanViewGuildRecipes]](<span class="apiarg">skillLineID</span>)
 
: [[API CloseGuildRegistrar|CloseGuildRegistrar]]()
 
: [[API CloseGuildRegistrar|CloseGuildRegistrar]]()
 
: [[API CloseGuildRoster|CloseGuildRoster]]()
 
: [[API CloseGuildRoster|CloseGuildRoster]]()
 
: [[API CloseTabardCreation|CloseTabardCreation]]()
 
: [[API CloseTabardCreation|CloseTabardCreation]]()
: [[API CollapseGuildTradeSkillHeader|CollapseGuildTradeSkillHeader]](<span style="font-size:smaller; color:#ecbc2a">tradeSkillID</span>)
+
: [[API CollapseGuildTradeSkillHeader|CollapseGuildTradeSkillHeader]](<span class="apiarg">tradeSkillID</span>)
 
: [[API DeclineGuild|DeclineGuild]]() - The player declines the invitation to join a guild.
 
: [[API DeclineGuild|DeclineGuild]]() - The player declines the invitation to join a guild.
: [[API ExpandGuildTradeSkillHeader|ExpandGuildTradeSkillHeader]](<span style="font-size:smaller; color:#ecbc2a">tradeSkillID</span>)
+
: [[API ExpandGuildTradeSkillHeader|ExpandGuildTradeSkillHeader]](<span class="apiarg">tradeSkillID</span>)
 
: [[API GetAutoDeclineGuildInvites|GetAutoDeclineGuildInvites]]() - Returns if guild invites are blocked.
 
: [[API GetAutoDeclineGuildInvites|GetAutoDeclineGuildInvites]]() - Returns if guild invites are blocked.
: [[API GetDemotionRank|GetDemotionRank]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetDemotionRank|GetDemotionRank]](<span class="apiarg">index</span>)
 
: [[API GetGuildCategoryList|GetGuildCategoryList]]()
 
: [[API GetGuildCategoryList|GetGuildCategoryList]]()
: [[API GetGuildChallengeInfo|GetGuildChallengeInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetGuildChallengeInfo|GetGuildChallengeInfo]](<span class="apiarg">index</span>)
 
: [[API GetGuildCharterCost|GetGuildCharterCost]]() - Returns the cost of purchasing a guild charter.
 
: [[API GetGuildCharterCost|GetGuildCharterCost]]() - Returns the cost of purchasing a guild charter.
: [[API GetGuildEventInfo|GetGuildEventInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns the event information.
+
: [[API GetGuildEventInfo|GetGuildEventInfo]](<span class="apiarg">index</span>) - Returns the event information.
 
: [[API GetGuildExpirationTime|GetGuildExpirationTime]]()
 
: [[API GetGuildExpirationTime|GetGuildExpirationTime]]()
 
: [[API GetGuildFactionGroup|GetGuildFactionGroup]]()
 
: [[API GetGuildFactionGroup|GetGuildFactionGroup]]()
 
: [[API GetGuildFactionInfo|GetGuildFactionInfo]]() - Returns the guild name and faction standing of the player.
 
: [[API GetGuildFactionInfo|GetGuildFactionInfo]]() - Returns the guild name and faction standing of the player.
 
: [[API GetGuildInfoText|GetGuildInfoText]]() - Returns the persistant Guild Information data.
 
: [[API GetGuildInfoText|GetGuildInfoText]]() - Returns the persistant Guild Information data.
: [[API GetGuildInfo|GetGuildInfo]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - This function returns the name of the guild ''unit'' belongs to.
+
: [[API GetGuildInfo|GetGuildInfo]](<span class="apiarg">unit</span>) - This function returns the name of the guild ''unit'' belongs to.
 
: [[API GetGuildLogoInfo|GetGuildLogoInfo]]()
 
: [[API GetGuildLogoInfo|GetGuildLogoInfo]]()
: [[API GetGuildMemberRecipes|GetGuildMemberRecipes]](<span style="font-size:smaller; color:#ecbc2a">name, skillLineID</span>)
+
: [[API GetGuildMemberRecipes|GetGuildMemberRecipes]](<span class="apiarg">name, skillLineID</span>)
 
: [[API GetGuildNewsFilters|GetGuildNewsFilters]]()
 
: [[API GetGuildNewsFilters|GetGuildNewsFilters]]()
: [[API GetGuildNewsMemberName|GetGuildNewsMemberName]](<span style="font-size:smaller; color:#ecbc2a">index, nameIndex</span>)
+
: [[API GetGuildNewsMemberName|GetGuildNewsMemberName]](<span class="apiarg">index, nameIndex</span>)
 
: [[API GetGuildNewsSort|GetGuildNewsSort]]()
 
: [[API GetGuildNewsSort|GetGuildNewsSort]]()
 
: [[API GetGuildPerkInfo|GetGuildPerkInfo]]()
 
: [[API GetGuildPerkInfo|GetGuildPerkInfo]]()
 
: [[API GetGuildRecipeInfoPostQuery|GetGuildRecipeInfoPostQuery]]()
 
: [[API GetGuildRecipeInfoPostQuery|GetGuildRecipeInfoPostQuery]]()
: [[API GetGuildRecipeMember|GetGuildRecipeMember]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetGuildRecipeMember|GetGuildRecipeMember]](<span class="apiarg">index</span>)
 
: [[API GetGuildRenameRequired|GetGuildRenameRequired]]()
 
: [[API GetGuildRenameRequired|GetGuildRenameRequired]]()
: [[API GetGuildRewardInfo|GetGuildRewardInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetGuildRewardInfo|GetGuildRewardInfo]](<span class="apiarg">index</span>)
: [[API GetGuildRosterInfo|GetGuildRosterInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - This function is used to get info on members in the guild.
+
: [[API GetGuildRosterInfo|GetGuildRosterInfo]](<span class="apiarg">index</span>) - This function is used to get info on members in the guild.
 
: [[API GetGuildRosterLargestAchievementPoints|GetGuildRosterLargestAchievementPoints]]() - Returns max achievements points.
 
: [[API GetGuildRosterLargestAchievementPoints|GetGuildRosterLargestAchievementPoints]]() - Returns max achievements points.
: [[API GetGuildRosterLastOnline|GetGuildRosterLastOnline]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns time since last online for indexth member in current sort order.
+
: [[API GetGuildRosterLastOnline|GetGuildRosterLastOnline]](<span class="apiarg">index</span>) - Returns time since last online for indexth member in current sort order.
 
: [[API GetGuildRosterMOTD|GetGuildRosterMOTD]]() - Returns guild's MOTD.
 
: [[API GetGuildRosterMOTD|GetGuildRosterMOTD]]() - Returns guild's MOTD.
 
: [[API GetGuildRosterSelection|GetGuildRosterSelection]]() - Returns the index of the current selected guild member.
 
: [[API GetGuildRosterSelection|GetGuildRosterSelection]]() - Returns the index of the current selected guild member.
 
: [[API GetGuildRosterShowOffline|GetGuildRosterShowOffline]]() - Returns true if showing offline members of the guild.
 
: [[API GetGuildRosterShowOffline|GetGuildRosterShowOffline]]() - Returns true if showing offline members of the guild.
 
: [[API GetGuildTabardFiles|GetGuildTabardFiles]]() - Returns File IDs of tabard textures used in guild bank logo.
 
: [[API GetGuildTabardFiles|GetGuildTabardFiles]]() - Returns File IDs of tabard textures used in guild bank logo.
: [[API GetGuildTradeSkillInfo|GetGuildTradeSkillInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns the tradeskill index for a guild tradeskill using the index from GetNumGuildTradeSkill.
+
: [[API GetGuildTradeSkillInfo|GetGuildTradeSkillInfo]](<span class="apiarg">index</span>) - Returns the tradeskill index for a guild tradeskill using the index from GetNumGuildTradeSkill.
 
: [[API GetNumGuildChallenges|GetNumGuildChallenges]]()
 
: [[API GetNumGuildChallenges|GetNumGuildChallenges]]()
 
: [[API GetNumGuildEvents|GetNumGuildEvents]]() - Returns the number of guild events.
 
: [[API GetNumGuildEvents|GetNumGuildEvents]]() - Returns the number of guild events.
Line 2,420: Line 2,505:
 
: [[API GetNumGuildRewards|GetNumGuildRewards]]()
 
: [[API GetNumGuildRewards|GetNumGuildRewards]]()
 
: [[API GetNumGuildTradeSkill|GetNumGuildTradeSkill]]() - Returns the number of tradeskills available to the guild UI.
 
: [[API GetNumGuildTradeSkill|GetNumGuildTradeSkill]]() - Returns the number of tradeskills available to the guild UI.
: [[API GetNumMembersInRank|GetNumMembersInRank]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetNumMembersInRank|GetNumMembersInRank]](<span class="apiarg">index</span>)
: [[API GetPromotionRank|GetPromotionRank]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetPromotionRank|GetPromotionRank]](<span class="apiarg">index</span>)
 
: [[API GetTabardCreationCost|GetTabardCreationCost]]() - Returns cost in coppers.
 
: [[API GetTabardCreationCost|GetTabardCreationCost]]() - Returns cost in coppers.
 
: [[API GetTabardInfo|GetTabardInfo]]()
 
: [[API GetTabardInfo|GetTabardInfo]]()
: [[API GuildControlAddRank|GuildControlAddRank]](<span style="font-size:smaller; color:#ecbc2a">name</span>) - Add another rank called "name". Only Guildmaster.
+
: [[API GuildControlAddRank|GuildControlAddRank]](<span class="apiarg">name</span>) - Add another rank called "name". Only Guildmaster.
: [[API GuildControlDelRank|GuildControlDelRank]](<span style="font-size:smaller; color:#ecbc2a">name</span>) - Delete rank "name". Only Guildmaster.
+
: [[API GuildControlDelRank|GuildControlDelRank]](<span class="apiarg">name</span>) - Delete rank "name". Only Guildmaster.
: [[API GuildControlGetAllowedShifts|GuildControlGetAllowedShifts]](<span style="font-size:smaller; color:#ecbc2a">rankOrder</span>)
+
: [[API GuildControlGetAllowedShifts|GuildControlGetAllowedShifts]](<span class="apiarg">rankOrder</span>)
 
: [[API GuildControlGetNumRanks|GuildControlGetNumRanks]]() - Returns number of ranks after guild frame open. Any guild member can use this.
 
: [[API GuildControlGetNumRanks|GuildControlGetNumRanks]]() - Returns number of ranks after guild frame open. Any guild member can use this.
: [[API GuildControlGetRankName|GuildControlGetRankName]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns name of the rank at index. Any guild member can use this.
+
: [[API GuildControlGetRankName|GuildControlGetRankName]](<span class="apiarg">index</span>) - Returns name of the rank at index. Any guild member can use this.
: [[API GuildControlSaveRank|GuildControlSaveRank]](<span style="font-size:smaller; color:#ecbc2a">name</span>) - Saves the permissions for rank "name". Only Guildmaster.
+
: [[API GuildControlSaveRank|GuildControlSaveRank]](<span class="apiarg">name</span>) - Saves the permissions for rank "name". Only Guildmaster.
: <small>PROTECTED</small> [[API GuildControlSetRank|GuildControlSetRank]](<span style="font-size:smaller; color:#ecbc2a">rank</span>) - Sets the currently selected rank to view.
+
: <small>PROTECTED</small> [[API GuildControlSetRank|GuildControlSetRank]](<span class="apiarg">rank</span>) - Sets the currently selected rank to view.
: <small>PROTECTED</small> [[API GuildControlSetRankFlag|GuildControlSetRankFlag]](<span style="font-size:smaller; color:#ecbc2a">index, enabled</span>) - Enable/disable permission for an action at index. Only Guildmaster.
+
: <small>PROTECTED</small> [[API GuildControlSetRankFlag|GuildControlSetRankFlag]](<span class="apiarg">index, enabled</span>) - Enable/disable permission for an action at index. Only Guildmaster.
: [[API GuildControlShiftRankDown|GuildControlShiftRankDown]](<span style="font-size:smaller; color:#ecbc2a">rankOrder</span>)
+
: [[API GuildControlShiftRankDown|GuildControlShiftRankDown]](<span class="apiarg">rankOrder</span>)
: [[API GuildControlShiftRankUp|GuildControlShiftRankUp]](<span style="font-size:smaller; color:#ecbc2a">rankOrder</span>)
+
: [[API GuildControlShiftRankUp|GuildControlShiftRankUp]](<span class="apiarg">rankOrder</span>)
: <small>PROTECTED</small> [[API GuildDemote|GuildDemote]](<span style="font-size:smaller; color:#ecbc2a">name</span>) - Demotes a player "name".
+
: <small>PROTECTED</small> [[API GuildDemote|GuildDemote]](<span class="apiarg">name</span>) - Demotes a player "name".
 
: [[API GuildDisband|GuildDisband]]() - Disbands at once your guild. You must be the guild's leader to do so. Be careful, no warning is given prior disbanding.
 
: [[API GuildDisband|GuildDisband]]() - Disbands at once your guild. You must be the guild's leader to do so. Be careful, no warning is given prior disbanding.
 
: [[API GuildInfo|GuildInfo]]() - Displays information about the guild you are a member of.
 
: [[API GuildInfo|GuildInfo]]() - Displays information about the guild you are a member of.
: [[API GuildInvite|GuildInvite]](<span style="font-size:smaller; color:#ecbc2a">name</span>) - Invites a player to your guild.
+
: [[API GuildInvite|GuildInvite]](<span class="apiarg">name</span>) - Invites a player to your guild.
 
: [[API GuildLeave|GuildLeave]]() - Removes you from your current guild.
 
: [[API GuildLeave|GuildLeave]]() - Removes you from your current guild.
 
: [[API GuildMasterAbsent|GuildMasterAbsent]]()
 
: [[API GuildMasterAbsent|GuildMasterAbsent]]()
: [[API GuildNewsSetSticky|GuildNewsSetSticky]](<span style="font-size:smaller; color:#ecbc2a">index, bool</span>)
+
: [[API GuildNewsSetSticky|GuildNewsSetSticky]](<span class="apiarg">index, bool</span>)
: [[API GuildNewsSort|GuildNewsSort]](<span style="font-size:smaller; color:#ecbc2a">byDate</span>)
+
: [[API GuildNewsSort|GuildNewsSort]](<span class="apiarg">byDate</span>)
: <small>PROTECTED</small> [[API GuildPromote|GuildPromote]](<span style="font-size:smaller; color:#ecbc2a">name</span>) - Promotes a player "name".
+
: <small>PROTECTED</small> [[API GuildPromote|GuildPromote]](<span class="apiarg">name</span>) - Promotes a player "name".
: [[API GuildRosterSetOfficerNote|GuildRosterSetOfficerNote]](<span style="font-size:smaller; color:#ecbc2a">index, note</span>) - Sets the officer note at index to "note".
+
: [[API GuildRosterSetOfficerNote|GuildRosterSetOfficerNote]](<span class="apiarg">index, note</span>) - Sets the officer note at index to "note".
: [[API GuildRosterSetPublicNote|GuildRosterSetPublicNote]](<span style="font-size:smaller; color:#ecbc2a">index, note</span>) - Sets the public note at index to "note".
+
: [[API GuildRosterSetPublicNote|GuildRosterSetPublicNote]](<span class="apiarg">index, note</span>) - Sets the public note at index to "note".
: [[API GuildSetLeader|GuildSetLeader]](<span style="font-size:smaller; color:#ecbc2a">name</span>) - Transfers guild leadership to another character.
+
: [[API GuildSetLeader|GuildSetLeader]](<span class="apiarg">name</span>) - Transfers guild leadership to another character.
: [[API GuildSetMOTD|GuildSetMOTD]](<span style="font-size:smaller; color:#ecbc2a">note</span>) - Set Guild Message of the Day to "note".
+
: [[API GuildSetMOTD|GuildSetMOTD]](<span class="apiarg">note</span>) - Set Guild Message of the Day to "note".
: <small>PROTECTED</small> [[API GuildUninvite|GuildUninvite]](<span style="font-size:smaller; color:#ecbc2a">name</span>) - Removes the member "name".
+
: <small>PROTECTED</small> [[API GuildUninvite|GuildUninvite]](<span class="apiarg">name</span>) - Removes the member "name".
: [[API IsGuildLeader|IsGuildLeader]](<span style="font-size:smaller; color:#ecbc2a">name</span>) - Determine if player "name" is a guild master.
+
: [[API IsGuildLeader|IsGuildLeader]](<span class="apiarg">name</span>) - Determine if player "name" is a guild master.
: [[API IsGuildMember|IsGuildMember]](<span style="font-size:smaller; color:#ecbc2a">guid or unitToken</span>)
+
: [[API IsGuildMember|IsGuildMember]](<span class="apiarg">guid or unitToken</span>)
: [[API IsGuildRankAssignmentAllowed|IsGuildRankAssignmentAllowed]](<span style="font-size:smaller; color:#ecbc2a">playerIndex, rankIndex</span>)
+
: [[API IsGuildRankAssignmentAllowed|IsGuildRankAssignmentAllowed]](<span class="apiarg">playerIndex, rankIndex</span>)
 
: [[API IsInAuthenticatedRank|IsInAuthenticatedRank]]()
 
: [[API IsInAuthenticatedRank|IsInAuthenticatedRank]]()
 
: [[API IsInGuild|IsInGuild]]() - Lets you know whether you are in a guild.
 
: [[API IsInGuild|IsInGuild]]() - Lets you know whether you are in a guild.
 
: [[API QueryGuildEventLog|QueryGuildEventLog]]() - Fetches the guild event list and fires a GUILD_EVENT_LOG_UPDATE event.
 
: [[API QueryGuildEventLog|QueryGuildEventLog]]() - Fetches the guild event list and fires a GUILD_EVENT_LOG_UPDATE event.
: <small>DEPRECATED</small> [[API QueryGuildMembersForRecipe|QueryGuildMembersForRecipe]](<span style="font-size:smaller; color:#ecbc2a">skillLineID, recipeID</span>)
 
 
: [[API QueryGuildNews|QueryGuildNews]]()
 
: [[API QueryGuildNews|QueryGuildNews]]()
 
: [[API QueryGuildRecipes|QueryGuildRecipes]]()
 
: [[API QueryGuildRecipes|QueryGuildRecipes]]()
Line 2,461: Line 2,545:
 
: [[API RequestGuildPartyState|RequestGuildPartyState]]()
 
: [[API RequestGuildPartyState|RequestGuildPartyState]]()
 
: [[API RequestGuildRewards|RequestGuildRewards]]()
 
: [[API RequestGuildRewards|RequestGuildRewards]]()
: [[API SetAutoDeclineGuildInvites|SetAutoDeclineGuildInvites]](<span style="font-size:smaller; color:#ecbc2a">checked</span>) - Blocks guild invites automatically.
+
: [[API SetAutoDeclineGuildInvites|SetAutoDeclineGuildInvites]](<span class="apiarg">checked</span>) - Blocks guild invites automatically.
 
: [[API SetGuildInfoText|SetGuildInfoText]]() - Sets the persistant Guild Information data. Limit is 500 letters (GuildInfoEditBox is limited to this number). Longer texts are possible, but will be reseted during the day.
 
: [[API SetGuildInfoText|SetGuildInfoText]]() - Sets the persistant Guild Information data. Limit is 500 letters (GuildInfoEditBox is limited to this number). Longer texts are possible, but will be reseted during the day.
: [[API SetGuildMemberRank|SetGuildMemberRank]](<span style="font-size:smaller; color:#ecbc2a">playerIndex, rankIndex</span>)
+
: [[API SetGuildMemberRank|SetGuildMemberRank]](<span class="apiarg">playerIndex, rankIndex</span>)
: [[API SetGuildNewsFilter|SetGuildNewsFilter]](<span style="font-size:smaller; color:#ecbc2a">index, bool</span>)
+
: [[API SetGuildNewsFilter|SetGuildNewsFilter]](<span class="apiarg">index, bool</span>)
: [[API SetGuildRosterSelection|SetGuildRosterSelection]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Selects/deselects a guild member according current sorting order.
+
: [[API SetGuildRosterSelection|SetGuildRosterSelection]](<span class="apiarg">index</span>) - Selects/deselects a guild member according current sorting order.
: [[API SetGuildRosterShowOffline|SetGuildRosterShowOffline]](<span style="font-size:smaller; color:#ecbc2a">enabled</span>) - Sets/Resets the show offline members flag.
+
: [[API SetGuildRosterShowOffline|SetGuildRosterShowOffline]](<span class="apiarg">enabled</span>) - Sets/Resets the show offline members flag.
: [[API SetGuildTradeSkillCategoryFilter|SetGuildTradeSkillCategoryFilter]](<span style="font-size:smaller; color:#ecbc2a">tradeSkillID</span>)
+
: [[API SetGuildTradeSkillCategoryFilter|SetGuildTradeSkillCategoryFilter]](<span class="apiarg">tradeSkillID</span>)
: [[API SetGuildTradeSkillItemNameFilter|SetGuildTradeSkillItemNameFilter]](<span style="font-size:smaller; color:#ecbc2a">itemName</span>)
+
: [[API SetGuildTradeSkillItemNameFilter|SetGuildTradeSkillItemNameFilter]](<span class="apiarg">itemName</span>)
: [[API SortGuildRoster|SortGuildRoster]](<span style="font-size:smaller; color:#ecbc2a">sort</span>) - Sorts guildroster according "sort". Any unknown values sort on "name".
+
: [[API SortGuildRoster|SortGuildRoster]](<span class="apiarg">sort</span>) - Sorts guildroster according "sort". Any unknown values sort on "name".
: [[API SortGuildTradeSkill|SortGuildTradeSkill]](<span style="font-size:smaller; color:#ecbc2a">type</span>)
+
: [[API SortGuildTradeSkill|SortGuildTradeSkill]](<span class="apiarg">type</span>)
 
: [[API SubmitRequiredGuildRename|SubmitRequiredGuildRename]]()
 
: [[API SubmitRequiredGuildRename|SubmitRequiredGuildRename]]()
: [[API ViewGuildRecipes|ViewGuildRecipes]](<span style="font-size:smaller; color:#ecbc2a">skillLineID</span>)
+
: [[API ViewGuildRecipes|ViewGuildRecipes]](<span class="apiarg">skillLineID</span>)
The [[Guild Finder]] was added in [[Patch 4.1.0]]
 
: [[API CancelGuildMembershipRequest|CancelGuildMembershipRequest]]()
 
: [[API DeclineGuildApplicant|DeclineGuildApplicant]]()
 
: [[API GetGuildApplicantInfo|GetGuildApplicantInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns information about a guild applicant.
 
: [[API GetGuildApplicantSelection|GetGuildApplicantSelection]]()
 
: [[API GetGuildMembershipRequestInfo|GetGuildMembershipRequestInfo]]()
 
: [[API GetGuildMembershipRequestSettings|GetGuildMembershipRequestSettings]]()
 
: [[API GetGuildRecruitmentComment|GetGuildRecruitmentComment]]()
 
: [[API GetGuildRecruitmentSettings|GetGuildRecruitmentSettings]]()
 
: [[API GetLookingForGuildComment|GetLookingForGuildComment]]()
 
: [[API GetLookingForGuildSettings|GetLookingForGuildSettings]]()
 
: [[API GetNumGuildApplicants|GetNumGuildApplicants]]() - Returns the total number of guild applicants.
 
: [[API GetNumGuildMembershipRequests|GetNumGuildMembershipRequests]]()
 
: [[API GetNumRecruitingGuilds|GetNumRecruitingGuilds]]()
 
: [[API GetRecruitingGuildInfo|GetRecruitingGuildInfo]]()
 
: [[API GetRecruitingGuildSelection|GetRecruitingGuildSelection]]()
 
: [[API GetRecruitingGuildSettings|GetRecruitingGuildSettings]]()
 
: [[API RequestGuildApplicantsList|RequestGuildApplicantsList]]() - Requests information about guild applicants.
 
: [[API RequestGuildMembershipList|RequestGuildMembershipList]]()
 
: [[API RequestGuildMembership|RequestGuildMembership]]()
 
: [[API RequestGuildRecruitmentSettings|RequestGuildRecruitmentSettings]]()
 
: [[API RequestRecruitingGuildsList|RequestRecruitingGuildsList]]()
 
: [[API SetGuildApplicantSelection|SetGuildApplicantSelection]]()
 
: [[API SetGuildRecruitmentComment|SetGuildRecruitmentComment]](<span style="font-size:smaller; color:#ecbc2a">text</span>)
 
: [[API SetGuildRecruitmentSettings|SetGuildRecruitmentSettings]](<span style="font-size:smaller; color:#ecbc2a">index, bool</span>)
 
: [[API SetLookingForGuildComment|SetLookingForGuildComment]]()
 
: [[API SetLookingForGuildSettings|SetLookingForGuildSettings]](<span style="font-size:smaller; color:#ecbc2a">index, bool</span>)
 
: [[API SetRecruitingGuildSelection|SetRecruitingGuildSelection]]()
 
   
 
==== Petitions ====
 
==== Petitions ====
Line 2,508: Line 2,564:
 
: [[API GetNumPetitionNames|GetNumPetitionNames]]() - Gets the number of signatures on the current petition.
 
: [[API GetNumPetitionNames|GetNumPetitionNames]]() - Gets the number of signatures on the current petition.
 
: [[API GetPetitionInfo|GetPetitionInfo]]() - Retrieves information about the current petition.
 
: [[API GetPetitionInfo|GetPetitionInfo]]() - Retrieves information about the current petition.
: [[API GetPetitionNameInfo|GetPetitionNameInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Retrieves information about a signature on the petition.
+
: [[API GetPetitionNameInfo|GetPetitionNameInfo]](<span class="apiarg">index</span>) - Retrieves information about a signature on the petition.
 
: [[API OfferPetition|OfferPetition]]() - Offers a petition to your target, inviting them to join your would-be guild/arena team.
 
: [[API OfferPetition|OfferPetition]]() - Offers a petition to your target, inviting them to join your would-be guild/arena team.
: [[API RenamePetition|RenamePetition]](<span style="font-size:smaller; color:#ecbc2a">name</span>) - Renames the current petition.
+
: [[API RenamePetition|RenamePetition]](<span class="apiarg">name</span>) - Renames the current petition.
 
: [[API SignPetition|SignPetition]]() - Signs the current petition.
 
: [[API SignPetition|SignPetition]]() - Signs the current petition.
 
: [[API TurnInGuildCharter|TurnInGuildCharter]]() - Founds a guild.
 
: [[API TurnInGuildCharter|TurnInGuildCharter]]() - Founds a guild.
   
 
=== Instances ===
 
=== Instances ===
  +
: [[API C_PlayerInfo.GetInstancesUnlockedAtLevel|C_PlayerInfo.GetInstancesUnlockedAtLevel]](<span class="apiarg">level, isRaid</span>) : <span class="apiret">dungeonID</span>
 
: [[API CanChangePlayerDifficulty|CanChangePlayerDifficulty]]()
 
: [[API CanChangePlayerDifficulty|CanChangePlayerDifficulty]]()
 
: [[API CanMapChangeDifficulty|CanMapChangeDifficulty]]()
 
: [[API CanMapChangeDifficulty|CanMapChangeDifficulty]]()
Line 2,525: Line 2,582:
 
: [[API GetRaidDifficultyID|GetRaidDifficultyID]]() - Returns the player's current Raid Difficulty setting (1-14).
 
: [[API GetRaidDifficultyID|GetRaidDifficultyID]]() - Returns the player's current Raid Difficulty setting (1-14).
 
: [[API IsInInstance|IsInInstance]]() - Returns 1 if the player is in an instance, as well as the type of instance (pvp, raid, etc.).
 
: [[API IsInInstance|IsInInstance]]() - Returns 1 if the player is in an instance, as well as the type of instance (pvp, raid, etc.).
: [[API IsLegacyDifficulty|IsLegacyDifficulty]](<span style="font-size:smaller; color:#ecbc2a">difficultyID</span>)
+
: [[API IsLegacyDifficulty|IsLegacyDifficulty]](<span class="apiarg">difficultyID</span>)
 
: [[API ResetInstances|ResetInstances]]() - Reset instances.
 
: [[API ResetInstances|ResetInstances]]() - Reset instances.
: [[API SetDungeonDifficultyID|SetDungeonDifficultyID]](<span style="font-size:smaller; color:#ecbc2a">difficultyID</span>) - Sets the player's Dungeon Difficulty setting (for the 5-man instances). See [[difficultyID]].
+
: [[API SetDungeonDifficultyID|SetDungeonDifficultyID]](<span class="apiarg">difficultyID</span>) - Sets the player's Dungeon Difficulty setting (for the 5-man instances). See [[difficultyID]].
: [[API SetLegacyRaidDifficultyID|SetLegacyRaidDifficultyID]](<span style="font-size:smaller; color:#ecbc2a">difficultyID [, force]</span>)
+
: [[API SetLegacyRaidDifficultyID|SetLegacyRaidDifficultyID]](<span class="apiarg">difficultyID [, force]</span>)
: [[API SetRaidDifficultyID|SetRaidDifficultyID]](<span style="font-size:smaller; color:#ecbc2a">difficultyID</span>) - Sets the players Raid Difficulty settings (for 10-man, 25-man instances). See [[difficultyID]].
+
: [[API SetRaidDifficultyID|SetRaidDifficultyID]](<span class="apiarg">difficultyID</span>) - Sets the players Raid Difficulty settings (for 10-man, 25-man instances). See [[difficultyID]].
: [[API ShowBossFrameWhenUninteractable|ShowBossFrameWhenUninteractable]](<span style="font-size:smaller; color:#ecbc2a">unit</span>)
+
: [[API ShowBossFrameWhenUninteractable|ShowBossFrameWhenUninteractable]](<span class="apiarg">unit</span>)
 
Relates to [[Raid lockout|Instance Locks]]
 
Relates to [[Raid lockout|Instance Locks]]
: [[API GetInstanceLockTimeRemainingEncounter|GetInstanceLockTimeRemainingEncounter]](<span style="font-size:smaller; color:#ecbc2a">id</span>) - Returns information about bosses in the instance the player is about to be saved to.
+
: [[API GetInstanceLockTimeRemainingEncounter|GetInstanceLockTimeRemainingEncounter]](<span class="apiarg">id</span>) - Returns information about bosses in the instance the player is about to be saved to.
 
: [[API GetInstanceLockTimeRemaining|GetInstanceLockTimeRemaining]]() - Returns information about the instance lock timer for the instance the player is currently entering.
 
: [[API GetInstanceLockTimeRemaining|GetInstanceLockTimeRemaining]]() - Returns information about the instance lock timer for the instance the player is currently entering.
 
: [[API GetNumSavedInstances|GetNumSavedInstances]]() - Gets the number of instances for which the player currently has lockout data saved.
 
: [[API GetNumSavedInstances|GetNumSavedInstances]]() - Gets the number of instances for which the player currently has lockout data saved.
 
: [[API GetNumSavedWorldBosses|GetNumSavedWorldBosses]]()
 
: [[API GetNumSavedWorldBosses|GetNumSavedWorldBosses]]()
: [[API GetSavedInstanceChatLink|GetSavedInstanceChatLink]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetSavedInstanceChatLink|GetSavedInstanceChatLink]](<span class="apiarg">index</span>)
: [[API GetSavedInstanceEncounterInfo|GetSavedInstanceEncounterInfo]](<span style="font-size:smaller; color:#ecbc2a">instanceIndex, encounterIndex</span>)
+
: [[API GetSavedInstanceEncounterInfo|GetSavedInstanceEncounterInfo]](<span class="apiarg">instanceIndex, encounterIndex</span>)
: [[API GetSavedInstanceInfo|GetSavedInstanceInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Gets information about an instance for which the player has saved lockout data.
+
: [[API GetSavedInstanceInfo|GetSavedInstanceInfo]](<span class="apiarg">index</span>) - Gets information about an instance for which the player has saved lockout data.
: [[API GetSavedWorldBossInfo|GetSavedWorldBossInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetSavedWorldBossInfo|GetSavedWorldBossInfo]](<span class="apiarg">index</span>)
 
: [[API RequestRaidInfo|RequestRaidInfo]]() - Returns information about which instances you are saved to.
 
: [[API RequestRaidInfo|RequestRaidInfo]]() - Returns information about which instances you are saved to.
 
: [[API RespondInstanceLock|RespondInstanceLock]]()
 
: [[API RespondInstanceLock|RespondInstanceLock]]()
: [[API SetSavedInstanceExtend|SetSavedInstanceExtend]](<span style="font-size:smaller; color:#ecbc2a">index, extend</span>)
+
: [[API SetSavedInstanceExtend|SetSavedInstanceExtend]](<span class="apiarg">index, extend</span>)
   
 
==== Scenarios ====
 
==== Scenarios ====
 
[[Scenarios]] were added in [[Patch 5.0.4]]
 
[[Scenarios]] were added in [[Patch 5.0.4]]
: [[API C_Scenario.GetBonusStepRewardQuestID|C_Scenario.GetBonusStepRewardQuestID]](<span style="font-size:smaller; color:#ecbc2a">stepIndex</span>)
+
: [[API C_Scenario.GetBonusStepRewardQuestID|C_Scenario.GetBonusStepRewardQuestID]](<span class="apiarg">stepIndex</span>)
 
: [[API C_Scenario.GetBonusSteps|C_Scenario.GetBonusSteps]]()
 
: [[API C_Scenario.GetBonusSteps|C_Scenario.GetBonusSteps]]()
: [[API C_Scenario.GetCriteriaInfo|C_Scenario.GetCriteriaInfo]](<span style="font-size:smaller; color:#ecbc2a">criteriaIndex</span>)
+
: [[API C_Scenario.GetCriteriaInfo|C_Scenario.GetCriteriaInfo]](<span class="apiarg">criteriaIndex</span>)
: [[API C_Scenario.GetCriteriaInfoByStep|C_Scenario.GetCriteriaInfoByStep]](<span style="font-size:smaller; color:#ecbc2a">stepID, criteriaIndex</span>)
+
: [[API C_Scenario.GetCriteriaInfoByStep|C_Scenario.GetCriteriaInfoByStep]](<span class="apiarg">stepID, criteriaIndex</span>)
 
: [[API C_Scenario.GetInfo|C_Scenario.GetInfo]]()
 
: [[API C_Scenario.GetInfo|C_Scenario.GetInfo]]()
 
: [[API C_Scenario.GetProvingGroundsInfo|C_Scenario.GetProvingGroundsInfo]]() - Returns information about the current Proving Grounds trial.
 
: [[API C_Scenario.GetProvingGroundsInfo|C_Scenario.GetProvingGroundsInfo]]() - Returns information about the current Proving Grounds trial.
: [[API C_Scenario.GetScenarioIconInfo|C_Scenario.GetScenarioIconInfo]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>)
+
: [[API C_Scenario.GetScenarioIconInfo|C_Scenario.GetScenarioIconInfo]](<span class="apiarg">uiMapID</span>)
: [[API C_Scenario.GetStepInfo|C_Scenario.GetStepInfo]](<span style="font-size:smaller; color:#ecbc2a">[bonusStepIndex]</span>)
+
: [[API C_Scenario.GetStepInfo|C_Scenario.GetStepInfo]](<span class="apiarg">[bonusStepIndex]</span>)
 
: [[API C_Scenario.GetSupersededObjectives|C_Scenario.GetSupersededObjectives]]()
 
: [[API C_Scenario.GetSupersededObjectives|C_Scenario.GetSupersededObjectives]]()
 
: [[API C_Scenario.IsInScenario|C_Scenario.IsInScenario]]()
 
: [[API C_Scenario.IsInScenario|C_Scenario.IsInScenario]]()
 
: [[API C_Scenario.ShouldShowCriteria|C_Scenario.ShouldShowCriteria]]()
 
: [[API C_Scenario.ShouldShowCriteria|C_Scenario.ShouldShowCriteria]]()
 
: [[API C_Scenario.TreatScenarioAsDungeon|C_Scenario.TreatScenarioAsDungeon]]()
 
: [[API C_Scenario.TreatScenarioAsDungeon|C_Scenario.TreatScenarioAsDungeon]]()
  +
: [[API C_ScenarioInfo.GetScenarioInfo|C_ScenarioInfo.GetScenarioInfo]]() : <span class="apiret">scenarioInfo</span>
  +
: [[API C_ScenarioInfo.GetScenarioStepInfo|C_ScenarioInfo.GetScenarioStepInfo]](<span class="apiarg">[scenarioStepID]</span>) : <span class="apiret">scenarioStepInfo</span>
 
: [[API GetNumRandomScenarios|GetNumRandomScenarios]]()
 
: [[API GetNumRandomScenarios|GetNumRandomScenarios]]()
 
: [[API GetNumScenarios|GetNumScenarios]]()
 
: [[API GetNumScenarios|GetNumScenarios]]()
 
: [[API GetRandomScenarioBestChoice|GetRandomScenarioBestChoice]]()
 
: [[API GetRandomScenarioBestChoice|GetRandomScenarioBestChoice]]()
: [[API GetRandomScenarioInfo|GetRandomScenarioInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetRandomScenarioInfo|GetRandomScenarioInfo]](<span class="apiarg">index</span>)
 
: [[API GetScenariosChoiceOrder|GetScenariosChoiceOrder]]()
 
: [[API GetScenariosChoiceOrder|GetScenariosChoiceOrder]]()
 
: [[API GetWorldElapsedTimers|GetWorldElapsedTimers]]()
 
: [[API GetWorldElapsedTimers|GetWorldElapsedTimers]]()
: [[API GetWorldElapsedTime|GetWorldElapsedTime]](<span style="font-size:smaller; color:#ecbc2a">timerID</span>)
+
: [[API GetWorldElapsedTime|GetWorldElapsedTime]](<span class="apiarg">timerID</span>)
 
: [[API IsInScenarioGroup|IsInScenarioGroup]]()
 
: [[API IsInScenarioGroup|IsInScenarioGroup]]()
   
 
==== Mythic+ ====
 
==== Mythic+ ====
 
[[Mythic+]] mode was added in [[Patch 7.0.3]]
 
[[Mythic+]] mode was added in [[Patch 7.0.3]]
: [[API C_MythicPlus.GetCurrentAffixes|C_MythicPlus.GetCurrentAffixes]]() : <span style="font-size:smaller; color:#4ec9b0">affixIDs</span>
+
: [[API C_MythicPlus.GetCurrentAffixes|C_MythicPlus.GetCurrentAffixes]]() : <span class="apiret">affixIDs</span>
: [[API C_MythicPlus.GetCurrentSeason|C_MythicPlus.GetCurrentSeason]]() : <span style="font-size:smaller; color:#4ec9b0">seasonID</span>
+
: [[API C_MythicPlus.GetCurrentSeason|C_MythicPlus.GetCurrentSeason]]() : <span class="apiret">seasonID</span>
: [[API C_MythicPlus.GetLastWeeklyBestInformation|C_MythicPlus.GetLastWeeklyBestInformation]]() : <span style="font-size:smaller; color:#4ec9b0">challengeMapId, level</span>
+
: [[API C_MythicPlus.GetCurrentSeasonValues|C_MythicPlus.GetCurrentSeasonValues]]() : <span class="apiret">displaySeasonID, milestoneSeasonID, rewardSeasonID</span>
: [[API C_MythicPlus.GetOwnedKeystoneChallengeMapID|C_MythicPlus.GetOwnedKeystoneChallengeMapID]]() : <span style="font-size:smaller; color:#4ec9b0">challengeMapID</span>
+
: [[API C_MythicPlus.GetLastWeeklyBestInformation|C_MythicPlus.GetLastWeeklyBestInformation]]() : <span class="apiret">challengeMapId, level</span>
: [[API C_MythicPlus.GetOwnedKeystoneLevel|C_MythicPlus.GetOwnedKeystoneLevel]]() : <span style="font-size:smaller; color:#4ec9b0">keyStoneLevel</span>
+
: [[API C_MythicPlus.GetOwnedKeystoneChallengeMapID|C_MythicPlus.GetOwnedKeystoneChallengeMapID]]() : <span class="apiret">challengeMapID</span>
: [[API C_MythicPlus.GetRewardLevelForDifficultyLevel|C_MythicPlus.GetRewardLevelForDifficultyLevel]](<span style="font-size:smaller; color:#ecbc2a">difficultyLevel</span>) : <span style="font-size:smaller; color:#4ec9b0">weeklyRewardLevel, endOfRunRewardLevel</span>
+
: [[API C_MythicPlus.GetOwnedKeystoneLevel|C_MythicPlus.GetOwnedKeystoneLevel]]() : <span class="apiret">keyStoneLevel</span>
: [[API C_MythicPlus.GetRewardLevelFromKeystoneLevel|C_MythicPlus.GetRewardLevelFromKeystoneLevel]](<span style="font-size:smaller; color:#ecbc2a">keystoneLevel</span>) : <span style="font-size:smaller; color:#4ec9b0">rewardLevel</span>
+
: [[API C_MythicPlus.GetOwnedKeystoneMapID|C_MythicPlus.GetOwnedKeystoneMapID]]() : <span class="apiret">mapID</span>
: [[API C_MythicPlus.GetRunHistory|C_MythicPlus.GetRunHistory]](<span style="font-size:smaller; color:#ecbc2a">[includePreviousWeeks, includeIncompleteRuns]</span>) : <span style="font-size:smaller; color:#4ec9b0">runs</span>
+
: [[API C_MythicPlus.GetRewardLevelForDifficultyLevel|C_MythicPlus.GetRewardLevelForDifficultyLevel]](<span class="apiarg">difficultyLevel</span>) : <span class="apiret">weeklyRewardLevel, endOfRunRewardLevel</span>
: [[API C_MythicPlus.GetSeasonBestForMap|C_MythicPlus.GetSeasonBestForMap]](<span style="font-size:smaller; color:#ecbc2a">mapChallengeModeID</span>) : <span style="font-size:smaller; color:#4ec9b0">intimeInfo, overtimeInfo</span>
+
: [[API C_MythicPlus.GetRewardLevelFromKeystoneLevel|C_MythicPlus.GetRewardLevelFromKeystoneLevel]](<span class="apiarg">keystoneLevel</span>) : <span class="apiret">rewardLevel</span>
: [[API C_MythicPlus.GetWeeklyBestForMap|C_MythicPlus.GetWeeklyBestForMap]](<span style="font-size:smaller; color:#ecbc2a">mapChallengeModeID</span>) : <span style="font-size:smaller; color:#4ec9b0">durationSec, level, completionDate, affixIDs, members</span>
+
: [[API C_MythicPlus.GetRunHistory|C_MythicPlus.GetRunHistory]](<span class="apiarg">[includePreviousWeeks, includeIncompleteRuns]</span>) : <span class="apiret">runs</span>
: [[API C_MythicPlus.GetWeeklyChestRewardLevel|C_MythicPlus.GetWeeklyChestRewardLevel]]() : <span style="font-size:smaller; color:#4ec9b0">currentWeekBestLevel, weeklyRewardLevel, nextDifficultyWeeklyRewardLevel, ...</span>
+
: [[API C_MythicPlus.GetSeasonBestAffixScoreInfoForMap|C_MythicPlus.GetSeasonBestAffixScoreInfoForMap]](<span class="apiarg">mapChallengeModeID</span>) : <span class="apiret">affixScores, bestOverAllScore</span>
: [[API C_MythicPlus.IsMythicPlusActive|C_MythicPlus.IsMythicPlusActive]]() : <span style="font-size:smaller; color:#4ec9b0">isMythicPlusActive</span>
+
: [[API C_MythicPlus.GetSeasonBestForMap|C_MythicPlus.GetSeasonBestForMap]](<span class="apiarg">mapChallengeModeID</span>) : <span class="apiret">intimeInfo, overtimeInfo</span>
: [[API C_MythicPlus.IsWeeklyRewardAvailable|C_MythicPlus.IsWeeklyRewardAvailable]]() : <span style="font-size:smaller; color:#4ec9b0">weeklyRewardAvailable</span>
+
: [[API C_MythicPlus.GetWeeklyBestForMap|C_MythicPlus.GetWeeklyBestForMap]](<span class="apiarg">mapChallengeModeID</span>) : <span class="apiret">durationSec, level, completionDate, affixIDs, members, ...</span>
  +
: [[API C_MythicPlus.GetWeeklyChestRewardLevel|C_MythicPlus.GetWeeklyChestRewardLevel]]() : <span class="apiret">currentWeekBestLevel, weeklyRewardLevel, nextDifficultyWeeklyRewardLevel, ...</span>
  +
: [[API C_MythicPlus.IsMythicPlusActive|C_MythicPlus.IsMythicPlusActive]]() : <span class="apiret">isMythicPlusActive</span>
  +
: [[API C_MythicPlus.IsWeeklyRewardAvailable|C_MythicPlus.IsWeeklyRewardAvailable]]() : <span class="apiret">weeklyRewardAvailable</span>
 
: [[API C_MythicPlus.RequestCurrentAffixes|C_MythicPlus.RequestCurrentAffixes]]()
 
: [[API C_MythicPlus.RequestCurrentAffixes|C_MythicPlus.RequestCurrentAffixes]]()
 
: [[API C_MythicPlus.RequestMapInfo|C_MythicPlus.RequestMapInfo]]()
 
: [[API C_MythicPlus.RequestMapInfo|C_MythicPlus.RequestMapInfo]]()
 
: [[API C_MythicPlus.RequestRewards|C_MythicPlus.RequestRewards]]()
 
: [[API C_MythicPlus.RequestRewards|C_MythicPlus.RequestRewards]]()
  +
: [[API C_PlayerInfo.GetPlayerMythicPlusRatingSummary|C_PlayerInfo.GetPlayerMythicPlusRatingSummary]](<span class="apiarg">playerToken</span>) : <span class="apiret">ratingSummary</span>
 
[[Challenge Mode]] was added in [[Patch 5.0.4]]
 
[[Challenge Mode]] was added in [[Patch 5.0.4]]
: [[API C_ChallengeMode.CanUseKeystoneInCurrentMap|C_ChallengeMode.CanUseKeystoneInCurrentMap]](<span style="font-size:smaller; color:#ecbc2a">itemLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">canUse</span>
+
: [[API C_ChallengeMode.CanUseKeystoneInCurrentMap|C_ChallengeMode.CanUseKeystoneInCurrentMap]](<span class="apiarg">itemLocation</span>) : <span class="apiret">canUse</span>
 
: [[API C_ChallengeMode.ClearKeystone|C_ChallengeMode.ClearKeystone]]()
 
: [[API C_ChallengeMode.ClearKeystone|C_ChallengeMode.ClearKeystone]]()
 
: [[API C_ChallengeMode.CloseKeystoneFrame|C_ChallengeMode.CloseKeystoneFrame]]()
 
: [[API C_ChallengeMode.CloseKeystoneFrame|C_ChallengeMode.CloseKeystoneFrame]]()
: [[API C_ChallengeMode.GetActiveChallengeMapID|C_ChallengeMode.GetActiveChallengeMapID]]() : <span style="font-size:smaller; color:#4ec9b0">mapChallengeModeID</span>
+
: [[API C_ChallengeMode.GetActiveChallengeMapID|C_ChallengeMode.GetActiveChallengeMapID]]() : <span class="apiret">mapChallengeModeID</span>
: [[API C_ChallengeMode.GetActiveKeystoneInfo|C_ChallengeMode.GetActiveKeystoneInfo]]() : <span style="font-size:smaller; color:#4ec9b0">activeKeystoneLevel, activeAffixIDs, ...</span>
+
: [[API C_ChallengeMode.GetActiveKeystoneInfo|C_ChallengeMode.GetActiveKeystoneInfo]]() : <span class="apiret">activeKeystoneLevel, activeAffixIDs, ...</span>
: [[API C_ChallengeMode.GetAffixInfo|C_ChallengeMode.GetAffixInfo]](<span style="font-size:smaller; color:#ecbc2a">affixID</span>) : <span style="font-size:smaller; color:#4ec9b0">name, description, filedataid</span>
+
: [[API C_ChallengeMode.GetAffixInfo|C_ChallengeMode.GetAffixInfo]](<span class="apiarg">affixID</span>) : <span class="apiret">name, description, filedataid</span>
: [[API C_ChallengeMode.GetCompletionInfo|C_ChallengeMode.GetCompletionInfo]]() : <span style="font-size:smaller; color:#4ec9b0">mapChallengeModeID, level, time, onTime, keystoneUpgradeLevels, ...</span>
+
: [[API C_ChallengeMode.GetCompletionInfo|C_ChallengeMode.GetCompletionInfo]]() : <span class="apiret">mapChallengeModeID, level, time, onTime, keystoneUpgradeLevels, ...</span>
: [[API C_ChallengeMode.GetDeathCount|C_ChallengeMode.GetDeathCount]]() : <span style="font-size:smaller; color:#4ec9b0">numDeaths, timeLost</span>
+
: [[API C_ChallengeMode.GetDeathCount|C_ChallengeMode.GetDeathCount]]() : <span class="apiret">numDeaths, timeLost</span>
: [[API C_ChallengeMode.GetGuildLeaders|C_ChallengeMode.GetGuildLeaders]]() : <span style="font-size:smaller; color:#4ec9b0">topAttempt</span>
+
: [[API C_ChallengeMode.GetDungeonScoreRarityColor|C_ChallengeMode.GetDungeonScoreRarityColor]](<span class="apiarg">dungeonScore</span>) : <span class="apiret">scoreColor</span>
: [[API C_ChallengeMode.GetMapTable|C_ChallengeMode.GetMapTable]]() : <span style="font-size:smaller; color:#4ec9b0">mapChallengeModeIDs</span>
+
: [[API C_ChallengeMode.GetGuildLeaders|C_ChallengeMode.GetGuildLeaders]]() : <span class="apiret">topAttempt</span>
: [[API C_ChallengeMode.GetMapUIInfo|C_ChallengeMode.GetMapUIInfo]](<span style="font-size:smaller; color:#ecbc2a">mapChallengeModeID</span>) : <span style="font-size:smaller; color:#4ec9b0">name, id, timeLimit, texture, backgroundTexture</span>
+
: [[API C_ChallengeMode.GetKeystoneLevelRarityColor|C_ChallengeMode.GetKeystoneLevelRarityColor]](<span class="apiarg">level</span>) : <span class="apiret">levelScore</span>
: [[API C_ChallengeMode.GetPowerLevelDamageHealthMod|C_ChallengeMode.GetPowerLevelDamageHealthMod]](<span style="font-size:smaller; color:#ecbc2a">powerLevel</span>) : <span style="font-size:smaller; color:#4ec9b0">damageMod, healthMod</span>
+
: [[API C_ChallengeMode.GetMapScoreInfo|C_ChallengeMode.GetMapScoreInfo]]() : <span class="apiret">displayScores</span>
: [[API C_ChallengeMode.GetSlottedKeystoneInfo|C_ChallengeMode.GetSlottedKeystoneInfo]]() : <span style="font-size:smaller; color:#4ec9b0">mapChallengeModeID, affixIDs, keystoneLevel</span>
+
: [[API C_ChallengeMode.GetMapTable|C_ChallengeMode.GetMapTable]]() : <span class="apiret">mapChallengeModeIDs</span>
: [[API C_ChallengeMode.HasSlottedKeystone|C_ChallengeMode.HasSlottedKeystone]]() : <span style="font-size:smaller; color:#4ec9b0">hasSlottedKeystone</span>
+
: [[API C_ChallengeMode.GetMapUIInfo|C_ChallengeMode.GetMapUIInfo]](<span class="apiarg">mapChallengeModeID</span>) : <span class="apiret">name, id, timeLimit, texture, backgroundTexture</span>
: [[API C_ChallengeMode.IsChallengeModeActive|C_ChallengeMode.IsChallengeModeActive]]() : <span style="font-size:smaller; color:#4ec9b0">challengeModeActive</span>
+
: [[API C_ChallengeMode.GetOverallDungeonScore|C_ChallengeMode.GetOverallDungeonScore]]() : <span class="apiret">overallDungeonScore</span>
: [[API C_ChallengeMode.RemoveKeystone|C_ChallengeMode.RemoveKeystone]]() : <span style="font-size:smaller; color:#4ec9b0">removalSuccessful</span>
+
: [[API C_ChallengeMode.GetPowerLevelDamageHealthMod|C_ChallengeMode.GetPowerLevelDamageHealthMod]](<span class="apiarg">powerLevel</span>) : <span class="apiret">damageMod, healthMod</span>
: [[API C_ChallengeMode.RequestLeaders|C_ChallengeMode.RequestLeaders]](<span style="font-size:smaller; color:#ecbc2a">mapChallengeModeID</span>)
+
: [[API C_ChallengeMode.GetSlottedKeystoneInfo|C_ChallengeMode.GetSlottedKeystoneInfo]]() : <span class="apiret">mapChallengeModeID, affixIDs, keystoneLevel</span>
  +
: [[API C_ChallengeMode.GetSpecificDungeonOverallScoreRarityColor|C_ChallengeMode.GetSpecificDungeonOverallScoreRarityColor]](<span class="apiarg">specificDungeonOverallScore</span>) : <span class="apiret">specificDungeonOverallScoreColor</span>
  +
: [[API C_ChallengeMode.GetSpecificDungeonScoreRarityColor|C_ChallengeMode.GetSpecificDungeonScoreRarityColor]](<span class="apiarg">specificDungeonScore</span>) : <span class="apiret">specificDungeonScoreColor</span>
  +
: [[API C_ChallengeMode.HasSlottedKeystone|C_ChallengeMode.HasSlottedKeystone]]() : <span class="apiret">hasSlottedKeystone</span>
  +
: [[API C_ChallengeMode.IsChallengeModeActive|C_ChallengeMode.IsChallengeModeActive]]() : <span class="apiret">challengeModeActive</span>
  +
: [[API C_ChallengeMode.RemoveKeystone|C_ChallengeMode.RemoveKeystone]]() : <span class="apiret">removalSuccessful</span>
  +
: [[API C_ChallengeMode.RequestLeaders|C_ChallengeMode.RequestLeaders]](<span class="apiarg">mapChallengeModeID</span>)
 
: [[API C_ChallengeMode.Reset|C_ChallengeMode.Reset]]()
 
: [[API C_ChallengeMode.Reset|C_ChallengeMode.Reset]]()
 
: [[API C_ChallengeMode.SetKeystoneTooltip|C_ChallengeMode.SetKeystoneTooltip]]()
 
: [[API C_ChallengeMode.SetKeystoneTooltip|C_ChallengeMode.SetKeystoneTooltip]]()
 
: [[API C_ChallengeMode.SlotKeystone|C_ChallengeMode.SlotKeystone]]()
 
: [[API C_ChallengeMode.SlotKeystone|C_ChallengeMode.SlotKeystone]]()
: [[API C_ChallengeMode.StartChallengeMode|C_ChallengeMode.StartChallengeMode]]() : <span style="font-size:smaller; color:#4ec9b0">success</span>
+
: [[API C_ChallengeMode.StartChallengeMode|C_ChallengeMode.StartChallengeMode]]() : <span class="apiret">success</span>
   
 
==== Weekly Rewards ====
 
==== Weekly Rewards ====
: [[API C_WeeklyRewards.AreRewardsForCurrentRewardPeriod|C_WeeklyRewards.AreRewardsForCurrentRewardPeriod]]() : <span style="font-size:smaller; color:#4ec9b0">isCurrentPeriod</span>
+
: [[API C_WeeklyRewards.AreRewardsForCurrentRewardPeriod|C_WeeklyRewards.AreRewardsForCurrentRewardPeriod]]() : <span class="apiret">isCurrentPeriod</span>
: [[API C_WeeklyRewards.CanClaimRewards|C_WeeklyRewards.CanClaimRewards]]() : <span style="font-size:smaller; color:#4ec9b0">canClaimRewards</span>
+
: [[API C_WeeklyRewards.CanClaimRewards|C_WeeklyRewards.CanClaimRewards]]() : <span class="apiret">canClaimRewards</span>
: [[API C_WeeklyRewards.ClaimReward|C_WeeklyRewards.ClaimReward]](<span style="font-size:smaller; color:#ecbc2a">id</span>)
+
: [[API C_WeeklyRewards.ClaimReward|C_WeeklyRewards.ClaimReward]](<span class="apiarg">id</span>)
 
: [[API C_WeeklyRewards.CloseInteraction|C_WeeklyRewards.CloseInteraction]]()
 
: [[API C_WeeklyRewards.CloseInteraction|C_WeeklyRewards.CloseInteraction]]()
: [[API C_WeeklyRewards.GetActivities|C_WeeklyRewards.GetActivities]](<span style="font-size:smaller; color:#ecbc2a">[type]</span>) : <span style="font-size:smaller; color:#4ec9b0">activities</span>
+
: [[API C_WeeklyRewards.GetActivities|C_WeeklyRewards.GetActivities]](<span class="apiarg">[type]</span>) : <span class="apiret">activities</span>
: [[API C_WeeklyRewards.GetActivityEncounterInfo|C_WeeklyRewards.GetActivityEncounterInfo]](<span style="font-size:smaller; color:#ecbc2a">type, index</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_WeeklyRewards.GetActivityEncounterInfo|C_WeeklyRewards.GetActivityEncounterInfo]](<span class="apiarg">type, index</span>) : <span class="apiret">info</span>
: [[API C_WeeklyRewards.GetConquestWeeklyProgress|C_WeeklyRewards.GetConquestWeeklyProgress]]() : <span style="font-size:smaller; color:#4ec9b0">weeklyProgress</span>
+
: [[API C_WeeklyRewards.GetConquestWeeklyProgress|C_WeeklyRewards.GetConquestWeeklyProgress]]() : <span class="apiret">weeklyProgress</span>
: [[API C_WeeklyRewards.GetExampleRewardItemHyperlinks|C_WeeklyRewards.GetExampleRewardItemHyperlinks]](<span style="font-size:smaller; color:#ecbc2a">id</span>) : <span style="font-size:smaller; color:#4ec9b0">hyperlink, upgradeHyperlink</span>
+
: [[API C_WeeklyRewards.GetExampleRewardItemHyperlinks|C_WeeklyRewards.GetExampleRewardItemHyperlinks]](<span class="apiarg">id</span>) : <span class="apiret">hyperlink, upgradeHyperlink</span>
: [[API C_WeeklyRewards.GetItemHyperlink|C_WeeklyRewards.GetItemHyperlink]](<span style="font-size:smaller; color:#ecbc2a">itemDBID</span>) : <span style="font-size:smaller; color:#4ec9b0">hyperlink</span>
+
: [[API C_WeeklyRewards.GetItemHyperlink|C_WeeklyRewards.GetItemHyperlink]](<span class="apiarg">itemDBID</span>) : <span class="apiret">hyperlink</span>
: [[API C_WeeklyRewards.GetNextMythicPlusIncrease|C_WeeklyRewards.GetNextMythicPlusIncrease]](<span style="font-size:smaller; color:#ecbc2a">mythicPlusLevel</span>) : <span style="font-size:smaller; color:#4ec9b0">hasSeasonData, nextMythicPlusLevel, itemLevel</span>
+
: [[API C_WeeklyRewards.GetNextMythicPlusIncrease|C_WeeklyRewards.GetNextMythicPlusIncrease]](<span class="apiarg">mythicPlusLevel</span>) : <span class="apiret">hasSeasonData, nextMythicPlusLevel, itemLevel</span>
: [[API C_WeeklyRewards.HasAvailableRewards|C_WeeklyRewards.HasAvailableRewards]]() : <span style="font-size:smaller; color:#4ec9b0">hasAvailableRewards</span>
+
: [[API C_WeeklyRewards.HasAvailableRewards|C_WeeklyRewards.HasAvailableRewards]]() : <span class="apiret">hasAvailableRewards</span>
: [[API C_WeeklyRewards.HasGeneratedRewards|C_WeeklyRewards.HasGeneratedRewards]]() : <span style="font-size:smaller; color:#4ec9b0">hasGeneratedRewards</span>
+
: [[API C_WeeklyRewards.HasGeneratedRewards|C_WeeklyRewards.HasGeneratedRewards]]() : <span class="apiret">hasGeneratedRewards</span>
: [[API C_WeeklyRewards.HasInteraction|C_WeeklyRewards.HasInteraction]]() : <span style="font-size:smaller; color:#4ec9b0">isInteracting</span>
+
: [[API C_WeeklyRewards.HasInteraction|C_WeeklyRewards.HasInteraction]]() : <span class="apiret">isInteracting</span>
   
 
=== Items ===
 
=== Items ===
 
These functions operate on item links or item information directly. See also [[#Bags|Bag]] functions.
 
These functions operate on item links or item information directly. See also [[#Bags|Bag]] functions.
: [[API C_Item.CanViewItemPowers|C_Item.CanViewItemPowers]](<span style="font-size:smaller; color:#ecbc2a">itemLoc</span>) : <span style="font-size:smaller; color:#4ec9b0">isItemViewable</span>
+
: [[API C_Item.CanViewItemPowers|C_Item.CanViewItemPowers]](<span class="apiarg">itemLoc</span>) : <span class="apiret">isItemViewable</span>
: [[API C_Item.DoesItemExist|C_Item.DoesItemExist]](<span style="font-size:smaller; color:#ecbc2a">emptiableItemLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">itemExists</span>
+
: [[API C_Item.DoesItemExist|C_Item.DoesItemExist]](<span class="apiarg">emptiableItemLocation</span>) : <span class="apiret">itemExists</span>
: [[API C_Item.DoesItemExistByID|C_Item.DoesItemExistByID]](<span style="font-size:smaller; color:#ecbc2a">itemInfo</span>) : <span style="font-size:smaller; color:#4ec9b0">itemExists</span>
+
: [[API C_Item.DoesItemExistByID|C_Item.DoesItemExistByID]](<span class="apiarg">itemInfo</span>) : <span class="apiret">itemExists</span>
: [[API C_Item.DoesItemMatchBonusTreeReplacement|C_Item.DoesItemMatchBonusTreeReplacement]](<span style="font-size:smaller; color:#ecbc2a">itemLoc</span>) : <span style="font-size:smaller; color:#4ec9b0">matchesBonusTree</span>
+
: [[API C_Item.DoesItemMatchBonusTreeReplacement|C_Item.DoesItemMatchBonusTreeReplacement]](<span class="apiarg">itemLoc</span>) : <span class="apiret">matchesBonusTree</span>
: [[API C_Item.GetCurrentItemLevel|C_Item.GetCurrentItemLevel]](<span style="font-size:smaller; color:#ecbc2a">itemLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">currentItemLevel</span>
+
: [[API C_Item.GetCurrentItemLevel|C_Item.GetCurrentItemLevel]](<span class="apiarg">itemLocation</span>) : <span class="apiret">currentItemLevel</span>
: [[API C_Item.GetItemGUID|C_Item.GetItemGUID]](<span style="font-size:smaller; color:#ecbc2a">itemLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">itemGuid</span>
+
: [[API C_Item.GetItemGUID|C_Item.GetItemGUID]](<span class="apiarg">itemLocation</span>) : <span class="apiret">itemGuid</span>
: [[API C_Item.GetItemIcon|C_Item.GetItemIcon]](<span style="font-size:smaller; color:#ecbc2a">itemLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">icon</span>
+
: [[API C_Item.GetItemIcon|C_Item.GetItemIcon]](<span class="apiarg">itemLocation</span>) : <span class="apiret">icon</span>
: [[API C_Item.GetItemIconByID|C_Item.GetItemIconByID]](<span style="font-size:smaller; color:#ecbc2a">itemInfo</span>) : <span style="font-size:smaller; color:#4ec9b0">icon</span>
+
: [[API C_Item.GetItemIconByID|C_Item.GetItemIconByID]](<span class="apiarg">itemInfo</span>) : <span class="apiret">icon</span>
: [[API C_Item.GetItemID|C_Item.GetItemID]](<span style="font-size:smaller; color:#ecbc2a">itemLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">itemID</span>
+
: [[API C_Item.GetItemID|C_Item.GetItemID]](<span class="apiarg">itemLocation</span>) : <span class="apiret">itemID</span>
: [[API C_Item.GetItemInventoryType|C_Item.GetItemInventoryType]](<span style="font-size:smaller; color:#ecbc2a">itemLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">inventoryType</span>
+
: [[API C_Item.GetItemInventoryType|C_Item.GetItemInventoryType]](<span class="apiarg">itemLocation</span>) : <span class="apiret">inventoryType</span>
: [[API C_Item.GetItemInventoryTypeByID|C_Item.GetItemInventoryTypeByID]](<span style="font-size:smaller; color:#ecbc2a">itemInfo</span>) : <span style="font-size:smaller; color:#4ec9b0">inventoryType</span>
+
: [[API C_Item.GetItemInventoryTypeByID|C_Item.GetItemInventoryTypeByID]](<span class="apiarg">itemInfo</span>) : <span class="apiret">inventoryType</span>
: [[API C_Item.GetItemLink|C_Item.GetItemLink]](<span style="font-size:smaller; color:#ecbc2a">itemLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">itemLink</span>
+
: [[API C_Item.GetItemLink|C_Item.GetItemLink]](<span class="apiarg">itemLocation</span>) : <span class="apiret">itemLink</span>
: [[API C_Item.GetItemName|C_Item.GetItemName]](<span style="font-size:smaller; color:#ecbc2a">itemLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">itemName</span>
+
: [[API C_Item.GetItemName|C_Item.GetItemName]](<span class="apiarg">itemLocation</span>) : <span class="apiret">itemName</span>
: [[API C_Item.GetItemNameByID|C_Item.GetItemNameByID]](<span style="font-size:smaller; color:#ecbc2a">itemInfo</span>) : <span style="font-size:smaller; color:#4ec9b0">itemName</span>
+
: [[API C_Item.GetItemNameByID|C_Item.GetItemNameByID]](<span class="apiarg">itemInfo</span>) : <span class="apiret">itemName</span>
: [[API C_Item.GetItemQuality|C_Item.GetItemQuality]](<span style="font-size:smaller; color:#ecbc2a">itemLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">itemQuality</span>
+
: [[API C_Item.GetItemQuality|C_Item.GetItemQuality]](<span class="apiarg">itemLocation</span>) : <span class="apiret">itemQuality</span>
: [[API C_Item.GetItemQualityByID|C_Item.GetItemQualityByID]](<span style="font-size:smaller; color:#ecbc2a">itemInfo</span>) : <span style="font-size:smaller; color:#4ec9b0">itemQuality</span>
+
: [[API C_Item.GetItemQualityByID|C_Item.GetItemQualityByID]](<span class="apiarg">itemInfo</span>) : <span class="apiret">itemQuality</span>
: [[API C_Item.GetStackCount|C_Item.GetStackCount]](<span style="font-size:smaller; color:#ecbc2a">itemLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">stackCount</span>
+
: [[API C_Item.GetStackCount|C_Item.GetStackCount]](<span class="apiarg">itemLocation</span>) : <span class="apiret">stackCount</span>
: [[API C_Item.IsBound|C_Item.IsBound]](<span style="font-size:smaller; color:#ecbc2a">itemLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">isBound</span>
+
: [[API C_Item.IsBound|C_Item.IsBound]](<span class="apiarg">itemLocation</span>) : <span class="apiret">isBound</span>
: [[API C_Item.IsItemDataCached|C_Item.IsItemDataCached]](<span style="font-size:smaller; color:#ecbc2a">itemLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">isCached</span>
+
: [[API C_Item.IsItemDataCached|C_Item.IsItemDataCached]](<span class="apiarg">itemLocation</span>) : <span class="apiret">isCached</span>
: [[API C_Item.IsItemDataCachedByID|C_Item.IsItemDataCachedByID]](<span style="font-size:smaller; color:#ecbc2a">itemInfo</span>) : <span style="font-size:smaller; color:#4ec9b0">isCached</span>
+
: [[API C_Item.IsItemDataCachedByID|C_Item.IsItemDataCachedByID]](<span class="apiarg">itemInfo</span>) : <span class="apiret">isCached</span>
: [[API C_Item.IsItemKeystoneByID|C_Item.IsItemKeystoneByID]](<span style="font-size:smaller; color:#ecbc2a">itemInfo</span>) : <span style="font-size:smaller; color:#4ec9b0">isKeystone</span>
+
: [[API C_Item.IsItemKeystoneByID|C_Item.IsItemKeystoneByID]](<span class="apiarg">itemInfo</span>) : <span class="apiret">isKeystone</span>
: [[API C_Item.IsLocked|C_Item.IsLocked]](<span style="font-size:smaller; color:#ecbc2a">itemLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">isLocked</span>
+
: [[API C_Item.IsLocked|C_Item.IsLocked]](<span class="apiarg">itemLocation</span>) : <span class="apiret">isLocked</span>
: [[API C_Item.LockItem|C_Item.LockItem]](<span style="font-size:smaller; color:#ecbc2a">itemLocation</span>)
+
: [[API C_Item.LockItem|C_Item.LockItem]](<span class="apiarg">itemLocation</span>)
: [[API C_Item.LockItemByGUID|C_Item.LockItemByGUID]](<span style="font-size:smaller; color:#ecbc2a">itemGUID</span>)
+
: [[API C_Item.LockItemByGUID|C_Item.LockItemByGUID]](<span class="apiarg">itemGUID</span>)
: [[API C_Item.RequestLoadItemData|C_Item.RequestLoadItemData]](<span style="font-size:smaller; color:#ecbc2a">itemLocation</span>)
+
: [[API C_Item.RequestLoadItemData|C_Item.RequestLoadItemData]](<span class="apiarg">itemLocation</span>)
: [[API C_Item.RequestLoadItemDataByID|C_Item.RequestLoadItemDataByID]](<span style="font-size:smaller; color:#ecbc2a">itemInfo</span>)
+
: [[API C_Item.RequestLoadItemDataByID|C_Item.RequestLoadItemDataByID]](<span class="apiarg">itemInfo</span>)
: [[API C_Item.UnlockItem|C_Item.UnlockItem]](<span style="font-size:smaller; color:#ecbc2a">itemLocation</span>)
+
: [[API C_Item.UnlockItem|C_Item.UnlockItem]](<span class="apiarg">itemLocation</span>)
: [[API C_Item.UnlockItemByGUID|C_Item.UnlockItemByGUID]](<span style="font-size:smaller; color:#ecbc2a">itemGUID</span>)
+
: [[API C_Item.UnlockItemByGUID|C_Item.UnlockItemByGUID]](<span class="apiarg">itemGUID</span>)
 
: [[API C_ItemInteraction.ClearPendingItem|C_ItemInteraction.ClearPendingItem]]()
 
: [[API C_ItemInteraction.ClearPendingItem|C_ItemInteraction.ClearPendingItem]]()
 
: [[API C_ItemInteraction.CloseUI|C_ItemInteraction.CloseUI]]()
 
: [[API C_ItemInteraction.CloseUI|C_ItemInteraction.CloseUI]]()
: [[API C_ItemInteraction.GetItemInteractionInfo|C_ItemInteraction.GetItemInteractionInfo]]() : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_ItemInteraction.GetItemInteractionInfo|C_ItemInteraction.GetItemInteractionInfo]]() : <span class="apiret">info</span>
: [[API C_ItemInteraction.GetItemInteractionSpellId|C_ItemInteraction.GetItemInteractionSpellId]]() : <span style="font-size:smaller; color:#4ec9b0">spellId</span>
+
: [[API C_ItemInteraction.GetItemInteractionSpellId|C_ItemInteraction.GetItemInteractionSpellId]]() : <span class="apiret">spellId</span>
 
: [[API C_ItemInteraction.InitializeFrame|C_ItemInteraction.InitializeFrame]]()
 
: [[API C_ItemInteraction.InitializeFrame|C_ItemInteraction.InitializeFrame]]()
 
: [[API C_ItemInteraction.PerformItemInteraction|C_ItemInteraction.PerformItemInteraction]]()
 
: [[API C_ItemInteraction.PerformItemInteraction|C_ItemInteraction.PerformItemInteraction]]()
 
: [[API C_ItemInteraction.Reset|C_ItemInteraction.Reset]]()
 
: [[API C_ItemInteraction.Reset|C_ItemInteraction.Reset]]()
: [[API C_ItemInteraction.SetPendingItem|C_ItemInteraction.SetPendingItem]](<span style="font-size:smaller; color:#ecbc2a">[item]</span>) : <span style="font-size:smaller; color:#4ec9b0">success</span>
+
: [[API C_ItemInteraction.SetPendingItem|C_ItemInteraction.SetPendingItem]](<span class="apiarg">[item]</span>) : <span class="apiret">success</span>
: [[API C_ItemUpgrade.CanUpgradeItem|C_ItemUpgrade.CanUpgradeItem]](<span style="font-size:smaller; color:#ecbc2a">baseItem</span>) : <span style="font-size:smaller; color:#4ec9b0">isValid</span>
 
: [[API C_ItemUpgrade.GetItemHyperlink|C_ItemUpgrade.GetItemHyperlink]]() : <span style="font-size:smaller; color:#4ec9b0">link</span>
 
 
: [[API C_NewItems.ClearAll|C_NewItems.ClearAll]]() - Clears the new item flag on all items in the player's inventory.
 
: [[API C_NewItems.ClearAll|C_NewItems.ClearAll]]() - Clears the new item flag on all items in the player's inventory.
: [[API C_NewItems.IsNewItem|C_NewItems.IsNewItem]](<span style="font-size:smaller; color:#ecbc2a">bag, slot</span>) - Returns whether the item in the specified container slot is flagged as new.
+
: [[API C_NewItems.IsNewItem|C_NewItems.IsNewItem]](<span class="apiarg">bag, slot</span>) - Returns whether the item in the specified container slot is flagged as new.
: [[API C_NewItems.RemoveNewItem|C_NewItems.RemoveNewItem]](<span style="font-size:smaller; color:#ecbc2a">bag, slot</span>) - Clears the "new item" flag.
+
: [[API C_NewItems.RemoveNewItem|C_NewItems.RemoveNewItem]](<span class="apiarg">bag, slot</span>) - Clears the "new item" flag.
 
: [[API ActionBindsItem|ActionBindsItem]]() - Confirms this will bind this item to you.
 
: [[API ActionBindsItem|ActionBindsItem]]() - Confirms this will bind this item to you.
: [[API ClearItemUpgrade|ClearItemUpgrade]]()
 
: [[API CloseItemUpgrade|CloseItemUpgrade]]()
 
 
: [[API ConfirmOnUse|ConfirmOnUse]]() - Confirms you want to use the item.
 
: [[API ConfirmOnUse|ConfirmOnUse]]() - Confirms you want to use the item.
: [[API EndBoundTradeable|EndBoundTradeable]](<span style="font-size:smaller; color:#ecbc2a">type</span>) - Confirms this will make this item non-tradeable.
+
: [[API EndBoundTradeable|EndBoundTradeable]](<span class="apiarg">type</span>) - Confirms this will make this item non-tradeable.
 
: [[API EndRefund|EndRefund]]() - Confirms this will make this item non-refundable.
 
: [[API EndRefund|EndRefund]]() - Confirms this will make this item non-refundable.
: [[API EquipItemByName|EquipItemByName]](<span style="font-size:smaller; color:#ecbc2a">item [, invSlot]</span>) - Equips an item, optionally into a specified slot.
+
: [[API EquipItemByName|EquipItemByName]](<span class="apiarg">item [, invSlot]</span>) - Equips an item, optionally into a specified slot.
: [[API GetDetailedItemLevelInfo|GetDetailedItemLevelInfo]](<span style="font-size:smaller; color:#ecbc2a">item</span>) - Returns an item's item level.
+
: [[API GetDetailedItemLevelInfo|GetDetailedItemLevelInfo]](<span class="apiarg">item</span>) - Returns an item's item level.
: [[API GetItemChildInfo|GetItemChildInfo]](<span style="font-size:smaller; color:#ecbc2a">item [, slotID]</span>)
+
: [[API GetItemChildInfo|GetItemChildInfo]](<span class="apiarg">item [, slotID]</span>)
: [[API GetItemClassInfo|GetItemClassInfo]](<span style="font-size:smaller; color:#ecbc2a">itemClassID</span>) - Returns the name of the item type.
+
: [[API GetItemClassInfo|GetItemClassInfo]](<span class="apiarg">itemClassID</span>) - Returns the name of the item type.
: [[API GetItemCooldown|GetItemCooldown]](<span style="font-size:smaller; color:#ecbc2a">itemId</span>) - Returns startTime, duration, enable.
+
: [[API GetItemCooldown|GetItemCooldown]](<span class="apiarg">itemId</span>) - Returns startTime, duration, enable.
: [[API GetItemCount|GetItemCount]](<span style="font-size:smaller; color:#ecbc2a">item [, includeBank, includeCharges]</span>) - Returns number of such items in inventory, or charges instead if it has charges.
+
: [[API GetItemCount|GetItemCount]](<span class="apiarg">item [, includeBank, includeCharges]</span>) - Returns number of such items in inventory, or charges instead if it has charges.
: [[API GetItemCreationContext|GetItemCreationContext]](<span style="font-size:smaller; color:#ecbc2a">itemlink</span>)
+
: [[API GetItemCreationContext|GetItemCreationContext]](<span class="apiarg">itemlink</span>)
: [[API GetItemFamily|GetItemFamily]](<span style="font-size:smaller; color:#ecbc2a">item</span>) - Returns the bag type that an item can go into, or for bags the type of items that it can contain.
+
: [[API GetItemFamily|GetItemFamily]](<span class="apiarg">item</span>) - Returns the bag type that an item can go into, or for bags the type of items that it can contain.
: [[API GetItemGem|GetItemGem]](<span style="font-size:smaller; color:#ecbc2a">item, index</span>)
+
: [[API GetItemGem|GetItemGem]](<span class="apiarg">item, index</span>)
: [[API GetItemIcon|GetItemIcon]](<span style="font-size:smaller; color:#ecbc2a">itemId</span>) - Returns the icon for the item. Works for any valid item even if it's not in the cache.
+
: [[API GetItemIcon|GetItemIcon]](<span class="apiarg">itemId</span>) - Returns the icon for the item. Works for any valid item even if it's not in the cache.
: [[API GetItemInfo|GetItemInfo]](<span style="font-size:smaller; color:#ecbc2a">item</span>) - Returns information about an item.
+
: [[API GetItemInfo|GetItemInfo]](<span class="apiarg">item</span>) - Returns information about an item.
: [[API GetItemInfoInstant|GetItemInfoInstant]](<span style="font-size:smaller; color:#ecbc2a">item</span>) - Returns basic information about an item.
+
: [[API GetItemInfoInstant|GetItemInfoInstant]](<span class="apiarg">item</span>) - Returns basic information about an item.
: [[API GetItemInventorySlotInfo|GetItemInventorySlotInfo]](<span style="font-size:smaller; color:#ecbc2a">inventorySlot</span>)
+
: [[API GetItemInventorySlotInfo|GetItemInventorySlotInfo]](<span class="apiarg">inventorySlot</span>)
 
: [[API GetItemLevelColor|GetItemLevelColor]]()
 
: [[API GetItemLevelColor|GetItemLevelColor]]()
  +
: [[API GetItemQualityColor|GetItemQualityColor]](<span class="apiarg">quality</span>) - Returns the RGB color codes for a quality.
: [[API GetItemLevelIncrement|GetItemLevelIncrement]]()
 
  +
: [[API GetItemSetInfo|GetItemSetInfo]](<span class="apiarg">setID</span>)
: [[API GetItemQualityColor|GetItemQualityColor]](<span style="font-size:smaller; color:#ecbc2a">quality</span>) - Returns the RGB color codes for a quality.
 
: [[API GetItemSetInfo|GetItemSetInfo]](<span style="font-size:smaller; color:#ecbc2a">setID</span>)
+
: [[API GetItemSpecInfo|GetItemSpecInfo]](<span class="apiarg">item [, specTable]</span>)
: [[API GetItemSpecInfo|GetItemSpecInfo]](<span style="font-size:smaller; color:#ecbc2a">item [, specTable]</span>)
+
: [[API GetItemSpell|GetItemSpell]](<span class="apiarg">item</span>) - Returns name, rank.
  +
: [[API GetItemStatDelta|GetItemStatDelta]](<span class="apiarg">itemLink1, itemLink2 [, statTable]</span>)
: [[API GetItemSpell|GetItemSpell]](<span style="font-size:smaller; color:#ecbc2a">item</span>) - Returns name, rank.
 
: [[API GetItemStatDelta|GetItemStatDelta]](<span style="font-size:smaller; color:#ecbc2a">itemLink1, itemLink2 [, statTable]</span>)
+
: [[API GetItemStats|GetItemStats]](<span class="apiarg">itemLink, statTable</span>) - Returns a table of stats for an item.
: [[API GetItemStats|GetItemStats]](<span style="font-size:smaller; color:#ecbc2a">itemLink, statTable</span>) - Returns a table of stats for an item.
+
: [[API GetItemSubClassInfo|GetItemSubClassInfo]](<span class="apiarg">itemClassID, itemSubClassID</span>) - Returns the name of the item subtype.
  +
: [[API GetItemUniqueness|GetItemUniqueness]](<span class="apiarg">item</span>)
: [[API GetItemSubClassInfo|GetItemSubClassInfo]](<span style="font-size:smaller; color:#ecbc2a">itemClassID, itemSubClassID</span>) - Returns the name of the item subtype.
 
: [[API GetItemUniqueness|GetItemUniqueness]](<span style="font-size:smaller; color:#ecbc2a">item</span>)
+
: [[API IsBattlePayItem|IsBattlePayItem]](<span class="apiarg">bag, slot</span>)
  +
: [[API IsConsumableItem|IsConsumableItem]](<span class="apiarg">item</span>)
: [[API GetItemUpdateLevel|GetItemUpdateLevel]]()
 
: [[API GetItemUpgradeEffect|GetItemUpgradeEffect]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API IsCurrentItem|IsCurrentItem]](<span class="apiarg">item</span>)
  +
: [[API IsEquippableItem|IsEquippableItem]](<span class="apiarg">item</span>) - Returns whether an item can be equipped.
: [[API GetItemUpgradeItemInfo|GetItemUpgradeItemInfo]]()
 
: [[API GetItemUpgradeStats|GetItemUpgradeStats]](<span style="font-size:smaller; color:#ecbc2a">upgraded</span>)
+
: [[API IsEquippedItem|IsEquippedItem]](<span class="apiarg">item</span>)
  +
: [[API IsEquippedItemType|IsEquippedItemType]](<span class="apiarg">type</span>) - Where "type" is any valid inventory type, item class, or item subclass.
: [[API GetNumItemUpgradeEffects|GetNumItemUpgradeEffects]]()
 
  +
: [[API IsHarmfulItem|IsHarmfulItem]](<span class="apiarg">item</span>) - Returns whether an item can be used against hostile units
: [[API IsBattlePayItem|IsBattlePayItem]](<span style="font-size:smaller; color:#ecbc2a">bag, slot</span>)
 
  +
: [[API IsHelpfulItem|IsHelpfulItem]](<span class="apiarg">item</span>) - Returns whether an item can be used on the player or friendly units
: [[API IsConsumableItem|IsConsumableItem]](<span style="font-size:smaller; color:#ecbc2a">item</span>)
 
: [[API IsCurrentItem|IsCurrentItem]](<span style="font-size:smaller; color:#ecbc2a">item</span>)
+
: [[API IsItemInRange|IsItemInRange]](<span class="apiarg">item [, unit]</span>) - Returns whether the item is in usable range of the unit.
: [[API IsDressableItem|IsDressableItem]](<span style="font-size:smaller; color:#ecbc2a">item</span>) - Returns if the item can be shown in the [[Dressing room]].
+
: [[API IsUsableItem|IsUsableItem]](<span class="apiarg">item</span>) - Returns usable, noMana.
: [[API IsEquippableItem|IsEquippableItem]](<span style="font-size:smaller; color:#ecbc2a">item</span>) - Returns whether an item can be equipped.
+
: [[API ItemHasRange|ItemHasRange]](<span class="apiarg">item</span>)
: [[API IsEquippedItem|IsEquippedItem]](<span style="font-size:smaller; color:#ecbc2a">item</span>)
 
: [[API IsEquippedItemType|IsEquippedItemType]](<span style="font-size:smaller; color:#ecbc2a">type</span>) - Where "type" is any valid inventory type, item class, or item subclass.
 
: [[API IsHarmfulItem|IsHarmfulItem]](<span style="font-size:smaller; color:#ecbc2a">item</span>) - Returns whether an item can be used against hostile units
 
: [[API IsHelpfulItem|IsHelpfulItem]](<span style="font-size:smaller; color:#ecbc2a">item</span>) - Returns whether an item can be used on the player or friendly units
 
: [[API IsItemInRange|IsItemInRange]](<span style="font-size:smaller; color:#ecbc2a">item [, unit]</span>) - Returns whether the item is in usable range of the unit.
 
: [[API IsUsableItem|IsUsableItem]](<span style="font-size:smaller; color:#ecbc2a">item</span>) - Returns usable, noMana.
 
: [[API ItemHasRange|ItemHasRange]](<span style="font-size:smaller; color:#ecbc2a">item</span>)
 
 
: [[API TargetSpellReplacesBonusTree|TargetSpellReplacesBonusTree]]()
 
: [[API TargetSpellReplacesBonusTree|TargetSpellReplacesBonusTree]]()
  +
: <small>PROTECTED</small> [[API UseItemByName|UseItemByName]](<span class="apiarg">itemName, unit</span>) - Use an item on the unit specified.
: [[API UpgradeItem|UpgradeItem]]()
 
: <small>PROTECTED</small> [[API UseItemByName|UseItemByName]](<span style="font-size:smaller; color:#ecbc2a">itemName, unit</span>) - Use an item on the unit specified.
 
 
Item Enchants
 
Item Enchants
 
: [[API BindEnchant|BindEnchant]]() - Confirm the binding of the item when enchanting it.
 
: [[API BindEnchant|BindEnchant]]() - Confirm the binding of the item when enchanting it.
 
: [[API ReplaceEnchant|ReplaceEnchant]]() - Confirm the replacement of an enchantment.
 
: [[API ReplaceEnchant|ReplaceEnchant]]() - Confirm the replacement of an enchantment.
 
: [[API ReplaceTradeEnchant|ReplaceTradeEnchant]]() - Confirm the replacement of an enchantment via trade.
 
: [[API ReplaceTradeEnchant|ReplaceTradeEnchant]]() - Confirm the replacement of an enchantment via trade.
  +
: <small>DEPRECATED</small> [[API GetItemUpdateLevel|GetItemUpdateLevel]]()
  +
: <small>DEPRECATED</small> [[API GetItemUpgradeItemInfo|GetItemUpgradeItemInfo]]()
  +
: <small>DEPRECATED</small> [[API GetItemUpgradeStats|GetItemUpgradeStats]](<span class="apiarg">upgraded</span>)
  +
: <small>DEPRECATED</small> [[API IsDressableItem|IsDressableItem]](<span class="apiarg">item</span>) - Returns if the item can be shown in the [[Dressing room]].
  +
  +
=== Item Upgrade ===
  +
: [[API C_ItemUpgrade.CanUpgradeItem|C_ItemUpgrade.CanUpgradeItem]](<span class="apiarg">baseItem</span>) : <span class="apiret">isValid</span>
  +
: [[API C_ItemUpgrade.ClearItemUpgrade|C_ItemUpgrade.ClearItemUpgrade]]()
  +
: [[API C_ItemUpgrade.CloseItemUpgrade|C_ItemUpgrade.CloseItemUpgrade]]()
  +
: [[API C_ItemUpgrade.GetItemHyperlink|C_ItemUpgrade.GetItemHyperlink]]() : <span class="apiret">link</span>
  +
: [[API C_ItemUpgrade.GetItemUpgradeCurrentLevel|C_ItemUpgrade.GetItemUpgradeCurrentLevel]]() : <span class="apiret">itemLevel, isPvpItemLevel</span>
  +
: [[API C_ItemUpgrade.GetItemUpgradeEffect|C_ItemUpgrade.GetItemUpgradeEffect]](<span class="apiarg">effectIndex [, numUpgradeLevels]</span>) : <span class="apiret">outBaseEffect, outUpgradedEffect</span>
  +
: [[API C_ItemUpgrade.GetItemUpgradeItemInfo|C_ItemUpgrade.GetItemUpgradeItemInfo]]() : <span class="apiret">itemInfo</span>
  +
: [[API C_ItemUpgrade.GetItemUpgradePvpItemLevelDeltaValues|C_ItemUpgrade.GetItemUpgradePvpItemLevelDeltaValues]](<span class="apiarg">numUpgradeLevels</span>) : <span class="apiret">currentPvPItemLevel, upgradedPvPItemLevel</span>
  +
: [[API C_ItemUpgrade.GetNumItemUpgradeEffects|C_ItemUpgrade.GetNumItemUpgradeEffects]]() : <span class="apiret">numItemUpgradeEffects</span>
  +
: [[API C_ItemUpgrade.SetItemUpgradeFromCursorItem|C_ItemUpgrade.SetItemUpgradeFromCursorItem]]()
  +
: [[API C_ItemUpgrade.SetItemUpgradeFromLocation|C_ItemUpgrade.SetItemUpgradeFromLocation]](<span class="apiarg">itemToSet</span>)
  +
: [[API C_ItemUpgrade.UpgradeItem|C_ItemUpgrade.UpgradeItem]](<span class="apiarg">[numUpgrades]</span>)
  +
: <small>DEPRECATED</small> [[API C_ItemUpgrade.GetItemLevelIncrement|C_ItemUpgrade.GetItemLevelIncrement]](<span class="apiarg">[numUpgradeLevels]</span>) : <span class="apiret">itemLevelIncrement</span>
   
 
=== Looting ===
 
=== Looting ===
 
Relates to [[Loot]].
 
Relates to [[Loot]].
: [[API C_Loot.IsLegacyLootModeEnabled|C_Loot.IsLegacyLootModeEnabled]]() : <span style="font-size:smaller; color:#4ec9b0">isLegacyLootModeEnabled</span>
+
: [[API C_Loot.IsLegacyLootModeEnabled|C_Loot.IsLegacyLootModeEnabled]]() : <span class="apiret">isLegacyLootModeEnabled</span>
: [[API C_LootHistory.CanMasterLoot|C_LootHistory.CanMasterLoot]](<span style="font-size:smaller; color:#ecbc2a">itemIndex, playerIndex</span>)
+
: [[API C_LootHistory.CanMasterLoot|C_LootHistory.CanMasterLoot]](<span class="apiarg">itemIndex, playerIndex</span>)
 
: [[API C_LootHistory.GetExpiration|C_LootHistory.GetExpiration]]()
 
: [[API C_LootHistory.GetExpiration|C_LootHistory.GetExpiration]]()
: [[API C_LootHistory.GetItem|C_LootHistory.GetItem]](<span style="font-size:smaller; color:#ecbc2a">itemIndex</span>)
+
: [[API C_LootHistory.GetItem|C_LootHistory.GetItem]](<span class="apiarg">itemIndex</span>)
 
: [[API C_LootHistory.GetNumItems|C_LootHistory.GetNumItems]]()
 
: [[API C_LootHistory.GetNumItems|C_LootHistory.GetNumItems]]()
: [[API C_LootHistory.GetPlayerInfo|C_LootHistory.GetPlayerInfo]](<span style="font-size:smaller; color:#ecbc2a">itemIndex, playerIndex</span>)
+
: [[API C_LootHistory.GetPlayerInfo|C_LootHistory.GetPlayerInfo]](<span class="apiarg">itemIndex, playerIndex</span>)
: [[API C_LootHistory.GiveMasterLoot|C_LootHistory.GiveMasterLoot]](<span style="font-size:smaller; color:#ecbc2a">itemIndex, playerIndex</span>)
+
: [[API C_LootHistory.GiveMasterLoot|C_LootHistory.GiveMasterLoot]](<span class="apiarg">itemIndex, playerIndex</span>)
: [[API C_LootHistory.SetExpiration|C_LootHistory.SetExpiration]](<span style="font-size:smaller; color:#ecbc2a">numItemsToSave, secondsToSave</span>)
+
: [[API C_LootHistory.SetExpiration|C_LootHistory.SetExpiration]](<span class="apiarg">numItemsToSave, secondsToSave</span>)
: [[API C_PlayerInfo.CanPlayerUseAreaLoot|C_PlayerInfo.CanPlayerUseAreaLoot]]() : <span style="font-size:smaller; color:#4ec9b0">canUseAreaLoot</span>
+
: [[API C_PlayerInfo.CanPlayerUseAreaLoot|C_PlayerInfo.CanPlayerUseAreaLoot]]() : <span class="apiret">canUseAreaLoot</span>
: [[API CanLootUnit|CanLootUnit]](<span style="font-size:smaller; color:#ecbc2a">unitGUID</span>)
+
: [[API CanLootUnit|CanLootUnit]](<span class="apiarg">unitGUID</span>)
: [[API CancelMasterLootRoll|CancelMasterLootRoll]](<span style="font-size:smaller; color:#ecbc2a">slot</span>)
+
: [[API CancelMasterLootRoll|CancelMasterLootRoll]](<span class="apiarg">slot</span>)
: [[API CloseLoot|CloseLoot]](<span style="font-size:smaller; color:#ecbc2a">[uiFailedFlag]</span>)
+
: [[API CloseLoot|CloseLoot]](<span class="apiarg">[uiFailedFlag]</span>)
: [[API ConfirmLootRoll|ConfirmLootRoll]](<span style="font-size:smaller; color:#ecbc2a">rollId [, roll]</span>) - Confirm a loot roll.
+
: [[API ConfirmLootRoll|ConfirmLootRoll]](<span class="apiarg">rollId [, roll]</span>) - Confirm a loot roll.
: [[API ConfirmLootSlot|ConfirmLootSlot]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Confirm looting of a BoP item.
+
: [[API ConfirmLootSlot|ConfirmLootSlot]](<span class="apiarg">slot</span>) - Confirm looting of a BoP item.
: [[API DoMasterLootRoll|DoMasterLootRoll]](<span style="font-size:smaller; color:#ecbc2a">slot</span>)
+
: [[API DoMasterLootRoll|DoMasterLootRoll]](<span class="apiarg">slot</span>)
 
: [[API GetActiveLootRollIDs|GetActiveLootRollIDs]]()
 
: [[API GetActiveLootRollIDs|GetActiveLootRollIDs]]()
 
: [[API GetLootInfo|GetLootInfo]]()
 
: [[API GetLootInfo|GetLootInfo]]()
 
: [[API GetLootMethod|GetLootMethod]]() - Returns the currently active [[lootMethod]].
 
: [[API GetLootMethod|GetLootMethod]]() - Returns the currently active [[lootMethod]].
: [[API GetLootRollItemInfo|GetLootRollItemInfo]](<span style="font-size:smaller; color:#ecbc2a">rollId</span>)
+
: [[API GetLootRollItemInfo|GetLootRollItemInfo]](<span class="apiarg">rollId</span>)
: [[API GetLootRollItemLink|GetLootRollItemLink]](<span style="font-size:smaller; color:#ecbc2a">id</span>)
+
: [[API GetLootRollItemLink|GetLootRollItemLink]](<span class="apiarg">id</span>)
: [[API GetLootRollTimeLeft|GetLootRollTimeLeft]](<span style="font-size:smaller; color:#ecbc2a">rollid</span>)
+
: [[API GetLootRollTimeLeft|GetLootRollTimeLeft]](<span class="apiarg">rollid</span>)
: [[API GetLootSlotInfo|GetLootSlotInfo]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Returns icon path, item name, and item quantity for the item in the given loot window slot.
+
: [[API GetLootSlotInfo|GetLootSlotInfo]](<span class="apiarg">slot</span>) - Returns icon path, item name, and item quantity for the item in the given loot window slot.
: [[API GetLootSlotLink|GetLootSlotLink]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Returns an [[itemLink]] for the item in the given loot window slot.
+
: [[API GetLootSlotLink|GetLootSlotLink]](<span class="apiarg">slot</span>) - Returns an [[itemLink]] for the item in the given loot window slot.
: [[API GetLootSlotType|GetLootSlotType]](<span style="font-size:smaller; color:#ecbc2a">slot</span>)
+
: [[API GetLootSlotType|GetLootSlotType]](<span class="apiarg">slot</span>)
: [[API GetLootSourceInfo|GetLootSourceInfo]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Returns information about the source of the objects in a loot slot.
+
: [[API GetLootSourceInfo|GetLootSourceInfo]](<span class="apiarg">slot</span>) - Returns information about the source of the objects in a loot slot.
 
: [[API GetLootSpecialization|GetLootSpecialization]]()
 
: [[API GetLootSpecialization|GetLootSpecialization]]()
 
: [[API GetLootThreshold|GetLootThreshold]]() - Returns the current loot threshold (for group/master loot)
 
: [[API GetLootThreshold|GetLootThreshold]]() - Returns the current loot threshold (for group/master loot)
: [[API GetMasterLootCandidate|GetMasterLootCandidate]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns the name of a player who is eligible to receive loot in master mode.
+
: [[API GetMasterLootCandidate|GetMasterLootCandidate]](<span class="apiarg">index</span>) - Returns the name of a player who is eligible to receive loot in master mode.
 
: [[API GetNumLootItems|GetNumLootItems]]() - Returns amount of objects to loot (number)
 
: [[API GetNumLootItems|GetNumLootItems]]() - Returns amount of objects to loot (number)
 
: [[API GetOptOutOfLoot|GetOptOutOfLoot]]() - Returns whether the character is currently automatically passing on all loot.
 
: [[API GetOptOutOfLoot|GetOptOutOfLoot]]() - Returns whether the character is currently automatically passing on all loot.
: [[API GiveMasterLoot|GiveMasterLoot]](<span style="font-size:smaller; color:#ecbc2a">slot, index</span>)
+
: [[API GiveMasterLoot|GiveMasterLoot]](<span class="apiarg">slot, index</span>)
 
: [[API IsFishingLoot|IsFishingLoot]]()
 
: [[API IsFishingLoot|IsFishingLoot]]()
 
: [[API IsMasterLooter|IsMasterLooter]]()
 
: [[API IsMasterLooter|IsMasterLooter]]()
: [[API LootMoneyNotify|LootMoneyNotify]](<span style="font-size:smaller; color:#ecbc2a">money, soleLooter</span>)
+
: [[API LootMoneyNotify|LootMoneyNotify]](<span class="apiarg">money, soleLooter</span>)
: [[API LootSlotHasItem|LootSlotHasItem]](<span style="font-size:smaller; color:#ecbc2a">slot</span>)
+
: [[API LootSlotHasItem|LootSlotHasItem]](<span class="apiarg">slot</span>)
: [[API LootSlot|LootSlot]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Used to loot the specified slot.
+
: [[API LootSlot|LootSlot]](<span class="apiarg">slot</span>) - Used to loot the specified slot.
: [[API RollOnLoot|RollOnLoot]](<span style="font-size:smaller; color:#ecbc2a">rollId [, roll]</span>) - Roll or pass on a loot event started by the game engine.
+
: [[API RollOnLoot|RollOnLoot]](<span class="apiarg">rollId [, roll]</span>) - Roll or pass on a loot event started by the game engine.
: [[API SetLootMethod|SetLootMethod]](<span style="font-size:smaller; color:#ecbc2a">lootMethod [, masterPlayer or threshold]</span>) - Set the current loot method.
+
: [[API SetLootMethod|SetLootMethod]](<span class="apiarg">lootMethod [, masterPlayer or threshold]</span>) - Set the current loot method.
 
: [[API SetLootPortrait|SetLootPortrait]]()
 
: [[API SetLootPortrait|SetLootPortrait]]()
: [[API SetLootSpecialization|SetLootSpecialization]](<span style="font-size:smaller; color:#ecbc2a">specilizationID</span>)
+
: [[API SetLootSpecialization|SetLootSpecialization]](<span class="apiarg">specilizationID</span>)
: [[API SetLootThreshold|SetLootThreshold]](<span style="font-size:smaller; color:#ecbc2a">itemQuality</span>) - Set the threshold for group/master loot.
+
: [[API SetLootThreshold|SetLootThreshold]](<span class="apiarg">itemQuality</span>) - Set the threshold for group/master loot.
: [[API SetOptOutOfLoot|SetOptOutOfLoot]](<span style="font-size:smaller; color:#ecbc2a">optOut</span>) - Enables or disables automatic passing on all loot.
+
: [[API SetOptOutOfLoot|SetOptOutOfLoot]](<span class="apiarg">optOut</span>) - Enables or disables automatic passing on all loot.
   
 
=== Macros ===
 
=== Macros ===
 
Relates to [[Macro]]s.
 
Relates to [[Macro]]s.
: <small>NOCOMBAT</small> [[API CreateMacro|CreateMacro]](<span style="font-size:smaller; color:#ecbc2a">name, icon, body, perCharacter, isLocal</span>) - Create a new macro.
+
: <small>NOCOMBAT</small> [[API CreateMacro|CreateMacro]](<span class="apiarg">name, icon, body, perCharacter, isLocal</span>) - Create a new macro.
: [[API DeleteMacro|DeleteMacro]](<span style="font-size:smaller; color:#ecbc2a">id or name</span>) - Deletes a macro.
+
: [[API DeleteMacro|DeleteMacro]](<span class="apiarg">id or name</span>) - Deletes a macro.
: <small>NOCOMBAT</small> [[API EditMacro|EditMacro]](<span style="font-size:smaller; color:#ecbc2a">index, name, iconIndex, body, isLocal, perCharacter</span>) - Saves a macro.
+
: <small>NOCOMBAT</small> [[API EditMacro|EditMacro]](<span class="apiarg">index, name, iconIndex, body, isLocal, perCharacter</span>) - Saves a macro.
 
: [[API GetLooseMacroIcons|GetLooseMacroIcons]]()
 
: [[API GetLooseMacroIcons|GetLooseMacroIcons]]()
 
: [[API GetLooseMacroItemIcons|GetLooseMacroItemIcons]]()
 
: [[API GetLooseMacroItemIcons|GetLooseMacroItemIcons]]()
: [[API GetMacroBody|GetMacroBody]](<span style="font-size:smaller; color:#ecbc2a">id or name</span>) - Returns the body (macro text) of a macro.
+
: [[API GetMacroBody|GetMacroBody]](<span class="apiarg">id or name</span>) - Returns the body (macro text) of a macro.
: [[API GetMacroIcons|GetMacroIcons]](<span style="font-size:smaller; color:#ecbc2a">table</span>) - Returns an array of available macro texture paths (but not icons of items).
+
: [[API GetMacroIcons|GetMacroIcons]](<span class="apiarg">table</span>) - Returns an array of available macro texture paths (but not icons of items).
: [[API GetMacroIndexByName|GetMacroIndexByName]](<span style="font-size:smaller; color:#ecbc2a">name</span>) - Returns macro index.
+
: [[API GetMacroIndexByName|GetMacroIndexByName]](<span class="apiarg">name</span>) - Returns macro index.
: [[API GetMacroInfo|GetMacroInfo]](<span style="font-size:smaller; color:#ecbc2a">id or name</span>) - Returns "name", "iconTexture", "body", isLocal.
+
: [[API GetMacroInfo|GetMacroInfo]](<span class="apiarg">id or name</span>) - Returns "name", "iconTexture", "body", isLocal.
: [[API GetMacroItemIcons|GetMacroItemIcons]](<span style="font-size:smaller; color:#ecbc2a">table</span>) - Returns an array of available macro texture paths (icons of items).
+
: [[API GetMacroItemIcons|GetMacroItemIcons]](<span class="apiarg">table</span>) - Returns an array of available macro texture paths (icons of items).
 
: [[API GetMacroItem|GetMacroItem]]()
 
: [[API GetMacroItem|GetMacroItem]]()
 
: [[API GetMacroSpell|GetMacroSpell]]()
 
: [[API GetMacroSpell|GetMacroSpell]]()
Line 2,782: Line 2,858:
 
: [[API GetRunningMacroButton|GetRunningMacroButton]]()
 
: [[API GetRunningMacroButton|GetRunningMacroButton]]()
 
: [[API GetRunningMacro|GetRunningMacro]]()
 
: [[API GetRunningMacro|GetRunningMacro]]()
: <small>PROTECTED</small> [[API RunMacro|RunMacro]](<span style="font-size:smaller; color:#ecbc2a">id or name</span>) - Runs a macro.
+
: <small>PROTECTED</small> [[API RunMacro|RunMacro]](<span class="apiarg">id or name</span>) - Runs a macro.
: <small>PROTECTED</small> [[API RunMacroText|RunMacroText]](<span style="font-size:smaller; color:#ecbc2a">macro</span>) - Interpret the given string as a macro and run it.
+
: <small>PROTECTED</small> [[API RunMacroText|RunMacroText]](<span class="apiarg">macro</span>) - Interpret the given string as a macro and run it.
: [[API SecureCmdOptionParse|SecureCmdOptionParse]](<span style="font-size:smaller; color:#ecbc2a">command</span>) - Used for evaluating conditionals in macros, returning the appropriate choice.
+
: [[API SecureCmdOptionParse|SecureCmdOptionParse]](<span class="apiarg">command</span>) - Used for evaluating conditionals in macros, returning the appropriate choice.
: [[API SetMacroItem|SetMacroItem]](<span style="font-size:smaller; color:#ecbc2a">macro, item [, target]</span>)
+
: [[API SetMacroItem|SetMacroItem]](<span class="apiarg">macro, item [, target]</span>)
: [[API SetMacroSpell|SetMacroSpell]](<span style="font-size:smaller; color:#ecbc2a">macro, spell [, target]</span>)
+
: [[API SetMacroSpell|SetMacroSpell]](<span class="apiarg">macro, spell [, target]</span>)
 
: <small>PROTECTED</small> [[API StopMacro|StopMacro]]() - Stops the currently executing macro.
 
: <small>PROTECTED</small> [[API StopMacro|StopMacro]]() - Stops the currently executing macro.
   
 
=== Mail ===
 
=== Mail ===
 
Relates to [[Mail]].
 
Relates to [[Mail]].
: [[API C_Mail.CanCheckInbox|C_Mail.CanCheckInbox]]() : <span style="font-size:smaller; color:#4ec9b0">canCheckInbox, secondsUntilAllowed</span>
+
: [[API C_Mail.CanCheckInbox|C_Mail.CanCheckInbox]]() : <span class="apiret">canCheckInbox, secondsUntilAllowed</span>
: [[API C_Mail.HasInboxMoney|C_Mail.HasInboxMoney]](<span style="font-size:smaller; color:#ecbc2a">inboxIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">inboxItemHasMoneyAttached</span> - Returns true if a mail has money attached.
+
: [[API C_Mail.HasInboxMoney|C_Mail.HasInboxMoney]](<span class="apiarg">inboxIndex</span>) : <span class="apiret">inboxItemHasMoneyAttached</span> - Returns true if a mail has money attached.
: [[API C_Mail.IsCommandPending|C_Mail.IsCommandPending]]() : <span style="font-size:smaller; color:#4ec9b0">isCommandPending</span> - Returns true if the current mail command is still processing.
+
: [[API C_Mail.IsCommandPending|C_Mail.IsCommandPending]]() : <span class="apiret">isCommandPending</span> - Returns true if the current mail command is still processing.
: [[API AutoLootMailItem|AutoLootMailItem]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Loot all items from mail message.
+
: [[API AutoLootMailItem|AutoLootMailItem]](<span class="apiarg">index</span>) - Loot all items from mail message.
: [[API CanComplainInboxItem|CanComplainInboxItem]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Determines if we should show the “report spam” button on a mail item.
+
: [[API CanComplainInboxItem|CanComplainInboxItem]](<span class="apiarg">index</span>) - Determines if we should show the “report spam” button on a mail item.
 
: [[API CheckInbox|CheckInbox]]() - Populate client's inbox with mail from server.
 
: [[API CheckInbox|CheckInbox]]() - Populate client's inbox with mail from server.
 
: [[API ClearSendMail|ClearSendMail]]() - This clears the text in the send mail tab and places the COD item in the inventory.
 
: [[API ClearSendMail|ClearSendMail]]() - This clears the text in the send mail tab and places the COD item in the inventory.
: [[API ClickSendMailItemButton|ClickSendMailItemButton]](<span style="font-size:smaller; color:#ecbc2a">[itemIndex, clearItem]</span>) - Places or picks up an item from the send mail frame.
+
: [[API ClickSendMailItemButton|ClickSendMailItemButton]](<span class="apiarg">[itemIndex, clearItem]</span>) - Places or picks up an item from the send mail frame.
 
: [[API CloseMail|CloseMail]]() - Closes the mail window.
 
: [[API CloseMail|CloseMail]]() - Closes the mail window.
: [[API ComplainInboxItem|ComplainInboxItem]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Complains about a particular mail item.
+
: [[API ComplainInboxItem|ComplainInboxItem]](<span class="apiarg">index</span>) - Complains about a particular mail item.
: [[API DeleteInboxItem|DeleteInboxItem]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Deletes the inbox item at index. It returns immediately, it does not seem to wait for the deletion to go through, giving the normal problems with rapid mail removal attempts.
+
: [[API DeleteInboxItem|DeleteInboxItem]](<span class="apiarg">index</span>) - Deletes the inbox item at index. It returns immediately, it does not seem to wait for the deletion to go through, giving the normal problems with rapid mail removal attempts.
: [[API GetCoinIcon|GetCoinIcon]](<span style="font-size:smaller; color:#ecbc2a">amount</span>)
+
: [[API GetCoinIcon|GetCoinIcon]](<span class="apiarg">amount</span>)
: [[API GetInboxHeaderInfo|GetInboxHeaderInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns information about a message in the inbox.
+
: [[API GetInboxHeaderInfo|GetInboxHeaderInfo]](<span class="apiarg">index</span>) - Returns information about a message in the inbox.
: [[API GetInboxItem|GetInboxItem]](<span style="font-size:smaller; color:#ecbc2a">index, itemIndex</span>) - Returns description of the attachment attached to message at (index).
+
: [[API GetInboxItem|GetInboxItem]](<span class="apiarg">index, itemIndex</span>) - Returns description of the attachment attached to message at (index).
: [[API GetInboxItemLink|GetInboxItemLink]](<span style="font-size:smaller; color:#ecbc2a">index, itemIndex</span>) - Returns link of the attachment attached to message at (index).
+
: [[API GetInboxItemLink|GetInboxItemLink]](<span class="apiarg">index, itemIndex</span>) - Returns link of the attachment attached to message at (index).
 
: [[API GetInboxNumItems|GetInboxNumItems]]() - Returns the number of messages in your inbox.
 
: [[API GetInboxNumItems|GetInboxNumItems]]() - Returns the number of messages in your inbox.
: [[API GetInboxText|GetInboxText]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns the message text of message at (index).
+
: [[API GetInboxText|GetInboxText]](<span class="apiarg">index</span>) - Returns the message text of message at (index).
: [[API GetInboxInvoiceInfo|GetInboxInvoiceInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns informations about an auction house invoice.
+
: [[API GetInboxInvoiceInfo|GetInboxInvoiceInfo]](<span class="apiarg">index</span>) - Returns informations about an auction house invoice.
 
: [[API GetLatestThreeSenders|GetLatestThreeSenders]]() - Returns the senders of the most recent unread mail.
 
: [[API GetLatestThreeSenders|GetLatestThreeSenders]]() - Returns the senders of the most recent unread mail.
 
: [[API GetSendMailCOD|GetSendMailCOD]]() - Determine amount of gold entered in COD box in mail frame when mail is sent.
 
: [[API GetSendMailCOD|GetSendMailCOD]]() - Determine amount of gold entered in COD box in mail frame when mail is sent.
: [[API GetSendMailItem|GetSendMailItem]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Get information about an item attached on the send mail frame.
+
: [[API GetSendMailItem|GetSendMailItem]](<span class="apiarg">index</span>) - Get information about an item attached on the send mail frame.
: [[API GetSendMailItemLink|GetSendMailItemLink]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Get link for an item attached on the send mail frame.
+
: [[API GetSendMailItemLink|GetSendMailItemLink]](<span class="apiarg">index</span>) - Get link for an item attached on the send mail frame.
 
: [[API GetSendMailMoney|GetSendMailMoney]]()
 
: [[API GetSendMailMoney|GetSendMailMoney]]()
 
: [[API GetSendMailPrice|GetSendMailPrice]]() - Gets the cost for sending mail.
 
: [[API GetSendMailPrice|GetSendMailPrice]]() - Gets the cost for sending mail.
 
: [[API HasInboxItem|HasInboxItem]]()
 
: [[API HasInboxItem|HasInboxItem]]()
 
: [[API HasNewMail|HasNewMail]]() - Returns nil if there is no new mail.
 
: [[API HasNewMail|HasNewMail]]() - Returns nil if there is no new mail.
: [[API HasSendMailItem|HasSendMailItem]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns boolean if item is attached to send mail frame in specified slot.
+
: [[API HasSendMailItem|HasSendMailItem]](<span class="apiarg">index</span>) - Returns boolean if item is attached to send mail frame in specified slot.
: [[API InboxItemCanDelete|InboxItemCanDelete]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Boolean check for whether a message is returnable to the sender.
+
: [[API InboxItemCanDelete|InboxItemCanDelete]](<span class="apiarg">index</span>) - Boolean check for whether a message is returnable to the sender.
: [[API RespondMailLockSendItem|RespondMailLockSendItem]](<span style="font-size:smaller; color:#ecbc2a">slot, keepItem</span>) - Confirm item wont be refunded, keepItem boolean.
+
: [[API RespondMailLockSendItem|RespondMailLockSendItem]](<span class="apiarg">slot, keepItem</span>) - Confirm item wont be refunded, keepItem boolean.
: [[API ReturnInboxItem|ReturnInboxItem]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns to the sender the attached item in the mail message at the specified index.
+
: [[API ReturnInboxItem|ReturnInboxItem]](<span class="apiarg">index</span>) - Returns to the sender the attached item in the mail message at the specified index.
: [[API SendMail|SendMail]](<span style="font-size:smaller; color:#ecbc2a">target, subject, body</span>) - If the mailbox is open, this sends mail.
+
: <small>SCRIPT</small> [[API SendMail|SendMail]](<span class="apiarg">target, subject, body</span>) - If the mailbox is open, this sends mail.
: <small>PROTECTED</small> [[API SetSendMailCOD|SetSendMailCOD]](<span style="font-size:smaller; color:#ecbc2a">amount</span>) - Make next mail sent using SendMail() COD target for amount.
+
: <small>PROTECTED</small> [[API SetSendMailCOD|SetSendMailCOD]](<span class="apiarg">amount</span>) - Make next mail sent using SendMail() COD target for amount.
: <small>PROTECTED</small> [[API SetSendMailMoney|SetSendMailMoney]](<span style="font-size:smaller; color:#ecbc2a">amount</span>) - Add money to next mail sent using SendMail().
+
: <small>PROTECTED</small> [[API SetSendMailMoney|SetSendMailMoney]](<span class="apiarg">amount</span>) - Add money to next mail sent using SendMail().
 
: [[API SetSendMailShowing|SetSendMailShowing]]()
 
: [[API SetSendMailShowing|SetSendMailShowing]]()
: [[API TakeInboxItem|TakeInboxItem]](<span style="font-size:smaller; color:#ecbc2a">index, itemIndex</span>) - Take the attached item from the mailbox message at index.
+
: [[API TakeInboxItem|TakeInboxItem]](<span class="apiarg">index, itemIndex</span>) - Take the attached item from the mailbox message at index.
: [[API TakeInboxMoney|TakeInboxMoney]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Take the attached money from the mailbox message at index.
+
: [[API TakeInboxMoney|TakeInboxMoney]](<span class="apiarg">index</span>) - Take the attached money from the mailbox message at index.
: [[API TakeInboxTextItem|TakeInboxTextItem]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Creates a permanent copy of letter (readable "Plain Letter").
+
: [[API TakeInboxTextItem|TakeInboxTextItem]](<span class="apiarg">index</span>) - Creates a permanent copy of letter (readable "Plain Letter").
   
 
=== Maps ===
 
=== Maps ===
 
The [[Map]] API was reworked in [[Patch 8.0.1]]. See also [[#MapUtil|MapUtil]] functions.
 
The [[Map]] API was reworked in [[Patch 8.0.1]]. See also [[#MapUtil|MapUtil]] functions.
 
: [[API C_Map.CloseWorldMapInteraction|C_Map.CloseWorldMapInteraction]]()
 
: [[API C_Map.CloseWorldMapInteraction|C_Map.CloseWorldMapInteraction]]()
: [[API C_Map.GetAreaInfo|C_Map.GetAreaInfo]](<span style="font-size:smaller; color:#ecbc2a">areaID</span>) : <span style="font-size:smaller; color:#4ec9b0">name</span> - Returns a map subzone name.
+
: [[API C_Map.GetAreaInfo|C_Map.GetAreaInfo]](<span class="apiarg">areaID</span>) : <span class="apiret">name</span> - Returns a map subzone name.
: [[API C_Map.GetBestMapForUnit|C_Map.GetBestMapForUnit]](<span style="font-size:smaller; color:#ecbc2a">unitToken</span>) : <span style="font-size:smaller; color:#4ec9b0">uiMapID</span> - Returns the current UI map for the given unit. Only works for the player and party members.
+
: [[API C_Map.GetBestMapForUnit|C_Map.GetBestMapForUnit]](<span class="apiarg">unitToken</span>) : <span class="apiret">uiMapID</span> - Returns the current UI map for the given unit. Only works for the player and party members.
: [[API C_Map.GetBountySetMaps|C_Map.GetBountySetMaps]](<span style="font-size:smaller; color:#ecbc2a">bountySetID</span>) : <span style="font-size:smaller; color:#4ec9b0">mapIDs</span> - Returns the maps for a bounty.
+
: [[API C_Map.GetBountySetMaps|C_Map.GetBountySetMaps]](<span class="apiarg">bountySetID</span>) : <span class="apiret">mapIDs</span> - Returns the maps for a bounty.
: [[API C_Map.GetFallbackWorldMapID|C_Map.GetFallbackWorldMapID]]() : <span style="font-size:smaller; color:#4ec9b0">uiMapID</span> - Returns the world map id.
+
: [[API C_Map.GetFallbackWorldMapID|C_Map.GetFallbackWorldMapID]]() : <span class="apiret">uiMapID</span> - Returns the world map id.
: [[API C_Map.GetMapArtBackgroundAtlas|C_Map.GetMapArtBackgroundAtlas]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">atlasName</span> - Returns the background atlas for a map.
+
: [[API C_Map.GetMapArtBackgroundAtlas|C_Map.GetMapArtBackgroundAtlas]](<span class="apiarg">uiMapID</span>) : <span class="apiret">atlasName</span> - Returns the background atlas for a map.
: [[API C_Map.GetMapArtHelpTextPosition|C_Map.GetMapArtHelpTextPosition]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">position</span> - Returns the position for the "Click to Zoom In" hint text on flight maps.
+
: [[API C_Map.GetMapArtHelpTextPosition|C_Map.GetMapArtHelpTextPosition]](<span class="apiarg">uiMapID</span>) : <span class="apiret">position</span> - Returns the position for the "Click to Zoom In" hint text on flight maps.
: [[API C_Map.GetMapArtID|C_Map.GetMapArtID]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">uiMapArtID</span> - Returns the art for a (phased) map.
+
: [[API C_Map.GetMapArtID|C_Map.GetMapArtID]](<span class="apiarg">uiMapID</span>) : <span class="apiret">uiMapArtID</span> - Returns the art for a (phased) map.
: [[API C_Map.GetMapArtLayers|C_Map.GetMapArtLayers]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">layerInfo</span> - Returns the art layers for a map.
+
: [[API C_Map.GetMapArtLayers|C_Map.GetMapArtLayers]](<span class="apiarg">uiMapID</span>) : <span class="apiret">layerInfo</span> - Returns the art layers for a map.
: [[API C_Map.GetMapArtLayerTextures|C_Map.GetMapArtLayerTextures]](<span style="font-size:smaller; color:#ecbc2a">uiMapID, layerIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">textures</span> - Returns the art layer textures for a map.
+
: [[API C_Map.GetMapArtLayerTextures|C_Map.GetMapArtLayerTextures]](<span class="apiarg">uiMapID, layerIndex</span>) : <span class="apiret">textures</span> - Returns the art layer textures for a map.
: [[API C_Map.GetMapBannersForMap|C_Map.GetMapBannersForMap]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">mapBanners</span> - Returns the poi banners for a map.
+
: [[API C_Map.GetMapBannersForMap|C_Map.GetMapBannersForMap]](<span class="apiarg">uiMapID</span>) : <span class="apiret">mapBanners</span> - Returns the poi banners for a map.
: [[API C_Map.GetMapChildrenInfo|C_Map.GetMapChildrenInfo]](<span style="font-size:smaller; color:#ecbc2a">uiMapID [, mapType, allDescendants]</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span> - Returns information on the sub-maps of the given uiMapID, optionally restricted to a specific "map type", and/or recursive.
+
: [[API C_Map.GetMapChildrenInfo|C_Map.GetMapChildrenInfo]](<span class="apiarg">uiMapID [, mapType, allDescendants]</span>) : <span class="apiret">info</span> - Returns information on the sub-maps of the given uiMapID, optionally restricted to a specific "map type", and/or recursive.
: [[API C_Map.GetMapDisplayInfo|C_Map.GetMapDisplayInfo]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">hideIcons</span> - Returns whether group member pins should be hidden.
+
: [[API C_Map.GetMapDisplayInfo|C_Map.GetMapDisplayInfo]](<span class="apiarg">uiMapID</span>) : <span class="apiret">hideIcons</span> - Returns whether group member pins should be hidden.
: [[API C_Map.GetMapGroupID|C_Map.GetMapGroupID]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">uiMapGroupID</span> - Returns the map group for a map.
+
: [[API C_Map.GetMapGroupID|C_Map.GetMapGroupID]](<span class="apiarg">uiMapID</span>) : <span class="apiret">uiMapGroupID</span> - Returns the map group for a map.
: [[API C_Map.GetMapGroupMembersInfo|C_Map.GetMapGroupMembersInfo]](<span style="font-size:smaller; color:#ecbc2a">uiMapGroupID</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span> - Returns the floors for a map group.
+
: [[API C_Map.GetMapGroupMembersInfo|C_Map.GetMapGroupMembersInfo]](<span class="apiarg">uiMapGroupID</span>) : <span class="apiret">info</span> - Returns the floors for a map group.
: [[API C_Map.GetMapHighlightInfoAtPosition|C_Map.GetMapHighlightInfoAtPosition]](<span style="font-size:smaller; color:#ecbc2a">uiMapID, x, y</span>) : <span style="font-size:smaller; color:#4ec9b0">fileDataID, atlasID, texturePercentageX, texturePercentageY, ...</span> - Returns a map highlight pin for a location.
+
: [[API C_Map.GetMapHighlightInfoAtPosition|C_Map.GetMapHighlightInfoAtPosition]](<span class="apiarg">uiMapID, x, y</span>) : <span class="apiret">fileDataID, atlasID, texturePercentageX, texturePercentageY, ...</span> - Returns a map highlight pin for a location.
: [[API C_Map.GetMapInfo|C_Map.GetMapInfo]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span> - Returns map information.
+
: [[API C_Map.GetMapInfo|C_Map.GetMapInfo]](<span class="apiarg">uiMapID</span>) : <span class="apiret">info</span> - Returns map information.
: [[API C_Map.GetMapInfoAtPosition|C_Map.GetMapInfoAtPosition]](<span style="font-size:smaller; color:#ecbc2a">uiMapID, x, y</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span> - Returns map info for a location on the map.
+
: [[API C_Map.GetMapInfoAtPosition|C_Map.GetMapInfoAtPosition]](<span class="apiarg">uiMapID, x, y</span>) : <span class="apiret">info</span> - Returns map info for a location on the map.
: [[API C_Map.GetMapLevels|C_Map.GetMapLevels]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">playerMinLevel, playerMaxLevel, petMinLevel, petMaxLevel</span> - Returns the suggested player and battle pet levels for a map.
+
: [[API C_Map.GetMapLevels|C_Map.GetMapLevels]](<span class="apiarg">uiMapID</span>) : <span class="apiret">playerMinLevel, playerMaxLevel, petMinLevel, petMaxLevel</span> - Returns the suggested player and battle pet levels for a map.
: [[API C_Map.GetMapLinksForMap|C_Map.GetMapLinksForMap]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">mapLinks</span> - Returns the map pins that link to another map.
+
: [[API C_Map.GetMapLinksForMap|C_Map.GetMapLinksForMap]](<span class="apiarg">uiMapID</span>) : <span class="apiret">mapLinks</span> - Returns the map pins that link to another map.
: [[API C_Map.GetMapPosFromWorldPos|C_Map.GetMapPosFromWorldPos]](<span style="font-size:smaller; color:#ecbc2a">continentID, worldPosition [, overrideUiMapID]</span>) : <span style="font-size:smaller; color:#4ec9b0">uiMapID, mapPosition</span> - Translates a world map position to a map position.
+
: [[API C_Map.GetMapPosFromWorldPos|C_Map.GetMapPosFromWorldPos]](<span class="apiarg">continentID, worldPosition [, overrideUiMapID]</span>) : <span class="apiret">uiMapID, mapPosition</span> - Translates a world map position to a map position.
: [[API C_Map.GetMapRectOnMap|C_Map.GetMapRectOnMap]](<span style="font-size:smaller; color:#ecbc2a">uiMapID, topUiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">minX, maxX, minY, maxY</span> - Returns the map rectangle location for a map on its parent map.
+
: [[API C_Map.GetMapRectOnMap|C_Map.GetMapRectOnMap]](<span class="apiarg">uiMapID, topUiMapID</span>) : <span class="apiret">minX, maxX, minY, maxY</span> - Returns the map rectangle location for a map on its parent map.
: [[API C_Map.GetMapWorldSize|C_Map.GetMapWorldSize]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">width, height</span>
+
: [[API C_Map.GetMapWorldSize|C_Map.GetMapWorldSize]](<span class="apiarg">uiMapID</span>) : <span class="apiret">width, height</span>
: [[API C_Map.GetPlayerMapPosition|C_Map.GetPlayerMapPosition]](<span style="font-size:smaller; color:#ecbc2a">uiMapID, unitToken</span>) : <span style="font-size:smaller; color:#4ec9b0">position</span> - Returns the location of the given unit. Only works for the player and party members.
+
: [[API C_Map.GetPlayerMapPosition|C_Map.GetPlayerMapPosition]](<span class="apiarg">uiMapID, unitToken</span>) : <span class="apiret">position</span> - Returns the location of the given unit. Only works for the player and party members.
: [[API C_Map.GetWorldPosFromMapPos|C_Map.GetWorldPosFromMapPos]](<span style="font-size:smaller; color:#ecbc2a">uiMapID, mapPosition</span>) : <span style="font-size:smaller; color:#4ec9b0">continentID, worldPosition</span> - Translates a world map position to a map position.
+
: [[API C_Map.GetWorldPosFromMapPos|C_Map.GetWorldPosFromMapPos]](<span class="apiarg">uiMapID, mapPosition</span>) : <span class="apiret">continentID, worldPosition</span> - Translates a world map position to a map position.
: [[API C_Map.IsMapValidForNavBarDropDown|C_Map.IsMapValidForNavBarDropDown]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">isValid</span>
+
: [[API C_Map.IsMapValidForNavBarDropDown|C_Map.IsMapValidForNavBarDropDown]](<span class="apiarg">uiMapID</span>) : <span class="apiret">isValid</span>
: [[API C_Map.MapHasArt|C_Map.MapHasArt]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">hasArt</span> - Returns true if the map has art and can be displayed by the FrameXML.
+
: [[API C_Map.MapHasArt|C_Map.MapHasArt]](<span class="apiarg">uiMapID</span>) : <span class="apiret">hasArt</span> - Returns true if the map has art and can be displayed by the FrameXML.
: [[API C_Map.RequestPreloadMap|C_Map.RequestPreloadMap]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) - Preloads textures for a map.
+
: [[API C_Map.RequestPreloadMap|C_Map.RequestPreloadMap]](<span class="apiarg">uiMapID</span>) - Preloads textures for a map.
: [[API C_MapExplorationInfo.GetExploredAreaIDsAtPosition|C_MapExplorationInfo.GetExploredAreaIDsAtPosition]](<span style="font-size:smaller; color:#ecbc2a">uiMapID, normalizedPosition</span>) : <span style="font-size:smaller; color:#4ec9b0">areaID</span> - Returns the explored areas for the location on a map.
+
: [[API C_MapExplorationInfo.GetExploredAreaIDsAtPosition|C_MapExplorationInfo.GetExploredAreaIDsAtPosition]](<span class="apiarg">uiMapID, normalizedPosition</span>) : <span class="apiret">areaID</span> - Returns the explored areas for the location on a map.
: [[API C_MapExplorationInfo.GetExploredMapTextures|C_MapExplorationInfo.GetExploredMapTextures]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">overlayInfo</span> - Returns explored map textures for a map.
+
: [[API C_MapExplorationInfo.GetExploredMapTextures|C_MapExplorationInfo.GetExploredMapTextures]](<span class="apiarg">uiMapID</span>) : <span class="apiret">overlayInfo</span> - Returns explored map textures for a map.
: [[API C_FogOfWar.GetFogOfWarForMap|C_FogOfWar.GetFogOfWarForMap]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">fogOfWarID</span> - Returns the fog of war ID for an (Island Expedition) map.
+
: [[API C_FogOfWar.GetFogOfWarForMap|C_FogOfWar.GetFogOfWarForMap]](<span class="apiarg">uiMapID</span>) : <span class="apiret">fogOfWarID</span> - Returns the fog of war ID for an (Island Expedition) map.
: [[API C_FogOfWar.GetFogOfWarInfo|C_FogOfWar.GetFogOfWarInfo]](<span style="font-size:smaller; color:#ecbc2a">fogOfWarID</span>) : <span style="font-size:smaller; color:#4ec9b0">fogOfWarInfo</span> - Returns fog of war info for an (Island Expedition) map.
+
: [[API C_FogOfWar.GetFogOfWarInfo|C_FogOfWar.GetFogOfWarInfo]](<span class="apiarg">fogOfWarID</span>) : <span class="apiret">fogOfWarInfo</span> - Returns fog of war info for an (Island Expedition) map.
 
: [[API GetAreaText|GetAreaText]]()
 
: [[API GetAreaText|GetAreaText]]()
 
: [[API GetMinimapZoneText|GetMinimapZoneText]]() - Returns the zone text, that is displayed over the minimap.
 
: [[API GetMinimapZoneText|GetMinimapZoneText]]() - Returns the zone text, that is displayed over the minimap.
 
: [[API GetPlayerFacing|GetPlayerFacing]]() - Returns the direction the player is facing.
 
: [[API GetPlayerFacing|GetPlayerFacing]]() - Returns the direction the player is facing.
: [[API GetRealZoneText|GetRealZoneText]](<span style="font-size:smaller; color:#ecbc2a">[mapID]</span>) - Returns either instance name or zone name.
+
: [[API GetRealZoneText|GetRealZoneText]](<span class="apiarg">[mapID]</span>) - Returns either instance name or zone name.
 
: [[API GetSubZoneText|GetSubZoneText]]() - Returns the subzone text (e.g. "The Canals").
 
: [[API GetSubZoneText|GetSubZoneText]]() - Returns the subzone text (e.g. "The Canals").
 
: [[API GetZonePVPInfo|GetZonePVPInfo]]() - Returns PVP info for the current zone.
 
: [[API GetZonePVPInfo|GetZonePVPInfo]]() - Returns PVP info for the current zone.
 
: [[API GetZoneText|GetZoneText]]() - Returns the zone text (e.g. "Stormwind City").
 
: [[API GetZoneText|GetZoneText]]() - Returns the zone text (e.g. "Stormwind City").
: [[API UnitPosition|UnitPosition]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the position of a unit within the current world area.
+
: [[API UnitPosition|UnitPosition]](<span class="apiarg">unit</span>) - Returns the position of a unit within the current world area.
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/MapCanvasMixin:AddDataProvider WorldMapFrame:AddDataProvider](<span style="font-size:smaller; color:#ecbc2a">dataProvider</span>) - Adds a map data provider.
+
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/MapCanvasMixin:AddDataProvider WorldMapFrame:AddDataProvider](<span class="apiarg">dataProvider</span>) - Adds a map data provider.
 
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/MapCanvasMixin:GetMapID WorldMapFrame:GetMapID]() - Returns the currently viewed world map.
 
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/MapCanvasMixin:GetMapID WorldMapFrame:GetMapID]() - Returns the currently viewed world map.
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/MapCanvasMixin:SetMapID WorldMapFrame:SetMapID](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) - Sets the world map.
+
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/MapCanvasMixin:SetMapID WorldMapFrame:SetMapID](<span class="apiarg">uiMapID</span>) - Sets the world map.
 
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/MapCanvasMixin:EnumerateAllPins WorldMapFrame:EnumerateAllPins]() - Enumerates through all map pins.
 
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/MapCanvasMixin:EnumerateAllPins WorldMapFrame:EnumerateAllPins]() - Enumerates through all map pins.
   
 
==== Minimap ====
 
==== Minimap ====
 
The [[Widget_API#Minimap|Minimap]] was reworked in [[Patch 9.0.1]]
 
The [[Widget_API#Minimap|Minimap]] was reworked in [[Patch 9.0.1]]
: [[API C_Minimap.GetDrawGroundTextures|C_Minimap.GetDrawGroundTextures]]() : <span style="font-size:smaller; color:#4ec9b0">draw</span>
+
: [[API C_Minimap.GetDrawGroundTextures|C_Minimap.GetDrawGroundTextures]]() : <span class="apiret">draw</span>
: [[API C_Minimap.GetUiMapID|C_Minimap.GetUiMapID]]() : <span style="font-size:smaller; color:#4ec9b0">uiMapID</span>
+
: [[API C_Minimap.GetUiMapID|C_Minimap.GetUiMapID]]() : <span class="apiret">uiMapID</span>
: [[API C_Minimap.GetViewRadius|C_Minimap.GetViewRadius]]() : <span style="font-size:smaller; color:#4ec9b0">yards</span>
+
: [[API C_Minimap.GetViewRadius|C_Minimap.GetViewRadius]]() : <span class="apiret">yards</span>
: [[API C_Minimap.IsRotateMinimapIgnored|C_Minimap.IsRotateMinimapIgnored]]() : <span style="font-size:smaller; color:#4ec9b0">isIgnored</span>
+
: [[API C_Minimap.IsRotateMinimapIgnored|C_Minimap.IsRotateMinimapIgnored]]() : <span class="apiret">isIgnored</span>
: [[API C_Minimap.SetDrawGroundTextures|C_Minimap.SetDrawGroundTextures]](<span style="font-size:smaller; color:#ecbc2a">draw</span>)
+
: [[API C_Minimap.SetDrawGroundTextures|C_Minimap.SetDrawGroundTextures]](<span class="apiarg">draw</span>)
: [[API C_Minimap.SetIgnoreRotateMinimap|C_Minimap.SetIgnoreRotateMinimap]](<span style="font-size:smaller; color:#ecbc2a">ignore</span>)
+
: [[API C_Minimap.SetIgnoreRotateMinimap|C_Minimap.SetIgnoreRotateMinimap]](<span class="apiarg">ignore</span>)
: [[API C_Minimap.ShouldUseHybridMinimap|C_Minimap.ShouldUseHybridMinimap]]() : <span style="font-size:smaller; color:#4ec9b0">shouldUse</span>
+
: [[API C_Minimap.ShouldUseHybridMinimap|C_Minimap.ShouldUseHybridMinimap]]() : <span class="apiret">shouldUse</span>
   
 
==== Tracking ====
 
==== Tracking ====
Line 2,890: Line 2,966:
 
: [[API ClearAllTracking|ClearAllTracking]]()
 
: [[API ClearAllTracking|ClearAllTracking]]()
 
: [[API GetNumTrackingTypes|GetNumTrackingTypes]]() - Returns number of available tracking methods.
 
: [[API GetNumTrackingTypes|GetNumTrackingTypes]]() - Returns number of available tracking methods.
: [[API GetTrackingInfo|GetTrackingInfo]](<span style="font-size:smaller; color:#ecbc2a">id</span>) - Retrieves tracking information from specified id.
+
: [[API GetTrackingInfo|GetTrackingInfo]](<span class="apiarg">id</span>) - Retrieves tracking information from specified id.
: [[API SetTracking|SetTracking]](<span style="font-size:smaller; color:#ecbc2a">id, enabled</span>) - Enables or disables a tracking method.
+
: [[API SetTracking|SetTracking]](<span class="apiarg">id, enabled</span>) - Enables or disables a tracking method.
   
 
==== Points of Interest ====
 
==== Points of Interest ====
: [[API C_AreaPoiInfo.GetAreaPOIForMap|C_AreaPoiInfo.GetAreaPOIForMap]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">areaPoiIDs</span> - Returns area points of interest for a map.
+
: [[API C_AreaPoiInfo.GetAreaPOIForMap|C_AreaPoiInfo.GetAreaPOIForMap]](<span class="apiarg">uiMapID</span>) : <span class="apiret">areaPoiIDs</span> - Returns area points of interest for a map.
: [[API C_AreaPoiInfo.GetAreaPOIInfo|C_AreaPoiInfo.GetAreaPOIInfo]](<span style="font-size:smaller; color:#ecbc2a">uiMapID, areaPoiID</span>) : <span style="font-size:smaller; color:#4ec9b0">poiInfo</span> - Returns area point of interest info.
+
: [[API C_AreaPoiInfo.GetAreaPOIInfo|C_AreaPoiInfo.GetAreaPOIInfo]](<span class="apiarg">uiMapID, areaPoiID</span>) : <span class="apiret">poiInfo</span> - Returns area point of interest info.
: [[API C_AreaPoiInfo.GetAreaPOISecondsLeft|C_AreaPoiInfo.GetAreaPOISecondsLeft]](<span style="font-size:smaller; color:#ecbc2a">areaPoiID</span>) : <span style="font-size:smaller; color:#4ec9b0">secondsLeft</span> - Returns the time left for an area poi.
+
: [[API C_AreaPoiInfo.GetAreaPOISecondsLeft|C_AreaPoiInfo.GetAreaPOISecondsLeft]](<span class="apiarg">areaPoiID</span>) : <span class="apiret">secondsLeft</span> - Returns the time left for an area poi.
: [[API C_AreaPoiInfo.IsAreaPOITimed|C_AreaPoiInfo.IsAreaPOITimed]](<span style="font-size:smaller; color:#ecbc2a">areaPoiID</span>) : <span style="font-size:smaller; color:#4ec9b0">isTimed</span> - Returns whether an area poi is timed.
+
: [[API C_AreaPoiInfo.IsAreaPOITimed|C_AreaPoiInfo.IsAreaPOITimed]](<span class="apiarg">areaPoiID</span>) : <span class="apiret">isTimed</span> - Returns whether an area poi is timed.
: [[API GetPOITextureCoords|GetPOITextureCoords]](<span style="font-size:smaller; color:#ecbc2a">textureIndex</span>)
+
: [[API GetPOITextureCoords|GetPOITextureCoords]](<span class="apiarg">textureIndex</span>)
: [[API SetPOIIconOverlapDistance|SetPOIIconOverlapDistance]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API SetPOIIconOverlapDistance|SetPOIIconOverlapDistance]](<span class="apiarg">index</span>)
: [[API SetPOIIconOverlapPushDistance|SetPOIIconOverlapPushDistance]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API SetPOIIconOverlapPushDistance|SetPOIIconOverlapPushDistance]](<span class="apiarg">index</span>)
 
[[Vignette]]s are used for one-time rare mobs and treasure chests.
 
[[Vignette]]s are used for one-time rare mobs and treasure chests.
: [[API C_VignetteInfo.FindBestUniqueVignette|C_VignetteInfo.FindBestUniqueVignette]](<span style="font-size:smaller; color:#ecbc2a">vignetteGUIDs</span>) : <span style="font-size:smaller; color:#4ec9b0">bestUniqueVignetteIndex</span>
+
: [[API C_VignetteInfo.FindBestUniqueVignette|C_VignetteInfo.FindBestUniqueVignette]](<span class="apiarg">vignetteGUIDs</span>) : <span class="apiret">bestUniqueVignetteIndex</span>
: [[API C_VignetteInfo.GetVignetteInfo|C_VignetteInfo.GetVignetteInfo]](<span style="font-size:smaller; color:#ecbc2a">vignetteGUID</span>) : <span style="font-size:smaller; color:#4ec9b0">vignetteInfo</span>
+
: [[API C_VignetteInfo.GetVignetteInfo|C_VignetteInfo.GetVignetteInfo]](<span class="apiarg">vignetteGUID</span>) : <span class="apiret">vignetteInfo</span>
: [[API C_VignetteInfo.GetVignettePosition|C_VignetteInfo.GetVignettePosition]](<span style="font-size:smaller; color:#ecbc2a">vignetteGUID, uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">vignettePosition</span>
+
: [[API C_VignetteInfo.GetVignettePosition|C_VignetteInfo.GetVignettePosition]](<span class="apiarg">vignetteGUID, uiMapID</span>) : <span class="apiret">vignettePosition</span>
: [[API C_VignetteInfo.GetVignettes|C_VignetteInfo.GetVignettes]]() : <span style="font-size:smaller; color:#4ec9b0">vignetteGUIDs</span>
+
: [[API C_VignetteInfo.GetVignettes|C_VignetteInfo.GetVignettes]]() : <span class="apiret">vignetteGUIDs</span>
   
 
==== Waypoints ====
 
==== Waypoints ====
 
Tracked waypoints were added in [[Patch 9.0.1]]
 
Tracked waypoints were added in [[Patch 9.0.1]]
: [[API C_Map.CanSetUserWaypointOnMap|C_Map.CanSetUserWaypointOnMap]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">canSet</span>
+
: [[API C_Map.CanSetUserWaypointOnMap|C_Map.CanSetUserWaypointOnMap]](<span class="apiarg">uiMapID</span>) : <span class="apiret">canSet</span>
 
: [[API C_Map.ClearUserWaypoint|C_Map.ClearUserWaypoint]]()
 
: [[API C_Map.ClearUserWaypoint|C_Map.ClearUserWaypoint]]()
: [[API C_Map.GetUserWaypoint|C_Map.GetUserWaypoint]]() : <span style="font-size:smaller; color:#4ec9b0">point</span>
+
: [[API C_Map.GetUserWaypoint|C_Map.GetUserWaypoint]]() : <span class="apiret">point</span>
: [[API C_Map.GetUserWaypointFromHyperlink|C_Map.GetUserWaypointFromHyperlink]](<span style="font-size:smaller; color:#ecbc2a">hyperlink</span>) : <span style="font-size:smaller; color:#4ec9b0">point</span>
+
: [[API C_Map.GetUserWaypointFromHyperlink|C_Map.GetUserWaypointFromHyperlink]](<span class="apiarg">hyperlink</span>) : <span class="apiret">point</span>
: [[API C_Map.GetUserWaypointHyperlink|C_Map.GetUserWaypointHyperlink]]() : <span style="font-size:smaller; color:#4ec9b0">hyperlink</span>
+
: [[API C_Map.GetUserWaypointHyperlink|C_Map.GetUserWaypointHyperlink]]() : <span class="apiret">hyperlink</span>
: [[API C_Map.GetUserWaypointPositionForMap|C_Map.GetUserWaypointPositionForMap]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">mapPosition</span>
+
: [[API C_Map.GetUserWaypointPositionForMap|C_Map.GetUserWaypointPositionForMap]](<span class="apiarg">uiMapID</span>) : <span class="apiret">mapPosition</span>
: [[API C_Map.HasUserWaypoint|C_Map.HasUserWaypoint]]() : <span style="font-size:smaller; color:#4ec9b0">hasUserWaypoint</span>
+
: [[API C_Map.HasUserWaypoint|C_Map.HasUserWaypoint]]() : <span class="apiret">hasUserWaypoint</span>
: [[API C_Map.SetUserWaypoint|C_Map.SetUserWaypoint]](<span style="font-size:smaller; color:#ecbc2a">point</span>)
+
: [[API C_Map.SetUserWaypoint|C_Map.SetUserWaypoint]](<span class="apiarg">point</span>)
: [[API C_Navigation.GetDistance|C_Navigation.GetDistance]]() : <span style="font-size:smaller; color:#4ec9b0">distance</span>
+
: [[API C_Navigation.GetDistance|C_Navigation.GetDistance]]() : <span class="apiret">distance</span>
: [[API C_Navigation.GetFrame|C_Navigation.GetFrame]]() : <span style="font-size:smaller; color:#4ec9b0">frame</span>
+
: [[API C_Navigation.GetFrame|C_Navigation.GetFrame]]() : <span class="apiret">frame</span>
: [[API C_Navigation.GetTargetState|C_Navigation.GetTargetState]]() : <span style="font-size:smaller; color:#4ec9b0">state</span>
+
: [[API C_Navigation.GetTargetState|C_Navigation.GetTargetState]]() : <span class="apiret">state</span>
: [[API C_Navigation.HasValidScreenPosition|C_Navigation.HasValidScreenPosition]]() : <span style="font-size:smaller; color:#4ec9b0">hasValidScreenPosition</span>
+
: [[API C_Navigation.HasValidScreenPosition|C_Navigation.HasValidScreenPosition]]() : <span class="apiret">hasValidScreenPosition</span>
: [[API C_Navigation.WasClampedToScreen|C_Navigation.WasClampedToScreen]]() : <span style="font-size:smaller; color:#4ec9b0">wasClamped</span>
+
: [[API C_Navigation.WasClampedToScreen|C_Navigation.WasClampedToScreen]]() : <span class="apiret">wasClamped</span>
 
Controls what's actively being tracked.
 
Controls what's actively being tracked.
: [[API C_SuperTrack.GetHighestPrioritySuperTrackingType|C_SuperTrack.GetHighestPrioritySuperTrackingType]]() : <span style="font-size:smaller; color:#4ec9b0">type</span>
+
: [[API C_SuperTrack.GetHighestPrioritySuperTrackingType|C_SuperTrack.GetHighestPrioritySuperTrackingType]]() : <span class="apiret">type</span>
: [[API C_SuperTrack.GetSuperTrackedQuestID|C_SuperTrack.GetSuperTrackedQuestID]]() : <span style="font-size:smaller; color:#4ec9b0">questID</span>
+
: [[API C_SuperTrack.GetSuperTrackedQuestID|C_SuperTrack.GetSuperTrackedQuestID]]() : <span class="apiret">questID</span>
: [[API C_SuperTrack.IsSuperTrackingAnything|C_SuperTrack.IsSuperTrackingAnything]]() : <span style="font-size:smaller; color:#4ec9b0">isSuperTracking</span>
+
: [[API C_SuperTrack.IsSuperTrackingAnything|C_SuperTrack.IsSuperTrackingAnything]]() : <span class="apiret">isSuperTracking</span>
: [[API C_SuperTrack.IsSuperTrackingCorpse|C_SuperTrack.IsSuperTrackingCorpse]]() : <span style="font-size:smaller; color:#4ec9b0">isSuperTracking</span>
+
: [[API C_SuperTrack.IsSuperTrackingCorpse|C_SuperTrack.IsSuperTrackingCorpse]]() : <span class="apiret">isSuperTracking</span>
: [[API C_SuperTrack.IsSuperTrackingQuest|C_SuperTrack.IsSuperTrackingQuest]]() : <span style="font-size:smaller; color:#4ec9b0">isSuperTracking</span>
+
: [[API C_SuperTrack.IsSuperTrackingQuest|C_SuperTrack.IsSuperTrackingQuest]]() : <span class="apiret">isSuperTracking</span>
: [[API C_SuperTrack.IsSuperTrackingUserWaypoint|C_SuperTrack.IsSuperTrackingUserWaypoint]]() : <span style="font-size:smaller; color:#4ec9b0">isSuperTracking</span>
+
: [[API C_SuperTrack.IsSuperTrackingUserWaypoint|C_SuperTrack.IsSuperTrackingUserWaypoint]]() : <span class="apiret">isSuperTracking</span>
: [[API C_SuperTrack.SetSuperTrackedQuestID|C_SuperTrack.SetSuperTrackedQuestID]](<span style="font-size:smaller; color:#ecbc2a">questID</span>)
+
: [[API C_SuperTrack.SetSuperTrackedQuestID|C_SuperTrack.SetSuperTrackedQuestID]](<span class="apiarg">questID</span>)
: [[API C_SuperTrack.SetSuperTrackedUserWaypoint|C_SuperTrack.SetSuperTrackedUserWaypoint]](<span style="font-size:smaller; color:#ecbc2a">superTracked</span>)
+
: [[API C_SuperTrack.SetSuperTrackedUserWaypoint|C_SuperTrack.SetSuperTrackedUserWaypoint]](<span class="apiarg">superTracked</span>)
: [[API C_QuestLog.GetNextWaypoint|C_QuestLog.GetNextWaypoint]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">mapID, x, y</span>
+
: [[API C_QuestLog.GetNextWaypoint|C_QuestLog.GetNextWaypoint]](<span class="apiarg">questID</span>) : <span class="apiret">mapID, x, y</span>
: [[API C_QuestLog.GetNextWaypointForMap|C_QuestLog.GetNextWaypointForMap]](<span style="font-size:smaller; color:#ecbc2a">questID, uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">x, y</span>
+
: [[API C_QuestLog.GetNextWaypointForMap|C_QuestLog.GetNextWaypointForMap]](<span class="apiarg">questID, uiMapID</span>) : <span class="apiret">x, y</span>
: [[API C_QuestLog.GetNextWaypointText|C_QuestLog.GetNextWaypointText]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">waypointText</span>
+
: [[API C_QuestLog.GetNextWaypointText|C_QuestLog.GetNextWaypointText]](<span class="apiarg">questID</span>) : <span class="apiret">waypointText</span>
   
 
==== Flight Master ====
 
==== Flight Master ====
 
Relates to [[Flight master]] taxi services.
 
Relates to [[Flight master]] taxi services.
: [[API C_TaxiMap.GetAllTaxiNodes|C_TaxiMap.GetAllTaxiNodes]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">taxiNodes</span>
+
: [[API C_TaxiMap.GetAllTaxiNodes|C_TaxiMap.GetAllTaxiNodes]](<span class="apiarg">uiMapID</span>) : <span class="apiret">taxiNodes</span>
: [[API C_TaxiMap.GetTaxiNodesForMap|C_TaxiMap.GetTaxiNodesForMap]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">mapTaxiNodes</span>
+
: [[API C_TaxiMap.GetTaxiNodesForMap|C_TaxiMap.GetTaxiNodesForMap]](<span class="apiarg">uiMapID</span>) : <span class="apiret">mapTaxiNodes</span>
: [[API C_TaxiMap.ShouldMapShowTaxiNodes|C_TaxiMap.ShouldMapShowTaxiNodes]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">shouldShowNodes</span>
+
: [[API C_TaxiMap.ShouldMapShowTaxiNodes|C_TaxiMap.ShouldMapShowTaxiNodes]](<span class="apiarg">uiMapID</span>) : <span class="apiret">shouldShowNodes</span>
 
: [[API CloseTaxiMap|CloseTaxiMap]]() - Closes the Flightpath Map.
 
: [[API CloseTaxiMap|CloseTaxiMap]]() - Closes the Flightpath Map.
: [[API GetNumRoutes|GetNumRoutes]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Gets the number of hops between current-slot and slot.
+
: [[API GetNumRoutes|GetNumRoutes]](<span class="apiarg">slot</span>) - Gets the number of hops between current-slot and slot.
 
: [[API GetTaxiBenchmarkMode|GetTaxiBenchmarkMode]]()
 
: [[API GetTaxiBenchmarkMode|GetTaxiBenchmarkMode]]()
 
: [[API GetTaxiMapID|GetTaxiMapID]]()
 
: [[API GetTaxiMapID|GetTaxiMapID]]()
 
: [[API NumTaxiNodes|NumTaxiNodes]]() - Returns the number of nodes (flight paths) on an open taxi map.
 
: [[API NumTaxiNodes|NumTaxiNodes]]() - Returns the number of nodes (flight paths) on an open taxi map.
 
: [[API SetTaxiBenchmarkMode|SetTaxiBenchmarkMode]]()
 
: [[API SetTaxiBenchmarkMode|SetTaxiBenchmarkMode]]()
: [[API SetTaxiMap|SetTaxiMap]](<span style="font-size:smaller; color:#ecbc2a">frame</span>)
+
: [[API SetTaxiMap|SetTaxiMap]](<span class="apiarg">frame</span>)
: [[API TakeTaxiNode|TakeTaxiNode]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Takes the named taxi node.
+
: [[API TakeTaxiNode|TakeTaxiNode]](<span class="apiarg">slot</span>) - Takes the named taxi node.
: [[API TaxiGetDestX|TaxiGetDestX]](<span style="font-size:smaller; color:#ecbc2a">slot, hop</span>)
+
: [[API TaxiGetDestX|TaxiGetDestX]](<span class="apiarg">slot, hop</span>)
: [[API TaxiGetDestY|TaxiGetDestY]](<span style="font-size:smaller; color:#ecbc2a">slot, hop</span>)
+
: [[API TaxiGetDestY|TaxiGetDestY]](<span class="apiarg">slot, hop</span>)
 
: [[API TaxiGetNodeSlot|TaxiGetNodeSlot]]()
 
: [[API TaxiGetNodeSlot|TaxiGetNodeSlot]]()
: [[API TaxiGetSrcX|TaxiGetSrcX]](<span style="font-size:smaller; color:#ecbc2a">slot, hop</span>)
+
: [[API TaxiGetSrcX|TaxiGetSrcX]](<span class="apiarg">slot, hop</span>)
: [[API TaxiGetSrcY|TaxiGetSrcY]](<span style="font-size:smaller; color:#ecbc2a">slot, hop</span>)
+
: [[API TaxiGetSrcY|TaxiGetSrcY]](<span class="apiarg">slot, hop</span>)
 
: [[API TaxiIsDirectFlight|TaxiIsDirectFlight]]()
 
: [[API TaxiIsDirectFlight|TaxiIsDirectFlight]]()
: [[API TaxiNodeCost|TaxiNodeCost]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Returns the cost in copper of a node.
+
: [[API TaxiNodeCost|TaxiNodeCost]](<span class="apiarg">slot</span>) - Returns the cost in copper of a node.
: [[API TaxiNodeGetType|TaxiNodeGetType]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Returns the status of a node.
+
: [[API TaxiNodeGetType|TaxiNodeGetType]](<span class="apiarg">slot</span>) - Returns the status of a node.
: [[API TaxiNodeName|TaxiNodeName]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Returns the name of a node.
+
: [[API TaxiNodeName|TaxiNodeName]](<span class="apiarg">slot</span>) - Returns the name of a node.
: [[API TaxiNodePosition|TaxiNodePosition]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Returns position (x,y) of node on the map.
+
: [[API TaxiNodePosition|TaxiNodePosition]](<span class="apiarg">slot</span>) - Returns position (x,y) of node on the map.
 
: [[API TaxiRequestEarlyLanding|TaxiRequestEarlyLanding]]()
 
: [[API TaxiRequestEarlyLanding|TaxiRequestEarlyLanding]]()
: [[API UnitOnTaxi|UnitOnTaxi]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns 1 if unit is on a taxi.
+
: [[API UnitOnTaxi|UnitOnTaxi]](<span class="apiarg">unit</span>) - Returns 1 if unit is on a taxi.
   
 
=== Merchants ===
 
=== Merchants ===
 
==== Vendor ====
 
==== Vendor ====
 
Relates to [[Vendor]]s.
 
Relates to [[Vendor]]s.
: [[API C_MerchantFrame.GetBuybackItemID|C_MerchantFrame.GetBuybackItemID]](<span style="font-size:smaller; color:#ecbc2a">buybackSlotIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">buybackItemID</span>
+
: [[API C_MerchantFrame.GetBuybackItemID|C_MerchantFrame.GetBuybackItemID]](<span class="apiarg">buybackSlotIndex</span>) : <span class="apiret">buybackItemID</span>
: [[API C_MerchantFrame.IsMerchantItemRefundable|C_MerchantFrame.IsMerchantItemRefundable]](<span style="font-size:smaller; color:#ecbc2a">index</span>) : <span style="font-size:smaller; color:#4ec9b0">refundable</span>
+
: [[API C_MerchantFrame.IsMerchantItemRefundable|C_MerchantFrame.IsMerchantItemRefundable]](<span class="apiarg">index</span>) : <span class="apiret">refundable</span>
: [[API BuyMerchantItem|BuyMerchantItem]](<span style="font-size:smaller; color:#ecbc2a">index [, qty]</span>) - Buys an item from a merchant.
+
: [[API BuyMerchantItem|BuyMerchantItem]](<span class="apiarg">index [, qty]</span>) - Buys an item from a merchant.
: [[API BuybackItem|BuybackItem]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Buys back a sold item.
+
: [[API BuybackItem|BuybackItem]](<span class="apiarg">index</span>) - Buys back a sold item.
: [[API CanAffordMerchantItem|CanAffordMerchantItem]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API CanAffordMerchantItem|CanAffordMerchantItem]](<span class="apiarg">index</span>)
 
: [[API CanMerchantRepair|CanMerchantRepair]]() - Returns true if the merchant can repair items.
 
: [[API CanMerchantRepair|CanMerchantRepair]]() - Returns true if the merchant can repair items.
 
: [[API CloseMerchant|CloseMerchant]]() - Closes the merchant window.
 
: [[API CloseMerchant|CloseMerchant]]() - Closes the merchant window.
: [[API ContainerRefundItemPurchase|ContainerRefundItemPurchase]](<span style="font-size:smaller; color:#ecbc2a">index, slot [, isEquipped]</span>)
+
: [[API ContainerRefundItemPurchase|ContainerRefundItemPurchase]](<span class="apiarg">index, slot [, isEquipped]</span>)
: [[API GetBuybackItemInfo|GetBuybackItemInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns information about the buyback item.
+
: [[API GetBuybackItemInfo|GetBuybackItemInfo]](<span class="apiarg">index</span>) - Returns information about the buyback item.
: [[API GetBuybackItemLink|GetBuybackItemLink]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns an [[itemLink]] for the buyback item.
+
: [[API GetBuybackItemLink|GetBuybackItemLink]](<span class="apiarg">index</span>) - Returns an [[itemLink]] for the buyback item.
 
: [[API GetMerchantCurrencies|GetMerchantCurrencies]]()
 
: [[API GetMerchantCurrencies|GetMerchantCurrencies]]()
 
: [[API GetMerchantFilter|GetMerchantFilter]]()
 
: [[API GetMerchantFilter|GetMerchantFilter]]()
: [[API GetMerchantItemCostInfo|GetMerchantItemCostInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns "alternative currency" information about an item.
+
: [[API GetMerchantItemCostInfo|GetMerchantItemCostInfo]](<span class="apiarg">index</span>) - Returns "alternative currency" information about an item.
: [[API GetMerchantItemCostItem|GetMerchantItemCostItem]](<span style="font-size:smaller; color:#ecbc2a">index, itemIndex</span>) - Returns information about an "alternative currency" component of the price for a purchasable item.
+
: [[API GetMerchantItemCostItem|GetMerchantItemCostItem]](<span class="apiarg">index, itemIndex</span>) - Returns information about an "alternative currency" component of the price for a purchasable item.
: [[API GetMerchantItemID|GetMerchantItemID]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetMerchantItemID|GetMerchantItemID]](<span class="apiarg">index</span>)
: [[API GetMerchantItemInfo|GetMerchantItemInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns information about the given purchasable item.
+
: [[API GetMerchantItemInfo|GetMerchantItemInfo]](<span class="apiarg">index</span>) - Returns information about the given purchasable item.
: [[API GetMerchantItemLink|GetMerchantItemLink]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns an [[itemLink]] for the given purchasable item.
+
: [[API GetMerchantItemLink|GetMerchantItemLink]](<span class="apiarg">index</span>) - Returns an [[itemLink]] for the given purchasable item.
: [[API GetMerchantItemMaxStack|GetMerchantItemMaxStack]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns the maximum number of items in a stack.
+
: [[API GetMerchantItemMaxStack|GetMerchantItemMaxStack]](<span class="apiarg">index</span>) - Returns the maximum number of items in a stack.
 
: [[API GetMerchantNumItems|GetMerchantNumItems]]() - Returns the number of items the merchant sells.
 
: [[API GetMerchantNumItems|GetMerchantNumItems]]() - Returns the number of items the merchant sells.
 
: [[API GetNumBuybackItems|GetNumBuybackItems]]() - Returns number of items available for buyback.
 
: [[API GetNumBuybackItems|GetNumBuybackItems]]() - Returns number of items available for buyback.
 
: [[API GetRepairAllCost|GetRepairAllCost]]()
 
: [[API GetRepairAllCost|GetRepairAllCost]]()
: [[API RepairAllItems|RepairAllItems]](<span style="font-size:smaller; color:#ecbc2a">[guildBankRepair]</span>) - Repairs all equipped and inventory items.
+
: [[API RepairAllItems|RepairAllItems]](<span class="apiarg">[guildBankRepair]</span>) - Repairs all equipped and inventory items.
 
: [[API ResetSetMerchantFilter|ResetSetMerchantFilter]]()
 
: [[API ResetSetMerchantFilter|ResetSetMerchantFilter]]()
 
: [[API SetMerchantFilter|SetMerchantFilter]]()
 
: [[API SetMerchantFilter|SetMerchantFilter]]()
Line 2,991: Line 3,067:
 
==== Trainer ====
 
==== Trainer ====
 
Relates to [[Trainer]]s.
 
Relates to [[Trainer]]s.
: [[API BuyTrainerService|BuyTrainerService]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Used for buying new/upgrading professions, profession items and class skills.
+
: [[API BuyTrainerService|BuyTrainerService]](<span class="apiarg">index</span>) - Used for buying new/upgrading professions, profession items and class skills.
 
: [[API CloseTrainer|CloseTrainer]]() - Closes the trainer window.
 
: [[API CloseTrainer|CloseTrainer]]() - Closes the trainer window.
 
: [[API GetNumTrainerServices|GetNumTrainerServices]]() - Get the number of the trainer services.
 
: [[API GetNumTrainerServices|GetNumTrainerServices]]() - Get the number of the trainer services.
 
: [[API GetTrainerGreetingText|GetTrainerGreetingText]]() - Get the trainer's greeting text.
 
: [[API GetTrainerGreetingText|GetTrainerGreetingText]]() - Get the trainer's greeting text.
 
: [[API GetTrainerSelectionIndex|GetTrainerSelectionIndex]]() - Get the index of the selected trainer service.
 
: [[API GetTrainerSelectionIndex|GetTrainerSelectionIndex]]() - Get the index of the selected trainer service.
: [[API GetTrainerServiceAbilityReq|GetTrainerServiceAbilityReq]](<span style="font-size:smaller; color:#ecbc2a">trainerIndex, reqIndex</span>) - Used for displaying the requirements to learn a new profession, profession skill or class skill.
+
: [[API GetTrainerServiceAbilityReq|GetTrainerServiceAbilityReq]](<span class="apiarg">trainerIndex, reqIndex</span>) - Used for displaying the requirements to learn a new profession, profession skill or class skill.
: [[API GetTrainerServiceCost|GetTrainerServiceCost]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns the cost of a specific trainer service.
+
: [[API GetTrainerServiceCost|GetTrainerServiceCost]](<span class="apiarg">index</span>) - Returns the cost of a specific trainer service.
: [[API GetTrainerServiceDescription|GetTrainerServiceDescription]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns the description of a specific trainer service.
+
: [[API GetTrainerServiceDescription|GetTrainerServiceDescription]](<span class="apiarg">index</span>) - Returns the description of a specific trainer service.
: [[API GetTrainerServiceIcon|GetTrainerServiceIcon]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns icon texture for a trainer service.
+
: [[API GetTrainerServiceIcon|GetTrainerServiceIcon]](<span class="apiarg">index</span>) - Returns icon texture for a trainer service.
: [[API GetTrainerServiceInfo|GetTrainerServiceInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns information about a trainer service.
+
: [[API GetTrainerServiceInfo|GetTrainerServiceInfo]](<span class="apiarg">index</span>) - Returns information about a trainer service.
: [[API GetTrainerServiceItemLink|GetTrainerServiceItemLink]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns an item link for a trainer service.
+
: [[API GetTrainerServiceItemLink|GetTrainerServiceItemLink]](<span class="apiarg">index</span>) - Returns an item link for a trainer service.
: [[API GetTrainerServiceLevelReq|GetTrainerServiceLevelReq]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Get the required level to learn the skill.
+
: [[API GetTrainerServiceLevelReq|GetTrainerServiceLevelReq]](<span class="apiarg">index</span>) - Get the required level to learn the skill.
 
: [[API GetTrainerServiceNumAbilityReq|GetTrainerServiceNumAbilityReq]]() - Get the maximum number of requirements that [[API GetTrainerServiceAbilityReq|GetTrainerServiceAbilityReq]] has.
 
: [[API GetTrainerServiceNumAbilityReq|GetTrainerServiceNumAbilityReq]]() - Get the maximum number of requirements that [[API GetTrainerServiceAbilityReq|GetTrainerServiceAbilityReq]] has.
: [[API GetTrainerServiceSkillLine|GetTrainerServiceSkillLine]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetTrainerServiceSkillLine|GetTrainerServiceSkillLine]](<span class="apiarg">index</span>)
: [[API GetTrainerServiceSkillReq|GetTrainerServiceSkillReq]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns a String and Variable for the requirements of a specific trainer service.
+
: [[API GetTrainerServiceSkillReq|GetTrainerServiceSkillReq]](<span class="apiarg">index</span>) - Returns a String and Variable for the requirements of a specific trainer service.
 
: [[API GetTrainerServiceStepIndex|GetTrainerServiceStepIndex]]()
 
: [[API GetTrainerServiceStepIndex|GetTrainerServiceStepIndex]]()
: [[API GetTrainerServiceTypeFilter|GetTrainerServiceTypeFilter]](<span style="font-size:smaller; color:#ecbc2a">filter</span>) - Returns the status of a skill filter in the trainer window.
+
: [[API GetTrainerServiceTypeFilter|GetTrainerServiceTypeFilter]](<span class="apiarg">filter</span>) - Returns the status of a skill filter in the trainer window.
 
: [[API GetTrainerTradeskillRankValues|GetTrainerTradeskillRankValues]]()
 
: [[API GetTrainerTradeskillRankValues|GetTrainerTradeskillRankValues]]()
 
: [[API IsTradeskillTrainer|IsTradeskillTrainer]]() - Returns 1 if trainer is for a tradeskill.
 
: [[API IsTradeskillTrainer|IsTradeskillTrainer]]() - Returns 1 if trainer is for a tradeskill.
 
: [[API OpenTrainer|OpenTrainer]]()
 
: [[API OpenTrainer|OpenTrainer]]()
 
: [[API SelectTrainerService|SelectTrainerService]]()
 
: [[API SelectTrainerService|SelectTrainerService]]()
: [[API SetTrainerServiceTypeFilter|SetTrainerServiceTypeFilter]](<span style="font-size:smaller; color:#ecbc2a">filter, state</span>) - Sets the status of a skill filter in the trainer window.
+
: [[API SetTrainerServiceTypeFilter|SetTrainerServiceTypeFilter]](<span class="apiarg">filter, state</span>) - Sets the status of a skill filter in the trainer window.
   
 
=== Pet Battles ===
 
=== Pet Battles ===
Line 3,020: Line 3,096:
 
: [[API C_PetBattles.CanAcceptQueuedPVPMatch|C_PetBattles.CanAcceptQueuedPVPMatch]]()
 
: [[API C_PetBattles.CanAcceptQueuedPVPMatch|C_PetBattles.CanAcceptQueuedPVPMatch]]()
 
: [[API C_PetBattles.CanActivePetSwapOut|C_PetBattles.CanActivePetSwapOut]]()
 
: [[API C_PetBattles.CanActivePetSwapOut|C_PetBattles.CanActivePetSwapOut]]()
: [[API C_PetBattles.CanPetSwapIn|C_PetBattles.CanPetSwapIn]](<span style="font-size:smaller; color:#ecbc2a">petIndex</span>)
+
: [[API C_PetBattles.CanPetSwapIn|C_PetBattles.CanPetSwapIn]](<span class="apiarg">petIndex</span>)
 
: [[API C_PetBattles.CancelPVPDuel|C_PetBattles.CancelPVPDuel]]()
 
: [[API C_PetBattles.CancelPVPDuel|C_PetBattles.CancelPVPDuel]]()
: [[API C_PetBattles.ChangePet|C_PetBattles.ChangePet]](<span style="font-size:smaller; color:#ecbc2a">petIndex</span>)
+
: [[API C_PetBattles.ChangePet|C_PetBattles.ChangePet]](<span class="apiarg">petIndex</span>)
 
: [[API C_PetBattles.DeclineQueuedPVPMatch|C_PetBattles.DeclineQueuedPVPMatch]]()
 
: [[API C_PetBattles.DeclineQueuedPVPMatch|C_PetBattles.DeclineQueuedPVPMatch]]()
 
: [[API C_PetBattles.ForfeitGame|C_PetBattles.ForfeitGame]]()
 
: [[API C_PetBattles.ForfeitGame|C_PetBattles.ForfeitGame]]()
: [[API C_PetBattles.GetAbilityEffectInfo|C_PetBattles.GetAbilityEffectInfo]](<span style="font-size:smaller; color:#ecbc2a">abilityID, turnIndex, effectIndex, effectName</span>)
+
: [[API C_PetBattles.GetAbilityEffectInfo|C_PetBattles.GetAbilityEffectInfo]](<span class="apiarg">abilityID, turnIndex, effectIndex, effectName</span>)
: [[API C_PetBattles.GetAbilityInfoByID|C_PetBattles.GetAbilityInfoByID]](<span style="font-size:smaller; color:#ecbc2a">abilityID</span>)
+
: [[API C_PetBattles.GetAbilityInfoByID|C_PetBattles.GetAbilityInfoByID]](<span class="apiarg">abilityID</span>)
: [[API C_PetBattles.GetAbilityInfo|C_PetBattles.GetAbilityInfo]](<span style="font-size:smaller; color:#ecbc2a">petOwner, petIndex, abilityIndex</span>)
+
: [[API C_PetBattles.GetAbilityInfo|C_PetBattles.GetAbilityInfo]](<span class="apiarg">petOwner, petIndex, abilityIndex</span>)
: [[API C_PetBattles.GetAbilityProcTurnIndex|C_PetBattles.GetAbilityProcTurnIndex]](<span style="font-size:smaller; color:#ecbc2a">abilityID, procType</span>)
+
: [[API C_PetBattles.GetAbilityProcTurnIndex|C_PetBattles.GetAbilityProcTurnIndex]](<span class="apiarg">abilityID, procType</span>)
: [[API C_PetBattles.GetAbilityStateModification|C_PetBattles.GetAbilityStateModification]](<span style="font-size:smaller; color:#ecbc2a">abilityID, stateID</span>)
+
: [[API C_PetBattles.GetAbilityStateModification|C_PetBattles.GetAbilityStateModification]](<span class="apiarg">abilityID, stateID</span>)
: [[API C_PetBattles.GetAbilityState|C_PetBattles.GetAbilityState]](<span style="font-size:smaller; color:#ecbc2a">petOwner, petIndex, actionIndex</span>)
+
: [[API C_PetBattles.GetAbilityState|C_PetBattles.GetAbilityState]](<span class="apiarg">petOwner, petIndex, actionIndex</span>)
: [[API C_PetBattles.GetActivePet|C_PetBattles.GetActivePet]](<span style="font-size:smaller; color:#ecbc2a">petOwner</span>)
+
: [[API C_PetBattles.GetActivePet|C_PetBattles.GetActivePet]](<span class="apiarg">petOwner</span>)
 
: [[API C_PetBattles.GetAllEffectNames|C_PetBattles.GetAllEffectNames]]()
 
: [[API C_PetBattles.GetAllEffectNames|C_PetBattles.GetAllEffectNames]]()
 
: [[API C_PetBattles.GetAllStates|C_PetBattles.GetAllStates]]()
 
: [[API C_PetBattles.GetAllStates|C_PetBattles.GetAllStates]]()
: [[API C_PetBattles.GetAttackModifier|C_PetBattles.GetAttackModifier]](<span style="font-size:smaller; color:#ecbc2a">petType, enemyPetType</span>)
+
: [[API C_PetBattles.GetAttackModifier|C_PetBattles.GetAttackModifier]](<span class="apiarg">petType, enemyPetType</span>)
: [[API C_PetBattles.GetAuraInfo|C_PetBattles.GetAuraInfo]](<span style="font-size:smaller; color:#ecbc2a">petOwner, petIndex, auraIndex</span>)
+
: [[API C_PetBattles.GetAuraInfo|C_PetBattles.GetAuraInfo]](<span class="apiarg">petOwner, petIndex, auraIndex</span>)
 
: [[API C_PetBattles.GetBattleState|C_PetBattles.GetBattleState]]()
 
: [[API C_PetBattles.GetBattleState|C_PetBattles.GetBattleState]]()
: [[API C_PetBattles.GetBreedQuality|C_PetBattles.GetBreedQuality]](<span style="font-size:smaller; color:#ecbc2a">petOwner, petIndex</span>)
+
: [[API C_PetBattles.GetBreedQuality|C_PetBattles.GetBreedQuality]](<span class="apiarg">petOwner, slot</span>) : <span class="apiret">quality</span>
: [[API C_PetBattles.GetDisplayID|C_PetBattles.GetDisplayID]](<span style="font-size:smaller; color:#ecbc2a">petOwner, petIndex</span>)
+
: [[API C_PetBattles.GetDisplayID|C_PetBattles.GetDisplayID]](<span class="apiarg">petOwner, petIndex</span>)
 
: [[API C_PetBattles.GetForfeitPenalty|C_PetBattles.GetForfeitPenalty]]()
 
: [[API C_PetBattles.GetForfeitPenalty|C_PetBattles.GetForfeitPenalty]]()
: [[API C_PetBattles.GetHealth|C_PetBattles.GetHealth]](<span style="font-size:smaller; color:#ecbc2a">petOwner, petIndex</span>)
+
: [[API C_PetBattles.GetHealth|C_PetBattles.GetHealth]](<span class="apiarg">petOwner, petIndex</span>)
: [[API C_PetBattles.GetIcon|C_PetBattles.GetIcon]](<span style="font-size:smaller; color:#ecbc2a">petOwner, petIndex</span>)
+
: [[API C_PetBattles.GetIcon|C_PetBattles.GetIcon]](<span class="apiarg">petOwner, slot</span>) : <span class="apiret">iconFileID</span>
: [[API C_PetBattles.GetLevel|C_PetBattles.GetLevel]](<span style="font-size:smaller; color:#ecbc2a">petOwner, petIndex</span>)
+
: [[API C_PetBattles.GetLevel|C_PetBattles.GetLevel]](<span class="apiarg">petOwner, petIndex</span>)
: [[API C_PetBattles.GetMaxHealth|C_PetBattles.GetMaxHealth]](<span style="font-size:smaller; color:#ecbc2a">petOwner, petIndex</span>)
+
: [[API C_PetBattles.GetMaxHealth|C_PetBattles.GetMaxHealth]](<span class="apiarg">petOwner, petIndex</span>)
: [[API C_PetBattles.GetName|C_PetBattles.GetName]](<span style="font-size:smaller; color:#ecbc2a">petOwner, petIndex</span>)
+
: [[API C_PetBattles.GetName|C_PetBattles.GetName]](<span class="apiarg">petOwner, slot</span>) : <span class="apiret">customName, speciesName</span>
: [[API C_PetBattles.GetNumAuras|C_PetBattles.GetNumAuras]](<span style="font-size:smaller; color:#ecbc2a">petOwner, petIndex</span>)
+
: [[API C_PetBattles.GetNumAuras|C_PetBattles.GetNumAuras]](<span class="apiarg">petOwner, petIndex</span>)
: [[API C_PetBattles.GetNumPets|C_PetBattles.GetNumPets]](<span style="font-size:smaller; color:#ecbc2a">petOwner</span>)
+
: [[API C_PetBattles.GetNumPets|C_PetBattles.GetNumPets]](<span class="apiarg">petOwner</span>)
 
: [[API C_PetBattles.GetPVPMatchmakingInfo|C_PetBattles.GetPVPMatchmakingInfo]]()
 
: [[API C_PetBattles.GetPVPMatchmakingInfo|C_PetBattles.GetPVPMatchmakingInfo]]()
: [[API C_PetBattles.GetPetSpeciesID|C_PetBattles.GetPetSpeciesID]](<span style="font-size:smaller; color:#ecbc2a">petOwner, petIndex</span>)
+
: [[API C_PetBattles.GetPetSpeciesID|C_PetBattles.GetPetSpeciesID]](<span class="apiarg">petOwner, petIndex</span>)
: [[API C_PetBattles.GetPetType|C_PetBattles.GetPetType]](<span style="font-size:smaller; color:#ecbc2a">petOwner, petIndex</span>)
+
: [[API C_PetBattles.GetPetType|C_PetBattles.GetPetType]](<span class="apiarg">petOwner, petIndex</span>)
 
: [[API C_PetBattles.GetPlayerTrapAbility|C_PetBattles.GetPlayerTrapAbility]]()
 
: [[API C_PetBattles.GetPlayerTrapAbility|C_PetBattles.GetPlayerTrapAbility]]()
: [[API C_PetBattles.GetPower|C_PetBattles.GetPower]](<span style="font-size:smaller; color:#ecbc2a">petOwner, petIndex</span>)
+
: [[API C_PetBattles.GetPower|C_PetBattles.GetPower]](<span class="apiarg">petOwner, petIndex</span>)
 
: [[API C_PetBattles.GetSelectedAction|C_PetBattles.GetSelectedAction]]()
 
: [[API C_PetBattles.GetSelectedAction|C_PetBattles.GetSelectedAction]]()
: [[API C_PetBattles.GetSpeed|C_PetBattles.GetSpeed]](<span style="font-size:smaller; color:#ecbc2a">petOwner, petIndex</span>)
+
: [[API C_PetBattles.GetSpeed|C_PetBattles.GetSpeed]](<span class="apiarg">petOwner, petIndex</span>)
: [[API C_PetBattles.GetStateValue|C_PetBattles.GetStateValue]](<span style="font-size:smaller; color:#ecbc2a">petOwner, petIndex, stateID</span>)
+
: [[API C_PetBattles.GetStateValue|C_PetBattles.GetStateValue]](<span class="apiarg">petOwner, petIndex, stateID</span>)
 
: [[API C_PetBattles.GetTurnTimeInfo|C_PetBattles.GetTurnTimeInfo]]()
 
: [[API C_PetBattles.GetTurnTimeInfo|C_PetBattles.GetTurnTimeInfo]]()
: [[API C_PetBattles.GetXP|C_PetBattles.GetXP]](<span style="font-size:smaller; color:#ecbc2a">petOwner, petIndex</span>)
+
: [[API C_PetBattles.GetXP|C_PetBattles.GetXP]](<span class="apiarg">petOwner, petIndex</span>)
 
: [[API C_PetBattles.IsInBattle|C_PetBattles.IsInBattle]]()
 
: [[API C_PetBattles.IsInBattle|C_PetBattles.IsInBattle]]()
: [[API C_PetBattles.IsPlayerNPC|C_PetBattles.IsPlayerNPC]](<span style="font-size:smaller; color:#ecbc2a">petOwner</span>)
+
: [[API C_PetBattles.IsPlayerNPC|C_PetBattles.IsPlayerNPC]]() : <span class="apiret">isPlayerNPC</span>
 
: [[API C_PetBattles.IsSkipAvailable|C_PetBattles.IsSkipAvailable]]()
 
: [[API C_PetBattles.IsSkipAvailable|C_PetBattles.IsSkipAvailable]]()
 
: [[API C_PetBattles.IsTrapAvailable|C_PetBattles.IsTrapAvailable]]()
 
: [[API C_PetBattles.IsTrapAvailable|C_PetBattles.IsTrapAvailable]]()
 
: [[API C_PetBattles.IsWaitingOnOpponent|C_PetBattles.IsWaitingOnOpponent]]()
 
: [[API C_PetBattles.IsWaitingOnOpponent|C_PetBattles.IsWaitingOnOpponent]]()
: [[API C_PetBattles.IsWildBattle|C_PetBattles.IsWildBattle]]()
+
: [[API C_PetBattles.IsWildBattle|C_PetBattles.IsWildBattle]]() : <span class="apiret">isWildBattle</span>
: [[API C_PetBattles.SetPendingReportBattlePetTarget|C_PetBattles.SetPendingReportBattlePetTarget]](<span style="font-size:smaller; color:#ecbc2a">petIndex</span>)
+
: [[API C_PetBattles.SetPendingReportBattlePetTarget|C_PetBattles.SetPendingReportBattlePetTarget]](<span class="apiarg">petIndex</span>)
: [[API C_PetBattles.SetPendingReportTargetFromUnit|C_PetBattles.SetPendingReportTargetFromUnit]](<span style="font-size:smaller; color:#ecbc2a">unit</span>)
+
: [[API C_PetBattles.SetPendingReportTargetFromUnit|C_PetBattles.SetPendingReportTargetFromUnit]](<span class="apiarg">unit</span>)
 
: [[API C_PetBattles.ShouldShowPetSelect|C_PetBattles.ShouldShowPetSelect]]()
 
: [[API C_PetBattles.ShouldShowPetSelect|C_PetBattles.ShouldShowPetSelect]]()
 
: <small>HW</small> [[API C_PetBattles.SkipTurn|C_PetBattles.SkipTurn]]()
 
: <small>HW</small> [[API C_PetBattles.SkipTurn|C_PetBattles.SkipTurn]]()
Line 3,070: Line 3,146:
 
: [[API C_PetBattles.StartPVPMatchmaking|C_PetBattles.StartPVPMatchmaking]]()
 
: [[API C_PetBattles.StartPVPMatchmaking|C_PetBattles.StartPVPMatchmaking]]()
 
: [[API C_PetBattles.StopPVPMatchmaking|C_PetBattles.StopPVPMatchmaking]]()
 
: [[API C_PetBattles.StopPVPMatchmaking|C_PetBattles.StopPVPMatchmaking]]()
: <small>HW</small> [[API C_PetBattles.UseAbility|C_PetBattles.UseAbility]](<span style="font-size:smaller; color:#ecbc2a">actionIndex</span>)
+
: <small>HW</small> [[API C_PetBattles.UseAbility|C_PetBattles.UseAbility]](<span class="apiarg">actionIndex</span>)
 
: <small>HW</small> [[API C_PetBattles.UseTrap|C_PetBattles.UseTrap]]()
 
: <small>HW</small> [[API C_PetBattles.UseTrap|C_PetBattles.UseTrap]]()
 
: [[API CanTrackBattlePets|CanTrackBattlePets]]() - Returns whether the player can track battle pets.
 
: [[API CanTrackBattlePets|CanTrackBattlePets]]() - Returns whether the player can track battle pets.
Line 3,077: Line 3,153:
 
: [[API UnitBattlePetSpeciesID|UnitBattlePetSpeciesID]]()
 
: [[API UnitBattlePetSpeciesID|UnitBattlePetSpeciesID]]()
 
: [[API UnitBattlePetType|UnitBattlePetType]]()
 
: [[API UnitBattlePetType|UnitBattlePetType]]()
: [[API UnitIsBattlePet|UnitIsBattlePet]](<span style="font-size:smaller; color:#ecbc2a">unit</span>)
+
: [[API UnitIsBattlePet|UnitIsBattlePet]](<span class="apiarg">unit</span>)
: [[API UnitIsBattlePetCompanion|UnitIsBattlePetCompanion]](<span style="font-size:smaller; color:#ecbc2a">unit</span>)
+
: [[API UnitIsBattlePetCompanion|UnitIsBattlePetCompanion]](<span class="apiarg">unit</span>)
: [[API UnitIsOtherPlayersBattlePet|UnitIsOtherPlayersBattlePet]](<span style="font-size:smaller; color:#ecbc2a">unit</span>)
+
: [[API UnitIsOtherPlayersBattlePet|UnitIsOtherPlayersBattlePet]](<span class="apiarg">unit</span>)
: [[API UnitIsWildBattlePet|UnitIsWildBattlePet]](<span style="font-size:smaller; color:#ecbc2a">unit</span>)
+
: [[API UnitIsWildBattlePet|UnitIsWildBattlePet]](<span class="apiarg">unit</span>)
   
 
=== Players ===
 
=== Players ===
: [[API C_PlayerInfo.GetClass|C_PlayerInfo.GetClass]](<span style="font-size:smaller; color:#ecbc2a">playerLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">className, classFilename, classID</span> - Returns the class of a player.
+
: [[API C_PlayerInfo.GetAlternateFormInfo|C_PlayerInfo.GetAlternateFormInfo]]() : <span class="apiret">hasAlternateForm, inAlternateForm</span>
: [[API C_PlayerInfo.GetName|C_PlayerInfo.GetName]](<span style="font-size:smaller; color:#ecbc2a">playerLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">name</span> - Returns the name of a player.
+
: [[API C_PlayerInfo.GetClass|C_PlayerInfo.GetClass]](<span class="apiarg">playerLocation</span>) : <span class="apiret">className, classFilename, classID</span> - Returns the class of a player.
: [[API C_PlayerInfo.GetRace|C_PlayerInfo.GetRace]](<span style="font-size:smaller; color:#ecbc2a">playerLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">raceID</span> - Returns the race of a player.
+
: [[API C_PlayerInfo.GetName|C_PlayerInfo.GetName]](<span class="apiarg">playerLocation</span>) : <span class="apiret">name</span> - Returns the name of a player.
: [[API C_PlayerInfo.GetSex|C_PlayerInfo.GetSex]](<span style="font-size:smaller; color:#ecbc2a">playerLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">sex</span> - Returns the sex of a player.
+
: [[API C_PlayerInfo.GetRace|C_PlayerInfo.GetRace]](<span class="apiarg">playerLocation</span>) : <span class="apiret">raceID</span> - Returns the race of a player.
: [[API C_PlayerInfo.GUIDIsPlayer|C_PlayerInfo.GUIDIsPlayer]](<span style="font-size:smaller; color:#ecbc2a">guid</span>) : <span style="font-size:smaller; color:#4ec9b0">isPlayer</span> - Returns true if the guid belongs to a player.
+
: [[API C_PlayerInfo.GetSex|C_PlayerInfo.GetSex]](<span class="apiarg">playerLocation</span>) : <span class="apiret">sex</span> - Returns the sex of a player.
: [[API C_PlayerInfo.IsConnected|C_PlayerInfo.IsConnected]](<span style="font-size:smaller; color:#ecbc2a">[playerLocation]</span>) : <span style="font-size:smaller; color:#4ec9b0">isConnected</span> - Returns true if a player is connected.
+
: [[API C_PlayerInfo.GUIDIsPlayer|C_PlayerInfo.GUIDIsPlayer]](<span class="apiarg">guid</span>) : <span class="apiret">isPlayer</span> - Returns true if the guid belongs to a player.
: [[API C_PlayerInfo.UnitIsSameServer|C_PlayerInfo.UnitIsSameServer]](<span style="font-size:smaller; color:#ecbc2a">playerLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">unitIsSameServer</span> - Returns true if another player is from your own or connected realm.
+
: [[API C_PlayerInfo.IsConnected|C_PlayerInfo.IsConnected]](<span class="apiarg">[playerLocation]</span>) : <span class="apiret">isConnected</span> - Returns true if a player is connected.
  +
: [[API C_PlayerInfo.UnitIsSameServer|C_PlayerInfo.UnitIsSameServer]](<span class="apiarg">playerLocation</span>) : <span class="apiret">unitIsSameServer</span> - Returns true if another player is from your own or connected realm.
: [[API Ambiguate|Ambiguate]](<span style="font-size:smaller; color:#ecbc2a">fullName, context</span>) - Returns a version of a character-realm string suitable for use in a given context.
 
: [[API GetAutoCompleteResults|GetAutoCompleteResults]](<span style="font-size:smaller; color:#ecbc2a">text, include, exclude, maxResults [, cursorPosition]</span>) - Returns possible player names matching a given prefix string and specified requirements.
+
: [[API Ambiguate|Ambiguate]](<span class="apiarg">fullName, context</span>) - Returns a version of a character-realm string suitable for use in a given context.
  +
: [[API GetAutoCompleteResults|GetAutoCompleteResults]](<span class="apiarg">text, include, exclude, maxResults [, cursorPosition]</span>) - Returns possible player names matching a given prefix string and specified requirements.
: [[API GetPlayerInfoByGUID|GetPlayerInfoByGUID]](<span style="font-size:smaller; color:#ecbc2a">guid</span>) - Returns race, class, sex about the guid (client must have seen the guid)
 
: [[API IsRecognizedName|IsRecognizedName]](<span style="font-size:smaller; color:#ecbc2a">text, includeBitField, excludeBitField</span>) - Returns true if a given character name is recognized by the client.
+
: [[API GetPlayerInfoByGUID|GetPlayerInfoByGUID]](<span class="apiarg">guid</span>) - Returns race, class, sex about the guid (client must have seen the guid)
  +
: [[API IsRecognizedName|IsRecognizedName]](<span class="apiarg">text, includeBitField, excludeBitField</span>) - Returns true if a given character name is recognized by the client.
   
 
==== Inspection ====
 
==== Inspection ====
: [[API CanInspect|CanInspect]](<span style="font-size:smaller; color:#ecbc2a">unit [, showError]</span>) - Returns whether you can inspect the specified unit.
+
: [[API CanInspect|CanInspect]](<span class="apiarg">unit [, showError]</span>) - Returns whether you can inspect the specified unit.
: [[API CheckInteractDistance|CheckInteractDistance]](<span style="font-size:smaller; color:#ecbc2a">unit, interaction</span>) - Returns whether you're in range to perform various interactions with the specified unit.
+
: [[API CheckInteractDistance|CheckInteractDistance]](<span class="apiarg">unit, interaction</span>) - Returns whether you're in range to perform various interactions with the specified unit.
 
: [[API ClearInspectPlayer|ClearInspectPlayer]]() - Reset inspect data once finished with it.
 
: [[API ClearInspectPlayer|ClearInspectPlayer]]() - Reset inspect data once finished with it.
: [[API GetInspectArenaData|GetInspectArenaData]](<span style="font-size:smaller; color:#ecbc2a">bracketIndex</span>)
+
: [[API GetInspectArenaData|GetInspectArenaData]](<span class="apiarg">bracketIndex</span>)
: [[API GetInspectGuildInfo|GetInspectGuildInfo]](<span style="font-size:smaller; color:#ecbc2a">unit</span>)
+
: [[API GetInspectGuildInfo|GetInspectGuildInfo]](<span class="apiarg">unit</span>)
 
: [[API GetInspectHonorData|GetInspectHonorData]]() - Returns honor information about the inspected player.
 
: [[API GetInspectHonorData|GetInspectHonorData]]() - Returns honor information about the inspected player.
 
: [[API GetInspectRatedBGData|GetInspectRatedBGData]]()
 
: [[API GetInspectRatedBGData|GetInspectRatedBGData]]()
: [[API GetInspectSpecialization|GetInspectSpecialization]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns a number representing the current active specialization of a given unit.
+
: [[API GetInspectSpecialization|GetInspectSpecialization]](<span class="apiarg">unit</span>) - Returns a number representing the current active specialization of a given unit.
 
: [[API GetInspectTalent|GetInspectTalent]]()
 
: [[API GetInspectTalent|GetInspectTalent]]()
: [[API NotifyInspect|NotifyInspect]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Requests information about a unit's inventory and talents from the server.
+
: [[API NotifyInspect|NotifyInspect]](<span class="apiarg">unit</span>) - Requests information about a unit's inventory and talents from the server.
: <small>UI</small> [[API InspectUnit|InspectUnit]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Instructs FrameXML to inspect a particular unit (query server; show UI).
+
: <small>UI</small> [[API InspectUnit|InspectUnit]](<span class="apiarg">unit</span>) - Instructs FrameXML to inspect a particular unit (query server; show UI).
   
 
==== Trading ====
 
==== Trading ====
Line 3,115: Line 3,192:
 
: [[API CancelTrade|CancelTrade]]() - Declines the offer to trade with the other player.
 
: [[API CancelTrade|CancelTrade]]() - Declines the offer to trade with the other player.
 
: [[API CancelTradeAccept|CancelTradeAccept]]() - Cancels the trade attempt which required an accept.
 
: [[API CancelTradeAccept|CancelTradeAccept]]() - Cancels the trade attempt which required an accept.
: [[API ClickTargetTradeButton|ClickTargetTradeButton]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API ClickTargetTradeButton|ClickTargetTradeButton]](<span class="apiarg">index</span>)
: [[API ClickTradeButton|ClickTradeButton]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Equivalent of a mouseclick on the trade window buttons [1-7].
+
: [[API ClickTradeButton|ClickTradeButton]](<span class="apiarg">index</span>) - Equivalent of a mouseclick on the trade window buttons [1-7].
 
: [[API CloseTrade|CloseTrade]]() - Closes the trade.
 
: [[API CloseTrade|CloseTrade]]() - Closes the trade.
 
: [[API GetPlayerTradeMoney|GetPlayerTradeMoney]]() - Returns the amount of money the player has in the trade window.
 
: [[API GetPlayerTradeMoney|GetPlayerTradeMoney]]() - Returns the amount of money the player has in the trade window.
 
: [[API GetTargetTradeMoney|GetTargetTradeMoney]]() - Returns the amount of money in the trade frame of the target player.
 
: [[API GetTargetTradeMoney|GetTargetTradeMoney]]() - Returns the amount of money in the trade frame of the target player.
: [[API GetTradePlayerItemInfo|GetTradePlayerItemInfo]](<span style="font-size:smaller; color:#ecbc2a">id</span>) - Returns information about a trade item.
+
: [[API GetTradePlayerItemInfo|GetTradePlayerItemInfo]](<span class="apiarg">id</span>) - Returns information about a trade item.
: [[API GetTradePlayerItemLink|GetTradePlayerItemLink]](<span style="font-size:smaller; color:#ecbc2a">id</span>) - Returns an [[itemLink]] for the given item in your side of the trade window (if open)
+
: [[API GetTradePlayerItemLink|GetTradePlayerItemLink]](<span class="apiarg">id</span>) - Returns an [[itemLink]] for the given item in your side of the trade window (if open)
: [[API GetTradeTargetItemInfo|GetTradeTargetItemInfo]](<span style="font-size:smaller; color:#ecbc2a">id</span>) - Returns information about a trade item.
+
: [[API GetTradeTargetItemInfo|GetTradeTargetItemInfo]](<span class="apiarg">id</span>) - Returns information about a trade item.
: [[API GetTradeTargetItemLink|GetTradeTargetItemLink]](<span style="font-size:smaller; color:#ecbc2a">id</span>) - Returns an [[itemLink]] for the given item in the other player's side of the trade window (if open)
+
: [[API GetTradeTargetItemLink|GetTradeTargetItemLink]](<span class="apiarg">id</span>) - Returns an [[itemLink]] for the given item in the other player's side of the trade window (if open)
: [[API InitiateTrade|InitiateTrade]](<span style="font-size:smaller; color:#ecbc2a">UnitId</span>) - Asks the specified unit to trade.
+
: [[API InitiateTrade|InitiateTrade]](<span class="apiarg">UnitId</span>) - Asks the specified unit to trade.
: [[API SetTradeMoney|SetTradeMoney]](<span style="font-size:smaller; color:#ecbc2a">copper</span>) - Sets the amount of money offered as part of the player's trade offer.
+
: [[API SetTradeMoney|SetTradeMoney]](<span class="apiarg">copper</span>) - Sets the amount of money offered as part of the player's trade offer.
   
 
==== Summoning ====
 
==== Summoning ====
: [[API C_IncomingSummon.HasIncomingSummon|C_IncomingSummon.HasIncomingSummon]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) : <span style="font-size:smaller; color:#4ec9b0">summon</span> - Returns whether a group member has an incoming summon.
+
: [[API C_IncomingSummon.HasIncomingSummon|C_IncomingSummon.HasIncomingSummon]](<span class="apiarg">unit</span>) : <span class="apiret">summon</span> - Returns whether a group member has an incoming summon.
: [[API C_IncomingSummon.IncomingSummonStatus|C_IncomingSummon.IncomingSummonStatus]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) : <span style="font-size:smaller; color:#4ec9b0">status</span> - Returns the status of an group member's incoming summon.
+
: [[API C_IncomingSummon.IncomingSummonStatus|C_IncomingSummon.IncomingSummonStatus]](<span class="apiarg">unit</span>) : <span class="apiret">status</span> - Returns the status of an group member's incoming summon.
 
: [[API C_SummonInfo.CancelSummon|C_SummonInfo.CancelSummon]]() - Rejects a summon request.
 
: [[API C_SummonInfo.CancelSummon|C_SummonInfo.CancelSummon]]() - Rejects a summon request.
 
: [[API C_SummonInfo.ConfirmSummon|C_SummonInfo.ConfirmSummon]]() - Accepts a summon request.
 
: [[API C_SummonInfo.ConfirmSummon|C_SummonInfo.ConfirmSummon]]() - Accepts a summon request.
: [[API C_SummonInfo.GetSummonConfirmAreaName|C_SummonInfo.GetSummonConfirmAreaName]]() : <span style="font-size:smaller; color:#4ec9b0">areaName</span> - Returns the name of the area you're being summoned to.
+
: [[API C_SummonInfo.GetSummonConfirmAreaName|C_SummonInfo.GetSummonConfirmAreaName]]() : <span class="apiret">areaName</span> - Returns the name of the area you're being summoned to.
: [[API C_SummonInfo.GetSummonConfirmSummoner|C_SummonInfo.GetSummonConfirmSummoner]]() : <span style="font-size:smaller; color:#4ec9b0">summoner</span> - Returns the name of the player summoning you.
+
: [[API C_SummonInfo.GetSummonConfirmSummoner|C_SummonInfo.GetSummonConfirmSummoner]]() : <span class="apiret">summoner</span> - Returns the name of the player summoning you.
: [[API C_SummonInfo.GetSummonConfirmTimeLeft|C_SummonInfo.GetSummonConfirmTimeLeft]]() : <span style="font-size:smaller; color:#4ec9b0">timeLeft</span> - Returns the amount of time left before the pending summon expires.
+
: [[API C_SummonInfo.GetSummonConfirmTimeLeft|C_SummonInfo.GetSummonConfirmTimeLeft]]() : <span class="apiret">timeLeft</span> - Returns the amount of time left before the pending summon expires.
: [[API C_SummonInfo.GetSummonReason|C_SummonInfo.GetSummonReason]]() : <span style="font-size:smaller; color:#4ec9b0">summonReason</span>
+
: [[API C_SummonInfo.GetSummonReason|C_SummonInfo.GetSummonReason]]() : <span class="apiret">summonReason</span>
: [[API C_SummonInfo.IsSummonSkippingStartExperience|C_SummonInfo.IsSummonSkippingStartExperience]]() : <span style="font-size:smaller; color:#4ec9b0">isSummonSkippingStartExperience</span>
+
: [[API C_SummonInfo.IsSummonSkippingStartExperience|C_SummonInfo.IsSummonSkippingStartExperience]]() : <span class="apiret">isSummonSkippingStartExperience</span>
 
: [[API PlayerCanTeleport|PlayerCanTeleport]]()
 
: [[API PlayerCanTeleport|PlayerCanTeleport]]()
   
 
==== Death ====
 
==== Death ====
: [[API C_DeathInfo.GetCorpseMapPosition|C_DeathInfo.GetCorpseMapPosition]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">position</span> - Returns the location of the player's corpse on the map.
+
: [[API C_DeathInfo.GetCorpseMapPosition|C_DeathInfo.GetCorpseMapPosition]](<span class="apiarg">uiMapID</span>) : <span class="apiret">position</span> - Returns the location of the player's corpse on the map.
: [[API C_DeathInfo.GetDeathReleasePosition|C_DeathInfo.GetDeathReleasePosition]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">position</span> - Returns the death release location.
+
: [[API C_DeathInfo.GetDeathReleasePosition|C_DeathInfo.GetDeathReleasePosition]](<span class="apiarg">uiMapID</span>) : <span class="apiret">position</span> - Returns the death release location.
: [[API C_DeathInfo.GetGraveyardsForMap|C_DeathInfo.GetGraveyardsForMap]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">graveyards</span> - Returns graveyard info and location for a map.
+
: [[API C_DeathInfo.GetGraveyardsForMap|C_DeathInfo.GetGraveyardsForMap]](<span class="apiarg">uiMapID</span>) : <span class="apiret">graveyards</span> - Returns graveyard info and location for a map.
: [[API C_DeathInfo.GetSelfResurrectOptions|C_DeathInfo.GetSelfResurrectOptions]]() : <span style="font-size:smaller; color:#4ec9b0">options</span> - Returns self resurrect options for your character, including from soulstones.
+
: [[API C_DeathInfo.GetSelfResurrectOptions|C_DeathInfo.GetSelfResurrectOptions]]() : <span class="apiret">options</span> - Returns self resurrect options for your character, including from soulstones.
: [[API C_DeathInfo.UseSelfResurrectOption|C_DeathInfo.UseSelfResurrectOption]](<span style="font-size:smaller; color:#ecbc2a">optionType, id</span>) - Uses a soulstone or similar means of self resurrection.
+
: [[API C_DeathInfo.UseSelfResurrectOption|C_DeathInfo.UseSelfResurrectOption]](<span class="apiarg">optionType, id</span>) - Uses a soulstone or similar means of self resurrection.
 
: [[API AcceptResurrect|AcceptResurrect]]() - The player accepts the request from another player to resurrect him/herself.
 
: [[API AcceptResurrect|AcceptResurrect]]() - The player accepts the request from another player to resurrect him/herself.
 
: [[API AcceptXPLoss|AcceptXPLoss]]() - Accept the durability loss to be reborn by a spirit healer. (The name is a remnant from when sprit res was an XP loss instead.)
 
: [[API AcceptXPLoss|AcceptXPLoss]]() - Accept the durability loss to be reborn by a spirit healer. (The name is a remnant from when sprit res was an XP loss instead.)
Line 3,153: Line 3,230:
 
: [[API GetCemeteryPreference|GetCemeteryPreference]]()
 
: [[API GetCemeteryPreference|GetCemeteryPreference]]()
 
: [[API GetCorpseRecoveryDelay|GetCorpseRecoveryDelay]]() - Time left before a player can accept a resurrection.
 
: [[API GetCorpseRecoveryDelay|GetCorpseRecoveryDelay]]() - Time left before a player can accept a resurrection.
: [[API GetDeathRecapLink|GetDeathRecapLink]](<span style="font-size:smaller; color:#ecbc2a">recapID</span>)
+
: [[API GetDeathRecapLink|GetDeathRecapLink]](<span class="apiarg">recapID</span>)
 
: [[API GetReleaseTimeRemaining|GetReleaseTimeRemaining]]() - Returns the amount of time left before your ghost is pulled from your body.
 
: [[API GetReleaseTimeRemaining|GetReleaseTimeRemaining]]() - Returns the amount of time left before your ghost is pulled from your body.
 
: [[API GetResSicknessDuration|GetResSicknessDuration]]()
 
: [[API GetResSicknessDuration|GetResSicknessDuration]]()
Line 3,167: Line 3,244:
 
: [[API ResurrectHasTimer|ResurrectHasTimer]]() - Does the player have to wait before accepting a resurrection.
 
: [[API ResurrectHasTimer|ResurrectHasTimer]]() - Does the player have to wait before accepting a resurrection.
 
: [[API RetrieveCorpse|RetrieveCorpse]]() - Resurrects when near corpse. e.g., The "Accept" button one sees after running back to your body.
 
: [[API RetrieveCorpse|RetrieveCorpse]]() - Resurrects when near corpse. e.g., The "Accept" button one sees after running back to your body.
: [[API SetCemeteryPreference|SetCemeteryPreference]](<span style="font-size:smaller; color:#ecbc2a">cemeteryID</span>)
+
: [[API SetCemeteryPreference|SetCemeteryPreference]](<span class="apiarg">cemeteryID</span>)
 
: [[API TimeoutResurrect|TimeoutResurrect]]()
 
: [[API TimeoutResurrect|TimeoutResurrect]]()
   
Line 3,182: Line 3,259:
 
: [[API C_TradeSkillUI.CloseObliterumForge|C_TradeSkillUI.CloseObliterumForge]]()
 
: [[API C_TradeSkillUI.CloseObliterumForge|C_TradeSkillUI.CloseObliterumForge]]()
 
: [[API C_TradeSkillUI.CloseTradeSkill|C_TradeSkillUI.CloseTradeSkill]]() - Closes an open trade skill window.
 
: [[API C_TradeSkillUI.CloseTradeSkill|C_TradeSkillUI.CloseTradeSkill]]() - Closes an open trade skill window.
: [[API C_TradeSkillUI.CraftRecipe|C_TradeSkillUI.CraftRecipe]](<span style="font-size:smaller; color:#ecbc2a">recipeSpellID [, numCasts, optionalReagents, recipeLevel]</span>) - Performs the tradeskill a specified number of times.
+
: [[API C_TradeSkillUI.CraftRecipe|C_TradeSkillUI.CraftRecipe]](<span class="apiarg">recipeSpellID [, numCasts, optionalReagents, recipeLevel]</span>) - Performs the tradeskill a specified number of times.
 
: [[API C_TradeSkillUI.DropPendingObliterateItemFromCursor|C_TradeSkillUI.DropPendingObliterateItemFromCursor]]()
 
: [[API C_TradeSkillUI.DropPendingObliterateItemFromCursor|C_TradeSkillUI.DropPendingObliterateItemFromCursor]]()
 
: [[API C_TradeSkillUI.GetAllFilterableInventorySlots|C_TradeSkillUI.GetAllFilterableInventorySlots]]()
 
: [[API C_TradeSkillUI.GetAllFilterableInventorySlots|C_TradeSkillUI.GetAllFilterableInventorySlots]]()
: [[API C_TradeSkillUI.GetAllProfessionTradeSkillLines|C_TradeSkillUI.GetAllProfessionTradeSkillLines]]() : <span style="font-size:smaller; color:#4ec9b0">skillLineID</span>
+
: [[API C_TradeSkillUI.GetAllProfessionTradeSkillLines|C_TradeSkillUI.GetAllProfessionTradeSkillLines]]() : <span class="apiret">skillLineID</span>
 
: [[API C_TradeSkillUI.GetAllRecipeIDs|C_TradeSkillUI.GetAllRecipeIDs]]() - Returns a table containing all the recipe IDs for the current trade skill.
 
: [[API C_TradeSkillUI.GetAllRecipeIDs|C_TradeSkillUI.GetAllRecipeIDs]]() - Returns a table containing all the recipe IDs for the current trade skill.
 
: [[API C_TradeSkillUI.GetCategories|C_TradeSkillUI.GetCategories]]()
 
: [[API C_TradeSkillUI.GetCategories|C_TradeSkillUI.GetCategories]]()
: [[API C_TradeSkillUI.GetCategoryInfo|C_TradeSkillUI.GetCategoryInfo]](<span style="font-size:smaller; color:#ecbc2a">categoryID [, returnTable]</span>)
+
: [[API C_TradeSkillUI.GetCategoryInfo|C_TradeSkillUI.GetCategoryInfo]](<span class="apiarg">categoryID [, returnTable]</span>)
 
: [[API C_TradeSkillUI.GetFilterableInventorySlots|C_TradeSkillUI.GetFilterableInventorySlots]]()
 
: [[API C_TradeSkillUI.GetFilterableInventorySlots|C_TradeSkillUI.GetFilterableInventorySlots]]()
 
: [[API C_TradeSkillUI.GetFilteredRecipeIDs|C_TradeSkillUI.GetFilteredRecipeIDs]]()
 
: [[API C_TradeSkillUI.GetFilteredRecipeIDs|C_TradeSkillUI.GetFilteredRecipeIDs]]()
Line 3,196: Line 3,273:
 
: [[API C_TradeSkillUI.GetOnlyShowSkillUpRecipes|C_TradeSkillUI.GetOnlyShowSkillUpRecipes]]()
 
: [[API C_TradeSkillUI.GetOnlyShowSkillUpRecipes|C_TradeSkillUI.GetOnlyShowSkillUpRecipes]]()
 
: [[API C_TradeSkillUI.GetOnlyShowUnlearnedRecipes|C_TradeSkillUI.GetOnlyShowUnlearnedRecipes]]()
 
: [[API C_TradeSkillUI.GetOnlyShowUnlearnedRecipes|C_TradeSkillUI.GetOnlyShowUnlearnedRecipes]]()
: [[API C_TradeSkillUI.GetOptionalReagentBonusText|C_TradeSkillUI.GetOptionalReagentBonusText]](<span style="font-size:smaller; color:#ecbc2a">recipeSpellID, optionalReagentIndex, optionalReagents</span>) : <span style="font-size:smaller; color:#4ec9b0">bonusText</span>
+
: [[API C_TradeSkillUI.GetOptionalReagentBonusText|C_TradeSkillUI.GetOptionalReagentBonusText]](<span class="apiarg">recipeSpellID, optionalReagentIndex, optionalReagents</span>) : <span class="apiret">bonusText</span>
: [[API C_TradeSkillUI.GetOptionalReagentInfo|C_TradeSkillUI.GetOptionalReagentInfo]](<span style="font-size:smaller; color:#ecbc2a">recipeSpellID</span>) : <span style="font-size:smaller; color:#4ec9b0">slots</span>
+
: [[API C_TradeSkillUI.GetOptionalReagentInfo|C_TradeSkillUI.GetOptionalReagentInfo]](<span class="apiarg">recipeSpellID</span>) : <span class="apiret">slots</span>
 
: [[API C_TradeSkillUI.GetPendingObliterateItemID|C_TradeSkillUI.GetPendingObliterateItemID]]()
 
: [[API C_TradeSkillUI.GetPendingObliterateItemID|C_TradeSkillUI.GetPendingObliterateItemID]]()
 
: [[API C_TradeSkillUI.GetPendingObliterateItemLink|C_TradeSkillUI.GetPendingObliterateItemLink]]()
 
: [[API C_TradeSkillUI.GetPendingObliterateItemLink|C_TradeSkillUI.GetPendingObliterateItemLink]]()
: [[API C_TradeSkillUI.GetRecipeCooldown|C_TradeSkillUI.GetRecipeCooldown]](<span style="font-size:smaller; color:#ecbc2a">recipeID</span>) - Returns the number of seconds left for a skill to cooldown.
+
: [[API C_TradeSkillUI.GetRecipeCooldown|C_TradeSkillUI.GetRecipeCooldown]](<span class="apiarg">recipeID</span>) - Returns the number of seconds left for a skill to cooldown.
: [[API C_TradeSkillUI.GetRecipeDescription|C_TradeSkillUI.GetRecipeDescription]](<span style="font-size:smaller; color:#ecbc2a">recipeID</span>) - Returns the description text of the indicated trade skill.
+
: [[API C_TradeSkillUI.GetRecipeDescription|C_TradeSkillUI.GetRecipeDescription]](<span class="apiarg">recipeID</span>) - Returns the description text of the indicated trade skill.
: [[API C_TradeSkillUI.GetRecipeInfo|C_TradeSkillUI.GetRecipeInfo]](<span style="font-size:smaller; color:#ecbc2a">recipeSpellID [, recipeLevel]</span>) : <span style="font-size:smaller; color:#4ec9b0">recipeInfo</span> - Returns information for a recipe.
+
: [[API C_TradeSkillUI.GetRecipeInfo|C_TradeSkillUI.GetRecipeInfo]](<span class="apiarg">recipeSpellID [, recipeLevel]</span>) : <span class="apiret">recipeInfo</span> - Returns information for a recipe.
 
: [[API C_TradeSkillUI.GetRecipeItemLevelFilter|C_TradeSkillUI.GetRecipeItemLevelFilter]]()
 
: [[API C_TradeSkillUI.GetRecipeItemLevelFilter|C_TradeSkillUI.GetRecipeItemLevelFilter]]()
: [[API C_TradeSkillUI.GetRecipeItemLink|C_TradeSkillUI.GetRecipeItemLink]](<span style="font-size:smaller; color:#ecbc2a">recipeID</span>) - Returns the [[itemLink]] for a trade skill item.
+
: [[API C_TradeSkillUI.GetRecipeItemLink|C_TradeSkillUI.GetRecipeItemLink]](<span class="apiarg">recipeID</span>) - Returns the [[itemLink]] for a trade skill item.
 
: [[API C_TradeSkillUI.GetRecipeItemNameFilter|C_TradeSkillUI.GetRecipeItemNameFilter]]()
 
: [[API C_TradeSkillUI.GetRecipeItemNameFilter|C_TradeSkillUI.GetRecipeItemNameFilter]]()
: [[API C_TradeSkillUI.GetRecipeLink|C_TradeSkillUI.GetRecipeLink]](<span style="font-size:smaller; color:#ecbc2a">recipeID</span>)
+
: [[API C_TradeSkillUI.GetRecipeLink|C_TradeSkillUI.GetRecipeLink]](<span class="apiarg">recipeID</span>)
: [[API C_TradeSkillUI.GetRecipeNumItemsProduced|C_TradeSkillUI.GetRecipeNumItemsProduced]](<span style="font-size:smaller; color:#ecbc2a">recipeID</span>) - Gets the number of items made in a single use of a skill.
+
: [[API C_TradeSkillUI.GetRecipeNumItemsProduced|C_TradeSkillUI.GetRecipeNumItemsProduced]](<span class="apiarg">recipeID</span>) - Gets the number of items made in a single use of a skill.
: [[API C_TradeSkillUI.GetRecipeNumReagents|C_TradeSkillUI.GetRecipeNumReagents]](<span style="font-size:smaller; color:#ecbc2a">recipeSpellID [, recipeLevel]</span>) : <span style="font-size:smaller; color:#4ec9b0">numReagents</span> - Returns the number of distinct reagents needed for the specified recipe.
+
: [[API C_TradeSkillUI.GetRecipeNumReagents|C_TradeSkillUI.GetRecipeNumReagents]](<span class="apiarg">recipeSpellID [, recipeLevel]</span>) : <span class="apiret">numReagents</span> - Returns the number of distinct reagents needed for the specified recipe.
: [[API C_TradeSkillUI.GetRecipeReagentInfo|C_TradeSkillUI.GetRecipeReagentInfo]](<span style="font-size:smaller; color:#ecbc2a">recipeSpellID, reagentIndex [, recipeLevel]</span>) : <span style="font-size:smaller; color:#4ec9b0">reagentName, reagentFileID, reagentCount, playerReagentCount</span> - Returns the information for a reagent needed by a recipe.
+
: [[API C_TradeSkillUI.GetRecipeReagentInfo|C_TradeSkillUI.GetRecipeReagentInfo]](<span class="apiarg">recipeSpellID, reagentIndex [, recipeLevel]</span>) : <span class="apiret">reagentName, reagentFileID, reagentCount, playerReagentCount</span> - Returns the information for a reagent needed by a recipe.
: [[API C_TradeSkillUI.GetRecipeReagentItemLink|C_TradeSkillUI.GetRecipeReagentItemLink]](<span style="font-size:smaller; color:#ecbc2a">recipeID, reagentIndex</span>) - Returns a link for a reagent needed by a recipe.
+
: [[API C_TradeSkillUI.GetRecipeReagentItemLink|C_TradeSkillUI.GetRecipeReagentItemLink]](<span class="apiarg">recipeID, reagentIndex</span>) - Returns a link for a reagent needed by a recipe.
: [[API C_TradeSkillUI.GetRecipeRepeatCount|C_TradeSkillUI.GetRecipeRepeatCount]]() : <span style="font-size:smaller; color:#4ec9b0">recastTimes</span> - Returns the number of times the current item is being crafted.
+
: [[API C_TradeSkillUI.GetRecipeRepeatCount|C_TradeSkillUI.GetRecipeRepeatCount]]() : <span class="apiret">recastTimes</span> - Returns the number of times the current item is being crafted.
: [[API C_TradeSkillUI.GetRecipeSourceText|C_TradeSkillUI.GetRecipeSourceText]](<span style="font-size:smaller; color:#ecbc2a">recipeID</span>)
+
: [[API C_TradeSkillUI.GetRecipeSourceText|C_TradeSkillUI.GetRecipeSourceText]](<span class="apiarg">recipeID</span>)
: [[API C_TradeSkillUI.GetRecipeTools|C_TradeSkillUI.GetRecipeTools]](<span style="font-size:smaller; color:#ecbc2a">recipeID</span>) - Returns information about the tools needed for a tradeskill.
+
: [[API C_TradeSkillUI.GetRecipeTools|C_TradeSkillUI.GetRecipeTools]](<span class="apiarg">recipeID</span>) - Returns information about the tools needed for a tradeskill.
: [[API C_TradeSkillUI.GetSubCategories|C_TradeSkillUI.GetSubCategories]](<span style="font-size:smaller; color:#ecbc2a">categoryID</span>)
+
: [[API C_TradeSkillUI.GetSubCategories|C_TradeSkillUI.GetSubCategories]](<span class="apiarg">categoryID</span>)
: [[API C_TradeSkillUI.GetTradeSkillDisplayName|C_TradeSkillUI.GetTradeSkillDisplayName]](<span style="font-size:smaller; color:#ecbc2a">skillLineID</span>) : <span style="font-size:smaller; color:#4ec9b0">professionDisplayName</span>
+
: [[API C_TradeSkillUI.GetTradeSkillDisplayName|C_TradeSkillUI.GetTradeSkillDisplayName]](<span class="apiarg">skillLineID</span>) : <span class="apiret">professionDisplayName</span>
: [[API C_TradeSkillUI.GetTradeSkillLine|C_TradeSkillUI.GetTradeSkillLine]]() : <span style="font-size:smaller; color:#4ec9b0">skillLineID, skillLineDisplayName, skillLineRank, skillLineMaxRank, ...</span> - Returns information about the selected skill line.
+
: [[API C_TradeSkillUI.GetTradeSkillLine|C_TradeSkillUI.GetTradeSkillLine]]() : <span class="apiret">skillLineID, skillLineDisplayName, skillLineRank, skillLineMaxRank, ...</span> - Returns information about the selected skill line.
: [[API C_TradeSkillUI.GetTradeSkillLineForRecipe|C_TradeSkillUI.GetTradeSkillLineForRecipe]](<span style="font-size:smaller; color:#ecbc2a">recipeID</span>)
+
: [[API C_TradeSkillUI.GetTradeSkillLineForRecipe|C_TradeSkillUI.GetTradeSkillLineForRecipe]](<span class="apiarg">recipeID</span>)
: [[API C_TradeSkillUI.GetTradeSkillLineInfoByID|C_TradeSkillUI.GetTradeSkillLineInfoByID]](<span style="font-size:smaller; color:#ecbc2a">skillLineID</span>) : <span style="font-size:smaller; color:#4ec9b0">skillLineDisplayName, skillLineRank, skillLineMaxRank, skillLineModifier, ...</span>
+
: [[API C_TradeSkillUI.GetTradeSkillLineInfoByID|C_TradeSkillUI.GetTradeSkillLineInfoByID]](<span class="apiarg">skillLineID</span>) : <span class="apiret">skillLineDisplayName, skillLineRank, skillLineMaxRank, skillLineModifier, ...</span>
 
: [[API C_TradeSkillUI.GetTradeSkillListLink|C_TradeSkillUI.GetTradeSkillListLink]]() - Returns the [[TradeSkillLink]] for a trade skill.
 
: [[API C_TradeSkillUI.GetTradeSkillListLink|C_TradeSkillUI.GetTradeSkillListLink]]() - Returns the [[TradeSkillLink]] for a trade skill.
: [[API C_TradeSkillUI.GetTradeSkillTexture|C_TradeSkillUI.GetTradeSkillTexture]](<span style="font-size:smaller; color:#ecbc2a">tradeSkillID</span>)
+
: [[API C_TradeSkillUI.GetTradeSkillTexture|C_TradeSkillUI.GetTradeSkillTexture]](<span class="apiarg">tradeSkillID</span>)
: [[API C_TradeSkillUI.IsAnyRecipeFromSource|C_TradeSkillUI.IsAnyRecipeFromSource]](<span style="font-size:smaller; color:#ecbc2a">sourceType</span>)
+
: [[API C_TradeSkillUI.IsAnyRecipeFromSource|C_TradeSkillUI.IsAnyRecipeFromSource]](<span class="apiarg">sourceType</span>)
 
: [[API C_TradeSkillUI.IsDataSourceChanging|C_TradeSkillUI.IsDataSourceChanging]]()
 
: [[API C_TradeSkillUI.IsDataSourceChanging|C_TradeSkillUI.IsDataSourceChanging]]()
: [[API C_TradeSkillUI.IsEmptySkillLineCategory|C_TradeSkillUI.IsEmptySkillLineCategory]](<span style="font-size:smaller; color:#ecbc2a">categoryID</span>) : <span style="font-size:smaller; color:#4ec9b0">effectivelyKnown</span>
+
: [[API C_TradeSkillUI.IsEmptySkillLineCategory|C_TradeSkillUI.IsEmptySkillLineCategory]](<span class="apiarg">categoryID</span>) : <span class="apiret">effectivelyKnown</span>
: [[API C_TradeSkillUI.IsInventorySlotFiltered|C_TradeSkillUI.IsInventorySlotFiltered]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API C_TradeSkillUI.IsInventorySlotFiltered|C_TradeSkillUI.IsInventorySlotFiltered]](<span class="apiarg">index</span>)
 
: [[API C_TradeSkillUI.IsNPCCrafting|C_TradeSkillUI.IsNPCCrafting]]() - Checks if the Trade Skill UI is open for crafting by an NPC.
 
: [[API C_TradeSkillUI.IsNPCCrafting|C_TradeSkillUI.IsNPCCrafting]]() - Checks if the Trade Skill UI is open for crafting by an NPC.
: [[API C_TradeSkillUI.IsRecipeCategoryFiltered|C_TradeSkillUI.IsRecipeCategoryFiltered]](<span style="font-size:smaller; color:#ecbc2a">categoryID [, subCategoryID]</span>)
+
: [[API C_TradeSkillUI.IsRecipeCategoryFiltered|C_TradeSkillUI.IsRecipeCategoryFiltered]](<span class="apiarg">categoryID [, subCategoryID]</span>)
: [[API C_TradeSkillUI.IsRecipeFavorite|C_TradeSkillUI.IsRecipeFavorite]](<span style="font-size:smaller; color:#ecbc2a">recipeID</span>)
+
: [[API C_TradeSkillUI.IsRecipeFavorite|C_TradeSkillUI.IsRecipeFavorite]](<span class="apiarg">recipeID</span>)
 
: [[API C_TradeSkillUI.IsRecipeRepeating|C_TradeSkillUI.IsRecipeRepeating]]()
 
: [[API C_TradeSkillUI.IsRecipeRepeating|C_TradeSkillUI.IsRecipeRepeating]]()
 
: [[API C_TradeSkillUI.IsRecipeSearchInProgress|C_TradeSkillUI.IsRecipeSearchInProgress]]()
 
: [[API C_TradeSkillUI.IsRecipeSearchInProgress|C_TradeSkillUI.IsRecipeSearchInProgress]]()
: [[API C_TradeSkillUI.IsRecipeSourceTypeFiltered|C_TradeSkillUI.IsRecipeSourceTypeFiltered]](<span style="font-size:smaller; color:#ecbc2a">sourceType</span>)
+
: [[API C_TradeSkillUI.IsRecipeSourceTypeFiltered|C_TradeSkillUI.IsRecipeSourceTypeFiltered]](<span class="apiarg">sourceType</span>)
 
: [[API C_TradeSkillUI.IsTradeSkillGuild|C_TradeSkillUI.IsTradeSkillGuild]]() - Checks if the Trade Skill UI is open for a profession in the guild.
 
: [[API C_TradeSkillUI.IsTradeSkillGuild|C_TradeSkillUI.IsTradeSkillGuild]]() - Checks if the Trade Skill UI is open for a profession in the guild.
 
: [[API C_TradeSkillUI.IsTradeSkillGuildMember|C_TradeSkillUI.IsTradeSkillGuildMember]]()
 
: [[API C_TradeSkillUI.IsTradeSkillGuildMember|C_TradeSkillUI.IsTradeSkillGuildMember]]()
Line 3,236: Line 3,313:
 
: [[API C_TradeSkillUI.IsTradeSkillReady|C_TradeSkillUI.IsTradeSkillReady]]()
 
: [[API C_TradeSkillUI.IsTradeSkillReady|C_TradeSkillUI.IsTradeSkillReady]]()
 
: [[API C_TradeSkillUI.ObliterateItem|C_TradeSkillUI.ObliterateItem]]()
 
: [[API C_TradeSkillUI.ObliterateItem|C_TradeSkillUI.ObliterateItem]]()
: [[API C_TradeSkillUI.OpenTradeSkill|C_TradeSkillUI.OpenTradeSkill]](<span style="font-size:smaller; color:#ecbc2a">tradeSkillID</span>)
+
: [[API C_TradeSkillUI.OpenTradeSkill|C_TradeSkillUI.OpenTradeSkill]](<span class="apiarg">tradeSkillID</span>)
: [[API C_TradeSkillUI.SetInventorySlotFilter|C_TradeSkillUI.SetInventorySlotFilter]](<span style="font-size:smaller; color:#ecbc2a">index [, enable, exclusive]</span>)
+
: [[API C_TradeSkillUI.SetInventorySlotFilter|C_TradeSkillUI.SetInventorySlotFilter]](<span class="apiarg">index [, enable, exclusive]</span>)
 
: [[API C_TradeSkillUI.SetOnlyShowLearnedRecipes|C_TradeSkillUI.SetOnlyShowLearnedRecipes]]()
 
: [[API C_TradeSkillUI.SetOnlyShowLearnedRecipes|C_TradeSkillUI.SetOnlyShowLearnedRecipes]]()
: [[API C_TradeSkillUI.SetOnlyShowMakeableRecipes|C_TradeSkillUI.SetOnlyShowMakeableRecipes]](<span style="font-size:smaller; color:#ecbc2a">onlyMakable</span>) - Controls whether only recipes you have the reagents to craft are shown.
+
: [[API C_TradeSkillUI.SetOnlyShowMakeableRecipes|C_TradeSkillUI.SetOnlyShowMakeableRecipes]](<span class="apiarg">onlyMakable</span>) - Controls whether only recipes you have the reagents to craft are shown.
 
: [[API C_TradeSkillUI.SetOnlyShowSkillUpRecipes|C_TradeSkillUI.SetOnlyShowSkillUpRecipes]]()
 
: [[API C_TradeSkillUI.SetOnlyShowSkillUpRecipes|C_TradeSkillUI.SetOnlyShowSkillUpRecipes]]()
 
: [[API C_TradeSkillUI.SetOnlyShowUnlearnedRecipes|C_TradeSkillUI.SetOnlyShowUnlearnedRecipes]]()
 
: [[API C_TradeSkillUI.SetOnlyShowUnlearnedRecipes|C_TradeSkillUI.SetOnlyShowUnlearnedRecipes]]()
: [[API C_TradeSkillUI.SetRecipeCategoryFilter|C_TradeSkillUI.SetRecipeCategoryFilter]](<span style="font-size:smaller; color:#ecbc2a">categoryID [, subCategoryID]</span>)
+
: [[API C_TradeSkillUI.SetRecipeCategoryFilter|C_TradeSkillUI.SetRecipeCategoryFilter]](<span class="apiarg">categoryID [, subCategoryID]</span>)
: [[API C_TradeSkillUI.SetRecipeFavorite|C_TradeSkillUI.SetRecipeFavorite]](<span style="font-size:smaller; color:#ecbc2a">recipeID, favorite</span>)
+
: [[API C_TradeSkillUI.SetRecipeFavorite|C_TradeSkillUI.SetRecipeFavorite]](<span class="apiarg">recipeID, favorite</span>)
: [[API C_TradeSkillUI.SetRecipeItemLevelFilter|C_TradeSkillUI.SetRecipeItemLevelFilter]](<span style="font-size:smaller; color:#ecbc2a">minLevel, maxLevel</span>)
+
: [[API C_TradeSkillUI.SetRecipeItemLevelFilter|C_TradeSkillUI.SetRecipeItemLevelFilter]](<span class="apiarg">minLevel, maxLevel</span>)
 
: [[API C_TradeSkillUI.SetRecipeItemNameFilter|C_TradeSkillUI.SetRecipeItemNameFilter]]()
 
: [[API C_TradeSkillUI.SetRecipeItemNameFilter|C_TradeSkillUI.SetRecipeItemNameFilter]]()
: [[API C_TradeSkillUI.SetRecipeRepeatCount|C_TradeSkillUI.SetRecipeRepeatCount]](<span style="font-size:smaller; color:#ecbc2a">recipeSpellID [, numCasts, optionalReagents]</span>)
+
: [[API C_TradeSkillUI.SetRecipeRepeatCount|C_TradeSkillUI.SetRecipeRepeatCount]](<span class="apiarg">recipeSpellID [, numCasts, optionalReagents]</span>)
: [[API C_TradeSkillUI.SetRecipeSourceTypeFilter|C_TradeSkillUI.SetRecipeSourceTypeFilter]](<span style="font-size:smaller; color:#ecbc2a">sourceType, filtered</span>)
+
: [[API C_TradeSkillUI.SetRecipeSourceTypeFilter|C_TradeSkillUI.SetRecipeSourceTypeFilter]](<span class="apiarg">sourceType, filtered</span>)
 
: [[API C_TradeSkillUI.StopRecipeRepeat|C_TradeSkillUI.StopRecipeRepeat]]() - Stops creating additional queued items.
 
: [[API C_TradeSkillUI.StopRecipeRepeat|C_TradeSkillUI.StopRecipeRepeat]]() - Stops creating additional queued items.
: [[API AbandonSkill|AbandonSkill]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - The player abandons a skill.
+
: [[API AbandonSkill|AbandonSkill]](<span class="apiarg">index</span>) - The player abandons a skill.
: [[API GetProfessionInfo|GetProfessionInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Gets details on a profession from its index including name, icon, and skill level.
+
: [[API GetProfessionInfo|GetProfessionInfo]](<span class="apiarg">index</span>) - Gets details on a profession from its index including name, icon, and skill level.
 
: [[API GetProfessions|GetProfessions]]() - Gives all of the current character's professions.
 
: [[API GetProfessions|GetProfessions]]() - Gives all of the current character's professions.
: [[API GetSpellRank|GetSpellRank]](<span style="font-size:smaller; color:#ecbc2a">recipeID</span>) - Returns recipe rank.
+
: [[API GetSpellRank|GetSpellRank]](<span class="apiarg">recipeID</span>) - Returns recipe rank.
   
 
==== Archaeology ====
 
==== Archaeology ====
 
[[Archaeology]] was added in [[Patch 4.0.1]]
 
[[Archaeology]] was added in [[Patch 4.0.1]]
: [[API C_ResearchInfo.GetDigSitesForMap|C_ResearchInfo.GetDigSitesForMap]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">digSites</span> - Returns the dig sites on a map.
+
: [[API C_ResearchInfo.GetDigSitesForMap|C_ResearchInfo.GetDigSitesForMap]](<span class="apiarg">uiMapID</span>) : <span class="apiret">digSites</span> - Returns the dig sites on a map.
 
: [[API ArchaeologyMapUpdateAll|ArchaeologyMapUpdateAll]]() - Updates the digsites and returns the number of digsites in the current map-zone.
 
: [[API ArchaeologyMapUpdateAll|ArchaeologyMapUpdateAll]]() - Updates the digsites and returns the number of digsites in the current map-zone.
: [[API ArchaeologyGetIconInfo|ArchaeologyGetIconInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API ArchaeologyGetIconInfo|ArchaeologyGetIconInfo]](<span class="apiarg">index</span>)
: [[API ArcheologyGetVisibleBlobID|ArcheologyGetVisibleBlobID]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns BlobID of a digsite in the current map-zone.
+
: [[API ArcheologyGetVisibleBlobID|ArcheologyGetVisibleBlobID]](<span class="apiarg">index</span>) - Returns BlobID of a digsite in the current map-zone.
: [[API CanItemBeSocketedToArtifact|CanItemBeSocketedToArtifact]](<span style="font-size:smaller; color:#ecbc2a">itemID</span>) - Returns 1 if item could be added to the [[API SetSelectedArtifact|selected]] artifact.
+
: [[API CanItemBeSocketedToArtifact|CanItemBeSocketedToArtifact]](<span class="apiarg">itemID</span>) - Returns 1 if item could be added to the [[API SetSelectedArtifact|selected]] artifact.
 
: [[API CanScanResearchSite|CanScanResearchSite]]() - Returns whether the player is currently on a digsite.
 
: [[API CanScanResearchSite|CanScanResearchSite]]() - Returns whether the player is currently on a digsite.
 
: [[API CanSolveArtifact|CanSolveArtifact]]() - Returns true if artifact can be solved.
 
: [[API CanSolveArtifact|CanSolveArtifact]]() - Returns true if artifact can be solved.
 
: [[API CloseResearch|CloseResearch]]()
 
: [[API CloseResearch|CloseResearch]]()
: [[API GetActiveArtifactByRace|GetActiveArtifactByRace]](<span style="font-size:smaller; color:#ecbc2a">raceIndex</span>) - Returns the information for the active artifact of raceIndex.
+
: [[API GetActiveArtifactByRace|GetActiveArtifactByRace]](<span class="apiarg">raceIndex</span>) - Returns the information for the active artifact of raceIndex.
 
: [[API GetArchaeologyInfo|GetArchaeologyInfo]]() - Returns localized name of Archaeology skill.
 
: [[API GetArchaeologyInfo|GetArchaeologyInfo]]() - Returns localized name of Archaeology skill.
: [[API GetArchaeologyRaceInfo|GetArchaeologyRaceInfo]](<span style="font-size:smaller; color:#ecbc2a">raceIndex</span>) - Returns the information for a specific race used in Archaeology.
+
: [[API GetArchaeologyRaceInfo|GetArchaeologyRaceInfo]](<span class="apiarg">raceIndex</span>) - Returns the information for a specific race used in Archaeology.
: [[API GetArchaeologyRaceInfoByID|GetArchaeologyRaceInfoByID]](<span style="font-size:smaller; color:#ecbc2a">researchBranchID</span>) - Returns Racename and texture.
+
: [[API GetArchaeologyRaceInfoByID|GetArchaeologyRaceInfoByID]](<span class="apiarg">researchBranchID</span>) - Returns Racename and texture.
: [[API GetArtifactInfoByRace|GetArtifactInfoByRace]](<span style="font-size:smaller; color:#ecbc2a">raceIndex, artifactIndex</span>) - Returns the information for a specific race's artifact.
+
: [[API GetArtifactInfoByRace|GetArtifactInfoByRace]](<span class="apiarg">raceIndex, artifactIndex</span>) - Returns the information for a specific race's artifact.
 
: [[API GetNumArchaeologyRaces|GetNumArchaeologyRaces]]() - Returns the amount of Archaeology races in the game.
 
: [[API GetNumArchaeologyRaces|GetNumArchaeologyRaces]]() - Returns the amount of Archaeology races in the game.
: [[API GetNumArtifactsByRace|GetNumArtifactsByRace]](<span style="font-size:smaller; color:#ecbc2a">raceIndex</span>) - Returns the amount of artifacts the player has acquired from the provided race.
+
: [[API GetNumArtifactsByRace|GetNumArtifactsByRace]](<span class="apiarg">raceIndex</span>) - Returns the amount of artifacts the player has acquired from the provided race.
 
: [[API GetSelectedArtifactInfo|GetSelectedArtifactInfo]]() - Returns the information for the [[API SetSelectedArtifact|selected]] race.
 
: [[API GetSelectedArtifactInfo|GetSelectedArtifactInfo]]() - Returns the information for the [[API SetSelectedArtifact|selected]] race.
 
: [[API GetArtifactProgress|GetArtifactProgress]]() - Returns fragment-information about the [[API SetSelectedArtifact|selected]] artifact.
 
: [[API GetArtifactProgress|GetArtifactProgress]]() - Returns fragment-information about the [[API SetSelectedArtifact|selected]] artifact.
 
: [[API IsArtifactCompletionHistoryAvailable|IsArtifactCompletionHistoryAvailable]]()
 
: [[API IsArtifactCompletionHistoryAvailable|IsArtifactCompletionHistoryAvailable]]()
: [[API ItemAddedToArtifact|ItemAddedToArtifact]](<span style="font-size:smaller; color:#ecbc2a">keystoneindex</span>) - Returns if there is a keystone in the artifact.
+
: [[API ItemAddedToArtifact|ItemAddedToArtifact]](<span class="apiarg">keystoneindex</span>) - Returns if there is a keystone in the artifact.
: [[API SetSelectedArtifact|SetSelectedArtifact]](<span style="font-size:smaller; color:#ecbc2a">raceIndex</span>) - Sets the selected artifact to raceIndex.
+
: [[API SetSelectedArtifact|SetSelectedArtifact]](<span class="apiarg">raceIndex</span>) - Sets the selected artifact to raceIndex.
 
: [[API RemoveItemFromArtifact|RemoveItemFromArtifact]]() - Remove a keystone from the [[API SetSelectedArtifact|selected]] artifact.
 
: [[API RemoveItemFromArtifact|RemoveItemFromArtifact]]() - Remove a keystone from the [[API SetSelectedArtifact|selected]] artifact.
 
: [[API RequestArtifactCompletionHistory|RequestArtifactCompletionHistory]]()
 
: [[API RequestArtifactCompletionHistory|RequestArtifactCompletionHistory]]()
Line 3,283: Line 3,360:
 
==== Glyphs ====
 
==== Glyphs ====
 
[[Glyph]]s were added in [[Patch 3.0.2]]. After the Glyph interface was removed in [[Patch 7.0.3]] they were streamlined into the [[Spellbook]].
 
[[Glyph]]s were added in [[Patch 3.0.2]]. After the Glyph interface was removed in [[Patch 7.0.3]] they were streamlined into the [[Spellbook]].
: [[API AttachGlyphToSpell|AttachGlyphToSpell]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>)
+
: [[API AttachGlyphToSpell|AttachGlyphToSpell]](<span class="apiarg">spellID</span>)
: [[API GetCurrentGlyphNameForSpell|GetCurrentGlyphNameForSpell]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>)
+
: [[API GetCurrentGlyphNameForSpell|GetCurrentGlyphNameForSpell]](<span class="apiarg">spellID</span>)
 
: [[API GetPendingGlyphName|GetPendingGlyphName]]()
 
: [[API GetPendingGlyphName|GetPendingGlyphName]]()
: [[API HasAttachedGlyph|HasAttachedGlyph]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>)
+
: [[API HasAttachedGlyph|HasAttachedGlyph]](<span class="apiarg">spellID</span>)
 
: [[API HasPendingGlyphCast|HasPendingGlyphCast]]()
 
: [[API HasPendingGlyphCast|HasPendingGlyphCast]]()
 
: [[API IsCastingGlyph|IsCastingGlyph]]()
 
: [[API IsCastingGlyph|IsCastingGlyph]]()
 
: [[API IsPendingGlyphRemoval|IsPendingGlyphRemoval]]()
 
: [[API IsPendingGlyphRemoval|IsPendingGlyphRemoval]]()
: [[API IsSpellValidForPendingGlyph|IsSpellValidForPendingGlyph]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>)
+
: [[API IsSpellValidForPendingGlyph|IsSpellValidForPendingGlyph]](<span class="apiarg">spellID</span>)
   
 
==== Item Socketing ====
 
==== Item Socketing ====
Line 3,297: Line 3,374:
 
: [[API AcceptSockets|AcceptSockets]]() - Sockets tentative gems into the sockets, replacing existing gems if necessary.
 
: [[API AcceptSockets|AcceptSockets]]() - Sockets tentative gems into the sockets, replacing existing gems if necessary.
 
: [[API CloseSocketInfo|CloseSocketInfo]]() - Stops considering the item for socketing, without applying changes.
 
: [[API CloseSocketInfo|CloseSocketInfo]]() - Stops considering the item for socketing, without applying changes.
: [[API GetExistingSocketInfo|GetExistingSocketInfo]](<span style="font-size:smaller; color:#ecbc2a">id</span>) - Returns information about the existing gem in the socket.
+
: [[API GetExistingSocketInfo|GetExistingSocketInfo]](<span class="apiarg">id</span>) - Returns information about the existing gem in the socket.
: [[API GetExistingSocketLink|GetExistingSocketLink]](<span style="font-size:smaller; color:#ecbc2a">id</span>) - Returns an item link for the existing gem in the socket.
+
: [[API GetExistingSocketLink|GetExistingSocketLink]](<span class="apiarg">id</span>) - Returns an item link for the existing gem in the socket.
: [[API GetNewSocketInfo|GetNewSocketInfo]](<span style="font-size:smaller; color:#ecbc2a">id</span>) - Returns information about the new (tentative) gem in the socket.
+
: [[API GetNewSocketInfo|GetNewSocketInfo]](<span class="apiarg">id</span>) - Returns information about the new (tentative) gem in the socket.
: [[API GetNewSocketLink|GetNewSocketLink]](<span style="font-size:smaller; color:#ecbc2a">id</span>) - Returns an item link for the new (tentative) gem in the socket.
+
: [[API GetNewSocketLink|GetNewSocketLink]](<span class="apiarg">id</span>) - Returns an item link for the new (tentative) gem in the socket.
 
: [[API GetNumSockets|GetNumSockets]]() - Returns the number of sockets in the item currently being socketed.
 
: [[API GetNumSockets|GetNumSockets]]() - Returns the number of sockets in the item currently being socketed.
 
: [[API GetSocketItemBoundTradeable|GetSocketItemBoundTradeable]]() - Returns whether the item currently being socketed is temporarily tradable (BoP boss loot).
 
: [[API GetSocketItemBoundTradeable|GetSocketItemBoundTradeable]]() - Returns whether the item currently being socketed is temporarily tradable (BoP boss loot).
 
: [[API GetSocketItemInfo|GetSocketItemInfo]]() - Returns information about the item currently being socketed.
 
: [[API GetSocketItemInfo|GetSocketItemInfo]]() - Returns information about the item currently being socketed.
 
: [[API GetSocketItemRefundable|GetSocketItemRefundable]]() - Returns whether the item currently being socketed is refundable.
 
: [[API GetSocketItemRefundable|GetSocketItemRefundable]]() - Returns whether the item currently being socketed is refundable.
: [[API GetSocketTypes|GetSocketTypes]](<span style="font-size:smaller; color:#ecbc2a">id</span>) - Returns the type (color) of a socket in the item.
+
: [[API GetSocketTypes|GetSocketTypes]](<span class="apiarg">id</span>) - Returns the type (color) of a socket in the item.
 
: [[API HasBoundGemProposed|HasBoundGemProposed]]()
 
: [[API HasBoundGemProposed|HasBoundGemProposed]]()
: [[API SocketContainerItem|SocketContainerItem]](<span style="font-size:smaller; color:#ecbc2a">bag, slot</span>) - Consider an item in a container slot for socketing.
+
: [[API SocketContainerItem|SocketContainerItem]](<span class="apiarg">bag, slot</span>) - Consider an item in a container slot for socketing.
: [[API SocketInventoryItem|SocketInventoryItem]](<span style="font-size:smaller; color:#ecbc2a">slot</span>) - Considers the item in the inventory slot for socketing.
+
: [[API SocketInventoryItem|SocketInventoryItem]](<span class="apiarg">slot</span>) - Considers the item in the inventory slot for socketing.
   
 
=== PvP ===
 
=== PvP ===
 
Relates to [[Player vs. Player]].
 
Relates to [[Player vs. Player]].
: [[API C_PvP.CanDisplayDeaths|C_PvP.CanDisplayDeaths]]() : <span style="font-size:smaller; color:#4ec9b0">canDisplay</span>
+
: [[API C_PvP.CanDisplayDeaths|C_PvP.CanDisplayDeaths]]() : <span class="apiret">canDisplay</span>
: [[API C_PvP.CanDisplayHonorableKills|C_PvP.CanDisplayHonorableKills]]() : <span style="font-size:smaller; color:#4ec9b0">canDisplay</span>
+
: [[API C_PvP.CanDisplayHonorableKills|C_PvP.CanDisplayHonorableKills]]() : <span class="apiret">canDisplay</span>
: [[API C_PvP.CanPlayerUseRatedPVPUI|C_PvP.CanPlayerUseRatedPVPUI]]() : <span style="font-size:smaller; color:#4ec9b0">canUse, failureReason</span>
+
: [[API C_PvP.CanPlayerUseRatedPVPUI|C_PvP.CanPlayerUseRatedPVPUI]]() : <span class="apiret">canUse, failureReason</span>
: [[API C_PvP.DoesMatchOutcomeAffectRating|C_PvP.DoesMatchOutcomeAffectRating]]() : <span style="font-size:smaller; color:#4ec9b0">doesAffect</span>
+
: [[API C_PvP.DoesMatchOutcomeAffectRating|C_PvP.DoesMatchOutcomeAffectRating]]() : <span class="apiret">doesAffect</span>
: [[API C_PvP.GetActiveMatchBracket|C_PvP.GetActiveMatchBracket]]() : <span style="font-size:smaller; color:#4ec9b0">bracket</span>
+
: [[API C_PvP.GetActiveMatchBracket|C_PvP.GetActiveMatchBracket]]() : <span class="apiret">bracket</span>
: [[API C_PvP.GetActiveMatchDuration|C_PvP.GetActiveMatchDuration]]() : <span style="font-size:smaller; color:#4ec9b0">seconds</span>
+
: [[API C_PvP.GetActiveMatchDuration|C_PvP.GetActiveMatchDuration]]() : <span class="apiret">seconds</span>
: [[API C_PvP.GetActiveMatchState|C_PvP.GetActiveMatchState]]() : <span style="font-size:smaller; color:#4ec9b0">state</span>
+
: [[API C_PvP.GetActiveMatchState|C_PvP.GetActiveMatchState]]() : <span class="apiret">state</span>
: [[API C_PvP.GetActiveMatchWinner|C_PvP.GetActiveMatchWinner]]() : <span style="font-size:smaller; color:#4ec9b0">winner</span>
+
: [[API C_PvP.GetActiveMatchWinner|C_PvP.GetActiveMatchWinner]]() : <span class="apiret">winner</span>
: [[API C_PvP.GetGlobalPvpScalingInfoForSpecID|C_PvP.GetGlobalPvpScalingInfoForSpecID]](<span style="font-size:smaller; color:#ecbc2a">specializationID</span>) : <span style="font-size:smaller; color:#4ec9b0">pvpScalingData</span>
+
: [[API C_PvP.GetGlobalPvpScalingInfoForSpecID|C_PvP.GetGlobalPvpScalingInfoForSpecID]](<span class="apiarg">specializationID</span>) : <span class="apiret">pvpScalingData</span>
: [[API C_PvP.GetHonorRewardInfo|C_PvP.GetHonorRewardInfo]](<span style="font-size:smaller; color:#ecbc2a">honorLevel</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_PvP.GetHonorRewardInfo|C_PvP.GetHonorRewardInfo]](<span class="apiarg">honorLevel</span>) : <span class="apiret">info</span>
: [[API C_PvP.GetMatchPVPStatColumn|C_PvP.GetMatchPVPStatColumn]](<span style="font-size:smaller; color:#ecbc2a">pvpStatID</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_PvP.GetMatchPVPStatColumn|C_PvP.GetMatchPVPStatColumn]](<span class="apiarg">pvpStatID</span>) : <span class="apiret">info</span>
: [[API C_PvP.GetMatchPVPStatColumns|C_PvP.GetMatchPVPStatColumns]]() : <span style="font-size:smaller; color:#4ec9b0">columns</span>
+
: [[API C_PvP.GetMatchPVPStatColumns|C_PvP.GetMatchPVPStatColumns]]() : <span class="apiret">columns</span>
: [[API C_PvP.GetNextHonorLevelForReward|C_PvP.GetNextHonorLevelForReward]](<span style="font-size:smaller; color:#ecbc2a">honorLevel</span>) : <span style="font-size:smaller; color:#4ec9b0">nextHonorLevelWithReward</span>
+
: [[API C_PvP.GetNextHonorLevelForReward|C_PvP.GetNextHonorLevelForReward]](<span class="apiarg">honorLevel</span>) : <span class="apiret">nextHonorLevelWithReward</span>
: [[API C_PvP.GetOutdoorPvPWaitTime|C_PvP.GetOutdoorPvPWaitTime]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">pvpWaitTime</span> - Returns the number of seconds until the next battle in a given world PvP zone.
+
: [[API C_PvP.GetOutdoorPvPWaitTime|C_PvP.GetOutdoorPvPWaitTime]](<span class="apiarg">uiMapID</span>) : <span class="apiret">pvpWaitTime</span> - Returns the number of seconds until the next battle in a given world PvP zone.
: [[API C_PvP.GetPostMatchCurrencyRewards|C_PvP.GetPostMatchCurrencyRewards]]() : <span style="font-size:smaller; color:#4ec9b0">rewards</span>
+
: [[API C_PvP.GetPostMatchCurrencyRewards|C_PvP.GetPostMatchCurrencyRewards]]() : <span class="apiret">rewards</span>
: [[API C_PvP.GetPostMatchItemRewards|C_PvP.GetPostMatchItemRewards]]() : <span style="font-size:smaller; color:#4ec9b0">rewards</span>
+
: [[API C_PvP.GetPostMatchItemRewards|C_PvP.GetPostMatchItemRewards]]() : <span class="apiret">rewards</span>
: [[API C_PvP.GetPVPActiveMatchPersonalRatedInfo|C_PvP.GetPVPActiveMatchPersonalRatedInfo]]() : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_PvP.GetPVPActiveMatchPersonalRatedInfo|C_PvP.GetPVPActiveMatchPersonalRatedInfo]]() : <span class="apiret">info</span>
: [[API C_PvP.GetPvpTierID|C_PvP.GetPvpTierID]](<span style="font-size:smaller; color:#ecbc2a">tierEnum, bracketEnum</span>) : <span style="font-size:smaller; color:#4ec9b0">id</span>
+
: [[API C_PvP.GetPvpTierID|C_PvP.GetPvpTierID]](<span class="apiarg">tierEnum, bracketEnum</span>) : <span class="apiret">id</span>
: [[API C_PvP.GetPvpTierInfo|C_PvP.GetPvpTierInfo]](<span style="font-size:smaller; color:#ecbc2a">tierID</span>) : <span style="font-size:smaller; color:#4ec9b0">pvpTierInfo</span>
+
: [[API C_PvP.GetPvpTierInfo|C_PvP.GetPvpTierInfo]](<span class="apiarg">tierID</span>) : <span class="apiret">pvpTierInfo</span>
: [[API C_PvP.GetRewardItemLevelsByTierEnum|C_PvP.GetRewardItemLevelsByTierEnum]](<span style="font-size:smaller; color:#ecbc2a">pvpTierEnum</span>) : <span style="font-size:smaller; color:#4ec9b0">activityItemLevel, weeklyItemLevel</span>
+
: [[API C_PvP.GetRewardItemLevelsByTierEnum|C_PvP.GetRewardItemLevelsByTierEnum]](<span class="apiarg">pvpTierEnum</span>) : <span class="apiret">activityItemLevel, weeklyItemLevel</span>
: [[API C_PvP.GetScoreInfo|C_PvP.GetScoreInfo]](<span style="font-size:smaller; color:#ecbc2a">offsetIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_PvP.GetScoreInfo|C_PvP.GetScoreInfo]](<span class="apiarg">offsetIndex</span>) : <span class="apiret">info</span>
: [[API C_PvP.GetScoreInfoByPlayerGuid|C_PvP.GetScoreInfoByPlayerGuid]](<span style="font-size:smaller; color:#ecbc2a">guid</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_PvP.GetScoreInfoByPlayerGuid|C_PvP.GetScoreInfoByPlayerGuid]](<span class="apiarg">guid</span>) : <span class="apiret">info</span>
: [[API C_PvP.GetSeasonBestInfo|C_PvP.GetSeasonBestInfo]]() : <span style="font-size:smaller; color:#4ec9b0">tierID, nextTierID</span>
+
: [[API C_PvP.GetSeasonBestInfo|C_PvP.GetSeasonBestInfo]]() : <span class="apiret">tierID, nextTierID</span>
: [[API C_PvP.GetSkirmishInfo|C_PvP.GetSkirmishInfo]](<span style="font-size:smaller; color:#ecbc2a">pvpBracket</span>) : <span style="font-size:smaller; color:#4ec9b0">battlemasterListInfo</span>
+
: [[API C_PvP.GetSkirmishInfo|C_PvP.GetSkirmishInfo]](<span class="apiarg">pvpBracket</span>) : <span class="apiret">battlemasterListInfo</span>
: [[API C_PvP.GetSpecialEventDetails|C_PvP.GetSpecialEventDetails]]() : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_PvP.GetSpecialEventDetails|C_PvP.GetSpecialEventDetails]]() : <span class="apiret">info</span>
: [[API C_PvP.GetSpecialEventInfo|C_PvP.GetSpecialEventInfo]]() : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_PvP.GetSpecialEventInfo|C_PvP.GetSpecialEventInfo]]() : <span class="apiret">info</span>
: [[API C_PvP.GetTeamInfo|C_PvP.GetTeamInfo]](<span style="font-size:smaller; color:#ecbc2a">factionIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_PvP.GetTeamInfo|C_PvP.GetTeamInfo]](<span class="apiarg">factionIndex</span>) : <span class="apiret">info</span>
: [[API C_PvP.GetWeeklyChestInfo|C_PvP.GetWeeklyChestInfo]]() : <span style="font-size:smaller; color:#4ec9b0">rewardAchieved, lastWeekRewardAchieved, lastWeekRewardClaimed, ...</span>
+
: [[API C_PvP.GetWeeklyChestInfo|C_PvP.GetWeeklyChestInfo]]() : <span class="apiret">rewardAchieved, lastWeekRewardAchieved, lastWeekRewardClaimed, ...</span>
: [[API C_PvP.IsActiveMatchRegistered|C_PvP.IsActiveMatchRegistered]]() : <span style="font-size:smaller; color:#4ec9b0">registered</span>
+
: [[API C_PvP.IsActiveMatchRegistered|C_PvP.IsActiveMatchRegistered]]() : <span class="apiret">registered</span>
: [[API C_PvP.IsMatchFactional|C_PvP.IsMatchFactional]]() : <span style="font-size:smaller; color:#4ec9b0">isFactional</span>
+
: [[API C_PvP.IsMatchFactional|C_PvP.IsMatchFactional]]() : <span class="apiret">isFactional</span>
: [[API C_PvP.IsPVPMap|C_PvP.IsPVPMap]]() : <span style="font-size:smaller; color:#4ec9b0">isPVPMap</span>
+
: [[API C_PvP.IsPVPMap|C_PvP.IsPVPMap]]() : <span class="apiret">isPVPMap</span>
: [[API C_PvP.IsRatedMap|C_PvP.IsRatedMap]]() : <span style="font-size:smaller; color:#4ec9b0">isRatedMap</span>
+
: [[API C_PvP.IsRatedMap|C_PvP.IsRatedMap]]() : <span class="apiret">isRatedMap</span>
: [[API C_PvP.RequestCrowdControlSpell|C_PvP.RequestCrowdControlSpell]](<span style="font-size:smaller; color:#ecbc2a">playerToken</span>)
+
: [[API C_PvP.RequestCrowdControlSpell|C_PvP.RequestCrowdControlSpell]](<span class="apiarg">playerToken</span>)
 
: [[API AcceptDuel|AcceptDuel]]() - The player accepts the challenge to duel.
 
: [[API AcceptDuel|AcceptDuel]]() - The player accepts the challenge to duel.
 
: [[API CancelDuel|CancelDuel]]() - Refuse the invitation to fight a duel.
 
: [[API CancelDuel|CancelDuel]]() - Refuse the invitation to fight a duel.
Line 3,355: Line 3,432:
 
: [[API GetPVPTimer|GetPVPTimer]]() - Returns the amount of time until your PvP flag fades.
 
: [[API GetPVPTimer|GetPVPTimer]]() - Returns the amount of time until your PvP flag fades.
 
: [[API GetPVPYesterdayStats|GetPVPYesterdayStats]]() - Get your PvP/Honor statistics for yesterday.
 
: [[API GetPVPYesterdayStats|GetPVPYesterdayStats]]() - Get your PvP/Honor statistics for yesterday.
: [[API GetRewardPackArtifactPower|GetRewardPackArtifactPower]](<span style="font-size:smaller; color:#ecbc2a">rewardPackID</span>)
+
: [[API GetRewardPackArtifactPower|GetRewardPackArtifactPower]](<span class="apiarg">rewardPackID</span>)
: [[API GetRewardPackCurrencies|GetRewardPackCurrencies]](<span style="font-size:smaller; color:#ecbc2a">rewardPackID</span>)
+
: [[API GetRewardPackCurrencies|GetRewardPackCurrencies]](<span class="apiarg">rewardPackID</span>)
: [[API GetRewardPackItems|GetRewardPackItems]](<span style="font-size:smaller; color:#ecbc2a">rewardPackID</span>)
+
: [[API GetRewardPackItems|GetRewardPackItems]](<span class="apiarg">rewardPackID</span>)
: [[API GetRewardPackMoney|GetRewardPackMoney]](<span style="font-size:smaller; color:#ecbc2a">rewardPackID</span>)
+
: [[API GetRewardPackMoney|GetRewardPackMoney]](<span class="apiarg">rewardPackID</span>)
: [[API GetRewardPackTitleName|GetRewardPackTitleName]](<span style="font-size:smaller; color:#ecbc2a">titleID</span>)
+
: [[API GetRewardPackTitleName|GetRewardPackTitleName]](<span class="apiarg">titleID</span>)
: [[API GetRewardPackTitle|GetRewardPackTitle]](<span style="font-size:smaller; color:#ecbc2a">rewardPackID</span>)
+
: [[API GetRewardPackTitle|GetRewardPackTitle]](<span class="apiarg">rewardPackID</span>)
 
: [[API IsCompetitiveModeEnabled|IsCompetitiveModeEnabled]]()
 
: [[API IsCompetitiveModeEnabled|IsCompetitiveModeEnabled]]()
 
: [[API IsInActiveWorldPVP|IsInActiveWorldPVP]]()
 
: [[API IsInActiveWorldPVP|IsInActiveWorldPVP]]()
 
: [[API IsPartyWorldPVP|IsPartyWorldPVP]]()
 
: [[API IsPartyWorldPVP|IsPartyWorldPVP]]()
 
: [[API IsSubZonePVPPOI|IsSubZonePVPPOI]]()
 
: [[API IsSubZonePVPPOI|IsSubZonePVPPOI]]()
: [[API PlayerIsPVPInactive|PlayerIsPVPInactive]](<span style="font-size:smaller; color:#ecbc2a">unit</span>)
+
: [[API PlayerIsPVPInactive|PlayerIsPVPInactive]](<span class="apiarg">unit</span>)
 
: [[API RequestPVPOptionsEnabled|RequestPVPOptionsEnabled]]()
 
: [[API RequestPVPOptionsEnabled|RequestPVPOptionsEnabled]]()
 
: [[API RequestPVPRewards|RequestPVPRewards]]()
 
: [[API RequestPVPRewards|RequestPVPRewards]]()
: [[API SetPVP|SetPVP]](<span style="font-size:smaller; color:#ecbc2a">enable</span>) - Sets the players PVP mode (1 to enable, nil to toggle off eventually).
+
: [[API SetPVP|SetPVP]](<span class="apiarg">enable</span>) - Sets the players PVP mode (1 to enable, nil to toggle off eventually).
 
: [[API SetPVPRoles|SetPVPRoles]]()
 
: [[API SetPVPRoles|SetPVPRoles]]()
 
: [[API SortBGList|SortBGList]]()
 
: [[API SortBGList|SortBGList]]()
: [[API StartDuel|StartDuel]](<span style="font-size:smaller; color:#ecbc2a">name</span>) - Challenge someone to a duel (by name)
+
: [[API StartDuel|StartDuel]](<span class="apiarg">name</span>) - Challenge someone to a duel (by name)
 
: [[API TogglePVP|TogglePVP]]() - Toggles PVP status.
 
: [[API TogglePVP|TogglePVP]]() - Toggles PVP status.
: [[API UnitHonor|UnitHonor]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the amount of honor the unit has for the current rank.
+
: [[API UnitHonor|UnitHonor]](<span class="apiarg">unit</span>) - Returns the amount of honor the unit has for the current rank.
: [[API UnitHonorLevel|UnitHonorLevel]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the current honor rank for the unit.
+
: [[API UnitHonorLevel|UnitHonorLevel]](<span class="apiarg">unit</span>) - Returns the current honor rank for the unit.
: [[API UnitHonorMax|UnitHonorMax]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the maximum amount of honor for the current rank.
+
: [[API UnitHonorMax|UnitHonorMax]](<span class="apiarg">unit</span>) - Returns the maximum amount of honor for the current rank.
 
: [[API UnitIsMercenary|UnitIsMercenary]]()
 
: [[API UnitIsMercenary|UnitIsMercenary]]()
: [[API UnitIsPVPFreeForAll|UnitIsPVPFreeForAll]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns true if the specified unit is flagged for free-for-all PVP, false otherwise.
+
: [[API UnitIsPVPFreeForAll|UnitIsPVPFreeForAll]](<span class="apiarg">unit</span>) - Returns true if the specified unit is flagged for free-for-all PVP, false otherwise.
: [[API UnitIsPVPSanctuary|UnitIsPVPSanctuary]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns whether the unit is in a PvP sanctuary, and therefore cannot be attacked by other players.
+
: [[API UnitIsPVPSanctuary|UnitIsPVPSanctuary]](<span class="apiarg">unit</span>) - Returns whether the unit is in a PvP sanctuary, and therefore cannot be attacked by other players.
: [[API UnitIsPVP|UnitIsPVP]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns true if the specified unit is flagged for PVP, false otherwise.
+
: [[API UnitIsPVP|UnitIsPVP]](<span class="apiarg">unit</span>) - Returns true if the specified unit is flagged for PVP, false otherwise.
: [[API UnitPVPName|UnitPVPName]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns unit's name with PvP rank prefix (e.g., "Corporal Allianceguy").
+
: [[API UnitPVPName|UnitPVPName]](<span class="apiarg">unit</span>) - Returns unit's name with PvP rank prefix (e.g., "Corporal Allianceguy").
: [[API UnitPvpClassification|UnitPvpClassification]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) : <span style="font-size:smaller; color:#4ec9b0">classification</span> - Returns whether the unit is a flag/orb carrier or cart runner.
+
: [[API UnitPvpClassification|UnitPvpClassification]](<span class="apiarg">unit</span>) : <span class="apiret">classification</span> - Returns whether the unit is a flag/orb carrier or cart runner.
   
 
==== Arena ====
 
==== Arena ====
: [[API C_PvP.GetArenaCrowdControlInfo|C_PvP.GetArenaCrowdControlInfo]](<span style="font-size:smaller; color:#ecbc2a">playerToken</span>) : <span style="font-size:smaller; color:#4ec9b0">spellID, startTime, duration</span>
+
: [[API C_PvP.GetArenaCrowdControlInfo|C_PvP.GetArenaCrowdControlInfo]](<span class="apiarg">playerToken</span>) : <span class="apiret">spellID, startTime, duration</span>
: [[API C_PvP.GetArenaRewards|C_PvP.GetArenaRewards]](<span style="font-size:smaller; color:#ecbc2a">teamSize</span>) : <span style="font-size:smaller; color:#4ec9b0">honor, experience, itemRewards, currencyRewards</span>
+
: [[API C_PvP.GetArenaRewards|C_PvP.GetArenaRewards]](<span class="apiarg">teamSize</span>) : <span class="apiret">honor, experience, itemRewards, currencyRewards</span>
: [[API C_PvP.GetArenaSkirmishRewards|C_PvP.GetArenaSkirmishRewards]]() : <span style="font-size:smaller; color:#4ec9b0">honor, experience, itemRewards, currencyRewards</span>
+
: [[API C_PvP.GetArenaSkirmishRewards|C_PvP.GetArenaSkirmishRewards]]() : <span class="apiret">honor, experience, itemRewards, currencyRewards</span>
: [[API C_PvP.HasArenaSkirmishWinToday|C_PvP.HasArenaSkirmishWinToday]]() : <span style="font-size:smaller; color:#4ec9b0">hasArenaSkirmishWinToday</span>
+
: [[API C_PvP.HasArenaSkirmishWinToday|C_PvP.HasArenaSkirmishWinToday]]() : <span class="apiret">hasArenaSkirmishWinToday</span>
: [[API C_PvP.IsArena|C_PvP.IsArena]]() : <span style="font-size:smaller; color:#4ec9b0">isArena</span>
+
: [[API C_PvP.IsArena|C_PvP.IsArena]]() : <span class="apiret">isArena</span>
: [[API C_PvP.IsMatchConsideredArena|C_PvP.IsMatchConsideredArena]]() : <span style="font-size:smaller; color:#4ec9b0">asArena</span>
+
: [[API C_PvP.IsMatchConsideredArena|C_PvP.IsMatchConsideredArena]]() : <span class="apiret">asArena</span>
: [[API C_PvP.IsRatedArena|C_PvP.IsRatedArena]]() : <span style="font-size:smaller; color:#4ec9b0">isRatedArena</span>
+
: [[API C_PvP.IsRatedArena|C_PvP.IsRatedArena]]() : <span class="apiret">isRatedArena</span>
 
: [[API CanSurrenderArena|CanSurrenderArena]]()
 
: [[API CanSurrenderArena|CanSurrenderArena]]()
 
: [[API GetArenaOpponentSpec|GetArenaOpponentSpec]]()
 
: [[API GetArenaOpponentSpec|GetArenaOpponentSpec]]()
 
: [[API GetBattlefieldArenaFaction|GetBattlefieldArenaFaction]]()
 
: [[API GetBattlefieldArenaFaction|GetBattlefieldArenaFaction]]()
: [[API GetBattlefieldTeamInfo|GetBattlefieldTeamInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Gets info about a registered Arena Team at the end of an arena match.
+
: [[API GetBattlefieldTeamInfo|GetBattlefieldTeamInfo]](<span class="apiarg">index</span>) - Gets info about a registered Arena Team at the end of an arena match.
 
: [[API GetCurrentArenaSeason|GetCurrentArenaSeason]]() - Gets the current Arena season.
 
: [[API GetCurrentArenaSeason|GetCurrentArenaSeason]]() - Gets the current Arena season.
 
: [[API GetMaxArenaCurrency|GetMaxArenaCurrency]]()
 
: [[API GetMaxArenaCurrency|GetMaxArenaCurrency]]()
Line 3,402: Line 3,479:
 
: [[API IsActiveBattlefieldArena|IsActiveBattlefieldArena]]() - Returns true if in an Arena Match, also Returns true for the second argument if it's a registered match.
 
: [[API IsActiveBattlefieldArena|IsActiveBattlefieldArena]]() - Returns true if in an Arena Match, also Returns true for the second argument if it's a registered match.
 
: [[API IsArenaSkirmish|IsArenaSkirmish]]()
 
: [[API IsArenaSkirmish|IsArenaSkirmish]]()
: [[API IsArenaTeamCaptain|IsArenaTeamCaptain]](<span style="font-size:smaller; color:#ecbc2a">teamIndex</span>) - Returns a value based on whether the player is the arena team captain.
+
: [[API IsArenaTeamCaptain|IsArenaTeamCaptain]](<span class="apiarg">teamIndex</span>) - Returns a value based on whether the player is the arena team captain.
 
: [[API IsInArenaTeam|IsInArenaTeam]]() - Returns true if you are a member of an arena team.
 
: [[API IsInArenaTeam|IsInArenaTeam]]() - Returns true if you are a member of an arena team.
 
: [[API JoinArena|JoinArena]]()
 
: [[API JoinArena|JoinArena]]()
: [[API JoinSkirmish|JoinSkirmish]](<span style="font-size:smaller; color:#ecbc2a">arenaID, joinAsGroup</span>) - Queue for a arena either solo or as a group.
+
: [[API JoinSkirmish|JoinSkirmish]](<span class="apiarg">arenaID, joinAsGroup</span>) - Queue for a arena either solo or as a group.
 
: [[API RequeueSkirmish|RequeueSkirmish]]() - Requeues for an arena skirmish.
 
: [[API RequeueSkirmish|RequeueSkirmish]]() - Requeues for an arena skirmish.
 
: [[API SurrenderArena|SurrenderArena]]()
 
: [[API SurrenderArena|SurrenderArena]]()
   
 
==== Battlegrounds ====
 
==== Battlegrounds ====
: [[API C_PvP.GetLevelUpBattlegrounds|C_PvP.GetLevelUpBattlegrounds]](<span style="font-size:smaller; color:#ecbc2a">level</span>) : <span style="font-size:smaller; color:#4ec9b0">battlefields</span>
+
: [[API C_PvP.GetLevelUpBattlegrounds|C_PvP.GetLevelUpBattlegrounds]](<span class="apiarg">level</span>) : <span class="apiret">battlefields</span>
: [[API C_PvP.GetRandomBGInfo|C_PvP.GetRandomBGInfo]]() : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_PvP.GetRandomBGInfo|C_PvP.GetRandomBGInfo]]() : <span class="apiret">info</span>
: [[API C_PvP.GetRandomBGRewards|C_PvP.GetRandomBGRewards]]() : <span style="font-size:smaller; color:#4ec9b0">honor, experience, itemRewards, currencyRewards</span>
+
: [[API C_PvP.GetRandomBGRewards|C_PvP.GetRandomBGRewards]]() : <span class="apiret">honor, experience, itemRewards, currencyRewards</span>
: [[API C_PvP.GetRandomEpicBGInfo|C_PvP.GetRandomEpicBGInfo]]() : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_PvP.GetRandomEpicBGInfo|C_PvP.GetRandomEpicBGInfo]]() : <span class="apiret">info</span>
: [[API C_PvP.GetRandomEpicBGRewards|C_PvP.GetRandomEpicBGRewards]]() : <span style="font-size:smaller; color:#4ec9b0">honor, experience, itemRewards, currencyRewards</span>
+
: [[API C_PvP.GetRandomEpicBGRewards|C_PvP.GetRandomEpicBGRewards]]() : <span class="apiret">honor, experience, itemRewards, currencyRewards</span>
: [[API C_PvP.GetRatedBGRewards|C_PvP.GetRatedBGRewards]]() : <span style="font-size:smaller; color:#4ec9b0">honor, experience, itemRewards, currencyRewards</span>
+
: [[API C_PvP.GetRatedBGRewards|C_PvP.GetRatedBGRewards]]() : <span class="apiret">honor, experience, itemRewards, currencyRewards</span>
: [[API C_PvP.IsBattleground|C_PvP.IsBattleground]]() : <span style="font-size:smaller; color:#4ec9b0">isBattleground</span>
+
: [[API C_PvP.IsBattleground|C_PvP.IsBattleground]]() : <span class="apiret">isBattleground</span>
: [[API C_PvP.IsBattlegroundEnlistmentBonusActive|C_PvP.IsBattlegroundEnlistmentBonusActive]]() : <span style="font-size:smaller; color:#4ec9b0">battlegroundActive, brawlActive</span>
+
: [[API C_PvP.IsBattlegroundEnlistmentBonusActive|C_PvP.IsBattlegroundEnlistmentBonusActive]]() : <span class="apiret">battlegroundActive, brawlActive</span>
: [[API C_PvP.IsRatedBattleground|C_PvP.IsRatedBattleground]]() : <span style="font-size:smaller; color:#4ec9b0">isRatedBattleground</span>
+
: [[API C_PvP.IsRatedBattleground|C_PvP.IsRatedBattleground]]() : <span class="apiret">isRatedBattleground</span>
 
: [[API AcceptAreaSpiritHeal|AcceptAreaSpiritHeal]]() - Accept a spirit heal.
 
: [[API AcceptAreaSpiritHeal|AcceptAreaSpiritHeal]]() - Accept a spirit heal.
: [[API AcceptBattlefieldPort|AcceptBattlefieldPort]](<span style="font-size:smaller; color:#ecbc2a">index [, acceptFlag]</span>) - Accept or reject an offered battlefield port.
+
: [[API AcceptBattlefieldPort|AcceptBattlefieldPort]](<span class="apiarg">index [, acceptFlag]</span>) - Accept or reject an offered battlefield port.
: [[API BattlefieldSetPendingReportTarget|BattlefieldSetPendingReportTarget]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API BattlefieldSetPendingReportTarget|BattlefieldSetPendingReportTarget]](<span class="apiarg">index</span>)
 
: [[API CanJoinBattlefieldAsGroup|CanJoinBattlefieldAsGroup]]() - Returns nil if the player can not do a group join for a battlefield.
 
: [[API CanJoinBattlefieldAsGroup|CanJoinBattlefieldAsGroup]]() - Returns nil if the player can not do a group join for a battlefield.
 
: [[API CancelAreaSpiritHeal|CancelAreaSpiritHeal]]() - Cancel a spirit heal.
 
: [[API CancelAreaSpiritHeal|CancelAreaSpiritHeal]]() - Cancel a spirit heal.
 
: [[API CheckSpiritHealerDist|CheckSpiritHealerDist]]() - Returns true if you are in range with spirit healer while dead.
 
: [[API CheckSpiritHealerDist|CheckSpiritHealerDist]]() - Returns true if you are in range with spirit healer while dead.
 
: [[API GetAreaSpiritHealerTime|GetAreaSpiritHealerTime]]() - Returns the time left until the next resurrection by the Sprit Guide.
 
: [[API GetAreaSpiritHealerTime|GetAreaSpiritHealerTime]]() - Returns the time left until the next resurrection by the Sprit Guide.
: [[API GetBattlefieldEstimatedWaitTime|GetBattlefieldEstimatedWaitTime]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Get the estimated wait for entry into the battlefield.
+
: [[API GetBattlefieldEstimatedWaitTime|GetBattlefieldEstimatedWaitTime]](<span class="apiarg">index</span>) - Get the estimated wait for entry into the battlefield.
: [[API GetBattlefieldFlagPosition|GetBattlefieldFlagPosition]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Get the map position and texture of the flag.
+
: [[API GetBattlefieldFlagPosition|GetBattlefieldFlagPosition]](<span class="apiarg">index</span>) - Get the map position and texture of the flag.
 
: [[API GetBattlefieldInstanceExpiration|GetBattlefieldInstanceExpiration]]() - Get shutdown timer for the battlefield instance.
 
: [[API GetBattlefieldInstanceExpiration|GetBattlefieldInstanceExpiration]]() - Get shutdown timer for the battlefield instance.
 
: [[API GetBattlefieldInstanceRunTime|GetBattlefieldInstanceRunTime]]() - In milliseconds, the time since battleground started (seems to be queried from server because it is not in sync with time()).
 
: [[API GetBattlefieldInstanceRunTime|GetBattlefieldInstanceRunTime]]() - In milliseconds, the time since battleground started (seems to be queried from server because it is not in sync with time()).
 
: [[API GetBattlefieldMapIconScale|GetBattlefieldMapIconScale]]() - Scale of the landmark icons on the battlefield minimap.
 
: [[API GetBattlefieldMapIconScale|GetBattlefieldMapIconScale]]() - Scale of the landmark icons on the battlefield minimap.
: [[API GetBattlefieldPortExpiration|GetBattlefieldPortExpiration]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Get the remaining seconds before the battlefield port expires.
+
: [[API GetBattlefieldPortExpiration|GetBattlefieldPortExpiration]](<span class="apiarg">index</span>) - Get the remaining seconds before the battlefield port expires.
: [[API GetBattlefieldScore|GetBattlefieldScore]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Get score information about a player.
+
: [[API GetBattlefieldScore|GetBattlefieldScore]](<span class="apiarg">index</span>) - Get score information about a player.
: [[API GetBattlefieldStatData|GetBattlefieldStatData]](<span style="font-size:smaller; color:#ecbc2a">playerIndex, slotIndex</span>) - Get information for a player from a column thats specific to a battleground (like Warsong Gulch flag captures).
+
: [[API GetBattlefieldStatData|GetBattlefieldStatData]](<span class="apiarg">playerIndex, slotIndex</span>) - Get information for a player from a column thats specific to a battleground (like Warsong Gulch flag captures).
: [[API GetBattlefieldStatus|GetBattlefieldStatus]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Get the battlefield's current status.
+
: [[API GetBattlefieldStatus|GetBattlefieldStatus]](<span class="apiarg">index</span>) - Get the battlefield's current status.
: [[API GetBattlefieldTimeWaited|GetBattlefieldTimeWaited]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Get time waited in queue in milliseconds.
+
: [[API GetBattlefieldTimeWaited|GetBattlefieldTimeWaited]](<span class="apiarg">index</span>) - Get time waited in queue in milliseconds.
 
: [[API GetBattlefieldWinner|GetBattlefieldWinner]]() - Get the battlefields winner.
 
: [[API GetBattlefieldWinner|GetBattlefieldWinner]]() - Get the battlefields winner.
: [[API GetBattlegroundInfo|GetBattlegroundInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns information about a battleground type.
+
: [[API GetBattlegroundInfo|GetBattlegroundInfo]](<span class="apiarg">index</span>) - Returns information about a battleground type.
 
: [[API GetBattlegroundPoints|GetBattlegroundPoints]]()
 
: [[API GetBattlegroundPoints|GetBattlegroundPoints]]()
 
: [[API GetMaxBattlefieldID|GetMaxBattlefieldID]]() - Returns the max number of battlefields you can queue for.
 
: [[API GetMaxBattlefieldID|GetMaxBattlefieldID]]() - Returns the max number of battlefields you can queue for.
Line 3,443: Line 3,520:
 
: [[API GetNumBattlefieldScores|GetNumBattlefieldScores]]() - Returns the number of scores(players) listed in the battlefield scoreboard.
 
: [[API GetNumBattlefieldScores|GetNumBattlefieldScores]]() - Returns the number of scores(players) listed in the battlefield scoreboard.
 
: [[API GetNumBattlegroundTypes|GetNumBattlegroundTypes]]()
 
: [[API GetNumBattlegroundTypes|GetNumBattlegroundTypes]]()
: [[API GetPersonalRatedInfo|GetPersonalRatedInfo]](<span style="font-size:smaller; color:#ecbc2a">bracketIndex</span>)
+
: [[API GetPersonalRatedInfo|GetPersonalRatedInfo]](<span class="apiarg">bracketIndex</span>)
 
: [[API GetRatedBattleGroundInfo|GetRatedBattleGroundInfo]]()
 
: [[API GetRatedBattleGroundInfo|GetRatedBattleGroundInfo]]()
 
: [[API IsPVPTimerRunning|IsPVPTimerRunning]]()
 
: [[API IsPVPTimerRunning|IsPVPTimerRunning]]()
: <small>PROTECTED</small> [[API JoinBattlefield|JoinBattlefield]](<span style="font-size:smaller; color:#ecbc2a">index [, joinAs]</span>) - Queue for a battleground either solo or as a group.
+
: <small>PROTECTED</small> [[API JoinBattlefield|JoinBattlefield]](<span class="apiarg">index [, joinAs]</span>) - Queue for a battleground either solo or as a group.
 
: <small>PROTECTED</small> [[API JoinRatedBattlefield|JoinRatedBattlefield]]()
 
: <small>PROTECTED</small> [[API JoinRatedBattlefield|JoinRatedBattlefield]]()
 
: [[API LeaveBattlefield|LeaveBattlefield]]() - Leave the current battlefield.
 
: [[API LeaveBattlefield|LeaveBattlefield]]() - Leave the current battlefield.
: [[API ReportPlayerIsPVPAFK|ReportPlayerIsPVPAFK]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Reports the specified player as AFK in a battleground.
+
: [[API ReportPlayerIsPVPAFK|ReportPlayerIsPVPAFK]](<span class="apiarg">unit</span>) - Reports the specified player as AFK in a battleground.
 
: [[API RequestBattlefieldScoreData|RequestBattlefieldScoreData]]() - Request new data for GetBattlefieldScore().
 
: [[API RequestBattlefieldScoreData|RequestBattlefieldScoreData]]() - Request new data for GetBattlefieldScore().
 
: [[API RequestRandomBattlegroundInstanceInfo|RequestRandomBattlegroundInstanceInfo]]()
 
: [[API RequestRandomBattlegroundInstanceInfo|RequestRandomBattlegroundInstanceInfo]]()
 
: [[API RequestRatedInfo|RequestRatedInfo]]()
 
: [[API RequestRatedInfo|RequestRatedInfo]]()
: [[API SetBattlefieldScoreFaction|SetBattlefieldScoreFaction]](<span style="font-size:smaller; color:#ecbc2a">[faction]</span>) - Set the faction to show on the battlefield scoreboard.
+
: [[API SetBattlefieldScoreFaction|SetBattlefieldScoreFaction]](<span class="apiarg">[faction]</span>) - Set the faction to show on the battlefield scoreboard.
: [[API SortBattlefieldScoreData|SortBattlefieldScoreData]](<span style="font-size:smaller; color:#ecbc2a">type</span>)
+
: [[API SortBattlefieldScoreData|SortBattlefieldScoreData]](<span class="apiarg">type</span>)
: [[API UnitInBattleground|UnitInBattleground]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the unit index if the unit is in your battleground, nil otherwise.
+
: [[API UnitInBattleground|UnitInBattleground]](<span class="apiarg">unit</span>) - Returns the unit index if the unit is in your battleground, nil otherwise.
   
 
==== World Battlefields ====
 
==== World Battlefields ====
 
The following functions are used for population-limited world PvP zones, like [[Lake Wintergrasp]] or [[Tol Barad]].
 
The following functions are used for population-limited world PvP zones, like [[Lake Wintergrasp]] or [[Tol Barad]].
: [[API C_PvP.IsActiveBattlefield|C_PvP.IsActiveBattlefield]]() : <span style="font-size:smaller; color:#4ec9b0">isActiveBattlefield</span>
+
: [[API C_PvP.IsActiveBattlefield|C_PvP.IsActiveBattlefield]]() : <span class="apiret">isActiveBattlefield</span>
: [[API BattlefieldMgrEntryInviteResponse|BattlefieldMgrEntryInviteResponse]](<span style="font-size:smaller; color:#ecbc2a">queueId, accept</span>)
+
: [[API BattlefieldMgrEntryInviteResponse|BattlefieldMgrEntryInviteResponse]](<span class="apiarg">queueId, accept</span>)
: [[API BattlefieldMgrExitRequest|BattlefieldMgrExitRequest]](<span style="font-size:smaller; color:#ecbc2a">queueId</span>)
+
: [[API BattlefieldMgrExitRequest|BattlefieldMgrExitRequest]](<span class="apiarg">queueId</span>)
: [[API BattlefieldMgrQueueInviteResponse|BattlefieldMgrQueueInviteResponse]](<span style="font-size:smaller; color:#ecbc2a">queueId, accept</span>)
+
: [[API BattlefieldMgrQueueInviteResponse|BattlefieldMgrQueueInviteResponse]](<span class="apiarg">queueId, accept</span>)
 
: [[API BattlefieldMgrQueueRequest|BattlefieldMgrQueueRequest]]()
 
: [[API BattlefieldMgrQueueRequest|BattlefieldMgrQueueRequest]]()
 
: [[API CanHearthAndResurrectFromArea|CanHearthAndResurrectFromArea]]() - Returns whether you can currently be resurrected and teleported out of the world PvP zone.
 
: [[API CanHearthAndResurrectFromArea|CanHearthAndResurrectFromArea]]() - Returns whether you can currently be resurrected and teleported out of the world PvP zone.
 
: [[API HearthAndResurrectFromArea|HearthAndResurrectFromArea]]() - Resurrects the player, and ports them out of the world PvP zone.
 
: [[API HearthAndResurrectFromArea|HearthAndResurrectFromArea]]() - Resurrects the player, and ports them out of the world PvP zone.
 
: [[API GetNumWorldPVPAreas|GetNumWorldPVPAreas]]() - Returns the number of world PvP zones available.
 
: [[API GetNumWorldPVPAreas|GetNumWorldPVPAreas]]() - Returns the number of world PvP zones available.
: [[API GetWorldPVPAreaInfo|GetWorldPVPAreaInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns information about a world PvP zone.
+
: [[API GetWorldPVPAreaInfo|GetWorldPVPAreaInfo]](<span class="apiarg">index</span>) - Returns information about a world PvP zone.
: [[API GetWorldPVPQueueStatus|GetWorldPVPQueueStatus]](<span style="font-size:smaller; color:#ecbc2a">queueId</span>)
+
: [[API GetWorldPVPQueueStatus|GetWorldPVPQueueStatus]](<span class="apiarg">queueId</span>)
   
 
==== Brawl ====
 
==== Brawl ====
: [[API C_PvP.GetActiveBrawlInfo|C_PvP.GetActiveBrawlInfo]]() : <span style="font-size:smaller; color:#4ec9b0">brawlInfo</span>
+
: [[API C_PvP.GetActiveBrawlInfo|C_PvP.GetActiveBrawlInfo]]() : <span class="apiret">brawlInfo</span>
: [[API C_PvP.GetAvailableBrawlInfo|C_PvP.GetAvailableBrawlInfo]]() : <span style="font-size:smaller; color:#4ec9b0">brawlInfo</span>
+
: [[API C_PvP.GetAvailableBrawlInfo|C_PvP.GetAvailableBrawlInfo]]() : <span class="apiret">brawlInfo</span>
: [[API C_PvP.GetBrawlRewards|C_PvP.GetBrawlRewards]](<span style="font-size:smaller; color:#ecbc2a">brawlType</span>) : <span style="font-size:smaller; color:#4ec9b0">honor, experience, itemRewards, currencyRewards, hasWon</span>
+
: [[API C_PvP.GetBrawlRewards|C_PvP.GetBrawlRewards]](<span class="apiarg">brawlType</span>) : <span class="apiret">honor, experience, itemRewards, currencyRewards, hasWon</span>
: [[API C_PvP.IsInBrawl|C_PvP.IsInBrawl]]() : <span style="font-size:smaller; color:#4ec9b0">isInBrawl</span>
+
: [[API C_PvP.IsInBrawl|C_PvP.IsInBrawl]]() : <span class="apiret">isInBrawl</span>
 
: [[API C_PvP.JoinBrawl|C_PvP.JoinBrawl]]()
 
: [[API C_PvP.JoinBrawl|C_PvP.JoinBrawl]]()
   
Line 3,480: Line 3,557:
 
[[War Game]]s were added in [[Patch 4.0.1]]
 
[[War Game]]s were added in [[Patch 4.0.1]]
 
: [[API CanInitiateWarGame|CanInitiateWarGame]]()
 
: [[API CanInitiateWarGame|CanInitiateWarGame]]()
: [[API CollapseWarGameHeader|CollapseWarGameHeader]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API CollapseWarGameHeader|CollapseWarGameHeader]](<span class="apiarg">index</span>)
: [[API ExpandWarGameHeader|ExpandWarGameHeader]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API ExpandWarGameHeader|ExpandWarGameHeader]](<span class="apiarg">index</span>)
 
: [[API GetNumWarGameTypes|GetNumWarGameTypes]]()
 
: [[API GetNumWarGameTypes|GetNumWarGameTypes]]()
 
: [[API GetSelectedWarGameType|GetSelectedWarGameType]]()
 
: [[API GetSelectedWarGameType|GetSelectedWarGameType]]()
 
: [[API GetWarGameQueueStatus|GetWarGameQueueStatus]]()
 
: [[API GetWarGameQueueStatus|GetWarGameQueueStatus]]()
: [[API GetWarGameTypeInfo|GetWarGameTypeInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetWarGameTypeInfo|GetWarGameTypeInfo]](<span class="apiarg">index</span>)
 
: [[API IsWargame|IsWargame]]()
 
: [[API IsWargame|IsWargame]]()
: [[API SetSelectedWarGameType|SetSelectedWarGameType]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API SetSelectedWarGameType|SetSelectedWarGameType]](<span class="apiarg">index</span>)
: [[API StartSpectatorWarGame|StartSpectatorWarGame]](<span style="font-size:smaller; color:#ecbc2a">target1, target2, size, area, isTournamentMode</span>)
+
: [[API StartSpectatorWarGame|StartSpectatorWarGame]](<span class="apiarg">target1, target2, size, area, isTournamentMode</span>)
: [[API StartWarGameByName|StartWarGameByName]](<span style="font-size:smaller; color:#ecbc2a">msg</span>) - Starts a [[War Game]]. Parameters are <code>playername, area, isTournamentMode</code> but passed as a whitespace delimited string.
+
: [[API StartWarGameByName|StartWarGameByName]](<span class="apiarg">msg</span>) - Starts a [[War Game]]. Parameters are <code>playername, area, isTournamentMode</code> but passed as a whitespace delimited string.
: [[API StartWarGame|StartWarGame]](<span style="font-size:smaller; color:#ecbc2a">target, name [, isTournament]</span>)
+
: [[API StartWarGame|StartWarGame]](<span class="apiarg">target, name [, isTournament]</span>)
 
: [[API UpdateWarGamesList|UpdateWarGamesList]]()
 
: [[API UpdateWarGamesList|UpdateWarGamesList]]()
: [[API WarGameRespond|WarGameRespond]](<span style="font-size:smaller; color:#ecbc2a">accept</span>)
+
: [[API WarGameRespond|WarGameRespond]](<span class="apiarg">accept</span>)
   
 
==== War Mode ====
 
==== War Mode ====
 
[[War Mode]] was added in [[Patch 8.0.1]]
 
[[War Mode]] was added in [[Patch 8.0.1]]
: [[API C_PvP.CanToggleWarMode|C_PvP.CanToggleWarMode]](<span style="font-size:smaller; color:#ecbc2a">toggle</span>) : <span style="font-size:smaller; color:#4ec9b0">canTogglePvP</span>
+
: [[API C_PvP.CanToggleWarMode|C_PvP.CanToggleWarMode]](<span class="apiarg">toggle</span>) : <span class="apiret">canTogglePvP</span>
: [[API C_PvP.CanToggleWarModeInArea|C_PvP.CanToggleWarModeInArea]]() : <span style="font-size:smaller; color:#4ec9b0">canTogglePvPInArea</span>
+
: [[API C_PvP.CanToggleWarModeInArea|C_PvP.CanToggleWarModeInArea]]() : <span class="apiret">canTogglePvPInArea</span>
: [[API C_PvP.GetWarModeRewardBonus|C_PvP.GetWarModeRewardBonus]]() : <span style="font-size:smaller; color:#4ec9b0">rewardBonus</span>
+
: [[API C_PvP.GetWarModeRewardBonus|C_PvP.GetWarModeRewardBonus]]() : <span class="apiret">rewardBonus</span>
: [[API C_PvP.GetWarModeRewardBonusDefault|C_PvP.GetWarModeRewardBonusDefault]]() : <span style="font-size:smaller; color:#4ec9b0">defaultBonus</span>
+
: [[API C_PvP.GetWarModeRewardBonusDefault|C_PvP.GetWarModeRewardBonusDefault]]() : <span class="apiret">defaultBonus</span>
: [[API C_PvP.IsWarModeActive|C_PvP.IsWarModeActive]]() : <span style="font-size:smaller; color:#4ec9b0">warModeActive</span>
+
: [[API C_PvP.IsWarModeActive|C_PvP.IsWarModeActive]]() : <span class="apiret">warModeActive</span>
: [[API C_PvP.IsWarModeDesired|C_PvP.IsWarModeDesired]]() : <span style="font-size:smaller; color:#4ec9b0">warModeDesired</span>
+
: [[API C_PvP.IsWarModeDesired|C_PvP.IsWarModeDesired]]() : <span class="apiret">warModeDesired</span>
: [[API C_PvP.IsWarModeFeatureEnabled|C_PvP.IsWarModeFeatureEnabled]]() : <span style="font-size:smaller; color:#4ec9b0">warModeEnabled</span>
+
: [[API C_PvP.IsWarModeFeatureEnabled|C_PvP.IsWarModeFeatureEnabled]]() : <span class="apiret">warModeEnabled</span>
: [[API C_PvP.SetWarModeDesired|C_PvP.SetWarModeDesired]](<span style="font-size:smaller; color:#ecbc2a">warModeDesired</span>)
+
: [[API C_PvP.SetWarModeDesired|C_PvP.SetWarModeDesired]](<span class="apiarg">warModeDesired</span>)
 
: [[API C_PvP.ToggleWarMode|C_PvP.ToggleWarMode]]()
 
: [[API C_PvP.ToggleWarMode|C_PvP.ToggleWarMode]]()
   
 
=== Quests ===
 
=== Quests ===
 
Relates to [[Quest]]s.
 
Relates to [[Quest]]s.
: [[API C_QuestLine.GetAvailableQuestLines|C_QuestLine.GetAvailableQuestLines]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">questLines</span>
+
: [[API C_QuestLine.GetAvailableQuestLines|C_QuestLine.GetAvailableQuestLines]](<span class="apiarg">uiMapID</span>) : <span class="apiret">questLines</span>
: [[API C_QuestLine.GetQuestLineInfo|C_QuestLine.GetQuestLineInfo]](<span style="font-size:smaller; color:#ecbc2a">questID, uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">questLineInfo</span>
+
: [[API C_QuestLine.GetQuestLineInfo|C_QuestLine.GetQuestLineInfo]](<span class="apiarg">questID, uiMapID</span>) : <span class="apiret">questLineInfo</span>
: [[API C_QuestLine.GetQuestLineQuests|C_QuestLine.GetQuestLineQuests]](<span style="font-size:smaller; color:#ecbc2a">questLineID</span>) : <span style="font-size:smaller; color:#4ec9b0">questIDs</span>
+
: [[API C_QuestLine.GetQuestLineQuests|C_QuestLine.GetQuestLineQuests]](<span class="apiarg">questLineID</span>) : <span class="apiret">questIDs</span>
: [[API C_QuestLine.IsComplete|C_QuestLine.IsComplete]](<span style="font-size:smaller; color:#ecbc2a">questLineID</span>) : <span style="font-size:smaller; color:#4ec9b0">isComplete</span>
+
: [[API C_QuestLine.IsComplete|C_QuestLine.IsComplete]](<span class="apiarg">questLineID</span>) : <span class="apiret">isComplete</span>
: [[API C_QuestLine.RequestQuestLinesForMap|C_QuestLine.RequestQuestLinesForMap]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>)
+
: [[API C_QuestLine.RequestQuestLinesForMap|C_QuestLine.RequestQuestLinesForMap]](<span class="apiarg">uiMapID</span>)
 
: [[API AcknowledgeAutoAcceptQuest|AcknowledgeAutoAcceptQuest]]()
 
: [[API AcknowledgeAutoAcceptQuest|AcknowledgeAutoAcceptQuest]]()
: [[API AddAutoQuestPopUp|AddAutoQuestPopUp]](<span style="font-size:smaller; color:#ecbc2a">QuestID, Type</span>) - Adds quest to an internal list of quests for offer/completion popup notification.
+
: [[API AddAutoQuestPopUp|AddAutoQuestPopUp]](<span class="apiarg">QuestID, Type</span>) - Adds quest to an internal list of quests for offer/completion popup notification.
 
: [[API ClearAutoAcceptQuestSound|ClearAutoAcceptQuestSound]]()
 
: [[API ClearAutoAcceptQuestSound|ClearAutoAcceptQuestSound]]()
 
: [[API CollapseQuestHeader|CollapseQuestHeader]]() - Collapses a quest header.
 
: [[API CollapseQuestHeader|CollapseQuestHeader]]() - Collapses a quest header.
 
: [[API ConfirmAcceptQuest|ConfirmAcceptQuest]]() - Accepts an offered quest that has been started by a party member; usually escort quests. (Might only be available after QUEST_ACCEPT_CONFIRM event.)
 
: [[API ConfirmAcceptQuest|ConfirmAcceptQuest]]() - Accepts an offered quest that has been started by a party member; usually escort quests. (Might only be available after QUEST_ACCEPT_CONFIRM event.)
 
: [[API ExpandQuestHeader|ExpandQuestHeader]]() - Expands a quest header.
 
: [[API ExpandQuestHeader|ExpandQuestHeader]]() - Expands a quest header.
: [[API GetAutoQuestPopUp|GetAutoQuestPopUp]](<span style="font-size:smaller; color:#ecbc2a">Index</span>) - Retrieves quest info by index that added using [[API AddAutoQuestPopUp|AddAutoQuestPopUp]].
+
: [[API GetAutoQuestPopUp|GetAutoQuestPopUp]](<span class="apiarg">Index</span>) - Retrieves quest info by index that added using [[API AddAutoQuestPopUp|AddAutoQuestPopUp]].
 
: [[API GetCriteriaSpell|GetCriteriaSpell]]()
 
: [[API GetCriteriaSpell|GetCriteriaSpell]]()
 
: [[API GetDailyQuestsCompleted|GetDailyQuestsCompleted]]() - Returns the current number of daily quests completed today.
 
: [[API GetDailyQuestsCompleted|GetDailyQuestsCompleted]]() - Returns the current number of daily quests completed today.
Line 3,527: Line 3,604:
 
: [[API GetNumQuestItemDrops|GetNumQuestItemDrops]]()
 
: [[API GetNumQuestItemDrops|GetNumQuestItemDrops]]()
 
: [[API GetNumQuestItems|GetNumQuestItems]]() - Returns the number of items necessary to complete a particular quest.
 
: [[API GetNumQuestItems|GetNumQuestItems]]() - Returns the number of items necessary to complete a particular quest.
: [[API GetNumQuestLeaderBoards|GetNumQuestLeaderBoards]](<span style="font-size:smaller; color:#ecbc2a">[questIndex]</span>) - Returns the number of available quest objectives.
+
: [[API GetNumQuestLeaderBoards|GetNumQuestLeaderBoards]](<span class="apiarg">[questIndex]</span>) - Returns the number of available quest objectives.
 
: [[API GetNumQuestPOIWorldEffects|GetNumQuestPOIWorldEffects]]()
 
: [[API GetNumQuestPOIWorldEffects|GetNumQuestPOIWorldEffects]]()
 
: [[API GetQuestBackgroundMaterial|GetQuestBackgroundMaterial]]() - Returns the material string associated with the particular quest.
 
: [[API GetQuestBackgroundMaterial|GetQuestBackgroundMaterial]]() - Returns the material string associated with the particular quest.
: [[API GetQuestCurrencyID|GetQuestCurrencyID]](<span style="font-size:smaller; color:#ecbc2a">type, index</span>)
+
: [[API GetQuestCurrencyID|GetQuestCurrencyID]](<span class="apiarg">type, index</span>)
: [[API GetQuestCurrencyInfo|GetQuestCurrencyInfo]](<span style="font-size:smaller; color:#ecbc2a">type, index</span>)
+
: [[API GetQuestCurrencyInfo|GetQuestCurrencyInfo]](<span class="apiarg">type, index</span>)
: [[API GetQuestExpansion|GetQuestExpansion]](<span style="font-size:smaller; color:#ecbc2a">questID</span>)
+
: [[API GetQuestExpansion|GetQuestExpansion]](<span class="apiarg">questID</span>)
: [[API GetQuestFactionGroup|GetQuestFactionGroup]](<span style="font-size:smaller; color:#ecbc2a">questID</span>)
+
: [[API GetQuestFactionGroup|GetQuestFactionGroup]](<span class="apiarg">questID</span>)
: [[API GetQuestLink|GetQuestLink]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns a [[QuestLink]] for a quest.
+
: [[API GetQuestLink|GetQuestLink]](<span class="apiarg">index</span>) - Returns a [[QuestLink]] for a quest.
: [[API GetQuestObjectiveInfo|GetQuestObjectiveInfo]](<span style="font-size:smaller; color:#ecbc2a">questID, index, displayComplete</span>)
+
: [[API GetQuestObjectiveInfo|GetQuestObjectiveInfo]](<span class="apiarg">questID, index, displayComplete</span>)
: [[API GetQuestPOIBlobCount|GetQuestPOIBlobCount]](<span style="font-size:smaller; color:#ecbc2a">questID</span>)
+
: [[API GetQuestPOIBlobCount|GetQuestPOIBlobCount]](<span class="apiarg">questID</span>)
: [[API GetQuestPOILeaderBoard|GetQuestPOILeaderBoard]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetQuestPOILeaderBoard|GetQuestPOILeaderBoard]](<span class="apiarg">index</span>)
 
: [[API GetQuestPOIs|GetQuestPOIs]]()
 
: [[API GetQuestPOIs|GetQuestPOIs]]()
: [[API GetQuestProgressBarPercent|GetQuestProgressBarPercent]](<span style="font-size:smaller; color:#ecbc2a">questID</span>)
+
: [[API GetQuestProgressBarPercent|GetQuestProgressBarPercent]](<span class="apiarg">questID</span>)
 
: [[API GetQuestResetTime|GetQuestResetTime]]() - Returns number of seconds until quest reset.
 
: [[API GetQuestResetTime|GetQuestResetTime]]() - Returns number of seconds until quest reset.
: [[API GetQuestReward|GetQuestReward]](<span style="font-size:smaller; color:#ecbc2a">rewardIndex</span>) - Completes the quest with the specified quest reward.
+
: [[API GetQuestReward|GetQuestReward]](<span class="apiarg">rewardIndex</span>) - Completes the quest with the specified quest reward.
: [[API GetQuestSortIndex|GetQuestSortIndex]](<span style="font-size:smaller; color:#ecbc2a">questIndex</span>)
+
: [[API GetQuestSortIndex|GetQuestSortIndex]](<span class="apiarg">questIndex</span>)
: [[API GetQuestSpellLink|GetQuestSpellLink]](<span style="font-size:smaller; color:#ecbc2a">rewardSpellIndex</span>)
+
: [[API GetQuestSpellLink|GetQuestSpellLink]](<span class="apiarg">rewardSpellIndex</span>)
: [[API GetQuestUiMapID|GetQuestUiMapID]](<span style="font-size:smaller; color:#ecbc2a">questID</span>)
+
: [[API GetQuestUiMapID|GetQuestUiMapID]](<span class="apiarg">questID</span>)
 
: [[API GetSuggestedGroupSize|GetSuggestedGroupSize]]()
 
: [[API GetSuggestedGroupSize|GetSuggestedGroupSize]]()
: [[API HaveQuestData|HaveQuestData]](<span style="font-size:smaller; color:#ecbc2a">questID</span>)
+
: [[API HaveQuestData|HaveQuestData]](<span class="apiarg">questID</span>)
: [[API HaveQuestRewardData|HaveQuestRewardData]](<span style="font-size:smaller; color:#ecbc2a">questID</span>)
+
: [[API HaveQuestRewardData|HaveQuestRewardData]](<span class="apiarg">questID</span>)
: [[API IsBreadcrumbQuest|IsBreadcrumbQuest]](<span style="font-size:smaller; color:#ecbc2a">questID</span>)
+
: [[API IsBreadcrumbQuest|IsBreadcrumbQuest]](<span class="apiarg">questID</span>)
 
: [[API IsCurrentQuestFailed|IsCurrentQuestFailed]]()
 
: [[API IsCurrentQuestFailed|IsCurrentQuestFailed]]()
 
: [[API IsQuestCompletable|IsQuestCompletable]]() - Returns true if a quest is possible to complete.
 
: [[API IsQuestCompletable|IsQuestCompletable]]() - Returns true if a quest is possible to complete.
: [[API IsQuestIDValidSpellTarget|IsQuestIDValidSpellTarget]](<span style="font-size:smaller; color:#ecbc2a">questID</span>)
+
: [[API IsQuestIDValidSpellTarget|IsQuestIDValidSpellTarget]](<span class="apiarg">questID</span>)
: [[API IsQuestItemHidden|IsQuestItemHidden]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API IsQuestItemHidden|IsQuestItemHidden]](<span class="apiarg">index</span>)
: [[API IsQuestSequenced|IsQuestSequenced]](<span style="font-size:smaller; color:#ecbc2a">questID</span>)
+
: [[API IsQuestSequenced|IsQuestSequenced]](<span class="apiarg">questID</span>)
: [[API IsStoryQuest|IsStoryQuest]](<span style="font-size:smaller; color:#ecbc2a">questID</span>)
+
: [[API IsStoryQuest|IsStoryQuest]](<span class="apiarg">questID</span>)
 
: [[API IsTrackingHiddenQuests|IsTrackingHiddenQuests]]()
 
: [[API IsTrackingHiddenQuests|IsTrackingHiddenQuests]]()
 
: [[API PlayAutoAcceptQuestSound|PlayAutoAcceptQuestSound]]()
 
: [[API PlayAutoAcceptQuestSound|PlayAutoAcceptQuestSound]]()
Line 3,561: Line 3,638:
 
: [[API QuestGetAutoAccept|QuestGetAutoAccept]]() - Returns whether the last-offered quest was automatically accepted.
 
: [[API QuestGetAutoAccept|QuestGetAutoAccept]]() - Returns whether the last-offered quest was automatically accepted.
 
: [[API QuestGetAutoLaunched|QuestGetAutoLaunched]]()
 
: [[API QuestGetAutoLaunched|QuestGetAutoLaunched]]()
: [[API QuestHasPOIInfo|QuestHasPOIInfo]](<span style="font-size:smaller; color:#ecbc2a">questID</span>)
+
: [[API QuestHasPOIInfo|QuestHasPOIInfo]](<span class="apiarg">questID</span>)
 
: [[API QuestIsDaily|QuestIsDaily]]() - Returns whether the offered quest is a daily quest.
 
: [[API QuestIsDaily|QuestIsDaily]]() - Returns whether the offered quest is a daily quest.
 
: [[API QuestIsFromAreaTrigger|QuestIsFromAreaTrigger]]()
 
: [[API QuestIsFromAreaTrigger|QuestIsFromAreaTrigger]]()
 
: [[API QuestIsWeekly|QuestIsWeekly]]() - Returns whether the offered quest is a weekly quest.
 
: [[API QuestIsWeekly|QuestIsWeekly]]() - Returns whether the offered quest is a weekly quest.
 
: [[API QuestMapUpdateAllQuests|QuestMapUpdateAllQuests]]()
 
: [[API QuestMapUpdateAllQuests|QuestMapUpdateAllQuests]]()
: [[API QuestPOIGetIconInfo|QuestPOIGetIconInfo]](<span style="font-size:smaller; color:#ecbc2a">questID</span>)
+
: [[API QuestPOIGetIconInfo|QuestPOIGetIconInfo]](<span class="apiarg">questID</span>)
: [[API QuestPOIGetSecondaryLocations|QuestPOIGetSecondaryLocations]](<span style="font-size:smaller; color:#ecbc2a">questID [, table]</span>)
+
: [[API QuestPOIGetSecondaryLocations|QuestPOIGetSecondaryLocations]](<span class="apiarg">questID [, table]</span>)
 
: [[API QuestPOIUpdateIcons|QuestPOIUpdateIcons]]()
 
: [[API QuestPOIUpdateIcons|QuestPOIUpdateIcons]]()
 
: [[API RemoveAutoQuestPopUp|RemoveAutoQuestPopUp]]()
 
: [[API RemoveAutoQuestPopUp|RemoveAutoQuestPopUp]]()
: [[API ShowQuestComplete|ShowQuestComplete]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API ShowQuestComplete|ShowQuestComplete]](<span class="apiarg">index</span>)
: [[API ShowQuestOffer|ShowQuestOffer]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API ShowQuestOffer|ShowQuestOffer]](<span class="apiarg">index</span>)
 
: [[API SortQuests|SortQuests]]()
 
: [[API SortQuests|SortQuests]]()
 
: [[API SortQuestSortTypes|SortQuestSortTypes]]()
 
: [[API SortQuestSortTypes|SortQuestSortTypes]]()
: [[API UnitQuestTrivialLevelRangeScaling|UnitQuestTrivialLevelRangeScaling]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) : <span style="font-size:smaller; color:#4ec9b0">levelRange</span>
+
: [[API UnitQuestTrivialLevelRangeScaling|UnitQuestTrivialLevelRangeScaling]](<span class="apiarg">unit</span>) : <span class="apiret">levelRange</span>
 
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/PVPGetConquestLevelInfo PVPGetConquestLevelInfo]()
 
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/PVPGetConquestLevelInfo PVPGetConquestLevelInfo]()
 
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/QuestUtils_GetQuestName QuestUtils_GetQuestName]() - Returns the name for a quest ID.
 
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/QuestUtils_GetQuestName QuestUtils_GetQuestName]() - Returns the name for a quest ID.
Line 3,580: Line 3,657:
 
==== Quest Log ====
 
==== Quest Log ====
 
: [[API C_QuestLog.AbandonQuest|C_QuestLog.AbandonQuest]]() - Abandon the specified quest.
 
: [[API C_QuestLog.AbandonQuest|C_QuestLog.AbandonQuest]]() - Abandon the specified quest.
: [[API C_QuestLog.AddQuestWatch|C_QuestLog.AddQuestWatch]](<span style="font-size:smaller; color:#ecbc2a">questID [, watchType]</span>) : <span style="font-size:smaller; color:#4ec9b0">wasWatched</span> - Add a quest to the watch list.
+
: [[API C_QuestLog.AddQuestWatch|C_QuestLog.AddQuestWatch]](<span class="apiarg">questID [, watchType]</span>) : <span class="apiret">wasWatched</span> - Add a quest to the watch list.
: [[API C_QuestLog.AddWorldQuestWatch|C_QuestLog.AddWorldQuestWatch]](<span style="font-size:smaller; color:#ecbc2a">questID [, watchType]</span>) : <span style="font-size:smaller; color:#4ec9b0">wasWatched</span> - Adds a world quest to the watch list.
+
: [[API C_QuestLog.AddWorldQuestWatch|C_QuestLog.AddWorldQuestWatch]](<span class="apiarg">questID [, watchType]</span>) : <span class="apiret">wasWatched</span> - Adds a world quest to the watch list.
: [[API C_QuestLog.CanAbandonQuest|C_QuestLog.CanAbandonQuest]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">canAbandon</span>
+
: [[API C_QuestLog.CanAbandonQuest|C_QuestLog.CanAbandonQuest]](<span class="apiarg">questID</span>) : <span class="apiret">canAbandon</span>
: [[API C_QuestLog.GetAbandonQuest|C_QuestLog.GetAbandonQuest]]() : <span style="font-size:smaller; color:#4ec9b0">questID</span> - Returns the ID of the quest being abandoned.
+
: [[API C_QuestLog.GetAbandonQuest|C_QuestLog.GetAbandonQuest]]() : <span class="apiret">questID</span> - Returns the ID of the quest being abandoned.
: [[API C_QuestLog.GetAbandonQuestItems|C_QuestLog.GetAbandonQuestItems]]() : <span style="font-size:smaller; color:#4ec9b0">itemIDs</span>
+
: [[API C_QuestLog.GetAbandonQuestItems|C_QuestLog.GetAbandonQuestItems]]() : <span class="apiret">itemIDs</span>
: [[API C_QuestLog.GetActiveThreatMaps|C_QuestLog.GetActiveThreatMaps]]() : <span style="font-size:smaller; color:#4ec9b0">uiMapIDs</span>
+
: [[API C_QuestLog.GetActiveThreatMaps|C_QuestLog.GetActiveThreatMaps]]() : <span class="apiret">uiMapIDs</span>
: [[API C_QuestLog.GetAllCompletedQuestIDs|C_QuestLog.GetAllCompletedQuestIDs]]() : <span style="font-size:smaller; color:#4ec9b0">quests</span> - Returns all completed quests for a character.
+
: [[API C_QuestLog.GetAllCompletedQuestIDs|C_QuestLog.GetAllCompletedQuestIDs]]() : <span class="apiret">quests</span> - Returns all completed quests for a character.
: [[API C_QuestLog.GetBountiesForMapID|C_QuestLog.GetBountiesForMapID]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">bounties</span>
+
: [[API C_QuestLog.GetBountiesForMapID|C_QuestLog.GetBountiesForMapID]](<span class="apiarg">uiMapID</span>) : <span class="apiret">bounties</span>
: [[API C_QuestLog.GetBountySetInfoForMapID|C_QuestLog.GetBountySetInfoForMapID]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">displayLocation, lockQuestID, bountySetID</span>
+
: [[API C_QuestLog.GetBountySetInfoForMapID|C_QuestLog.GetBountySetInfoForMapID]](<span class="apiarg">uiMapID</span>) : <span class="apiret">displayLocation, lockQuestID, bountySetID</span>
: [[API C_QuestLog.GetDistanceSqToQuest|C_QuestLog.GetDistanceSqToQuest]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">distanceSq, onContinent</span>
+
: [[API C_QuestLog.GetDistanceSqToQuest|C_QuestLog.GetDistanceSqToQuest]](<span class="apiarg">questID</span>) : <span class="apiret">distanceSq, onContinent</span>
: [[API C_QuestLog.GetInfo|C_QuestLog.GetInfo]](<span style="font-size:smaller; color:#ecbc2a">questLogIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span> - Returns information about a quest in the player's quest log.
+
: [[API C_QuestLog.GetInfo|C_QuestLog.GetInfo]](<span class="apiarg">questLogIndex</span>) : <span class="apiret">info</span> - Returns information about a quest in the player's quest log.
: [[API C_QuestLog.GetLogIndexForQuestID|C_QuestLog.GetLogIndexForQuestID]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">questLogIndex</span> - Returns the index of the specified questID in the quest log.
+
: [[API C_QuestLog.GetLogIndexForQuestID|C_QuestLog.GetLogIndexForQuestID]](<span class="apiarg">questID</span>) : <span class="apiret">questLogIndex</span> - Returns the index of the specified questID in the quest log.
: [[API C_QuestLog.GetMapForQuestPOIs|C_QuestLog.GetMapForQuestPOIs]]() : <span style="font-size:smaller; color:#4ec9b0">uiMapID</span>
+
: [[API C_QuestLog.GetMapForQuestPOIs|C_QuestLog.GetMapForQuestPOIs]]() : <span class="apiret">uiMapID</span>
: [[API C_QuestLog.GetMaxNumQuests|C_QuestLog.GetMaxNumQuests]]() : <span style="font-size:smaller; color:#4ec9b0">maxNumQuests</span> - This is the maximum number of quests a player can be on, including hidden quests, world quests, emissaries etc
+
: [[API C_QuestLog.GetMaxNumQuests|C_QuestLog.GetMaxNumQuests]]() : <span class="apiret">maxNumQuests</span> - This is the maximum number of quests a player can be on, including hidden quests, world quests, emissaries etc
: [[API C_QuestLog.GetMaxNumQuestsCanAccept|C_QuestLog.GetMaxNumQuestsCanAccept]]() : <span style="font-size:smaller; color:#4ec9b0">maxNumQuestsCanAccept</span> - This is the maximum number of standard quests a player can accept. These are quests that are normally visible in the quest log.
+
: [[API C_QuestLog.GetMaxNumQuestsCanAccept|C_QuestLog.GetMaxNumQuestsCanAccept]]() : <span class="apiret">maxNumQuestsCanAccept</span> - This is the maximum number of standard quests a player can accept. These are quests that are normally visible in the quest log.
: [[API C_QuestLog.GetNumQuestLogEntries|C_QuestLog.GetNumQuestLogEntries]]() : <span style="font-size:smaller; color:#4ec9b0">numShownEntries, numQuests</span> - Returns the number of entries in the quest log.
+
: [[API C_QuestLog.GetNumQuestLogEntries|C_QuestLog.GetNumQuestLogEntries]]() : <span class="apiret">numShownEntries, numQuests</span> - Returns the number of entries in the quest log.
: [[API C_QuestLog.GetNumQuestObjectives|C_QuestLog.GetNumQuestObjectives]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">leaderboardCount</span>
+
: [[API C_QuestLog.GetNumQuestObjectives|C_QuestLog.GetNumQuestObjectives]](<span class="apiarg">questID</span>) : <span class="apiret">leaderboardCount</span>
: [[API C_QuestLog.GetNumQuestWatches|C_QuestLog.GetNumQuestWatches]]() : <span style="font-size:smaller; color:#4ec9b0">numQuestWatches</span> - Returns the number of quest watches active.
+
: [[API C_QuestLog.GetNumQuestWatches|C_QuestLog.GetNumQuestWatches]]() : <span class="apiret">numQuestWatches</span> - Returns the number of quest watches active.
: [[API C_QuestLog.GetNumWorldQuestWatches|C_QuestLog.GetNumWorldQuestWatches]]() : <span style="font-size:smaller; color:#4ec9b0">numQuestWatches</span>
+
: [[API C_QuestLog.GetNumWorldQuestWatches|C_QuestLog.GetNumWorldQuestWatches]]() : <span class="apiret">numQuestWatches</span>
: [[API C_QuestLog.GetQuestAdditionalHighlights|C_QuestLog.GetQuestAdditionalHighlights]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">uiMapID, worldQuests, worldQuestsElite, dungeons, treasures</span>
+
: [[API C_QuestLog.GetQuestAdditionalHighlights|C_QuestLog.GetQuestAdditionalHighlights]](<span class="apiarg">questID</span>) : <span class="apiret">uiMapID, worldQuests, worldQuestsElite, dungeons, treasures</span>
: [[API C_QuestLog.GetQuestDetailsTheme|C_QuestLog.GetQuestDetailsTheme]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">theme</span>
+
: [[API C_QuestLog.GetQuestDetailsTheme|C_QuestLog.GetQuestDetailsTheme]](<span class="apiarg">questID</span>) : <span class="apiret">theme</span>
: [[API C_QuestLog.GetQuestDifficultyLevel|C_QuestLog.GetQuestDifficultyLevel]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">level</span>
+
: [[API C_QuestLog.GetQuestDifficultyLevel|C_QuestLog.GetQuestDifficultyLevel]](<span class="apiarg">questID</span>) : <span class="apiret">level</span>
: [[API C_QuestLog.GetQuestIDForLogIndex|C_QuestLog.GetQuestIDForLogIndex]](<span style="font-size:smaller; color:#ecbc2a">questLogIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">questID</span>
+
: [[API C_QuestLog.GetQuestIDForLogIndex|C_QuestLog.GetQuestIDForLogIndex]](<span class="apiarg">questLogIndex</span>) : <span class="apiret">questID</span>
: [[API C_QuestLog.GetQuestIDForQuestWatchIndex|C_QuestLog.GetQuestIDForQuestWatchIndex]](<span style="font-size:smaller; color:#ecbc2a">questWatchIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">questID</span>
+
: [[API C_QuestLog.GetQuestIDForQuestWatchIndex|C_QuestLog.GetQuestIDForQuestWatchIndex]](<span class="apiarg">questWatchIndex</span>) : <span class="apiret">questID</span>
: [[API C_QuestLog.GetQuestIDForWorldQuestWatchIndex|C_QuestLog.GetQuestIDForWorldQuestWatchIndex]](<span style="font-size:smaller; color:#ecbc2a">questWatchIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">questID</span>
+
: [[API C_QuestLog.GetQuestIDForWorldQuestWatchIndex|C_QuestLog.GetQuestIDForWorldQuestWatchIndex]](<span class="apiarg">questWatchIndex</span>) : <span class="apiret">questID</span>
: [[API C_QuestLog.GetQuestObjectives|C_QuestLog.GetQuestObjectives]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">objectives</span> - Returns information about objective status for a quest.
+
: [[API C_QuestLog.GetQuestLogPortraitGiver|C_QuestLog.GetQuestLogPortraitGiver]](<span class="apiarg">[questLogIndex]</span>) : <span class="apiret">portraitGiver, portraitGiverText, portraitGiverName, portraitGiverMount, ...</span>
: [[API C_QuestLog.GetQuestsOnMap|C_QuestLog.GetQuestsOnMap]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">quests</span>
+
: [[API C_QuestLog.GetQuestObjectives|C_QuestLog.GetQuestObjectives]](<span class="apiarg">questID</span>) : <span class="apiret">objectives</span> - Returns information about objective status for a quest.
: [[API C_QuestLog.GetQuestTagInfo|C_QuestLog.GetQuestTagInfo]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span> - Returns tag information about the specified quest.
+
: [[API C_QuestLog.GetQuestsOnMap|C_QuestLog.GetQuestsOnMap]](<span class="apiarg">uiMapID</span>) : <span class="apiret">quests</span>
: [[API C_QuestLog.GetQuestWatchType|C_QuestLog.GetQuestWatchType]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">watchType</span>
+
: [[API C_QuestLog.GetQuestTagInfo|C_QuestLog.GetQuestTagInfo]](<span class="apiarg">questID</span>) : <span class="apiret">info</span> - Returns tag information about the specified quest.
: [[API C_QuestLog.GetRequiredMoney|C_QuestLog.GetRequiredMoney]](<span style="font-size:smaller; color:#ecbc2a">[questID]</span>) : <span style="font-size:smaller; color:#4ec9b0">requiredMoney</span> - Returns amount of money required for quest completion from quest log.
+
: [[API C_QuestLog.GetQuestType|C_QuestLog.GetQuestType]](<span class="apiarg">questID</span>) : <span class="apiret">questType</span>
: [[API C_QuestLog.GetSelectedQuest|C_QuestLog.GetSelectedQuest]]() : <span style="font-size:smaller; color:#4ec9b0">questID</span> - Returns a number associated with the QuestLogSelection index.
+
: [[API C_QuestLog.GetQuestWatchType|C_QuestLog.GetQuestWatchType]](<span class="apiarg">questID</span>) : <span class="apiret">watchType</span>
: [[API C_QuestLog.GetSuggestedGroupSize|C_QuestLog.GetSuggestedGroupSize]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">suggestedGroupSize</span> - Returns suggested number of players for quest selected currently in log or 0 if there's no suggestion.
+
: [[API C_QuestLog.GetRequiredMoney|C_QuestLog.GetRequiredMoney]](<span class="apiarg">[questID]</span>) : <span class="apiret">requiredMoney</span> - Returns amount of money required for quest completion from quest log.
: [[API C_QuestLog.GetTimeAllowed|C_QuestLog.GetTimeAllowed]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">totalTime, elapsedTime</span> - Returns the time available to complete a quest.
+
: [[API C_QuestLog.GetSelectedQuest|C_QuestLog.GetSelectedQuest]]() : <span class="apiret">questID</span> - Returns a number associated with the QuestLogSelection index.
: [[API C_QuestLog.GetTitleForLogIndex|C_QuestLog.GetTitleForLogIndex]](<span style="font-size:smaller; color:#ecbc2a">questLogIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">title</span>
+
: [[API C_QuestLog.GetSuggestedGroupSize|C_QuestLog.GetSuggestedGroupSize]](<span class="apiarg">questID</span>) : <span class="apiret">suggestedGroupSize</span> - Returns suggested number of players for quest selected currently in log or 0 if there's no suggestion.
: [[API C_QuestLog.GetTitleForQuestID|C_QuestLog.GetTitleForQuestID]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">title</span> - Returns the name for a Quest ID.
+
: [[API C_QuestLog.GetTimeAllowed|C_QuestLog.GetTimeAllowed]](<span class="apiarg">questID</span>) : <span class="apiret">totalTime, elapsedTime</span> - Returns the time available to complete a quest.
: [[API C_QuestLog.GetZoneStoryInfo|C_QuestLog.GetZoneStoryInfo]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">achievementID, storyMapID</span>
+
: [[API C_QuestLog.GetTitleForLogIndex|C_QuestLog.GetTitleForLogIndex]](<span class="apiarg">questLogIndex</span>) : <span class="apiret">title</span>
: [[API C_QuestLog.HasActiveThreats|C_QuestLog.HasActiveThreats]]() : <span style="font-size:smaller; color:#4ec9b0">hasActiveThreats</span>
+
: [[API C_QuestLog.GetTitleForQuestID|C_QuestLog.GetTitleForQuestID]](<span class="apiarg">questID</span>) : <span class="apiret">title</span> - Returns the name for a Quest ID.
: [[API C_QuestLog.IsAccountQuest|C_QuestLog.IsAccountQuest]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">isAccountQuest</span>
+
: [[API C_QuestLog.GetZoneStoryInfo|C_QuestLog.GetZoneStoryInfo]](<span class="apiarg">uiMapID</span>) : <span class="apiret">achievementID, storyMapID</span>
: [[API C_QuestLog.IsComplete|C_QuestLog.IsComplete]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">isComplete</span>
+
: [[API C_QuestLog.HasActiveThreats|C_QuestLog.HasActiveThreats]]() : <span class="apiret">hasActiveThreats</span>
: [[API C_QuestLog.IsFailed|C_QuestLog.IsFailed]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">isFailed</span>
+
: [[API C_QuestLog.IsAccountQuest|C_QuestLog.IsAccountQuest]](<span class="apiarg">questID</span>) : <span class="apiret">isAccountQuest</span>
: [[API C_QuestLog.IsLegendaryQuest|C_QuestLog.IsLegendaryQuest]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">isLegendaryQuest</span>
+
: [[API C_QuestLog.IsComplete|C_QuestLog.IsComplete]](<span class="apiarg">questID</span>) : <span class="apiret">isComplete</span>
: [[API C_QuestLog.IsOnMap|C_QuestLog.IsOnMap]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">onMap, hasLocalPOI</span>
+
: [[API C_QuestLog.IsFailed|C_QuestLog.IsFailed]](<span class="apiarg">questID</span>) : <span class="apiret">isFailed</span>
: [[API C_QuestLog.IsOnQuest|C_QuestLog.IsOnQuest]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">isOnQuest</span>
+
: [[API C_QuestLog.IsLegendaryQuest|C_QuestLog.IsLegendaryQuest]](<span class="apiarg">questID</span>) : <span class="apiret">isLegendaryQuest</span>
: [[API C_QuestLog.IsPushableQuest|C_QuestLog.IsPushableQuest]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">isPushable</span> - Returns true if the currently loaded quest in the quest window can be shared.
+
: [[API C_QuestLog.IsOnMap|C_QuestLog.IsOnMap]](<span class="apiarg">questID</span>) : <span class="apiret">onMap, hasLocalPOI</span>
: [[API C_QuestLog.IsQuestBounty|C_QuestLog.IsQuestBounty]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">isBounty</span>
+
: [[API C_QuestLog.IsOnQuest|C_QuestLog.IsOnQuest]](<span class="apiarg">questID</span>) : <span class="apiret">isOnQuest</span>
: [[API C_QuestLog.IsQuestCalling|C_QuestLog.IsQuestCalling]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">isCalling</span>
+
: [[API C_QuestLog.IsPushableQuest|C_QuestLog.IsPushableQuest]](<span class="apiarg">questID</span>) : <span class="apiret">isPushable</span> - Returns true if the currently loaded quest in the quest window can be shared.
: [[API C_QuestLog.IsQuestCriteriaForBounty|C_QuestLog.IsQuestCriteriaForBounty]](<span style="font-size:smaller; color:#ecbc2a">questID, bountyQuestID</span>) : <span style="font-size:smaller; color:#4ec9b0">isCriteriaForBounty</span>
+
: [[API C_QuestLog.IsQuestBounty|C_QuestLog.IsQuestBounty]](<span class="apiarg">questID</span>) : <span class="apiret">isBounty</span>
: [[API C_QuestLog.IsQuestFlaggedCompleted|C_QuestLog.IsQuestFlaggedCompleted]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">isCompleted</span> - Returns if a quest has been completed.
+
: [[API C_QuestLog.IsQuestCalling|C_QuestLog.IsQuestCalling]](<span class="apiarg">questID</span>) : <span class="apiret">isCalling</span>
: [[API C_QuestLog.IsQuestInvasion|C_QuestLog.IsQuestInvasion]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">isInvasion</span>
+
: [[API C_QuestLog.IsQuestCriteriaForBounty|C_QuestLog.IsQuestCriteriaForBounty]](<span class="apiarg">questID, bountyQuestID</span>) : <span class="apiret">isCriteriaForBounty</span>
: [[API C_QuestLog.IsQuestTrivial|C_QuestLog.IsQuestTrivial]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">isTrivial</span>
+
: [[API C_QuestLog.IsQuestFlaggedCompleted|C_QuestLog.IsQuestFlaggedCompleted]](<span class="apiarg">questID</span>) : <span class="apiret">isCompleted</span> - Returns if a quest has been completed.
: [[API C_QuestLog.IsRepeatableQuest|C_QuestLog.IsRepeatableQuest]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">isRepeatable</span>
+
: [[API C_QuestLog.IsQuestInvasion|C_QuestLog.IsQuestInvasion]](<span class="apiarg">questID</span>) : <span class="apiret">isInvasion</span>
: [[API C_QuestLog.IsThreatQuest|C_QuestLog.IsThreatQuest]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">isThreat</span>
+
: [[API C_QuestLog.IsQuestTrivial|C_QuestLog.IsQuestTrivial]](<span class="apiarg">questID</span>) : <span class="apiret">isTrivial</span>
: [[API C_QuestLog.IsUnitOnQuest|C_QuestLog.IsUnitOnQuest]](<span style="font-size:smaller; color:#ecbc2a">unit, questID</span>) : <span style="font-size:smaller; color:#4ec9b0">isOnQuest</span> - Determine if the specified unit is on the given quest.
+
: [[API C_QuestLog.IsRepeatableQuest|C_QuestLog.IsRepeatableQuest]](<span class="apiarg">questID</span>) : <span class="apiret">isRepeatable</span>
: [[API C_QuestLog.QuestCanHaveWarModeBonus|C_QuestLog.QuestCanHaveWarModeBonus]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">hasBonus</span>
+
: [[API C_QuestLog.IsThreatQuest|C_QuestLog.IsThreatQuest]](<span class="apiarg">questID</span>) : <span class="apiret">isThreat</span>
: [[API C_QuestLog.QuestHasWarModeBonus|C_QuestLog.QuestHasWarModeBonus]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">hasBonus</span>
+
: [[API C_QuestLog.IsUnitOnQuest|C_QuestLog.IsUnitOnQuest]](<span class="apiarg">unit, questID</span>) : <span class="apiret">isOnQuest</span> - Determine if the specified unit is on the given quest.
: [[API C_QuestLog.ReadyForTurnIn|C_QuestLog.ReadyForTurnIn]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">readyForTurnIn</span>
+
: [[API C_QuestLog.QuestCanHaveWarModeBonus|C_QuestLog.QuestCanHaveWarModeBonus]](<span class="apiarg">questID</span>) : <span class="apiret">hasBonus</span>
: [[API C_QuestLog.RemoveQuestWatch|C_QuestLog.RemoveQuestWatch]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">wasRemoved</span> - Removes a quest watch.
+
: [[API C_QuestLog.QuestHasWarModeBonus|C_QuestLog.QuestHasWarModeBonus]](<span class="apiarg">questID</span>) : <span class="apiret">hasBonus</span>
: [[API C_QuestLog.RemoveWorldQuestWatch|C_QuestLog.RemoveWorldQuestWatch]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">wasRemoved</span> - Removes a world quest from the watch.
+
: [[API C_QuestLog.ReadyForTurnIn|C_QuestLog.ReadyForTurnIn]](<span class="apiarg">questID</span>) : <span class="apiret">readyForTurnIn</span>
: [[API C_QuestLog.RequestLoadQuestByID|C_QuestLog.RequestLoadQuestByID]](<span style="font-size:smaller; color:#ecbc2a">questID</span>)
+
: [[API C_QuestLog.RemoveQuestWatch|C_QuestLog.RemoveQuestWatch]](<span class="apiarg">questID</span>) : <span class="apiret">wasRemoved</span> - Removes a quest watch.
  +
: [[API C_QuestLog.RemoveWorldQuestWatch|C_QuestLog.RemoveWorldQuestWatch]](<span class="apiarg">questID</span>) : <span class="apiret">wasRemoved</span> - Removes a world quest from the watch.
  +
: [[API C_QuestLog.RequestLoadQuestByID|C_QuestLog.RequestLoadQuestByID]](<span class="apiarg">questID</span>)
 
: [[API C_QuestLog.SetAbandonQuest|C_QuestLog.SetAbandonQuest]]() - Called before [[API AbandonQuest|AbandonQuest]].
 
: [[API C_QuestLog.SetAbandonQuest|C_QuestLog.SetAbandonQuest]]() - Called before [[API AbandonQuest|AbandonQuest]].
: [[API C_QuestLog.SetMapForQuestPOIs|C_QuestLog.SetMapForQuestPOIs]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>)
+
: [[API C_QuestLog.SetMapForQuestPOIs|C_QuestLog.SetMapForQuestPOIs]](<span class="apiarg">uiMapID</span>)
: [[API C_QuestLog.SetSelectedQuest|C_QuestLog.SetSelectedQuest]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) - Sets the selected quest, required for most GetQuest functions.
+
: [[API C_QuestLog.SetSelectedQuest|C_QuestLog.SetSelectedQuest]](<span class="apiarg">questID</span>) - Sets the selected quest, required for most GetQuest functions.
: [[API C_QuestLog.ShouldDisplayTimeRemaining|C_QuestLog.ShouldDisplayTimeRemaining]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">displayTimeRemaining</span>
+
: [[API C_QuestLog.ShouldDisplayTimeRemaining|C_QuestLog.ShouldDisplayTimeRemaining]](<span class="apiarg">questID</span>) : <span class="apiret">displayTimeRemaining</span>
: [[API C_QuestLog.ShouldShowQuestRewards|C_QuestLog.ShouldShowQuestRewards]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">shouldShow</span>
+
: [[API C_QuestLog.ShouldShowQuestRewards|C_QuestLog.ShouldShowQuestRewards]](<span class="apiarg">questID</span>) : <span class="apiret">shouldShow</span>
 
: [[API C_QuestLog.SortQuestWatches|C_QuestLog.SortQuestWatches]]() - Sorts watched quests by proximity to the player character.
 
: [[API C_QuestLog.SortQuestWatches|C_QuestLog.SortQuestWatches]]() - Sorts watched quests by proximity to the player character.
: [[API C_PlayerInfo.GetContentDifficultyQuestForPlayer|C_PlayerInfo.GetContentDifficultyQuestForPlayer]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">difficulty</span>
+
: [[API C_PlayerInfo.GetContentDifficultyQuestForPlayer|C_PlayerInfo.GetContentDifficultyQuestForPlayer]](<span class="apiarg">questID</span>) : <span class="apiret">difficulty</span>
 
: [[API GetNumQuestLogChoices|GetNumQuestLogChoices]]() - Returns the number of options someone has when getting a quest item.
 
: [[API GetNumQuestLogChoices|GetNumQuestLogChoices]]() - Returns the number of options someone has when getting a quest item.
 
: [[API GetNumQuestLogRewardCurrencies|GetNumQuestLogRewardCurrencies]]()
 
: [[API GetNumQuestLogRewardCurrencies|GetNumQuestLogRewardCurrencies]]()
Line 3,652: Line 3,731:
 
: [[API GetNumQuestLogRewardSpells|GetNumQuestLogRewardSpells]]() - Returns the number of spell rewards for the current selected quest.
 
: [[API GetNumQuestLogRewardSpells|GetNumQuestLogRewardSpells]]() - Returns the number of spell rewards for the current selected quest.
 
: [[API GetNumTreasurePickerItems|GetNumTreasurePickerItems]]()
 
: [[API GetNumTreasurePickerItems|GetNumTreasurePickerItems]]()
: [[API GetQuestLogChoiceInfoLootType|GetQuestLogChoiceInfoLootType]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetQuestLogChoiceInfoLootType|GetQuestLogChoiceInfoLootType]](<span class="apiarg">index</span>)
 
: [[API GetQuestLogCompletionText|GetQuestLogCompletionText]]()
 
: [[API GetQuestLogCompletionText|GetQuestLogCompletionText]]()
 
: [[API GetQuestLogCriteriaSpell|GetQuestLogCriteriaSpell]]()
 
: [[API GetQuestLogCriteriaSpell|GetQuestLogCriteriaSpell]]()
: [[API GetQuestLogItemDrop|GetQuestLogItemDrop]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetQuestLogItemDrop|GetQuestLogItemDrop]](<span class="apiarg">index</span>)
: [[API GetQuestLogItemLink|GetQuestLogItemLink]](<span style="font-size:smaller; color:#ecbc2a">type, index</span>) - Returns item link for selected quest reward/choice/required item from quest log.
+
: [[API GetQuestLogItemLink|GetQuestLogItemLink]](<span class="apiarg">type, index</span>) - Returns item link for selected quest reward/choice/required item from quest log.
: [[API GetQuestLogLeaderBoard|GetQuestLogLeaderBoard]](<span style="font-size:smaller; color:#ecbc2a">ldrIndex [, questIndex]</span>) - Gets information about the objectives for a quest.
+
: [[API GetQuestLogLeaderBoard|GetQuestLogLeaderBoard]](<span class="apiarg">ldrIndex [, questIndex]</span>) - Gets information about the objectives for a quest.
: [[API GetQuestLogPortraitGiver|GetQuestLogPortraitGiver]]()
 
 
: [[API GetQuestLogPortraitTurnIn|GetQuestLogPortraitTurnIn]]()
 
: [[API GetQuestLogPortraitTurnIn|GetQuestLogPortraitTurnIn]]()
 
: [[API GetQuestLogQuestText|GetQuestLogQuestText]]() - Returns the description and objectives required for the specified quest.
 
: [[API GetQuestLogQuestText|GetQuestLogQuestText]]() - Returns the description and objectives required for the specified quest.
 
: [[API GetQuestLogQuestType|GetQuestLogQuestType]]()
 
: [[API GetQuestLogQuestType|GetQuestLogQuestType]]()
 
: [[API GetQuestLogRewardArtifactXP|GetQuestLogRewardArtifactXP]]()
 
: [[API GetQuestLogRewardArtifactXP|GetQuestLogRewardArtifactXP]]()
: [[API GetQuestLogRewardCurrencyInfo|GetQuestLogRewardCurrencyInfo]](<span style="font-size:smaller; color:#ecbc2a">index [, questID]</span>)
+
: [[API GetQuestLogRewardCurrencyInfo|GetQuestLogRewardCurrencyInfo]](<span class="apiarg">index [, questID]</span>)
: [[API GetQuestLogRewardFactionInfo|GetQuestLogRewardFactionInfo]](<span style="font-size:smaller; color:#ecbc2a">questIndex</span>)
+
: [[API GetQuestLogRewardFactionInfo|GetQuestLogRewardFactionInfo]](<span class="apiarg">questIndex</span>)
 
: [[API GetQuestLogRewardHonor|GetQuestLogRewardHonor]]()
 
: [[API GetQuestLogRewardHonor|GetQuestLogRewardHonor]]()
 
: [[API GetQuestLogRewardInfo|GetQuestLogRewardInfo]]() - Returns a pile of reward item info from the quest log.
 
: [[API GetQuestLogRewardInfo|GetQuestLogRewardInfo]]() - Returns a pile of reward item info from the quest log.
Line 3,672: Line 3,750:
 
: [[API GetQuestLogRewardTitle|GetQuestLogRewardTitle]]()
 
: [[API GetQuestLogRewardTitle|GetQuestLogRewardTitle]]()
 
: [[API GetQuestLogRewardXP|GetQuestLogRewardXP]]()
 
: [[API GetQuestLogRewardXP|GetQuestLogRewardXP]]()
: [[API GetQuestLogSpecialItemCooldown|GetQuestLogSpecialItemCooldown]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetQuestLogSpecialItemCooldown|GetQuestLogSpecialItemCooldown]](<span class="apiarg">index</span>)
: [[API GetQuestLogSpecialItemInfo|GetQuestLogSpecialItemInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetQuestLogSpecialItemInfo|GetQuestLogSpecialItemInfo]](<span class="apiarg">index</span>)
: [[API GetQuestLogSpellLink|GetQuestLogSpellLink]](<span style="font-size:smaller; color:#ecbc2a">rewardSpellIndex</span>)
+
: [[API GetQuestLogSpellLink|GetQuestLogSpellLink]](<span class="apiarg">rewardSpellIndex</span>)
 
: [[API GetQuestLogTimeLeft|GetQuestLogTimeLeft]]() - Returns the seconds remaining on the current quest timer.
 
: [[API GetQuestLogTimeLeft|GetQuestLogTimeLeft]]() - Returns the seconds remaining on the current quest timer.
: [[API GetTreasurePickerItemInfo|GetTreasurePickerItemInfo]](<span style="font-size:smaller; color:#ecbc2a">index [, questID]</span>)
+
: [[API GetTreasurePickerItemInfo|GetTreasurePickerItemInfo]](<span class="apiarg">index [, questID]</span>)
: [[API IsQuestLogSpecialItemInRange|IsQuestLogSpecialItemInRange]](<span style="font-size:smaller; color:#ecbc2a">index [, target]</span>)
+
: [[API IsQuestLogSpecialItemInRange|IsQuestLogSpecialItemInRange]](<span class="apiarg">index [, target]</span>)
 
: [[API ProcessQuestLogRewardFactions|ProcessQuestLogRewardFactions]]()
 
: [[API ProcessQuestLogRewardFactions|ProcessQuestLogRewardFactions]]()
 
: [[API QuestLogPushQuest|QuestLogPushQuest]]() - Initiates the sharing of the currently viewed quest in the quest log.
 
: [[API QuestLogPushQuest|QuestLogPushQuest]]() - Initiates the sharing of the currently viewed quest in the quest log.
 
: [[API QuestLogRewardHasTreasurePicker|QuestLogRewardHasTreasurePicker]]()
 
: [[API QuestLogRewardHasTreasurePicker|QuestLogRewardHasTreasurePicker]]()
 
: [[API QuestLogShouldShowPortrait|QuestLogShouldShowPortrait]]()
 
: [[API QuestLogShouldShowPortrait|QuestLogShouldShowPortrait]]()
: [[API UseQuestLogSpecialItem|UseQuestLogSpecialItem]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API UseQuestLogSpecialItem|UseQuestLogSpecialItem]](<span class="apiarg">index</span>)
   
 
==== Gossip ====
 
==== Gossip ====
 
Gossip refers to interaction with an NPC.
 
Gossip refers to interaction with an NPC.
 
: [[API C_GossipInfo.CloseGossip|C_GossipInfo.CloseGossip]]() - Dismiss the gossip window.
 
: [[API C_GossipInfo.CloseGossip|C_GossipInfo.CloseGossip]]() - Dismiss the gossip window.
: [[API C_GossipInfo.ForceGossip|C_GossipInfo.ForceGossip]]() : <span style="font-size:smaller; color:#4ec9b0">forceGossip</span> - Returns whether the gossip text ''must'' be displayed.
+
: [[API C_GossipInfo.ForceGossip|C_GossipInfo.ForceGossip]]() : <span class="apiret">forceGossip</span> - Returns whether the gossip text ''must'' be displayed.
: [[API C_GossipInfo.GetActiveQuests|C_GossipInfo.GetActiveQuests]]() : <span style="font-size:smaller; color:#4ec9b0">info</span> - Retrieves a list of quests which can be turned in on the NPC you are talking to.
+
: [[API C_GossipInfo.GetActiveQuests|C_GossipInfo.GetActiveQuests]]() : <span class="apiret">info</span> - Retrieves a list of quests which can be turned in on the NPC you are talking to.
: [[API C_GossipInfo.GetAvailableQuests|C_GossipInfo.GetAvailableQuests]]() : <span style="font-size:smaller; color:#4ec9b0">info</span> - Retrieves a list of the available quests on the NPC you are talking to.
+
: [[API C_GossipInfo.GetAvailableQuests|C_GossipInfo.GetAvailableQuests]]() : <span class="apiret">info</span> - Retrieves a list of the available quests on the NPC you are talking to.
: [[API C_GossipInfo.GetCustomGossipDescriptionString|C_GossipInfo.GetCustomGossipDescriptionString]]() : <span style="font-size:smaller; color:#4ec9b0">description</span>
+
: [[API C_GossipInfo.GetCustomGossipDescriptionString|C_GossipInfo.GetCustomGossipDescriptionString]]() : <span class="apiret">description</span>
: [[API C_GossipInfo.GetNumActiveQuests|C_GossipInfo.GetNumActiveQuests]]() : <span style="font-size:smaller; color:#4ec9b0">numQuests</span> - Returns the number of active quests that you should eventually turn in to this NPC.
+
: [[API C_GossipInfo.GetNumActiveQuests|C_GossipInfo.GetNumActiveQuests]]() : <span class="apiret">numQuests</span> - Returns the number of active quests that you should eventually turn in to this NPC.
: [[API C_GossipInfo.GetNumAvailableQuests|C_GossipInfo.GetNumAvailableQuests]]() : <span style="font-size:smaller; color:#4ec9b0">numQuests</span> - Returns the number of quests (that you are not already on) offered by this NPC.
+
: [[API C_GossipInfo.GetNumAvailableQuests|C_GossipInfo.GetNumAvailableQuests]]() : <span class="apiret">numQuests</span> - Returns the number of quests (that you are not already on) offered by this NPC.
: [[API C_GossipInfo.GetNumOptions|C_GossipInfo.GetNumOptions]]() : <span style="font-size:smaller; color:#4ec9b0">numOptions</span> - Returns the number of conversation options available with this NPC.
+
: [[API C_GossipInfo.GetNumOptions|C_GossipInfo.GetNumOptions]]() : <span class="apiret">numOptions</span> - Returns the number of conversation options available with this NPC.
: [[API C_GossipInfo.GetOptions|C_GossipInfo.GetOptions]]() : <span style="font-size:smaller; color:#4ec9b0">info</span> - Retrieves a list of the available gossip items on the NPC you are talking to.
+
: [[API C_GossipInfo.GetOptions|C_GossipInfo.GetOptions]]() : <span class="apiret">info</span> - Retrieves a list of the available gossip items on the NPC you are talking to.
: [[API C_GossipInfo.GetPoiForUiMapID|C_GossipInfo.GetPoiForUiMapID]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">gossipPoiID</span> - Returns gossip poi for a map.
+
: [[API C_GossipInfo.GetPoiForUiMapID|C_GossipInfo.GetPoiForUiMapID]](<span class="apiarg">uiMapID</span>) : <span class="apiret">gossipPoiID</span> - Returns gossip poi for a map.
: [[API C_GossipInfo.GetPoiInfo|C_GossipInfo.GetPoiInfo]](<span style="font-size:smaller; color:#ecbc2a">uiMapID, gossipPoiID</span>) : <span style="font-size:smaller; color:#4ec9b0">gossipPoiInfo</span> - Returns gossip poi info.
+
: [[API C_GossipInfo.GetPoiInfo|C_GossipInfo.GetPoiInfo]](<span class="apiarg">uiMapID, gossipPoiID</span>) : <span class="apiret">gossipPoiInfo</span> - Returns gossip poi info.
: [[API C_GossipInfo.GetText|C_GossipInfo.GetText]]() : <span style="font-size:smaller; color:#4ec9b0">gossipText</span> - Retrieves the gossip text.
+
: [[API C_GossipInfo.GetText|C_GossipInfo.GetText]]() : <span class="apiret">gossipText</span> - Retrieves the gossip text.
 
: [[API C_GossipInfo.RefreshOptions|C_GossipInfo.RefreshOptions]]()
 
: [[API C_GossipInfo.RefreshOptions|C_GossipInfo.RefreshOptions]]()
: [[API C_GossipInfo.SelectActiveQuest|C_GossipInfo.SelectActiveQuest]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Selects an active quest.
+
: [[API C_GossipInfo.SelectActiveQuest|C_GossipInfo.SelectActiveQuest]](<span class="apiarg">index</span>) - Selects an active quest.
: [[API C_GossipInfo.SelectAvailableQuest|C_GossipInfo.SelectAvailableQuest]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Selects an available quest.
+
: [[API C_GossipInfo.SelectAvailableQuest|C_GossipInfo.SelectAvailableQuest]](<span class="apiarg">index</span>) - Selects an available quest.
: [[API C_GossipInfo.SelectOption|C_GossipInfo.SelectOption]](<span style="font-size:smaller; color:#ecbc2a">index [, text, confirmed]</span>) - Selects a gossip (conversation) option.
+
: [[API C_GossipInfo.SelectOption|C_GossipInfo.SelectOption]](<span class="apiarg">index [, text, confirmed]</span>) - Selects a gossip (conversation) option.
 
: [[API AcceptQuest|AcceptQuest]]() - Accept the specified quest.
 
: [[API AcceptQuest|AcceptQuest]]() - Accept the specified quest.
 
: [[API CloseQuest|CloseQuest]]() - Closes the shown quest.
 
: [[API CloseQuest|CloseQuest]]() - Closes the shown quest.
 
: [[API CompleteQuest|CompleteQuest]]() - Complete the specified quest.
 
: [[API CompleteQuest|CompleteQuest]]() - Complete the specified quest.
 
: [[API DeclineQuest|DeclineQuest]]() - Declines the currently offered quest.
 
: [[API DeclineQuest|DeclineQuest]]() - Declines the currently offered quest.
: [[API GetActiveLevel|GetActiveLevel]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Gets the level of an active quest (only available after QUEST_GREETING event).
+
: [[API GetActiveLevel|GetActiveLevel]](<span class="apiarg">index</span>) - Gets the level of an active quest (only available after QUEST_GREETING event).
: [[API GetActiveQuestID|GetActiveQuestID]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetActiveQuestID|GetActiveQuestID]](<span class="apiarg">index</span>)
: [[API GetActiveTitle|GetActiveTitle]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Gets the title of an active quest (only available after QUEST_GREETING event).
+
: [[API GetActiveTitle|GetActiveTitle]](<span class="apiarg">index</span>) - Gets the title of an active quest (only available after QUEST_GREETING event).
: [[API GetAvailableLevel|GetAvailableLevel]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Gets the level of an available quest (only available after QUEST_GREETING event).
+
: [[API GetAvailableLevel|GetAvailableLevel]](<span class="apiarg">index</span>) - Gets the level of an available quest (only available after QUEST_GREETING event).
: [[API GetAvailableQuestInfo|GetAvailableQuestInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns metadata (quest type) about an available quest.
+
: [[API GetAvailableQuestInfo|GetAvailableQuestInfo]](<span class="apiarg">index</span>) - Returns metadata (quest type) about an available quest.
: [[API GetAvailableTitle|GetAvailableTitle]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Gets the title of an available quest (only available after QUEST_GREETING event).
+
: [[API GetAvailableTitle|GetAvailableTitle]](<span class="apiarg">index</span>) - Gets the title of an available quest (only available after QUEST_GREETING event).
 
: [[API GetGreetingText|GetGreetingText]]()
 
: [[API GetGreetingText|GetGreetingText]]()
 
: [[API GetNumActiveQuests|GetNumActiveQuests]]() - Gets the number of currently active quests from this NPC (only available after QUEST_GREETING event).
 
: [[API GetNumActiveQuests|GetNumActiveQuests]]() - Gets the number of currently active quests from this NPC (only available after QUEST_GREETING event).
Line 3,722: Line 3,800:
 
: [[API GetQuestID|GetQuestID]]() - Returns the ID of the quest most recently displayed in a gossip frame, even after that frame is closed.
 
: [[API GetQuestID|GetQuestID]]() - Returns the ID of the quest most recently displayed in a gossip frame, even after that frame is closed.
 
: [[API GetQuestItemInfo|GetQuestItemInfo]]() - Returns basic information about the reward/choice/required item for quest currently in gossip window.
 
: [[API GetQuestItemInfo|GetQuestItemInfo]]() - Returns basic information about the reward/choice/required item for quest currently in gossip window.
: [[API GetQuestItemInfoLootType|GetQuestItemInfoLootType]](<span style="font-size:smaller; color:#ecbc2a">type, index</span>)
+
: [[API GetQuestItemInfoLootType|GetQuestItemInfoLootType]](<span class="apiarg">type, index</span>)
: [[API GetQuestItemLink|GetQuestItemLink]](<span style="font-size:smaller; color:#ecbc2a">type, index</span>) - Returns an [[itemLink]] for a selected quest reward/choice/required item for quest currently in gossip window.
+
: [[API GetQuestItemLink|GetQuestItemLink]](<span class="apiarg">type, index</span>) - Returns an [[itemLink]] for a selected quest reward/choice/required item for quest currently in gossip window.
 
: [[API GetQuestMoneyToGet|GetQuestMoneyToGet]]() - Returns amount of money required for quest currently displayed in gossip.
 
: [[API GetQuestMoneyToGet|GetQuestMoneyToGet]]() - Returns amount of money required for quest currently displayed in gossip.
 
: [[API GetQuestPortraitGiver|GetQuestPortraitGiver]]()
 
: [[API GetQuestPortraitGiver|GetQuestPortraitGiver]]()
Line 3,739: Line 3,817:
 
: [[API GetRewardXP|GetRewardXP]]() - Returns the amount of experience awarded by the currently displayed text.
 
: [[API GetRewardXP|GetRewardXP]]() - Returns the amount of experience awarded by the currently displayed text.
 
: [[API GetTitleText|GetTitleText]]() - Retrieves the title of the quest while talking to the NPC about it.
 
: [[API GetTitleText|GetTitleText]]() - Retrieves the title of the quest while talking to the NPC about it.
: [[API IsActiveQuestLegendary|IsActiveQuestLegendary]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API IsActiveQuestLegendary|IsActiveQuestLegendary]](<span class="apiarg">index</span>)
: [[API IsActiveQuestTrivial|IsActiveQuestTrivial]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API IsActiveQuestTrivial|IsActiveQuestTrivial]](<span class="apiarg">index</span>)
: [[API IsAvailableQuestTrivial|IsAvailableQuestTrivial]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API IsAvailableQuestTrivial|IsAvailableQuestTrivial]](<span class="apiarg">index</span>)
 
: [[API SelectActiveQuest|SelectActiveQuest]]() - Selects an active quest from the NPC (only available after QUEST_GREETING event).
 
: [[API SelectActiveQuest|SelectActiveQuest]]() - Selects an active quest from the NPC (only available after QUEST_GREETING event).
 
: [[API SelectAvailableQuest|SelectAvailableQuest]]() - Selects an available quest from the NPC (only available after QUEST_GREETING event).
 
: [[API SelectAvailableQuest|SelectAvailableQuest]]() - Selects an available quest from the NPC (only available after QUEST_GREETING event).
Line 3,747: Line 3,825:
 
==== Quest Choices ====
 
==== Quest Choices ====
 
Relates to multiple quest choices, for instance at the [[Hero's Call Board]] and [[Warchief's Command Board]].
 
Relates to multiple quest choices, for instance at the [[Hero's Call Board]] and [[Warchief's Command Board]].
: [[API C_PlayerChoice.GetPlayerChoiceInfo|C_PlayerChoice.GetPlayerChoiceInfo]]() : <span style="font-size:smaller; color:#4ec9b0">choiceInfo</span> - Returns information about a quest choice fork.
+
: [[API C_PlayerChoice.GetCurrentPlayerChoiceInfo|C_PlayerChoice.GetCurrentPlayerChoiceInfo]]() : <span class="apiret">choiceInfo</span>
: [[API C_PlayerChoice.GetPlayerChoiceOptionInfo|C_PlayerChoice.GetPlayerChoiceOptionInfo]](<span style="font-size:smaller; color:#ecbc2a">optionIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span> - Returns information about an offered quest choice option.
+
: [[API C_PlayerChoice.GetNumRerolls|C_PlayerChoice.GetNumRerolls]]() : <span class="apiret">numRerolls</span>
: [[API C_PlayerChoice.GetPlayerChoiceRewardInfo|C_PlayerChoice.GetPlayerChoiceRewardInfo]](<span style="font-size:smaller; color:#ecbc2a">rewardIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">rewardInfo</span> - Returns reward info on a quest option.
+
: [[API C_PlayerChoice.IsWaitingForPlayerChoiceResponse|C_PlayerChoice.IsWaitingForPlayerChoiceResponse]]() : <span class="apiret">isWaitingForResponse</span>
: [[API C_PlayerChoice.IsWaitingForPlayerChoiceResponse|C_PlayerChoice.IsWaitingForPlayerChoiceResponse]]() : <span style="font-size:smaller; color:#4ec9b0">isWaitingForResponse</span>
+
: [[API C_PlayerChoice.OnUIClosed|C_PlayerChoice.OnUIClosed]]()
  +
: [[API C_PlayerChoice.RequestRerollPlayerChoice|C_PlayerChoice.RequestRerollPlayerChoice]]()
: [[API ClosePlayerChoice|ClosePlayerChoice]]()
 
  +
: [[API C_PlayerChoice.SendPlayerChoiceResponse|C_PlayerChoice.SendPlayerChoiceResponse]](<span class="apiarg">responseID</span>)
 
: [[API GetNumQuestChoices|GetNumQuestChoices]]() - Returns the number of rewards available for choice for quest currently in gossip window.
 
: [[API GetNumQuestChoices|GetNumQuestChoices]]() - Returns the number of rewards available for choice for quest currently in gossip window.
 
: [[API GetQuestLogChoiceInfo|GetQuestLogChoiceInfo]]() - Returns a bunch of data about a quest reward choice from the quest log.
 
: [[API GetQuestLogChoiceInfo|GetQuestLogChoiceInfo]]() - Returns a bunch of data about a quest reward choice from the quest log.
  +
: <small>DEPRECATED</small> [[API ClosePlayerChoice|ClosePlayerChoice]]()
: [[API SendPlayerChoiceResponse|SendPlayerChoiceResponse]](<span style="font-size:smaller; color:#ecbc2a">responseID</span>)
 
  +
: <small>DEPRECATED</small> [[API C_PlayerChoice.GetPlayerChoiceInfo|C_PlayerChoice.GetPlayerChoiceInfo]]() : <span class="apiret">choiceInfo</span> - Returns information about a quest choice fork.
  +
: <small>DEPRECATED</small> [[API C_PlayerChoice.GetPlayerChoiceOptionInfo|C_PlayerChoice.GetPlayerChoiceOptionInfo]](<span class="apiarg">optionIndex</span>) : <span class="apiret">info</span> - Returns information about an offered quest choice option.
  +
: <small>DEPRECATED</small> [[API C_PlayerChoice.GetPlayerChoiceRewardInfo|C_PlayerChoice.GetPlayerChoiceRewardInfo]](<span class="apiarg">rewardIndex</span>) : <span class="apiret">rewardInfo</span> - Returns reward info on a quest option.
   
 
==== World Quests ====
 
==== World Quests ====
 
Task Quests refer to [[World Quest]]s or [[Quest#Bonus_Objectives|Bonus Objective]] quests.
 
Task Quests refer to [[World Quest]]s or [[Quest#Bonus_Objectives|Bonus Objective]] quests.
: [[API C_TaskQuest.DoesMapShowTaskQuestObjectives|C_TaskQuest.DoesMapShowTaskQuestObjectives]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">showsTaskQuestObjectives</span>
+
: [[API C_TaskQuest.DoesMapShowTaskQuestObjectives|C_TaskQuest.DoesMapShowTaskQuestObjectives]](<span class="apiarg">uiMapID</span>) : <span class="apiret">showsTaskQuestObjectives</span>
: [[API C_TaskQuest.GetQuestInfoByQuestID|C_TaskQuest.GetQuestInfoByQuestID]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">questTitle, factionID, capped, displayAsObjective</span>
+
: [[API C_TaskQuest.GetQuestInfoByQuestID|C_TaskQuest.GetQuestInfoByQuestID]](<span class="apiarg">questID</span>) : <span class="apiret">questTitle, factionID, capped, displayAsObjective</span>
: [[API C_TaskQuest.GetQuestLocation|C_TaskQuest.GetQuestLocation]](<span style="font-size:smaller; color:#ecbc2a">questID, uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">locationX, locationY</span>
+
: [[API C_TaskQuest.GetQuestLocation|C_TaskQuest.GetQuestLocation]](<span class="apiarg">questID, uiMapID</span>) : <span class="apiret">locationX, locationY</span>
: [[API C_TaskQuest.GetQuestProgressBarInfo|C_TaskQuest.GetQuestProgressBarInfo]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">progress</span>
+
: [[API C_TaskQuest.GetQuestProgressBarInfo|C_TaskQuest.GetQuestProgressBarInfo]](<span class="apiarg">questID</span>) : <span class="apiret">progress</span>
: [[API C_TaskQuest.GetQuestTimeLeftMinutes|C_TaskQuest.GetQuestTimeLeftMinutes]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">minutesLeft</span>
+
: [[API C_TaskQuest.GetQuestTimeLeftMinutes|C_TaskQuest.GetQuestTimeLeftMinutes]](<span class="apiarg">questID</span>) : <span class="apiret">minutesLeft</span>
: [[API C_TaskQuest.GetQuestTimeLeftSeconds|C_TaskQuest.GetQuestTimeLeftSeconds]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">secondsLeft</span>
+
: [[API C_TaskQuest.GetQuestTimeLeftSeconds|C_TaskQuest.GetQuestTimeLeftSeconds]](<span class="apiarg">questID</span>) : <span class="apiret">secondsLeft</span>
: [[API C_TaskQuest.GetQuestZoneID|C_TaskQuest.GetQuestZoneID]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">uiMapID</span>
+
: [[API C_TaskQuest.GetQuestZoneID|C_TaskQuest.GetQuestZoneID]](<span class="apiarg">questID</span>) : <span class="apiret">uiMapID</span>
: [[API C_TaskQuest.GetQuestsForPlayerByMapID|C_TaskQuest.GetQuestsForPlayerByMapID]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">taskPOIs</span>
+
: [[API C_TaskQuest.GetQuestsForPlayerByMapID|C_TaskQuest.GetQuestsForPlayerByMapID]](<span class="apiarg">uiMapID</span>) : <span class="apiret">taskPOIs</span>
: [[API C_TaskQuest.GetThreatQuests|C_TaskQuest.GetThreatQuests]]() : <span style="font-size:smaller; color:#4ec9b0">quests</span>
+
: [[API C_TaskQuest.GetThreatQuests|C_TaskQuest.GetThreatQuests]]() : <span class="apiret">quests</span>
: [[API C_TaskQuest.IsActive|C_TaskQuest.IsActive]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">active</span>
+
: [[API C_TaskQuest.IsActive|C_TaskQuest.IsActive]](<span class="apiarg">questID</span>) : <span class="apiret">active</span>
: [[API C_TaskQuest.RequestPreloadRewardData|C_TaskQuest.RequestPreloadRewardData]](<span style="font-size:smaller; color:#ecbc2a">questID</span>)
+
: [[API C_TaskQuest.RequestPreloadRewardData|C_TaskQuest.RequestPreloadRewardData]](<span class="apiarg">questID</span>)
: [[API C_QuestLog.IsQuestTask|C_QuestLog.IsQuestTask]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">isTask</span>
+
: [[API C_QuestLog.IsQuestTask|C_QuestLog.IsQuestTask]](<span class="apiarg">questID</span>) : <span class="apiret">isTask</span>
: [[API C_QuestLog.IsWorldQuest|C_QuestLog.IsWorldQuest]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">isWorldQuest</span>
+
: [[API C_QuestLog.IsWorldQuest|C_QuestLog.IsWorldQuest]](<span class="apiarg">questID</span>) : <span class="apiret">isWorldQuest</span>
 
: [[API GetNumQuestLogTasks|GetNumQuestLogTasks]]()
 
: [[API GetNumQuestLogTasks|GetNumQuestLogTasks]]()
: [[API GetTaskInfo|GetTaskInfo]](<span style="font-size:smaller; color:#ecbc2a">questID</span>)
+
: [[API GetTaskInfo|GetTaskInfo]](<span class="apiarg">questID</span>)
 
: [[API GetTaskPOIs|GetTaskPOIs]]()
 
: [[API GetTaskPOIs|GetTaskPOIs]]()
 
: [[API GetTasksTable|GetTasksTable]]()
 
: [[API GetTasksTable|GetTasksTable]]()
Line 3,780: Line 3,862:
 
: [[API C_AdventureMap.Close|C_AdventureMap.Close]]()
 
: [[API C_AdventureMap.Close|C_AdventureMap.Close]]()
 
: [[API C_AdventureMap.GetMapID|C_AdventureMap.GetMapID]]()
 
: [[API C_AdventureMap.GetMapID|C_AdventureMap.GetMapID]]()
: [[API C_AdventureMap.GetMapInsetDetailTileInfo|C_AdventureMap.GetMapInsetDetailTileInfo]](<span style="font-size:smaller; color:#ecbc2a">insetIndex, tileIndex</span>)
+
: [[API C_AdventureMap.GetMapInsetDetailTileInfo|C_AdventureMap.GetMapInsetDetailTileInfo]](<span class="apiarg">insetIndex, tileIndex</span>)
: [[API C_AdventureMap.GetMapInsetInfo|C_AdventureMap.GetMapInsetInfo]](<span style="font-size:smaller; color:#ecbc2a">insetIndex</span>)
+
: [[API C_AdventureMap.GetMapInsetInfo|C_AdventureMap.GetMapInsetInfo]](<span class="apiarg">insetIndex</span>)
 
: [[API C_AdventureMap.GetNumMapInsets|C_AdventureMap.GetNumMapInsets]]()
 
: [[API C_AdventureMap.GetNumMapInsets|C_AdventureMap.GetNumMapInsets]]()
 
: [[API C_AdventureMap.GetNumQuestOffers|C_AdventureMap.GetNumQuestOffers]]()
 
: [[API C_AdventureMap.GetNumQuestOffers|C_AdventureMap.GetNumQuestOffers]]()
 
: [[API C_AdventureMap.GetNumZoneChoices|C_AdventureMap.GetNumZoneChoices]]()
 
: [[API C_AdventureMap.GetNumZoneChoices|C_AdventureMap.GetNumZoneChoices]]()
: [[API C_AdventureMap.GetQuestInfo|C_AdventureMap.GetQuestInfo]](<span style="font-size:smaller; color:#ecbc2a">questID</span>)
+
: [[API C_AdventureMap.GetQuestInfo|C_AdventureMap.GetQuestInfo]](<span class="apiarg">questID</span>)
: [[API C_AdventureMap.GetQuestOfferInfo|C_AdventureMap.GetQuestOfferInfo]](<span style="font-size:smaller; color:#ecbc2a">offerIndex</span>)
+
: [[API C_AdventureMap.GetQuestOfferInfo|C_AdventureMap.GetQuestOfferInfo]](<span class="apiarg">offerIndex</span>)
: [[API C_AdventureMap.GetZoneChoiceInfo|C_AdventureMap.GetZoneChoiceInfo]](<span style="font-size:smaller; color:#ecbc2a">choiceIndex</span>)
+
: [[API C_AdventureMap.GetZoneChoiceInfo|C_AdventureMap.GetZoneChoiceInfo]](<span class="apiarg">choiceIndex</span>)
: [[API C_AdventureMap.StartQuest|C_AdventureMap.StartQuest]](<span style="font-size:smaller; color:#ecbc2a">questID</span>)
+
: [[API C_AdventureMap.StartQuest|C_AdventureMap.StartQuest]](<span class="apiarg">questID</span>)
 
: [[API QuestIsFromAdventureMap|QuestIsFromAdventureMap]]()
 
: [[API QuestIsFromAdventureMap|QuestIsFromAdventureMap]]()
   
 
==== War Campaigns ====
 
==== War Campaigns ====
 
[[War Campaign]]s were added in [[Patch 8.0.1]]
 
[[War Campaign]]s were added in [[Patch 8.0.1]]
: [[API C_CampaignInfo.GetAvailableCampaigns|C_CampaignInfo.GetAvailableCampaigns]]() : <span style="font-size:smaller; color:#4ec9b0">campaignIDs</span>
+
: [[API C_CampaignInfo.GetAvailableCampaigns|C_CampaignInfo.GetAvailableCampaigns]]() : <span class="apiret">campaignIDs</span>
: [[API C_CampaignInfo.GetCampaignChapterInfo|C_CampaignInfo.GetCampaignChapterInfo]](<span style="font-size:smaller; color:#ecbc2a">campaignChapterID</span>) : <span style="font-size:smaller; color:#4ec9b0">campaignChapterInfo</span>
+
: [[API C_CampaignInfo.GetCampaignChapterInfo|C_CampaignInfo.GetCampaignChapterInfo]](<span class="apiarg">campaignChapterID</span>) : <span class="apiret">campaignChapterInfo</span>
: [[API C_CampaignInfo.GetCampaignID|C_CampaignInfo.GetCampaignID]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">campaignID</span>
+
: [[API C_CampaignInfo.GetCampaignID|C_CampaignInfo.GetCampaignID]](<span class="apiarg">questID</span>) : <span class="apiret">campaignID</span>
: [[API C_CampaignInfo.GetCampaignInfo|C_CampaignInfo.GetCampaignInfo]](<span style="font-size:smaller; color:#ecbc2a">campaignID</span>) : <span style="font-size:smaller; color:#4ec9b0">campaignInfo</span>
+
: [[API C_CampaignInfo.GetCampaignInfo|C_CampaignInfo.GetCampaignInfo]](<span class="apiarg">campaignID</span>) : <span class="apiret">campaignInfo</span>
: [[API C_CampaignInfo.GetChapterIDs|C_CampaignInfo.GetChapterIDs]](<span style="font-size:smaller; color:#ecbc2a">campaignID</span>) : <span style="font-size:smaller; color:#4ec9b0">chapterIDs</span>
+
: [[API C_CampaignInfo.GetChapterIDs|C_CampaignInfo.GetChapterIDs]](<span class="apiarg">campaignID</span>) : <span class="apiret">chapterIDs</span>
: [[API C_CampaignInfo.GetCurrentChapterID|C_CampaignInfo.GetCurrentChapterID]](<span style="font-size:smaller; color:#ecbc2a">campaignID</span>) : <span style="font-size:smaller; color:#4ec9b0">currentChapterID</span>
+
: [[API C_CampaignInfo.GetCurrentChapterID|C_CampaignInfo.GetCurrentChapterID]](<span class="apiarg">campaignID</span>) : <span class="apiret">currentChapterID</span>
: [[API C_CampaignInfo.GetFailureReason|C_CampaignInfo.GetFailureReason]](<span style="font-size:smaller; color:#ecbc2a">campaignID</span>) : <span style="font-size:smaller; color:#4ec9b0">failureReason</span>
+
: [[API C_CampaignInfo.GetFailureReason|C_CampaignInfo.GetFailureReason]](<span class="apiarg">campaignID</span>) : <span class="apiret">failureReason</span>
: [[API C_CampaignInfo.GetState|C_CampaignInfo.GetState]](<span style="font-size:smaller; color:#ecbc2a">campaignID</span>) : <span style="font-size:smaller; color:#4ec9b0">state</span>
+
: [[API C_CampaignInfo.GetState|C_CampaignInfo.GetState]](<span class="apiarg">campaignID</span>) : <span class="apiret">state</span>
: [[API C_CampaignInfo.IsCampaignQuest|C_CampaignInfo.IsCampaignQuest]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">isCampaignQuest</span>
+
: [[API C_CampaignInfo.IsCampaignQuest|C_CampaignInfo.IsCampaignQuest]](<span class="apiarg">questID</span>) : <span class="apiret">isCampaignQuest</span>
: [[API C_CampaignInfo.UsesNormalQuestIcons|C_CampaignInfo.UsesNormalQuestIcons]](<span style="font-size:smaller; color:#ecbc2a">campaignID</span>) : <span style="font-size:smaller; color:#4ec9b0">useNormalQuestIcons</span>
+
: [[API C_CampaignInfo.UsesNormalQuestIcons|C_CampaignInfo.UsesNormalQuestIcons]](<span class="apiarg">campaignID</span>) : <span class="apiret">useNormalQuestIcons</span>
: [[API C_LoreText.RequestLoreTextForCampaignID|C_LoreText.RequestLoreTextForCampaignID]](<span style="font-size:smaller; color:#ecbc2a">campaignID</span>)
+
: [[API C_LoreText.RequestLoreTextForCampaignID|C_LoreText.RequestLoreTextForCampaignID]](<span class="apiarg">campaignID</span>)
   
 
==== Talking Head ====
 
==== Talking Head ====
Line 3,812: Line 3,894:
 
: [[API C_TalkingHead.IgnoreCurrentTalkingHead|C_TalkingHead.IgnoreCurrentTalkingHead]]()
 
: [[API C_TalkingHead.IgnoreCurrentTalkingHead|C_TalkingHead.IgnoreCurrentTalkingHead]]()
 
: [[API C_TalkingHead.IsCurrentTalkingHeadIgnored|C_TalkingHead.IsCurrentTalkingHeadIgnored]]()
 
: [[API C_TalkingHead.IsCurrentTalkingHeadIgnored|C_TalkingHead.IsCurrentTalkingHeadIgnored]]()
: [[API C_TalkingHead.SetConversationsDeferred|C_TalkingHead.SetConversationsDeferred]](<span style="font-size:smaller; color:#ecbc2a">deferred</span>)
+
: [[API C_TalkingHead.SetConversationsDeferred|C_TalkingHead.SetConversationsDeferred]](<span class="apiarg">deferred</span>)
   
 
=== Races ===
 
=== Races ===
: [[API C_CreatureInfo.GetFactionInfo|C_CreatureInfo.GetFactionInfo]](<span style="font-size:smaller; color:#ecbc2a">raceID</span>) : <span style="font-size:smaller; color:#4ec9b0">factionInfo</span> - Returns the faction name for a race.
+
: [[API C_CreatureInfo.GetFactionInfo|C_CreatureInfo.GetFactionInfo]](<span class="apiarg">raceID</span>) : <span class="apiret">factionInfo</span> - Returns the faction name for a race.
: [[API C_CreatureInfo.GetRaceInfo|C_CreatureInfo.GetRaceInfo]](<span style="font-size:smaller; color:#ecbc2a">raceID</span>) : <span style="font-size:smaller; color:#4ec9b0">raceInfo</span> - Returns both localized and locale-independent race names.
+
: [[API C_CreatureInfo.GetRaceInfo|C_CreatureInfo.GetRaceInfo]](<span class="apiarg">raceID</span>) : <span class="apiret">raceInfo</span> - Returns both localized and locale-independent race names.
 
: [[API NeutralPlayerSelectFaction|NeutralPlayerSelectFaction]]() - Allows Pandaren to choose a faction.
 
: [[API NeutralPlayerSelectFaction|NeutralPlayerSelectFaction]]() - Allows Pandaren to choose a faction.
 
[[Allied Races]] were added in [[Patch 7.3.5]]
 
[[Allied Races]] were added in [[Patch 7.3.5]]
 
: [[API C_AlliedRaces.ClearAlliedRaceDetailsGiver|C_AlliedRaces.ClearAlliedRaceDetailsGiver]]()
 
: [[API C_AlliedRaces.ClearAlliedRaceDetailsGiver|C_AlliedRaces.ClearAlliedRaceDetailsGiver]]()
: [[API C_AlliedRaces.GetAllRacialAbilitiesFromID|C_AlliedRaces.GetAllRacialAbilitiesFromID]](<span style="font-size:smaller; color:#ecbc2a">raceID</span>) : <span style="font-size:smaller; color:#4ec9b0">allDisplayInfo</span> - Returns the racial spells from an allied race.
+
: [[API C_AlliedRaces.GetAllRacialAbilitiesFromID|C_AlliedRaces.GetAllRacialAbilitiesFromID]](<span class="apiarg">raceID</span>) : <span class="apiret">allDisplayInfo</span> - Returns the racial spells from an allied race.
: [[API C_AlliedRaces.GetRaceInfoByID|C_AlliedRaces.GetRaceInfoByID]](<span style="font-size:smaller; color:#ecbc2a">raceID</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span> - Returns allied race info.
+
: [[API C_AlliedRaces.GetRaceInfoByID|C_AlliedRaces.GetRaceInfoByID]](<span class="apiarg">raceID</span>) : <span class="apiret">info</span> - Returns allied race info.
: [[API UnitAlliedRaceInfo|UnitAlliedRaceInfo]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) : <span style="font-size:smaller; color:#4ec9b0">isAlliedRace, hasHeritageArmorUnlocked</span>
+
: [[API UnitAlliedRaceInfo|UnitAlliedRaceInfo]](<span class="apiarg">unit</span>) : <span class="apiret">isAlliedRace, hasHeritageArmorUnlocked</span>
   
 
=== Realms ===
 
=== Realms ===
Line 3,828: Line 3,910:
 
: [[API GetAutoCompleteRealms|GetAutoCompleteRealms]]()
 
: [[API GetAutoCompleteRealms|GetAutoCompleteRealms]]()
 
: [[API GetCurrentRegion|GetCurrentRegion]]()
 
: [[API GetCurrentRegion|GetCurrentRegion]]()
: [[API GetCurrentRegionName|GetCurrentRegionName]]() : <span style="font-size:smaller; color:#4ec9b0">regionName</span>
+
: [[API GetCurrentRegionName|GetCurrentRegionName]]() : <span class="apiret">regionName</span>
 
: [[API GetNormalizedRealmName|GetNormalizedRealmName]]() - Returns the name of the server, but omitting spaces and hyphens.
 
: [[API GetNormalizedRealmName|GetNormalizedRealmName]]() - Returns the name of the server, but omitting spaces and hyphens.
 
: [[API GetRealmID|GetRealmID]]()
 
: [[API GetRealmID|GetRealmID]]()
Line 3,836: Line 3,918:
 
=== Reputation ===
 
=== Reputation ===
 
Relates to [[Reputation]].
 
Relates to [[Reputation]].
: [[API C_Reputation.GetFactionParagonInfo|C_Reputation.GetFactionParagonInfo]](<span style="font-size:smaller; color:#ecbc2a">factionID</span>) : <span style="font-size:smaller; color:#4ec9b0">currentValue, threshold, rewardQuestID, hasRewardPending, ...</span> - Gets Paragon information.
+
: [[API C_Reputation.GetFactionParagonInfo|C_Reputation.GetFactionParagonInfo]](<span class="apiarg">factionID</span>) : <span class="apiret">currentValue, threshold, rewardQuestID, hasRewardPending, ...</span> - Gets Paragon information.
: [[API C_Reputation.IsFactionParagon|C_Reputation.IsFactionParagon]](<span style="font-size:smaller; color:#ecbc2a">factionID</span>) : <span style="font-size:smaller; color:#4ec9b0">hasParagon</span> - Returns true/false if a factionID is a Paragon.
+
: [[API C_Reputation.IsFactionParagon|C_Reputation.IsFactionParagon]](<span class="apiarg">factionID</span>) : <span class="apiret">hasParagon</span> - Returns true/false if a factionID is a Paragon.
: [[API C_Reputation.RequestFactionParagonPreloadRewardData|C_Reputation.RequestFactionParagonPreloadRewardData]](<span style="font-size:smaller; color:#ecbc2a">factionID</span>) - Queries the server to pre-load Paragon reward data.
+
: [[API C_Reputation.RequestFactionParagonPreloadRewardData|C_Reputation.RequestFactionParagonPreloadRewardData]](<span class="apiarg">factionID</span>) - Queries the server to pre-load Paragon reward data.
: [[API CollapseFactionHeader|CollapseFactionHeader]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Collapse a faction header row.
+
: [[API CollapseFactionHeader|CollapseFactionHeader]](<span class="apiarg">index</span>) - Collapse a faction header row.
 
: [[API CollapseAllFactionHeaders|CollapseAllFactionHeaders]]() - Collapse all faction header rows.
 
: [[API CollapseAllFactionHeaders|CollapseAllFactionHeaders]]() - Collapse all faction header rows.
: [[API ExpandFactionHeader|ExpandFactionHeader]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Expand a faction header row.
+
: [[API ExpandFactionHeader|ExpandFactionHeader]](<span class="apiarg">index</span>) - Expand a faction header row.
 
: [[API ExpandAllFactionHeaders|ExpandAllFactionHeaders]]() - Expand all faction header rows.
 
: [[API ExpandAllFactionHeaders|ExpandAllFactionHeaders]]() - Expand all faction header rows.
: [[API FactionToggleAtWar|FactionToggleAtWar]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Toggle the At War flag for a faction.
+
: [[API FactionToggleAtWar|FactionToggleAtWar]](<span class="apiarg">index</span>) - Toggle the At War flag for a faction.
: [[API GetFactionInfo|GetFactionInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Gets details for a specific faction/faction header.
+
: [[API GetFactionInfo|GetFactionInfo]](<span class="apiarg">index</span>) - Gets details for a specific faction/faction header.
: [[API GetFactionInfoByID|GetFactionInfoByID]](<span style="font-size:smaller; color:#ecbc2a">factionID</span>) - Gets details for a specific faction by factionID.
+
: [[API GetFactionInfoByID|GetFactionInfoByID]](<span class="apiarg">factionID</span>) - Gets details for a specific faction by factionID.
: [[API GetFriendshipReputation|GetFriendshipReputation]](<span style="font-size:smaller; color:#ecbc2a">factionID</span>) - Gets details about an NPC friend.
+
: [[API GetFriendshipReputation|GetFriendshipReputation]](<span class="apiarg">factionID</span>) - Gets details about an NPC friend.
: [[API GetFriendshipReputationRanks|GetFriendshipReputationRanks]](<span style="font-size:smaller; color:#ecbc2a">factionID</span>) - Gets rank data about an NPC friend.
+
: [[API GetFriendshipReputationRanks|GetFriendshipReputationRanks]](<span class="apiarg">factionID</span>) - Gets rank data about an NPC friend.
 
: [[API GetNumFactions|GetNumFactions]]() - Returns the number of lines in the faction display.
 
: [[API GetNumFactions|GetNumFactions]]() - Returns the number of lines in the faction display.
 
: [[API GetSelectedFaction|GetSelectedFaction]]() - Returns the row index of the currently selected faction in reputation window.
 
: [[API GetSelectedFaction|GetSelectedFaction]]() - Returns the row index of the currently selected faction in reputation window.
 
: [[API GetWatchedFactionInfo|GetWatchedFactionInfo]]() - Returns information about the currently watched faction.
 
: [[API GetWatchedFactionInfo|GetWatchedFactionInfo]]() - Returns information about the currently watched faction.
: [[API IsFactionInactive|IsFactionInactive]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns true if the faction is marked inactive.
+
: [[API IsFactionInactive|IsFactionInactive]](<span class="apiarg">index</span>) - Returns true if the faction is marked inactive.
: [[API SetFactionActive|SetFactionActive]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Remove a faction from inactive group.
+
: [[API SetFactionActive|SetFactionActive]](<span class="apiarg">index</span>) - Remove a faction from inactive group.
: [[API SetFactionInactive|SetFactionInactive]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Move a faction to inactive group.
+
: [[API SetFactionInactive|SetFactionInactive]](<span class="apiarg">index</span>) - Move a faction to inactive group.
: [[API SetSelectedFaction|SetSelectedFaction]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Sets the currently selected faction in reputation window.
+
: [[API SetSelectedFaction|SetSelectedFaction]](<span class="apiarg">index</span>) - Sets the currently selected faction in reputation window.
: [[API SetWatchedFactionIndex|SetWatchedFactionIndex]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Sets which faction should be watched in Blizzard reputation bar.
+
: [[API SetWatchedFactionIndex|SetWatchedFactionIndex]](<span class="apiarg">index</span>) - Sets which faction should be watched in Blizzard reputation bar.
   
 
=== Spells ===
 
=== Spells ===
: [[API C_Spell.DoesSpellExist|C_Spell.DoesSpellExist]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>) : <span style="font-size:smaller; color:#4ec9b0">spellExists</span>
+
: [[API C_Spell.DoesSpellExist|C_Spell.DoesSpellExist]](<span class="apiarg">spellID</span>) : <span class="apiret">spellExists</span>
: [[API C_Spell.IsSpellDataCached|C_Spell.IsSpellDataCached]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>) : <span style="font-size:smaller; color:#4ec9b0">isCached</span>
+
: [[API C_Spell.IsSpellDataCached|C_Spell.IsSpellDataCached]](<span class="apiarg">spellID</span>) : <span class="apiret">isCached</span>
: [[API C_Spell.RequestLoadSpellData|C_Spell.RequestLoadSpellData]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>)
+
: [[API C_Spell.RequestLoadSpellData|C_Spell.RequestLoadSpellData]](<span class="apiarg">spellID</span>)
: [[API C_ZoneAbility.GetActiveAbilities|C_ZoneAbility.GetActiveAbilities]]() : <span style="font-size:smaller; color:#4ec9b0">zoneAbilities</span>
+
: [[API C_ZoneAbility.GetActiveAbilities|C_ZoneAbility.GetActiveAbilities]]() : <span class="apiret">zoneAbilities</span>
: [[API AcceptSpellConfirmationPrompt|AcceptSpellConfirmationPrompt]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>)
+
: [[API AcceptSpellConfirmationPrompt|AcceptSpellConfirmationPrompt]](<span class="apiarg">spellID</span>)
: <small>NOCOMBAT</small> [[API CancelSpellByName|CancelSpellByName]](<span style="font-size:smaller; color:#ecbc2a">name</span>)
+
: <small>NOCOMBAT</small> [[API CancelSpellByName|CancelSpellByName]](<span class="apiarg">name</span>)
: <small>PROTECTED</small> [[API CastSpellByID|CastSpellByID]](<span style="font-size:smaller; color:#ecbc2a">spellID [, target]</span>)
+
: <small>PROTECTED</small> [[API CastSpellByID|CastSpellByID]](<span class="apiarg">spellID [, target]</span>)
: <small>PROTECTED</small> [[API CastSpellByName|CastSpellByName]](<span style="font-size:smaller; color:#ecbc2a">name [, target]</span>) - Cast the specified spell by display name.
+
: <small>PROTECTED</small> [[API CastSpellByName|CastSpellByName]](<span class="apiarg">name [, target]</span>) - Cast the specified spell by display name.
: <small>PROTECTED</small> [[API CastSpell|CastSpell]](<span style="font-size:smaller; color:#ecbc2a">spellIndex, bookType</span>) - Cast the spell in the specified spell book slot.
+
: <small>PROTECTED</small> [[API CastSpell|CastSpell]](<span class="apiarg">spellIndex, bookType</span>) - Cast the spell in the specified spell book slot.
: [[API DeclineSpellConfirmationPrompt|DeclineSpellConfirmationPrompt]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>)
+
: [[API DeclineSpellConfirmationPrompt|DeclineSpellConfirmationPrompt]](<span class="apiarg">spellID</span>)
: [[API DoesSpellExist|DoesSpellExist]](<span style="font-size:smaller; color:#ecbc2a">spellName</span>)
+
: [[API DoesSpellExist|DoesSpellExist]](<span class="apiarg">spellName</span>)
: [[API FindBaseSpellByID|FindBaseSpellByID]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>)
+
: [[API FindBaseSpellByID|FindBaseSpellByID]](<span class="apiarg">spellID</span>)
: [[API FindSpellOverrideByID|FindSpellOverrideByID]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>)
+
: [[API FindSpellOverrideByID|FindSpellOverrideByID]](<span class="apiarg">spellID</span>)
 
: [[API GetMaxSpellStartRecoveryOffset|GetMaxSpellStartRecoveryOffset]]()
 
: [[API GetMaxSpellStartRecoveryOffset|GetMaxSpellStartRecoveryOffset]]()
: [[API GetSchoolString|GetSchoolString]](<span style="font-size:smaller; color:#ecbc2a">schoolMask</span>)
+
: [[API GetSchoolString|GetSchoolString]](<span class="apiarg">schoolMask</span>)
: [[API GetSpellAutocast|GetSpellAutocast]](<span style="font-size:smaller; color:#ecbc2a">spellName | spellId, bookType</span>) - Check whether the specified spell autocasts or not.
+
: [[API GetSpellAutocast|GetSpellAutocast]](<span class="apiarg">spellName | spellId, bookType</span>) - Check whether the specified spell autocasts or not.
: [[API GetSpellBaseCooldown|GetSpellBaseCooldown]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>)
+
: [[API GetSpellBaseCooldown|GetSpellBaseCooldown]](<span class="apiarg">spellID</span>)
: [[API GetSpellCharges|GetSpellCharges]](<span style="font-size:smaller; color:#ecbc2a">spellId | spellName</span>) - Returns information about the charges of a charge-accumulating player ability.
+
: [[API GetSpellCharges|GetSpellCharges]](<span class="apiarg">spellId | spellName</span>) - Returns information about the charges of a charge-accumulating player ability.
 
: [[API GetSpellConfirmationPromptsInfo|GetSpellConfirmationPromptsInfo]]()
 
: [[API GetSpellConfirmationPromptsInfo|GetSpellConfirmationPromptsInfo]]()
: [[API GetSpellCooldown|GetSpellCooldown]](<span style="font-size:smaller; color:#ecbc2a">spellName | spellID, bookType</span>) - Retrieves data on the cooldown of a specific spell.
+
: [[API GetSpellCooldown|GetSpellCooldown]](<span class="apiarg">spellName | spellID, bookType</span>) - Retrieves data on the cooldown of a specific spell.
 
: [[API GetSpellCount|GetSpellCount]]()
 
: [[API GetSpellCount|GetSpellCount]]()
: [[API GetSpellDescription|GetSpellDescription]](<span style="font-size:smaller; color:#ecbc2a">spellId</span>) - Returns the spell description.
+
: [[API GetSpellDescription|GetSpellDescription]](<span class="apiarg">spellId</span>) - Returns the spell description.
: [[API GetSpellInfo|GetSpellInfo]](<span style="font-size:smaller; color:#ecbc2a">spellId | spellName | spellLink</span>) - Returns the spell's name, rank, iconFileDataID, cast time, min and max ranges, and spellID.
+
: [[API GetSpellInfo|GetSpellInfo]](<span class="apiarg">spellId</span>) : <span class="apiret">name, rank, icon, castTime, minRange, maxRange, spellID</span> - Returns spell info.
: [[API GetSpellLink|GetSpellLink]](<span style="font-size:smaller; color:#ecbc2a">spellName, spellRank</span>) - Returns the spell's link.
+
: [[API GetSpellLink|GetSpellLink]](<span class="apiarg">spellName, spellRank</span>) - Returns the spell's link.
: [[API GetSpellPowerCost|GetSpellPowerCost]](<span style="font-size:smaller; color:#ecbc2a">spellId | spellName</span>) - Returns information about a spell's resource cost.
+
: [[API GetSpellPowerCost|GetSpellPowerCost]](<span class="apiarg">spellId | spellName</span>) - Returns information about a spell's resource cost.
 
: [[API GetSpellQueueWindow|GetSpellQueueWindow]]()
 
: [[API GetSpellQueueWindow|GetSpellQueueWindow]]()
 
: [[API GetSpellSubtext|GetSpellSubtext]]()
 
: [[API GetSpellSubtext|GetSpellSubtext]]()
: [[API GetSpellTexture|GetSpellTexture]](<span style="font-size:smaller; color:#ecbc2a">spellId | spellName</span>) - Returns the fileId used for the spell's icon.
+
: [[API GetSpellTexture|GetSpellTexture]](<span class="apiarg">spellId | spellName</span>) - Returns the fileId used for the spell's icon.
 
: [[API GetSpellTradeSkillLink|GetSpellTradeSkillLink]]()
 
: [[API GetSpellTradeSkillLink|GetSpellTradeSkillLink]]()
: [[API IsAttackSpell|IsAttackSpell]](<span style="font-size:smaller; color:#ecbc2a">spell</span>) - Returns 1 if the spell is the "Attack" spell.
+
: [[API IsAttackSpell|IsAttackSpell]](<span class="apiarg">spell</span>) - Returns 1 if the spell is the "Attack" spell.
: [[API IsAutoRepeatSpell|IsAutoRepeatSpell]](<span style="font-size:smaller; color:#ecbc2a">spell</span>)
+
: [[API IsAutoRepeatSpell|IsAutoRepeatSpell]](<span class="apiarg">spell</span>)
 
: [[API IsConsumableSpell|IsConsumableSpell]]()
 
: [[API IsConsumableSpell|IsConsumableSpell]]()
: [[API IsCurrentSpell|IsCurrentSpell]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>) - Returns true if the spell is currently being casted by the player or is placed in the queue to be casted next. False otherwise.
+
: [[API IsCurrentSpell|IsCurrentSpell]](<span class="apiarg">spellID</span>) - Returns true if the spell is currently being casted by the player or is placed in the queue to be casted next. False otherwise.
: [[API IsHarmfulSpell|IsHarmfulSpell]](<span style="font-size:smaller; color:#ecbc2a">spellSlot</span>) - Returns whether a spell can be used against hostile units
+
: [[API IsHarmfulSpell|IsHarmfulSpell]](<span class="apiarg">spellSlot</span>) - Returns whether a spell can be used against hostile units
: [[API IsHelpfulSpell|IsHelpfulSpell]](<span style="font-size:smaller; color:#ecbc2a">spellSlot</span>) - Returns whether an item can be used on the player or friendly units
+
: [[API IsHelpfulSpell|IsHelpfulSpell]](<span class="apiarg">spellSlot</span>) - Returns whether an item can be used on the player or friendly units
: [[API IsPassiveSpell|IsPassiveSpell]](<span style="font-size:smaller; color:#ecbc2a">spellID, bookType</span>) - Returns whether the icon in your spellbook is a Passive ability. Formerly IsSpellPassive(spell).
+
: [[API IsPassiveSpell|IsPassiveSpell]](<span class="apiarg">spellID, bookType</span>) - Returns whether the icon in your spellbook is a Passive ability. Formerly IsSpellPassive(spell).
: [[API IsPlayerSpell|IsPlayerSpell]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>)
+
: [[API IsPlayerSpell|IsPlayerSpell]](<span class="apiarg">spellID</span>)
: [[API IsSpellInRange|IsSpellInRange]](<span style="font-size:smaller; color:#ecbc2a">spellName [, unit]</span>) - Is nil for no valid target, 0 for out of range, 1 for in range.
+
: [[API IsSpellInRange|IsSpellInRange]](<span class="apiarg">spellName [, unit]</span>) - Is nil for no valid target, 0 for out of range, 1 for in range.
: [[API IsSpellKnown|IsSpellKnown]](<span style="font-size:smaller; color:#ecbc2a">spellID, isPetSpell</span>) - Returns whether the player (or pet) knows the given spell.
+
: [[API IsSpellKnown|IsSpellKnown]](<span class="apiarg">spellID, isPetSpell</span>) - Returns whether the player (or pet) knows the given spell.
: [[API IsSpellKnownOrOverridesKnown|IsSpellKnownOrOverridesKnown]](<span style="font-size:smaller; color:#ecbc2a">spellID [, isPet]</span>)
+
: [[API IsSpellKnownOrOverridesKnown|IsSpellKnownOrOverridesKnown]](<span class="apiarg">spellID [, isPet]</span>)
: [[API IsSpellOverlayed|IsSpellOverlayed]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>) - Returns whether the spell is currently affected by a proc (glow highlighting).
+
: [[API IsSpellOverlayed|IsSpellOverlayed]](<span class="apiarg">spellID</span>) - Returns whether the spell is currently affected by a proc (glow highlighting).
: [[API IsUsableSpell|IsUsableSpell]](<span style="font-size:smaller; color:#ecbc2a">spellName | spellID | spellIndex, bookType</span>) - Determines whether a spell can be used by the player character.
+
: [[API IsUsableSpell|IsUsableSpell]](<span class="apiarg">spellName | spellID | spellIndex, bookType</span>) - Determines whether a spell can be used by the player character.
 
: [[API SpellCancelQueuedSpell|SpellCancelQueuedSpell]]()
 
: [[API SpellCancelQueuedSpell|SpellCancelQueuedSpell]]()
 
: [[API SpellCanTargetItem|SpellCanTargetItem]]()
 
: [[API SpellCanTargetItem|SpellCanTargetItem]]()
 
: [[API SpellCanTargetItemID|SpellCanTargetItemID]]()
 
: [[API SpellCanTargetItemID|SpellCanTargetItemID]]()
 
: [[API SpellCanTargetQuest|SpellCanTargetQuest]]()
 
: [[API SpellCanTargetQuest|SpellCanTargetQuest]]()
: [[API SpellCanTargetUnit|SpellCanTargetUnit]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns true if the spell awaiting target selection can be cast on the specified unit.
+
: [[API SpellCanTargetUnit|SpellCanTargetUnit]](<span class="apiarg">unit</span>) - Returns true if the spell awaiting target selection can be cast on the specified unit.
: [[API SpellGetVisibilityInfo|SpellGetVisibilityInfo]](<span style="font-size:smaller; color:#ecbc2a">spellID, visType</span>)
+
: [[API SpellGetVisibilityInfo|SpellGetVisibilityInfo]](<span class="apiarg">spellID, visType</span>)
: [[API SpellHasRange|SpellHasRange]](<span style="font-size:smaller; color:#ecbc2a">spell</span>) - Returns true if the specified spell has a ranged effect (i.e. requires a target).
+
: [[API SpellHasRange|SpellHasRange]](<span class="apiarg">spell</span>) - Returns true if the specified spell has a ranged effect (i.e. requires a target).
: [[API SpellIsAlwaysShown|SpellIsAlwaysShown]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>)
+
: [[API SpellIsAlwaysShown|SpellIsAlwaysShown]](<span class="apiarg">spellID</span>)
: [[API SpellIsPriorityAura|SpellIsPriorityAura]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>)
+
: [[API SpellIsPriorityAura|SpellIsPriorityAura]](<span class="apiarg">spellID</span>)
: [[API SpellIsSelfBuff|SpellIsSelfBuff]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>)
+
: [[API SpellIsSelfBuff|SpellIsSelfBuff]](<span class="apiarg">spellID</span>)
 
: [[API SpellIsTargeting|SpellIsTargeting]]() - Returns true if a spell has been cast and is awaiting target selection.
 
: [[API SpellIsTargeting|SpellIsTargeting]]() - Returns true if a spell has been cast and is awaiting target selection.
 
: <small>PROTECTED</small> [[API SpellStopCasting|SpellStopCasting]]() - Stops the current spellcast.
 
: <small>PROTECTED</small> [[API SpellStopCasting|SpellStopCasting]]() - Stops the current spellcast.
 
: <small>PROTECTED</small> [[API SpellStopTargeting|SpellStopTargeting]]() - Cancels the spell awaiting target selection.
 
: <small>PROTECTED</small> [[API SpellStopTargeting|SpellStopTargeting]]() - Cancels the spell awaiting target selection.
: <small>PROTECTED</small> [[API SpellTargetUnit|SpellTargetUnit]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Casts the spell awaiting target selection on the specified unit.
+
: <small>PROTECTED</small> [[API SpellTargetUnit|SpellTargetUnit]](<span class="apiarg">unit</span>) - Casts the spell awaiting target selection on the specified unit.
: <small>PROTECTED</small> [[API SpellTargetItem|SpellTargetItem]](<span style="font-size:smaller; color:#ecbc2a">item</span>)
+
: <small>PROTECTED</small> [[API SpellTargetItem|SpellTargetItem]](<span class="apiarg">item</span>)
: <small>UI</small> [[API QueryCastSequence|QueryCastSequence]](<span style="font-size:smaller; color:#ecbc2a">sequence</span>) - Returns index, item, spell for the spell/item that will be used next if the cast sequence is executed.
+
: <small>UI</small> [[API QueryCastSequence|QueryCastSequence]](<span class="apiarg">sequence</span>) - Returns index, item, spell for the spell/item that will be used next if the cast sequence is executed.
   
 
==== Spell Book ====
 
==== Spell Book ====
: [[API C_SpellBook.ContainsAnyDisenchantSpell|C_SpellBook.ContainsAnyDisenchantSpell]]() : <span style="font-size:smaller; color:#4ec9b0">contains</span>
+
: [[API C_SpellBook.ContainsAnyDisenchantSpell|C_SpellBook.ContainsAnyDisenchantSpell]]() : <span class="apiret">contains</span>
: [[API C_SpellBook.GetSkillLineIndexByID|C_SpellBook.GetSkillLineIndexByID]](<span style="font-size:smaller; color:#ecbc2a">skillLineID</span>) : <span style="font-size:smaller; color:#4ec9b0">skillIndex</span>
+
: [[API C_SpellBook.GetCurrentLevelSpells|C_SpellBook.GetCurrentLevelSpells]](<span class="apiarg">level</span>) : <span class="apiret">spellIDs</span>
: [[API C_SpellBook.IsSpellDisabled|C_SpellBook.IsSpellDisabled]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>) : <span style="font-size:smaller; color:#4ec9b0">disabled</span>
+
: [[API C_SpellBook.GetSkillLineIndexByID|C_SpellBook.GetSkillLineIndexByID]](<span class="apiarg">skillLineID</span>) : <span class="apiret">skillIndex</span>
: [[API FindSpellBookSlotBySpellID|FindSpellBookSlotBySpellID]](<span style="font-size:smaller; color:#ecbc2a">spellID [, isPet]</span>)
+
: [[API C_SpellBook.GetSpellInfo|C_SpellBook.GetSpellInfo]](<span class="apiarg">spellID</span>) : <span class="apiret">spellInfo</span>
  +
: [[API C_SpellBook.GetSpellLinkFromSpellID|C_SpellBook.GetSpellLinkFromSpellID]](<span class="apiarg">spellID</span>) : <span class="apiret">spellLink</span>
  +
: [[API C_SpellBook.IsSpellDisabled|C_SpellBook.IsSpellDisabled]](<span class="apiarg">spellID</span>) : <span class="apiret">disabled</span>
  +
: [[API FindSpellBookSlotBySpellID|FindSpellBookSlotBySpellID]](<span class="apiarg">spellID [, isPet]</span>)
 
: [[API GetNumSpellTabs|GetNumSpellTabs]]() - Returns the total number of tabs in the user's spellbook.
 
: [[API GetNumSpellTabs|GetNumSpellTabs]]() - Returns the total number of tabs in the user's spellbook.
: [[API GetSpellAvailableLevel|GetSpellAvailableLevel]](<span style="font-size:smaller; color:#ecbc2a">spellSlot</span>)
+
: [[API GetSpellAvailableLevel|GetSpellAvailableLevel]](<span class="apiarg">spellSlot</span>)
: [[API GetSpellBookItemInfo|GetSpellBookItemInfo]](<span style="font-size:smaller; color:#ecbc2a">spellName or index, bookType</span>) - Returns the spell's type and spellID for a spell in the player's spellbook.
+
: [[API GetSpellBookItemInfo|GetSpellBookItemInfo]](<span class="apiarg">spellName or index, bookType</span>) - Returns the spell's type and spellID for a spell in the player's spellbook.
: [[API GetSpellBookItemName|GetSpellBookItemName]](<span style="font-size:smaller; color:#ecbc2a">spellName or index, bookType</span>) - Returns the spell name and spell rank for a spell in the player's spellbook.
+
: [[API GetSpellBookItemName|GetSpellBookItemName]](<span class="apiarg">spellName or index, bookType</span>) - Returns the spell name and spell rank for a spell in the player's spellbook.
: [[API GetSpellBookItemTexture|GetSpellBookItemTexture]](<span style="font-size:smaller; color:#ecbc2a">spellName or index, bookType</span>) - Returns the spell icon fileId for a spell in the player's spellbook.
+
: [[API GetSpellBookItemTexture|GetSpellBookItemTexture]](<span class="apiarg">spellName or index, bookType</span>) - Returns the spell icon fileId for a spell in the player's spellbook.
 
: [[API GetSpellLevelLearned|GetSpellLevelLearned]]()
 
: [[API GetSpellLevelLearned|GetSpellLevelLearned]]()
: [[API GetSpellTabInfo|GetSpellTabInfo]](<span style="font-size:smaller; color:#ecbc2a">spellbookTabNum</span>) - Returns information about the specified spellbook tab.
+
: [[API GetSpellTabInfo|GetSpellTabInfo]](<span class="apiarg">spellbookTabNum</span>) - Returns information about the specified spellbook tab.
: [[API IsSelectedSpellBookItem|IsSelectedSpellBookItem]](<span style="font-size:smaller; color:#ecbc2a">spellSlot</span>)
+
: [[API IsSelectedSpellBookItem|IsSelectedSpellBookItem]](<span class="apiarg">spellSlot</span>)
   
 
=== Store ===
 
=== Store ===
 
The [[In-Game Store]] was added in [[Patch 5.4.0]]
 
The [[In-Game Store]] was added in [[Patch 5.4.0]]
: [[API C_StorePublic.DoesGroupHavePurchaseableProducts|C_StorePublic.DoesGroupHavePurchaseableProducts]](<span style="font-size:smaller; color:#ecbc2a">groupID</span>) : <span style="font-size:smaller; color:#4ec9b0">hasPurchaseableProducts</span>
+
: [[API C_StorePublic.DoesGroupHavePurchaseableProducts|C_StorePublic.DoesGroupHavePurchaseableProducts]](<span class="apiarg">groupID</span>) : <span class="apiret">hasPurchaseableProducts</span>
: [[API C_StorePublic.IsDisabledByParentalControls|C_StorePublic.IsDisabledByParentalControls]]() : <span style="font-size:smaller; color:#4ec9b0">disabled</span> - Returns whether access to the in-game shop is disabled by parental controls.
+
: [[API C_StorePublic.IsDisabledByParentalControls|C_StorePublic.IsDisabledByParentalControls]]() : <span class="apiret">disabled</span> - Returns whether access to the in-game shop is disabled by parental controls.
: [[API C_StorePublic.IsEnabled|C_StorePublic.IsEnabled]]() : <span style="font-size:smaller; color:#4ec9b0">enabled</span> - Returns whether the In-Game Store is available for the player.
+
: [[API C_StorePublic.IsEnabled|C_StorePublic.IsEnabled]]() : <span class="apiret">enabled</span> - Returns whether the In-Game Store is available for the player.
 
[[Character Boost]]s were added in [[Patch 5.4.7]]
 
[[Character Boost]]s were added in [[Patch 5.4.7]]
 
: <small>PROTECTED</small> [[API C_CharacterServices.AssignUpgradeDistribution|C_CharacterServices.AssignUpgradeDistribution]]()
 
: <small>PROTECTED</small> [[API C_CharacterServices.AssignUpgradeDistribution|C_CharacterServices.AssignUpgradeDistribution]]()
Line 3,960: Line 4,045:
 
: [[API C_SharedCharacterServices.IsPurchaseIDPendingUpgrade|C_SharedCharacterServices.IsPurchaseIDPendingUpgrade]]()
 
: [[API C_SharedCharacterServices.IsPurchaseIDPendingUpgrade|C_SharedCharacterServices.IsPurchaseIDPendingUpgrade]]()
 
: [[API C_SharedCharacterServices.QueryClassTrialBoostResult|C_SharedCharacterServices.QueryClassTrialBoostResult]]()
 
: [[API C_SharedCharacterServices.QueryClassTrialBoostResult|C_SharedCharacterServices.QueryClassTrialBoostResult]]()
: [[API C_SharedCharacterServices.SetCharacterUpgradePopupSeen|C_SharedCharacterServices.SetCharacterUpgradePopupSeen]](<span style="font-size:smaller; color:#ecbc2a">expansion_id</span>)
+
: [[API C_SharedCharacterServices.SetCharacterUpgradePopupSeen|C_SharedCharacterServices.SetCharacterUpgradePopupSeen]](<span class="apiarg">expansion_id</span>)
: [[API C_SharedCharacterServices.SetExpansionTrialPopupSeen|C_SharedCharacterServices.SetExpansionTrialPopupSeen]](<span style="font-size:smaller; color:#ecbc2a">expansion_id</span>)
+
: [[API C_SharedCharacterServices.SetExpansionTrialPopupSeen|C_SharedCharacterServices.SetExpansionTrialPopupSeen]](<span class="apiarg">expansion_id</span>)
: [[API C_SharedCharacterServices.SetPromotionalPopupSeen|C_SharedCharacterServices.SetPromotionalPopupSeen]](<span style="font-size:smaller; color:#ecbc2a">seen</span>)
+
: [[API C_SharedCharacterServices.SetPromotionalPopupSeen|C_SharedCharacterServices.SetPromotionalPopupSeen]](<span class="apiarg">seen</span>)
   
 
=== System ===
 
=== System ===
 
: <small>HW</small> [[API C_UI.Reload|C_UI.Reload]]() - Reloads the UI from source files.
 
: <small>HW</small> [[API C_UI.Reload|C_UI.Reload]]() - Reloads the UI from source files.
: [[API C_System.GetFrameStack|C_System.GetFrameStack]]() : <span style="font-size:smaller; color:#4ec9b0">objects</span>
+
: [[API C_System.GetFrameStack|C_System.GetFrameStack]]() : <span class="apiret">objects</span>
 
: [[API CancelLogout|CancelLogout]]() - Cancels the logout timer (from camping or quitting).
 
: [[API CancelLogout|CancelLogout]]() - Cancels the logout timer (from camping or quitting).
: <small>PROTECTED</small> [[API CopyToClipboard|CopyToClipboard]](<span style="font-size:smaller; color:#ecbc2a">text</span>) - Copies text to the clipboard.
+
: <small>PROTECTED</small> [[API CopyToClipboard|CopyToClipboard]](<span class="apiarg">text</span>) - Copies text to the clipboard.
 
: [[API DetectWowMouse|DetectWowMouse]]() - Attempts to detect the world of warcraft MMO mouse.
 
: [[API DetectWowMouse|DetectWowMouse]]() - Attempts to detect the world of warcraft MMO mouse.
 
: [[API FlashClientIcon|FlashClientIcon]]() - Flashes the game client icon in the Operating System.
 
: [[API FlashClientIcon|FlashClientIcon]]() - Flashes the game client icon in the Operating System.
Line 3,987: Line 4,072:
 
: [[API IsUsingFixedTimeStep|IsUsingFixedTimeStep]]() - Whether the UI is updating at a fixed rate independent of the framerate.
 
: [[API IsUsingFixedTimeStep|IsUsingFixedTimeStep]]() - Whether the UI is updating at a fixed rate independent of the framerate.
 
: [[API IsWindowsClient|IsWindowsClient]]() - Returns true if WoW is being run on Windows.
 
: [[API IsWindowsClient|IsWindowsClient]]() - Returns true if WoW is being run on Windows.
: [[API LoadURLIndex|LoadURLIndex]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API LoadURLIndex|LoadURLIndex]](<span class="apiarg">index</span>)
 
: <small>PROTECTED</small> [[API Logout|Logout]]() - Logs the user out of the game.
 
: <small>PROTECTED</small> [[API Logout|Logout]]() - Logs the user out of the game.
 
: [[API ProcessExceptionClient|ProcessExceptionClient]]()
 
: [[API ProcessExceptionClient|ProcessExceptionClient]]()
 
: <small>PROTECTED</small> [[API Quit|Quit]]() - Quits the game.
 
: <small>PROTECTED</small> [[API Quit|Quit]]() - Quits the game.
 
: [[API Screenshot|Screenshot]]() - Takes a screenshot.
 
: [[API Screenshot|Screenshot]]() - Takes a screenshot.
: [[API SendSystemMessage|SendSystemMessage]](<span style="font-size:smaller; color:#ecbc2a">message</span>) - Fires a CHAT_MSG_SYSTEM event for yourself.
+
: [[API SendSystemMessage|SendSystemMessage]](<span class="apiarg">message</span>) - Fires a CHAT_MSG_SYSTEM event for yourself.
 
: <small>PROTECTED</small> [[API Stuck|Stuck]]() - Informs the game engine that the player is Stuck.
 
: <small>PROTECTED</small> [[API Stuck|Stuck]]() - Informs the game engine that the player is Stuck.
 
: <small>UI</small> [[API ToggleFramerate|ToggleFramerate]]() - Show/Hide the FPS.
 
: <small>UI</small> [[API ToggleFramerate|ToggleFramerate]]() - Show/Hide the FPS.
Line 4,006: Line 4,091:
 
==== Console ====
 
==== Console ====
 
Relates to [[Console variables]] and commands.
 
Relates to [[Console variables]] and commands.
: [[API C_CVar.GetCVar|C_CVar.GetCVar]](<span style="font-size:smaller; color:#ecbc2a">name</span>) : <span style="font-size:smaller; color:#4ec9b0">value</span> - Returns the current value of a console variable.
+
: [[API C_CVar.GetCVar|C_CVar.GetCVar]](<span class="apiarg">name</span>) : <span class="apiret">value</span> - Returns the current value of a console variable.
: [[API C_CVar.GetCVarBitfield|C_CVar.GetCVarBitfield]](<span style="font-size:smaller; color:#ecbc2a">name, index</span>) : <span style="font-size:smaller; color:#4ec9b0">value</span> - Returns the bitfield of a console variable.
+
: [[API C_CVar.GetCVarBitfield|C_CVar.GetCVarBitfield]](<span class="apiarg">name, index</span>) : <span class="apiret">value</span> - Returns the bitfield of a console variable.
: [[API C_CVar.GetCVarBool|C_CVar.GetCVarBool]](<span style="font-size:smaller; color:#ecbc2a">name</span>) : <span style="font-size:smaller; color:#4ec9b0">value</span> - Returns the boolean value of a console variable.
+
: [[API C_CVar.GetCVarBool|C_CVar.GetCVarBool]](<span class="apiarg">name</span>) : <span class="apiret">value</span> - Returns the boolean value of a console variable.
: [[API C_CVar.GetCVarDefault|C_CVar.GetCVarDefault]](<span style="font-size:smaller; color:#ecbc2a">name</span>) : <span style="font-size:smaller; color:#4ec9b0">defaultValue</span> - Returns the default value of a console variable.
+
: [[API C_CVar.GetCVarDefault|C_CVar.GetCVarDefault]](<span class="apiarg">name</span>) : <span class="apiret">defaultValue</span> - Returns the default value of a console variable.
: [[API C_CVar.RegisterCVar|C_CVar.RegisterCVar]](<span style="font-size:smaller; color:#ecbc2a">name [, value]</span>) - Registers a custom cvar (temporarily).
+
: [[API C_CVar.RegisterCVar|C_CVar.RegisterCVar]](<span class="apiarg">name [, value]</span>) - Registers a custom cvar (temporarily).
 
: [[API C_CVar.ResetTestCVars|C_CVar.ResetTestCVars]]() - Resets the {{api|t=c|ActionCam}} cvars.
 
: [[API C_CVar.ResetTestCVars|C_CVar.ResetTestCVars]]() - Resets the {{api|t=c|ActionCam}} cvars.
: [[API C_CVar.SetCVar|C_CVar.SetCVar]](<span style="font-size:smaller; color:#ecbc2a">name [, value, scriptCVar]</span>) : <span style="font-size:smaller; color:#4ec9b0">success</span> - Sets a console variable.
+
: [[API C_CVar.SetCVar|C_CVar.SetCVar]](<span class="apiarg">name [, value, scriptCVar]</span>) : <span class="apiret">success</span> - Sets a console variable.
: [[API C_CVar.SetCVarBitfield|C_CVar.SetCVarBitfield]](<span style="font-size:smaller; color:#ecbc2a">name, index, value [, scriptCVar]</span>) : <span style="font-size:smaller; color:#4ec9b0">success</span> - Sets the bitfield of a console variable.
+
: [[API C_CVar.SetCVarBitfield|C_CVar.SetCVarBitfield]](<span class="apiarg">name, index, value [, scriptCVar]</span>) : <span class="apiret">success</span> - Sets the bitfield of a console variable.
: [[API C_Console.GetAllCommands|C_Console.GetAllCommands]]() : <span style="font-size:smaller; color:#4ec9b0">commands</span> - Returns all console variables and commands.
+
: [[API C_Console.GetAllCommands|C_Console.GetAllCommands]]() : <span class="apiret">commands</span> - Returns all console variables and commands.
: [[API C_Console.GetColorFromType|C_Console.GetColorFromType]](<span style="font-size:smaller; color:#ecbc2a">colorType</span>) : <span style="font-size:smaller; color:#4ec9b0">color</span> - Returns color info for a color type.
+
: [[API C_Console.GetColorFromType|C_Console.GetColorFromType]](<span class="apiarg">colorType</span>) : <span class="apiret">color</span> - Returns color info for a color type.
: [[API C_Console.GetFontHeight|C_Console.GetFontHeight]]() : <span style="font-size:smaller; color:#4ec9b0">fontHeightInPixels</span> - Returns the console's currently used font height.
+
: [[API C_Console.GetFontHeight|C_Console.GetFontHeight]]() : <span class="apiret">fontHeightInPixels</span> - Returns the console's currently used font height.
: [[API C_Console.PrintAllMatchingCommands|C_Console.PrintAllMatchingCommands]](<span style="font-size:smaller; color:#ecbc2a">partialCommandText</span>) - Prints all matching console commands.
+
: [[API C_Console.PrintAllMatchingCommands|C_Console.PrintAllMatchingCommands]](<span class="apiarg">partialCommandText</span>) - Prints all matching console commands.
: [[API C_Console.SetFontHeight|C_Console.SetFontHeight]](<span style="font-size:smaller; color:#ecbc2a">fontHeightInPixels</span>) - Sets the console's font height.
+
: [[API C_Console.SetFontHeight|C_Console.SetFontHeight]](<span class="apiarg">fontHeightInPixels</span>) - Sets the console's font height.
: [[API ConsoleAddMessage|ConsoleAddMessage]](<span style="font-size:smaller; color:#ecbc2a">message</span>) - Prints a message to the console window.
+
: [[API ConsoleAddMessage|ConsoleAddMessage]](<span class="apiarg">message</span>) - Prints a message to the console window.
: [[API ConsoleExec|ConsoleExec]](<span style="font-size:smaller; color:#ecbc2a">command</span>) - Execute a console command.
+
: [[API ConsoleExec|ConsoleExec]](<span class="apiarg">command</span>) - Execute a console command.
: [[API GetCVarInfo|GetCVarInfo]](<span style="font-size:smaller; color:#ecbc2a">name</span>) - Returns information on a console variable.
+
: [[API GetCVarInfo|GetCVarInfo]](<span class="apiarg">name</span>) - Returns information on a console variable.
: [[API SetConsoleKey|SetConsoleKey]](<span style="font-size:smaller; color:#ecbc2a">key</span>) - Sets the console key (normally ~ ).
+
: [[API SetConsoleKey|SetConsoleKey]](<span class="apiarg">key</span>) - Sets the console key (normally ~ ).
   
 
==== Date & Time ====
 
==== Date & Time ====
: [[API C_DateAndTime.AdjustTimeByDays|C_DateAndTime.AdjustTimeByDays]](<span style="font-size:smaller; color:#ecbc2a">date, days</span>) : <span style="font-size:smaller; color:#4ec9b0">newDate</span> - Returns the date after a given amount of days.
+
: [[API C_DateAndTime.AdjustTimeByDays|C_DateAndTime.AdjustTimeByDays]](<span class="apiarg">date, days</span>) : <span class="apiret">newDate</span> - Returns the date after a given amount of days.
: [[API C_DateAndTime.AdjustTimeByMinutes|C_DateAndTime.AdjustTimeByMinutes]](<span style="font-size:smaller; color:#ecbc2a">date, minutes</span>) : <span style="font-size:smaller; color:#4ec9b0">newDate</span> - Returns the date after a given amount of minutes.
+
: [[API C_DateAndTime.AdjustTimeByMinutes|C_DateAndTime.AdjustTimeByMinutes]](<span class="apiarg">date, minutes</span>) : <span class="apiret">newDate</span> - Returns the date after a given amount of minutes.
: [[API C_DateAndTime.CompareCalendarTime|C_DateAndTime.CompareCalendarTime]](<span style="font-size:smaller; color:#ecbc2a">lhsCalendarTime, rhsCalendarTime</span>) : <span style="font-size:smaller; color:#4ec9b0">comparison</span> - Compares two dates with eachother.
+
: [[API C_DateAndTime.CompareCalendarTime|C_DateAndTime.CompareCalendarTime]](<span class="apiarg">lhsCalendarTime, rhsCalendarTime</span>) : <span class="apiret">comparison</span> - Compares two dates with eachother.
: [[API C_DateAndTime.GetCalendarTimeFromEpoch|C_DateAndTime.GetCalendarTimeFromEpoch]](<span style="font-size:smaller; color:#ecbc2a">epoch</span>) : <span style="font-size:smaller; color:#4ec9b0">date</span> - Returns the date of a given amount of time since the UNIX epoch.
+
: [[API C_DateAndTime.GetCalendarTimeFromEpoch|C_DateAndTime.GetCalendarTimeFromEpoch]](<span class="apiarg">epoch</span>) : <span class="apiret">date</span> - Returns the date of a given amount of time since the UNIX epoch.
: [[API C_DateAndTime.GetCurrentCalendarTime|C_DateAndTime.GetCurrentCalendarTime]]() : <span style="font-size:smaller; color:#4ec9b0">date</span> - Returns the realm's current date and time.
+
: [[API C_DateAndTime.GetCurrentCalendarTime|C_DateAndTime.GetCurrentCalendarTime]]() : <span class="apiret">date</span> - Returns the realm's current date and time.
: [[API C_DateAndTime.GetSecondsUntilDailyReset|C_DateAndTime.GetSecondsUntilDailyReset]]() : <span style="font-size:smaller; color:#4ec9b0">seconds</span>
+
: [[API C_DateAndTime.GetSecondsUntilDailyReset|C_DateAndTime.GetSecondsUntilDailyReset]]() : <span class="apiret">seconds</span>
: [[API C_DateAndTime.GetSecondsUntilWeeklyReset|C_DateAndTime.GetSecondsUntilWeeklyReset]]() : <span style="font-size:smaller; color:#4ec9b0">seconds</span>
+
: [[API C_DateAndTime.GetSecondsUntilWeeklyReset|C_DateAndTime.GetSecondsUntilWeeklyReset]]() : <span class="apiret">seconds</span>
: [[API C_DateAndTime.GetServerTimeLocal|C_DateAndTime.GetServerTimeLocal]]() : <span style="font-size:smaller; color:#4ec9b0">serverTimeLocal</span> - Returns the server's Unix time offset by the server's UTC timezone.
+
: [[API C_DateAndTime.GetServerTimeLocal|C_DateAndTime.GetServerTimeLocal]]() : <span class="apiret">serverTimeLocal</span> - Returns the server's Unix time offset by the server's UTC timezone.
 
: [[API GetGameTime|GetGameTime]]() - Returns the realm's current time in hours and minutes.
 
: [[API GetGameTime|GetGameTime]]() - Returns the realm's current time in hours and minutes.
 
: [[API GetLocalGameTime|GetLocalGameTime]]()
 
: [[API GetLocalGameTime|GetLocalGameTime]]()
Line 4,040: Line 4,125:
 
: [[API GetTimePreciseSec|GetTimePreciseSec]]() - Returns a monotonic timestamp in seconds, with millisecond precision.
 
: [[API GetTimePreciseSec|GetTimePreciseSec]]() - Returns a monotonic timestamp in seconds, with millisecond precision.
 
: [[API RequestTimePlayed|RequestTimePlayed]]() - Request a summary of time played from the server.
 
: [[API RequestTimePlayed|RequestTimePlayed]]() - Request a summary of time played from the server.
: <small>Lua</small> [[API date|date]](<span style="font-size:smaller; color:#ecbc2a">format, time</span>) - Returns the current date according to the user's machine.
+
: <small>Lua</small> [[API date|date]](<span class="apiarg">format, time</span>) - Returns the current date according to the user's machine.
: <small>Lua</small> [[API time|time]](<span style="font-size:smaller; color:#ecbc2a">table</span>) - Returns a timestamp for the specified time or the current Unix time.
+
: <small>Lua</small> [[API time|time]](<span class="apiarg">table</span>) - Returns a timestamp for the specified time or the current Unix time.
   
 
==== Timers ====
 
==== Timers ====
: [[API C_Timer.After|C_Timer.After]](<span style="font-size:smaller; color:#ecbc2a">duration, callback</span>) - Runs callback after given duration.
+
: [[API C_Timer.After|C_Timer.After]](<span class="apiarg">duration, callback</span>) - Runs callback after given duration.
: <small>UI</small> [[API C_Timer.NewTimer|C_Timer.NewTimer]](<span style="font-size:smaller; color:#ecbc2a">duration, callback</span>) - Runs callback after given duration. (Cancelable)
+
: <small>UI</small> [[API C_Timer.NewTimer|C_Timer.NewTimer]](<span class="apiarg">duration, callback</span>) - Runs callback after given duration. (Cancelable)
: <small>UI</small> [[API C_Timer.NewTicker|C_Timer.NewTicker]](<span style="font-size:smaller; color:#ecbc2a">duration, callback [, iterations]</span>) - Runs callback multiple times iterating every given duration. (Cancelable)
+
: <small>UI</small> [[API C_Timer.NewTicker|C_Timer.NewTicker]](<span class="apiarg">duration, callback [, iterations]</span>) - Runs callback multiple times iterating every given duration. (Cancelable)
   
 
==== Debugging ====
 
==== Debugging ====
 
: [[API AreDangerousScriptsAllowed|AreDangerousScriptsAllowed]]()
 
: [[API AreDangerousScriptsAllowed|AreDangerousScriptsAllowed]]()
 
: [[API DumpMovementCapture|DumpMovementCapture]]() - Used in the protected Commentator UI.
 
: [[API DumpMovementCapture|DumpMovementCapture]]() - Used in the protected Commentator UI.
: [[API FrameXML_Debug|FrameXML_Debug]](<span style="font-size:smaller; color:#ecbc2a">flag</span>) - Sets FrameXML logging state which is output to "/WoW Folder/Logs/FrameXML.log".
+
: [[API FrameXML_Debug|FrameXML_Debug]](<span class="apiarg">flag</span>) - Sets FrameXML logging state which is output to "/WoW Folder/Logs/FrameXML.log".
 
: [[API GetCurrentEventID|GetCurrentEventID]]()
 
: [[API GetCurrentEventID|GetCurrentEventID]]()
: [[API GetEventTime|GetEventTime]](<span style="font-size:smaller; color:#ecbc2a">eventProfileIndex</span>)
+
: [[API GetEventTime|GetEventTime]](<span class="apiarg">eventProfileIndex</span>)
: [[API GetGameMessageInfo|GetGameMessageInfo]](<span style="font-size:smaller; color:#ecbc2a">gameMessageType</span>) - Returns the error message for an id.
+
: [[API GetGameMessageInfo|GetGameMessageInfo]](<span class="apiarg">gameMessageType</span>) - Returns the error message for an id.
 
: [[API HandleAtlasMemberCommand|HandleAtlasMemberCommand]]()
 
: [[API HandleAtlasMemberCommand|HandleAtlasMemberCommand]]()
: [[API RunScript|RunScript]](<span style="font-size:smaller; color:#ecbc2a">script</span>) - Execute "script" as a block of Lua code.
+
: [[API RunScript|RunScript]](<span class="apiarg">script</span>) - Execute "script" as a block of Lua code.
 
: [[API ScriptsDisallowedForBeta|ScriptsDisallowedForBeta]]()
 
: [[API ScriptsDisallowedForBeta|ScriptsDisallowedForBeta]]()
 
: [[API SetAllowDangerousScripts|SetAllowDangerousScripts]]()
 
: [[API SetAllowDangerousScripts|SetAllowDangerousScripts]]()
 
: [[API ToggleAnimKitDisplay|ToggleAnimKitDisplay]]()
 
: [[API ToggleAnimKitDisplay|ToggleAnimKitDisplay]]()
 
: [[API ToggleDebugAIDisplay|ToggleDebugAIDisplay]]()
 
: [[API ToggleDebugAIDisplay|ToggleDebugAIDisplay]]()
: [[API addframetext|addframetext]](<span style="font-size:smaller; color:#ecbc2a">text</span>)
+
: [[API addframetext|addframetext]](<span class="apiarg">text</span>)
 
: [[API debuglocals|debuglocals]]()
 
: [[API debuglocals|debuglocals]]()
 
: [[API debugprofilestart|debugprofilestart]]() - Starts a timer for profiling during debugging.
 
: [[API debugprofilestart|debugprofilestart]]() - Starts a timer for profiling during debugging.
 
: [[API debugprofilestop|debugprofilestop]]() - Returns the time in milliseconds since the last call to debugprofilestart()
 
: [[API debugprofilestop|debugprofilestop]]() - Returns the time in milliseconds since the last call to debugprofilestart()
: [[API debugstack|debugstack]](<span style="font-size:smaller; color:#ecbc2a">start, count1, count2</span>) - Returns a string representation of the current calling stack.
+
: [[API debugstack|debugstack]](<span class="apiarg">start, count1, count2</span>) - Returns a string representation of the current calling stack.
 
: [[API geterrorhandler|geterrorhandler]]() - Returns the currently set error handler.
 
: [[API geterrorhandler|geterrorhandler]]() - Returns the currently set error handler.
: [[API seterrorhandler|seterrorhandler]](<span style="font-size:smaller; color:#ecbc2a">errFunc</span>) - Set the error handler to the given parameter.
+
: [[API seterrorhandler|seterrorhandler]](<span class="apiarg">errFunc</span>) - Set the error handler to the given parameter.
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/DevTools_Dump DevTools_Dump](<span style="font-size:smaller; color:#ecbc2a">value [, startKey]</span>) - Pretty prints a variable or value.
+
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/DevTools_Dump DevTools_Dump](<span class="apiarg">value [, startKey]</span>) - Pretty prints a variable or value. Equivalent to the [[MACRO dump|<code>/dump</code> macro]].
: <small>UI</small> [[API print|print]](<span style="font-size:smaller; color:#ecbc2a">...</span>) - Calls the current print output handler with the provided values; by default printing the values to the default chat frame.
+
: <small>UI</small> [[API print|print]](<span class="apiarg">...</span>) - Calls the current print output handler with the provided values; by default printing the values to the default chat frame.
 
: <small>UI</small> [[API getprinthandler|getprinthandler]]() - Returns the function currently handling print() output.
 
: <small>UI</small> [[API getprinthandler|getprinthandler]]() - Returns the function currently handling print() output.
: <small>UI</small> [[API setprinthandler|setprinthandler]](<span style="font-size:smaller; color:#ecbc2a">func</span>) - Changes the function handling print() output.
+
: <small>UI</small> [[API setprinthandler|setprinthandler]](<span class="apiarg">func</span>) - Changes the function handling print() output.
: <small>UI</small> [[API message|message]](<span style="font-size:smaller; color:#ecbc2a">text</span>) - Displays a message box with your text message and an "Okay" button.
+
: <small>UI</small> [[API message|message]](<span class="apiarg">text</span>) - Displays a message box with your text message and an "Okay" button.
 
: <small>PROTECTED</small> [[API C_Debug.DashboardIsEnabled|C_Debug.DashboardIsEnabled]]()
 
: <small>PROTECTED</small> [[API C_Debug.DashboardIsEnabled|C_Debug.DashboardIsEnabled]]()
: <small>PROTECTED</small> [[API C_Debug.GetAllPortLocsForMap|C_Debug.GetAllPortLocsForMap]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>)
+
: <small>PROTECTED</small> [[API C_Debug.GetAllPortLocsForMap|C_Debug.GetAllPortLocsForMap]](<span class="apiarg">uiMapID</span>)
: <small>PROTECTED</small> [[API C_Debug.GetMapDebugObjects|C_Debug.GetMapDebugObjects]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>)
+
: <small>PROTECTED</small> [[API C_Debug.GetMapDebugObjects|C_Debug.GetMapDebugObjects]](<span class="apiarg">uiMapID</span>)
: <small>PROTECTED</small> [[API C_Debug.TeleportToMapDebugObject|C_Debug.TeleportToMapDebugObject]](<span style="font-size:smaller; color:#ecbc2a">pinIndex</span>)
+
: <small>PROTECTED</small> [[API C_Debug.TeleportToMapDebugObject|C_Debug.TeleportToMapDebugObject]](<span class="apiarg">pinIndex</span>)
: <small>PROTECTED</small> [[API C_Debug.TeleportToMapLocation|C_Debug.TeleportToMapLocation]](<span style="font-size:smaller; color:#ecbc2a">uiMapID, mapX, mapY</span>)
+
: <small>PROTECTED</small> [[API C_Debug.TeleportToMapLocation|C_Debug.TeleportToMapLocation]](<span class="apiarg">uiMapID, mapX, mapY</span>)
   
 
==== Graphics ====
 
==== Graphics ====
: [[API C_ScriptedAnimations.GetAllScriptedAnimationEffects|C_ScriptedAnimations.GetAllScriptedAnimationEffects]]() : <span style="font-size:smaller; color:#4ec9b0">scriptedAnimationEffects</span>
+
: [[API C_ScriptedAnimations.GetAllScriptedAnimationEffects|C_ScriptedAnimations.GetAllScriptedAnimationEffects]]() : <span class="apiret">scriptedAnimationEffects</span>
: [[API C_VideoOptions.GetGxAdapterInfo|C_VideoOptions.GetGxAdapterInfo]]() : <span style="font-size:smaller; color:#4ec9b0">adapters</span> - Returns info about the system's graphics adapter.
+
: [[API C_VideoOptions.GetGxAdapterInfo|C_VideoOptions.GetGxAdapterInfo]]() : <span class="apiret">adapters</span> - Returns info about the system's graphics adapter.
 
: [[API AntiAliasingSupported|AntiAliasingSupported]]()
 
: [[API AntiAliasingSupported|AntiAliasingSupported]]()
 
: [[API AutoChooseCurrentGraphicsSetting|AutoChooseCurrentGraphicsSetting]]()
 
: [[API AutoChooseCurrentGraphicsSetting|AutoChooseCurrentGraphicsSetting]]()
Line 4,087: Line 4,172:
 
: [[API GetCurrentResolution|GetCurrentResolution]]() - Get the index of the current screen resolution.
 
: [[API GetCurrentResolution|GetCurrentResolution]]() - Get the index of the current screen resolution.
 
: [[API GetCurrentScaledResolution|GetCurrentScaledResolution]]()
 
: [[API GetCurrentScaledResolution|GetCurrentScaledResolution]]()
: [[API GetCVarSettingValidity|GetCVarSettingValidity]](<span style="font-size:smaller; color:#ecbc2a">cvar, settingsCount [, isRaid]</span>)
+
: [[API GetCVarSettingValidity|GetCVarSettingValidity]](<span class="apiarg">cvar, settingsCount [, isRaid]</span>)
 
: [[API GetDefaultGraphicsQuality|GetDefaultGraphicsQuality]]()
 
: [[API GetDefaultGraphicsQuality|GetDefaultGraphicsQuality]]()
 
: [[API GetDefaultVideoOption|GetDefaultVideoOption]]()
 
: [[API GetDefaultVideoOption|GetDefaultVideoOption]]()
Line 4,104: Line 4,189:
 
: [[API GetScreenResolutions|GetScreenResolutions]]()
 
: [[API GetScreenResolutions|GetScreenResolutions]]()
 
: [[API GetScreenWidth|GetScreenWidth]]() - Returns the width of the window in pixels.
 
: [[API GetScreenWidth|GetScreenWidth]]() - Returns the width of the window in pixels.
: [[API GetToolTipInfo|GetToolTipInfo]](<span style="font-size:smaller; color:#ecbc2a">1, size-1, cvar, validValue1, ...</span>) - Returns validity info for a graphics cvar.
+
: [[API GetToolTipInfo|GetToolTipInfo]](<span class="apiarg">1, size-1, cvar, validValue1, ...</span>) - Returns validity info for a graphics cvar.
 
: [[API GetVideoCaps|GetVideoCaps]]()
 
: [[API GetVideoCaps|GetVideoCaps]]()
 
: [[API GetVideoOptions|GetVideoOptions]]()
 
: [[API GetVideoOptions|GetVideoOptions]]()
Line 4,111: Line 4,196:
 
: [[API MultiSampleAntiAliasingSupported|MultiSampleAntiAliasingSupported]]()
 
: [[API MultiSampleAntiAliasingSupported|MultiSampleAntiAliasingSupported]]()
 
: [[API RestartGx|RestartGx]]() - Restarts the graphical engine. Needed for things such as resolution changes to take effect.
 
: [[API RestartGx|RestartGx]]() - Restarts the graphical engine. Needed for things such as resolution changes to take effect.
: [[API SetCurrentGraphicsSetting|SetCurrentGraphicsSetting]](<span style="font-size:smaller; color:#ecbc2a">setting{0=normal, 1=raid/BG}</span>)
+
: [[API SetCurrentGraphicsSetting|SetCurrentGraphicsSetting]](<span class="apiarg">setting{0=normal, 1=raid/BG}</span>)
: [[API SetDefaultVideoOptions|SetDefaultVideoOptions]](<span style="font-size:smaller; color:#ecbc2a">value</span>)
+
: [[API SetDefaultVideoOptions|SetDefaultVideoOptions]](<span class="apiarg">value</span>)
: [[API SetScreenResolution|SetScreenResolution]](<span style="font-size:smaller; color:#ecbc2a">width, height, fullscreen</span>)
+
: [[API SetScreenResolution|SetScreenResolution]](<span class="apiarg">width, height, fullscreen</span>)
: [[API SetSelectedScreenResolutionIndex|SetSelectedScreenResolutionIndex]](<span style="font-size:smaller; color:#ecbc2a">integerIndex</span>)
+
: [[API SetSelectedScreenResolutionIndex|SetSelectedScreenResolutionIndex]](<span class="apiarg">integerIndex</span>)
 
: [[API SupportsClipCursor|SupportsClipCursor]]()
 
: [[API SupportsClipCursor|SupportsClipCursor]]()
 
: [[API ToggleSelfHighlight|ToggleSelfHighlight]]()
 
: [[API ToggleSelfHighlight|ToggleSelfHighlight]]()
Line 4,121: Line 4,206:
   
 
==== Locales ====
 
==== Locales ====
: [[API BreakUpLargeNumbers|BreakUpLargeNumbers]](<span style="font-size:smaller; color:#ecbc2a">number [, natural]</span>) - Converts a number into a localized string, grouping digits as required.
+
: [[API BreakUpLargeNumbers|BreakUpLargeNumbers]](<span class="apiarg">number [, natural]</span>) - Converts a number into a localized string, grouping digits as required.
: [[API DeclineName|DeclineName]](<span style="font-size:smaller; color:#ecbc2a">name, gender, declensionSet</span>) - Returns suggested declensions for a German or Russian name.
+
: [[API DeclineName|DeclineName]](<span class="apiarg">name, gender, declensionSet</span>) - Returns suggested declensions for a German or Russian name.
: [[API GetAvailableLocaleInfo|GetAvailableLocaleInfo]](<span style="font-size:smaller; color:#ecbc2a">ignoreLocaleRestrictions</span>)
+
: [[API GetAvailableLocaleInfo|GetAvailableLocaleInfo]](<span class="apiarg">ignoreLocaleRestrictions</span>)
 
: [[API GetAvailableLocales|GetAvailableLocales]]()
 
: [[API GetAvailableLocales|GetAvailableLocales]]()
 
: [[API GetLocale|GetLocale]]() - Returns client locale, example 'enUS'.
 
: [[API GetLocale|GetLocale]]() - Returns client locale, example 'enUS'.
: [[API GetNumDeclensionSets|GetNumDeclensionSets]](<span style="font-size:smaller; color:#ecbc2a">name, gender</span>) - Returns the number of suggested declension sets for a German or Russian name.
+
: [[API GetNumDeclensionSets|GetNumDeclensionSets]](<span class="apiarg">name, gender</span>) - Returns the number of suggested declension sets for a German or Russian name.
 
: [[API GetOSLocale|GetOSLocale]]()
 
: [[API GetOSLocale|GetOSLocale]]()
 
: [[API GetText|GetText]]() - Used to localize some client text.
 
: [[API GetText|GetText]]() - Used to localize some client text.
 
: [[API IsEuropeanNumbers|IsEuropeanNumbers]]()
 
: [[API IsEuropeanNumbers|IsEuropeanNumbers]]()
: [[API SetEuropeanNumbers|SetEuropeanNumbers]](<span style="font-size:smaller; color:#ecbc2a">flag</span>) - Sets the decimal separator to a comma instead of a dot.
+
: [[API SetEuropeanNumbers|SetEuropeanNumbers]](<span class="apiarg">flag</span>) - Sets the decimal separator to a comma instead of a dot.
   
 
==== Script Profiling ====
 
==== Script Profiling ====
 
Note: CPU profiling is disabled by default since it has some overhead. CPU profiling is controlled by the [[CVar_scriptProfile|scriptProfile]] cvar, which persists across sessions, and takes effect after a UI reload. Memory profiling is always available. These functions have been added in Patch 2.1.
 
Note: CPU profiling is disabled by default since it has some overhead. CPU profiling is controlled by the [[CVar_scriptProfile|scriptProfile]] cvar, which persists across sessions, and takes effect after a UI reload. Memory profiling is always available. These functions have been added in Patch 2.1.
: [[API GetAddOnCPUUsage|GetAddOnCPUUsage]](<span style="font-size:smaller; color:#ecbc2a">index or name</span>) - Returns the total time used by the specified AddOn. This returns a cached value calculated by UpdateAddOnCPUUsage().
+
: [[API GetAddOnCPUUsage|GetAddOnCPUUsage]](<span class="apiarg">index or name</span>) - Returns the total time used by the specified AddOn. This returns a cached value calculated by UpdateAddOnCPUUsage().
: [[API GetAddOnMemoryUsage|GetAddOnMemoryUsage]](<span style="font-size:smaller; color:#ecbc2a">index or name</span>) - Query an addon's memory use (in K, precision to 1 byte) - This returns a cached value calculated by UpdateAddOnMemoryUsage().
+
: [[API GetAddOnMemoryUsage|GetAddOnMemoryUsage]](<span class="apiarg">index or name</span>) - Query an addon's memory use (in K, precision to 1 byte) - This returns a cached value calculated by UpdateAddOnMemoryUsage().
: [[API GetEventCPUUsage|GetEventCPUUsage]](<span style="font-size:smaller; color:#ecbc2a">[event]</span>) - Returns the time used and number of times the specified event has been triggered. If 'event' is omitted, the time and count will be totals across all events.
+
: [[API GetEventCPUUsage|GetEventCPUUsage]](<span class="apiarg">[event]</span>) - Returns the time used and number of times the specified event has been triggered. If 'event' is omitted, the time and count will be totals across all events.
: [[API GetFrameCPUUsage|GetFrameCPUUsage]](<span style="font-size:smaller; color:#ecbc2a">frame [, includeChildren]</span>) - Returns the time used and number of function calls of any of the frame's script handlers. If 'includeChildren' is true or omitted, the time and call count will include the handlers for all of the frame's children as well.
+
: [[API GetFrameCPUUsage|GetFrameCPUUsage]](<span class="apiarg">frame [, includeChildren]</span>) - Returns the time used and number of function calls of any of the frame's script handlers. If 'includeChildren' is true or omitted, the time and call count will include the handlers for all of the frame's children as well.
: [[API GetFunctionCPUUsage|GetFunctionCPUUsage]](<span style="font-size:smaller; color:#ecbc2a">func [, includeSubroutines]</span>) - Returns the time used and number of times the specified function was called. If 'includeSubroutines' is true or omitted, the time includes both the time spent in the function and subroutines called by the function. If it is false, then time is only the time actually spent by the code in the function itself.
+
: [[API GetFunctionCPUUsage|GetFunctionCPUUsage]](<span class="apiarg">func [, includeSubroutines]</span>) - Returns the time used and number of times the specified function was called. If 'includeSubroutines' is true or omitted, the time includes both the time spent in the function and subroutines called by the function. If it is false, then time is only the time actually spent by the code in the function itself.
 
: [[API GetScriptCPUUsage|GetScriptCPUUsage]]() - Returns the total time used by the scripting system.
 
: [[API GetScriptCPUUsage|GetScriptCPUUsage]]() - Returns the total time used by the scripting system.
 
: [[API ResetCPUUsage|ResetCPUUsage]]() - Reset all CPU profiling statistics to zero.
 
: [[API ResetCPUUsage|ResetCPUUsage]]() - Reset all CPU profiling statistics to zero.
Line 4,146: Line 4,231:
 
==== Secure Execution ====
 
==== Secure Execution ====
 
Relates to [[Secure Execution and Tainting]].
 
Relates to [[Secure Execution and Tainting]].
: [[API InCombatLockdown|InCombatLockdown]]() - Returns true if the in-combat AddOn restrictions are active.
 
: [[API StoreSecureReference|StoreSecureReference]](<span style="font-size:smaller; color:#ecbc2a">name, obj</span>)
 
 
: [[API forceinsecure|forceinsecure]]() - Taint the current execution path.
 
: [[API forceinsecure|forceinsecure]]() - Taint the current execution path.
: [[API hooksecurefunc|hooksecurefunc]](<span style="font-size:smaller; color:#ecbc2a">[table,] funcName, hookfunc</span>) - Creates a secure 'post hook' for the named function. The hookfunc is invoked after the original function, and receives the same parameters. Return values from hookfunc are discarded. This is the only safe way to hook functions that execute protected functionality.
+
: [[API hooksecurefunc|hooksecurefunc]](<span class="apiarg">[table,] funcName, hookfunc</span>) - Creates a secure 'post hook' for the named function. The hookfunc is invoked after the original function, and receives the same parameters. Return values from hookfunc are discarded. This is the only safe way to hook functions that execute protected functionality.
  +
: [[API InCombatLockdown|InCombatLockdown]]() - Returns true if the in-combat AddOn restrictions are active.
 
: [[API issecure|issecure]]() - Determine if the current environment is secure.
 
: [[API issecure|issecure]]() - Determine if the current environment is secure.
: [[API issecurevariable|issecurevariable]](<span style="font-size:smaller; color:#ecbc2a">[table,] name</span>) - Determine if the specified variable is secure.
+
: [[API issecurevariable|issecurevariable]](<span class="apiarg">[table,] name</span>) - Determine if the specified variable is secure.
: [[API scrub|scrub]](<span style="font-size:smaller; color:#ecbc2a">...</span>) - Returns the argument list with non-number/boolean/string values changed to nil.
+
: [[API scrub|scrub]](<span class="apiarg">...</span>) - Returns the argument list with non-number/boolean/string values changed to nil.
: [[API securecall|securecall]](<span style="font-size:smaller; color:#ecbc2a">function or functionName, ...</span>) - Call a function from a secure environment without risking secure status.
+
: [[API securecall|securecall]](<span class="apiarg">function or functionName, ...</span>) - Call a function from a secure environment without risking secure status.
  +
: [[API securecallfunction|securecallfunction]]()
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/CanAccessObject CanAccessObject](<span style="font-size:smaller; color:#ecbc2a">obj</span>) - Returns true if an object is secure and not forbidden.
 
  +
: [[API secureexecuterange|secureexecuterange]]()
  +
: [[API StoreSecureReference|StoreSecureReference]](<span class="apiarg">name, obj</span>)
  +
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/CanAccessObject CanAccessObject](<span class="apiarg">obj</span>) - Returns true if an object is secure and not forbidden.
   
 
==== Sound ====
 
==== Sound ====
: [[API MuteSoundFile|MuteSoundFile]](<span style="font-size:smaller; color:#ecbc2a">soundFile or fileDataID</span>) - Mutes a sound file.
+
: [[API MuteSoundFile|MuteSoundFile]](<span class="apiarg">soundFile or fileDataID</span>) - Mutes a sound file.
: [[API PlayMusic|PlayMusic]](<span style="font-size:smaller; color:#ecbc2a">musicfile or fileDataID</span>) - Plays the specified sound file on loop to the "Music" sound channel.
+
: [[API PlayMusic|PlayMusic]](<span class="apiarg">musicfile or fileDataID</span>) - Plays the specified sound file on loop to the "Music" sound channel.
: [[API PlaySound|PlaySound]](<span style="font-size:smaller; color:#ecbc2a">soundKitID [, channel, forceNoDuplicates, runFinishCallback]</span>) - Plays the specified sound by SoundKitID.
+
: [[API PlaySound|PlaySound]](<span class="apiarg">soundKitID [, channel, forceNoDuplicates, runFinishCallback]</span>) - Plays the specified sound by SoundKitID.
: [[API PlaySoundFile|PlaySoundFile]](<span style="font-size:smaller; color:#ecbc2a">soundFile or soundFileID [, channel]</span>) - Plays the specified sound by [[FileDataID]] or by addon file path.
+
: [[API PlaySoundFile|PlaySoundFile]](<span class="apiarg">soundFile or soundFileID [, channel]</span>) - Plays the specified sound by [[FileDataID]] or by addon file path.
: [[API PlayVocalErrorSoundID|PlayVocalErrorSoundID]](<span style="font-size:smaller; color:#ecbc2a">vocalErrorSoundID</span>)
+
: [[API PlayVocalErrorSoundID|PlayVocalErrorSoundID]](<span class="apiarg">vocalErrorSoundID</span>)
 
: [[API StopMusic|StopMusic]]() - Stops the currently playing music.
 
: [[API StopMusic|StopMusic]]() - Stops the currently playing music.
: [[API StopSound|StopSound]](<span style="font-size:smaller; color:#ecbc2a">soundHandleID [, fadeoutTime]</span>)
+
: [[API StopSound|StopSound]](<span class="apiarg">soundHandleID [, fadeoutTime]</span>)
: [[API UnmuteSoundFile|UnmuteSoundFile]](<span style="font-size:smaller; color:#ecbc2a">soundFile or fileDataID</span>) - Unmutes a sound file.
+
: [[API UnmuteSoundFile|UnmuteSoundFile]](<span class="apiarg">soundFile or fileDataID</span>) - Unmutes a sound file.
 
Sound Drivers
 
Sound Drivers
: [[API Sound_ChatSystem_GetInputDriverNameByIndex|Sound_ChatSystem_GetInputDriverNameByIndex]](<span style="font-size:smaller; color:#ecbc2a">InputDriverIndex</span>)
+
: [[API Sound_ChatSystem_GetInputDriverNameByIndex|Sound_ChatSystem_GetInputDriverNameByIndex]](<span class="apiarg">InputDriverIndex</span>)
 
: [[API Sound_ChatSystem_GetNumInputDrivers|Sound_ChatSystem_GetNumInputDrivers]]()
 
: [[API Sound_ChatSystem_GetNumInputDrivers|Sound_ChatSystem_GetNumInputDrivers]]()
 
: [[API Sound_ChatSystem_GetNumOutputDrivers|Sound_ChatSystem_GetNumOutputDrivers]]()
 
: [[API Sound_ChatSystem_GetNumOutputDrivers|Sound_ChatSystem_GetNumOutputDrivers]]()
: [[API Sound_ChatSystem_GetOutputDriverNameByIndex|Sound_ChatSystem_GetOutputDriverNameByIndex]](<span style="font-size:smaller; color:#ecbc2a">OutputDriverIndex</span>)
+
: [[API Sound_ChatSystem_GetOutputDriverNameByIndex|Sound_ChatSystem_GetOutputDriverNameByIndex]](<span class="apiarg">OutputDriverIndex</span>)
: [[API Sound_GameSystem_GetInputDriverNameByIndex|Sound_GameSystem_GetInputDriverNameByIndex]](<span style="font-size:smaller; color:#ecbc2a">InputDriverIndex</span>)
+
: [[API Sound_GameSystem_GetInputDriverNameByIndex|Sound_GameSystem_GetInputDriverNameByIndex]](<span class="apiarg">InputDriverIndex</span>)
 
: [[API Sound_GameSystem_GetNumInputDrivers|Sound_GameSystem_GetNumInputDrivers]]()
 
: [[API Sound_GameSystem_GetNumInputDrivers|Sound_GameSystem_GetNumInputDrivers]]()
 
: [[API Sound_GameSystem_GetNumOutputDrivers|Sound_GameSystem_GetNumOutputDrivers]]()
 
: [[API Sound_GameSystem_GetNumOutputDrivers|Sound_GameSystem_GetNumOutputDrivers]]()
: [[API Sound_GameSystem_GetOutputDriverNameByIndex|Sound_GameSystem_GetOutputDriverNameByIndex]](<span style="font-size:smaller; color:#ecbc2a">OutputDriverIndex</span>)
+
: [[API Sound_GameSystem_GetOutputDriverNameByIndex|Sound_GameSystem_GetOutputDriverNameByIndex]](<span class="apiarg">OutputDriverIndex</span>)
 
: [[API Sound_GameSystem_RestartSoundSystem|Sound_GameSystem_RestartSoundSystem]]()
 
: [[API Sound_GameSystem_RestartSoundSystem|Sound_GameSystem_RestartSoundSystem]]()
   
 
==== Util ====
 
==== Util ====
: [[API CalculateStringEditDistance|CalculateStringEditDistance]](<span style="font-size:smaller; color:#ecbc2a">firstString, secondString</span>) - Returns [https://en.wikipedia.org/wiki/Levenshtein_distance Levenshtein] distance.
+
: [[API CalculateStringEditDistance|CalculateStringEditDistance]](<span class="apiarg">firstString, secondString</span>) - Returns [https://en.wikipedia.org/wiki/Levenshtein_distance Levenshtein] distance.
: [[API CaseAccentInsensitiveParse|CaseAccentInsensitiveParse]](<span style="font-size:smaller; color:#ecbc2a">string</span>)
+
: [[API CaseAccentInsensitiveParse|CaseAccentInsensitiveParse]](<span class="apiarg">string</span>)
   
 
=== Spectator Mode ===
 
=== Spectator Mode ===
: [[API C_Commentator.AddPlayerOverrideName|C_Commentator.AddPlayerOverrideName]](<span style="font-size:smaller; color:#ecbc2a">playerName, overrideName</span>)
+
: [[API C_Commentator.AddPlayerOverrideName|C_Commentator.AddPlayerOverrideName]](<span class="apiarg">playerName, overrideName</span>)
: [[API C_Commentator.AddTrackedDefensiveAuras|C_Commentator.AddTrackedDefensiveAuras]](<span style="font-size:smaller; color:#ecbc2a">spellIDs</span>)
+
: [[API C_Commentator.AddTrackedDefensiveAuras|C_Commentator.AddTrackedDefensiveAuras]](<span class="apiarg">spellIDs</span>)
: [[API C_Commentator.AddTrackedOffensiveAuras|C_Commentator.AddTrackedOffensiveAuras]](<span style="font-size:smaller; color:#ecbc2a">spellIDs</span>)
+
: [[API C_Commentator.AddTrackedOffensiveAuras|C_Commentator.AddTrackedOffensiveAuras]](<span class="apiarg">spellIDs</span>)
: [[API C_Commentator.AreTeamsSwapped|C_Commentator.AreTeamsSwapped]]() : <span style="font-size:smaller; color:#4ec9b0">teamsAreSwapped</span>
+
: [[API C_Commentator.AreTeamsSwapped|C_Commentator.AreTeamsSwapped]]() : <span class="apiret">teamsAreSwapped</span>
: [[API C_Commentator.AssignPlayersToTeam|C_Commentator.AssignPlayersToTeam]](<span style="font-size:smaller; color:#ecbc2a">playerName, teamName</span>)
+
: [[API C_Commentator.AssignPlayersToTeam|C_Commentator.AssignPlayersToTeam]](<span class="apiarg">playerName, teamName</span>)
: [[API C_Commentator.AssignPlayersToTeamInCurrentInstance|C_Commentator.AssignPlayersToTeamInCurrentInstance]](<span style="font-size:smaller; color:#ecbc2a">teamIndex, teamName</span>)
+
: [[API C_Commentator.AssignPlayersToTeamInCurrentInstance|C_Commentator.AssignPlayersToTeamInCurrentInstance]](<span class="apiarg">teamIndex, teamName</span>)
: [[API C_Commentator.AssignPlayerToTeam|C_Commentator.AssignPlayerToTeam]](<span style="font-size:smaller; color:#ecbc2a">playerName, teamName</span>)
+
: [[API C_Commentator.AssignPlayerToTeam|C_Commentator.AssignPlayerToTeam]](<span class="apiarg">playerName, teamName</span>)
: [[API C_Commentator.CanUseCommentatorCheats|C_Commentator.CanUseCommentatorCheats]]() : <span style="font-size:smaller; color:#4ec9b0">canUseCommentatorCheats</span>
+
: [[API C_Commentator.CanUseCommentatorCheats|C_Commentator.CanUseCommentatorCheats]]() : <span class="apiret">canUseCommentatorCheats</span>
 
: [[API C_Commentator.ClearCameraTarget|C_Commentator.ClearCameraTarget]]()
 
: [[API C_Commentator.ClearCameraTarget|C_Commentator.ClearCameraTarget]]()
 
: [[API C_Commentator.ClearFollowTarget|C_Commentator.ClearFollowTarget]]()
 
: [[API C_Commentator.ClearFollowTarget|C_Commentator.ClearFollowTarget]]()
: [[API C_Commentator.ClearLookAtTarget|C_Commentator.ClearLookAtTarget]](<span style="font-size:smaller; color:#ecbc2a">[lookAtIndex]</span>)
+
: [[API C_Commentator.ClearLookAtTarget|C_Commentator.ClearLookAtTarget]](<span class="apiarg">[lookAtIndex]</span>)
 
: [[API C_Commentator.EnterInstance|C_Commentator.EnterInstance]]()
 
: [[API C_Commentator.EnterInstance|C_Commentator.EnterInstance]]()
 
: [[API C_Commentator.ExitInstance|C_Commentator.ExitInstance]]()
 
: [[API C_Commentator.ExitInstance|C_Commentator.ExitInstance]]()
: [[API C_Commentator.FindSpectatedUnit|C_Commentator.FindSpectatedUnit]](<span style="font-size:smaller; color:#ecbc2a">unitToken</span>) : <span style="font-size:smaller; color:#4ec9b0">playerIndex, teamIndex, isPet</span>
+
: [[API C_Commentator.FindSpectatedUnit|C_Commentator.FindSpectatedUnit]](<span class="apiarg">unitToken</span>) : <span class="apiret">playerIndex, teamIndex, isPet</span>
: [[API C_Commentator.FindTeamNameInCurrentInstance|C_Commentator.FindTeamNameInCurrentInstance]](<span style="font-size:smaller; color:#ecbc2a">teamIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">teamName</span>
+
: [[API C_Commentator.FindTeamNameInCurrentInstance|C_Commentator.FindTeamNameInCurrentInstance]](<span class="apiarg">teamIndex</span>) : <span class="apiret">teamName</span>
: [[API C_Commentator.FindTeamNameInDirectory|C_Commentator.FindTeamNameInDirectory]](<span style="font-size:smaller; color:#ecbc2a">playerNames</span>) : <span style="font-size:smaller; color:#4ec9b0">teamName</span>
+
: [[API C_Commentator.FindTeamNameInDirectory|C_Commentator.FindTeamNameInDirectory]](<span class="apiarg">playerNames</span>) : <span class="apiret">teamName</span>
 
: [[API C_Commentator.FlushCommentatorHistory|C_Commentator.FlushCommentatorHistory]]()
 
: [[API C_Commentator.FlushCommentatorHistory|C_Commentator.FlushCommentatorHistory]]()
: [[API C_Commentator.FollowPlayer|C_Commentator.FollowPlayer]](<span style="font-size:smaller; color:#ecbc2a">factionIndex, playerIndex [, forceInstantTransition]</span>)
+
: [[API C_Commentator.FollowPlayer|C_Commentator.FollowPlayer]](<span class="apiarg">factionIndex, playerIndex [, forceInstantTransition]</span>)
: [[API C_Commentator.FollowUnit|C_Commentator.FollowUnit]](<span style="font-size:smaller; color:#ecbc2a">token</span>)
+
: [[API C_Commentator.FollowUnit|C_Commentator.FollowUnit]](<span class="apiarg">token</span>)
 
: [[API C_Commentator.ForceFollowTransition|C_Commentator.ForceFollowTransition]]()
 
: [[API C_Commentator.ForceFollowTransition|C_Commentator.ForceFollowTransition]]()
: [[API C_Commentator.GetAdditionalCameraWeight|C_Commentator.GetAdditionalCameraWeight]]() : <span style="font-size:smaller; color:#4ec9b0">teamIndex, playerIndex</span>
+
: [[API C_Commentator.GetAdditionalCameraWeight|C_Commentator.GetAdditionalCameraWeight]]() : <span class="apiret">teamIndex, playerIndex</span>
: [[API C_Commentator.GetAdditionalCameraWeightByToken|C_Commentator.GetAdditionalCameraWeightByToken]](<span style="font-size:smaller; color:#ecbc2a">unitToken</span>) : <span style="font-size:smaller; color:#4ec9b0">weight</span>
+
: [[API C_Commentator.GetAdditionalCameraWeightByToken|C_Commentator.GetAdditionalCameraWeightByToken]](<span class="apiarg">unitToken</span>) : <span class="apiret">weight</span>
: [[API C_Commentator.GetAllPlayerOverrideNames|C_Commentator.GetAllPlayerOverrideNames]]() : <span style="font-size:smaller; color:#4ec9b0">nameEntries</span>
+
: [[API C_Commentator.GetAllPlayerOverrideNames|C_Commentator.GetAllPlayerOverrideNames]]() : <span class="apiret">nameEntries</span>
: [[API C_Commentator.GetCamera|C_Commentator.GetCamera]]() : <span style="font-size:smaller; color:#4ec9b0">xPos, yPos, zPos, yaw, pitch, roll, fov</span>
+
: [[API C_Commentator.GetCamera|C_Commentator.GetCamera]]() : <span class="apiret">xPos, yPos, zPos, yaw, pitch, roll, fov</span>
: [[API C_Commentator.GetCameraCollision|C_Commentator.GetCameraCollision]]() : <span style="font-size:smaller; color:#4ec9b0">isColliding</span>
+
: [[API C_Commentator.GetCameraCollision|C_Commentator.GetCameraCollision]]() : <span class="apiret">isColliding</span>
: [[API C_Commentator.GetCameraPosition|C_Commentator.GetCameraPosition]]() : <span style="font-size:smaller; color:#4ec9b0">xPos, yPos, zPos</span>
+
: [[API C_Commentator.GetCameraPosition|C_Commentator.GetCameraPosition]]() : <span class="apiret">xPos, yPos, zPos</span>
: [[API C_Commentator.GetCommentatorHistory|C_Commentator.GetCommentatorHistory]]() : <span style="font-size:smaller; color:#4ec9b0">history</span>
+
: [[API C_Commentator.GetCommentatorHistory|C_Commentator.GetCommentatorHistory]]() : <span class="apiret">history</span>
: [[API C_Commentator.GetCurrentMapID|C_Commentator.GetCurrentMapID]]() : <span style="font-size:smaller; color:#4ec9b0">mapID</span>
+
: [[API C_Commentator.GetCurrentMapID|C_Commentator.GetCurrentMapID]]() : <span class="apiret">mapID</span>
: [[API C_Commentator.GetDampeningPercent|C_Commentator.GetDampeningPercent]]() : <span style="font-size:smaller; color:#4ec9b0">percentage</span>
+
: [[API C_Commentator.GetDampeningPercent|C_Commentator.GetDampeningPercent]]() : <span class="apiret">percentage</span>
: [[API C_Commentator.GetDistanceBeforeForcedHorizontalConvergence|C_Commentator.GetDistanceBeforeForcedHorizontalConvergence]]() : <span style="font-size:smaller; color:#4ec9b0">distance</span>
+
: [[API C_Commentator.GetDistanceBeforeForcedHorizontalConvergence|C_Commentator.GetDistanceBeforeForcedHorizontalConvergence]]() : <span class="apiret">distance</span>
: [[API C_Commentator.GetDurationToForceHorizontalConvergence|C_Commentator.GetDurationToForceHorizontalConvergence]]() : <span style="font-size:smaller; color:#4ec9b0">ms</span>
+
: [[API C_Commentator.GetDurationToForceHorizontalConvergence|C_Commentator.GetDurationToForceHorizontalConvergence]]() : <span class="apiret">ms</span>
: [[API C_Commentator.GetExcludeDistance|C_Commentator.GetExcludeDistance]]() : <span style="font-size:smaller; color:#4ec9b0">excludeDistance</span>
+
: [[API C_Commentator.GetExcludeDistance|C_Commentator.GetExcludeDistance]]() : <span class="apiret">excludeDistance</span>
: [[API C_Commentator.GetHardlockWeight|C_Commentator.GetHardlockWeight]]() : <span style="font-size:smaller; color:#4ec9b0">weight</span>
+
: [[API C_Commentator.GetHardlockWeight|C_Commentator.GetHardlockWeight]]() : <span class="apiret">weight</span>
: [[API C_Commentator.GetHorizontalAngleThresholdToSmooth|C_Commentator.GetHorizontalAngleThresholdToSmooth]]() : <span style="font-size:smaller; color:#4ec9b0">angle</span>
+
: [[API C_Commentator.GetHorizontalAngleThresholdToSmooth|C_Commentator.GetHorizontalAngleThresholdToSmooth]]() : <span class="apiret">angle</span>
: [[API C_Commentator.GetIndirectSpellID|C_Commentator.GetIndirectSpellID]](<span style="font-size:smaller; color:#ecbc2a">trackedSpellID</span>) : <span style="font-size:smaller; color:#4ec9b0">indirectSpellID</span>
+
: [[API C_Commentator.GetIndirectSpellID|C_Commentator.GetIndirectSpellID]](<span class="apiarg">trackedSpellID</span>) : <span class="apiret">indirectSpellID</span>
: [[API C_Commentator.GetInstanceInfo|C_Commentator.GetInstanceInfo]](<span style="font-size:smaller; color:#ecbc2a">mapIndex, instanceIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">mapID, mapName, status, instanceIDLow, instanceIDHigh</span>
+
: [[API C_Commentator.GetInstanceInfo|C_Commentator.GetInstanceInfo]](<span class="apiarg">mapIndex, instanceIndex</span>) : <span class="apiret">mapID, mapName, status, instanceIDLow, instanceIDHigh</span>
: [[API C_Commentator.GetLookAtLerpAmount|C_Commentator.GetLookAtLerpAmount]]() : <span style="font-size:smaller; color:#4ec9b0">amount</span>
+
: [[API C_Commentator.GetLookAtLerpAmount|C_Commentator.GetLookAtLerpAmount]]() : <span class="apiret">amount</span>
: [[API C_Commentator.GetMapInfo|C_Commentator.GetMapInfo]](<span style="font-size:smaller; color:#ecbc2a">mapIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">teamSize, minLevel, maxLevel, numInstances</span>
+
: [[API C_Commentator.GetMapInfo|C_Commentator.GetMapInfo]](<span class="apiarg">mapIndex</span>) : <span class="apiret">teamSize, minLevel, maxLevel, numInstances</span>
: [[API C_Commentator.GetMatchDuration|C_Commentator.GetMatchDuration]]() : <span style="font-size:smaller; color:#4ec9b0">seconds</span>
+
: [[API C_Commentator.GetMatchDuration|C_Commentator.GetMatchDuration]]() : <span class="apiret">seconds</span>
: [[API C_Commentator.GetMaxNumPlayersPerTeam|C_Commentator.GetMaxNumPlayersPerTeam]]() : <span style="font-size:smaller; color:#4ec9b0">maxNumPlayersPerTeam</span>
+
: [[API C_Commentator.GetMaxNumPlayersPerTeam|C_Commentator.GetMaxNumPlayersPerTeam]]() : <span class="apiret">maxNumPlayersPerTeam</span>
: [[API C_Commentator.GetMaxNumTeams|C_Commentator.GetMaxNumTeams]]() : <span style="font-size:smaller; color:#4ec9b0">maxNumTeams</span>
+
: [[API C_Commentator.GetMaxNumTeams|C_Commentator.GetMaxNumTeams]]() : <span class="apiret">maxNumTeams</span>
: [[API C_Commentator.GetMode|C_Commentator.GetMode]]() : <span style="font-size:smaller; color:#4ec9b0">commentatorMode</span>
+
: [[API C_Commentator.GetMode|C_Commentator.GetMode]]() : <span class="apiret">commentatorMode</span>
: [[API C_Commentator.GetMsToHoldForHorizontalMovement|C_Commentator.GetMsToHoldForHorizontalMovement]]() : <span style="font-size:smaller; color:#4ec9b0">ms</span>
+
: [[API C_Commentator.GetMsToHoldForHorizontalMovement|C_Commentator.GetMsToHoldForHorizontalMovement]]() : <span class="apiret">ms</span>
: [[API C_Commentator.GetMsToHoldForVerticalMovement|C_Commentator.GetMsToHoldForVerticalMovement]]() : <span style="font-size:smaller; color:#4ec9b0">ms</span>
+
: [[API C_Commentator.GetMsToHoldForVerticalMovement|C_Commentator.GetMsToHoldForVerticalMovement]]() : <span class="apiret">ms</span>
: [[API C_Commentator.GetMsToSmoothHorizontalChange|C_Commentator.GetMsToSmoothHorizontalChange]]() : <span style="font-size:smaller; color:#4ec9b0">ms</span>
+
: [[API C_Commentator.GetMsToSmoothHorizontalChange|C_Commentator.GetMsToSmoothHorizontalChange]]() : <span class="apiret">ms</span>
: [[API C_Commentator.GetMsToSmoothVerticalChange|C_Commentator.GetMsToSmoothVerticalChange]]() : <span style="font-size:smaller; color:#4ec9b0">ms</span>
+
: [[API C_Commentator.GetMsToSmoothVerticalChange|C_Commentator.GetMsToSmoothVerticalChange]]() : <span class="apiret">ms</span>
: [[API C_Commentator.GetNumMaps|C_Commentator.GetNumMaps]]() : <span style="font-size:smaller; color:#4ec9b0">numMaps</span>
+
: [[API C_Commentator.GetNumMaps|C_Commentator.GetNumMaps]]() : <span class="apiret">numMaps</span>
: [[API C_Commentator.GetNumPlayers|C_Commentator.GetNumPlayers]](<span style="font-size:smaller; color:#ecbc2a">factionIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">numPlayers</span>
+
: [[API C_Commentator.GetNumPlayers|C_Commentator.GetNumPlayers]](<span class="apiarg">factionIndex</span>) : <span class="apiret">numPlayers</span>
: [[API C_Commentator.GetOrCreateSeries|C_Commentator.GetOrCreateSeries]](<span style="font-size:smaller; color:#ecbc2a">teamName1, teamName2</span>) : <span style="font-size:smaller; color:#4ec9b0">data</span>
+
: [[API C_Commentator.GetOrCreateSeries|C_Commentator.GetOrCreateSeries]](<span class="apiarg">teamName1, teamName2</span>) : <span class="apiret">data</span>
: [[API C_Commentator.GetPlayerAuraInfo|C_Commentator.GetPlayerAuraInfo]](<span style="font-size:smaller; color:#ecbc2a">teamIndex, playerIndex, spellID</span>) : <span style="font-size:smaller; color:#4ec9b0">startTime, duration, enable</span>
+
: [[API C_Commentator.GetPlayerAuraInfo|C_Commentator.GetPlayerAuraInfo]](<span class="apiarg">teamIndex, playerIndex, spellID</span>) : <span class="apiret">startTime, duration, enable</span>
: [[API C_Commentator.GetPlayerAuraInfoByUnit|C_Commentator.GetPlayerAuraInfoByUnit]](<span style="font-size:smaller; color:#ecbc2a">token, spellID</span>) : <span style="font-size:smaller; color:#4ec9b0">startTime, duration, enable</span>
+
: [[API C_Commentator.GetPlayerAuraInfoByUnit|C_Commentator.GetPlayerAuraInfoByUnit]](<span class="apiarg">token, spellID</span>) : <span class="apiret">startTime, duration, enable</span>
: [[API C_Commentator.GetPlayerCooldownInfo|C_Commentator.GetPlayerCooldownInfo]](<span style="font-size:smaller; color:#ecbc2a">teamIndex, playerIndex, spellID</span>) : <span style="font-size:smaller; color:#4ec9b0">startTime, duration, enable</span>
+
: [[API C_Commentator.GetPlayerCooldownInfo|C_Commentator.GetPlayerCooldownInfo]](<span class="apiarg">teamIndex, playerIndex, spellID</span>) : <span class="apiret">startTime, duration, enable</span>
: [[API C_Commentator.GetPlayerCooldownInfoByUnit|C_Commentator.GetPlayerCooldownInfoByUnit]](<span style="font-size:smaller; color:#ecbc2a">unitToken, spellID</span>) : <span style="font-size:smaller; color:#4ec9b0">startTime, duration, enable</span>
+
: [[API C_Commentator.GetPlayerCooldownInfoByUnit|C_Commentator.GetPlayerCooldownInfoByUnit]](<span class="apiarg">unitToken, spellID</span>) : <span class="apiret">startTime, duration, enable</span>
: [[API C_Commentator.GetPlayerCrowdControlInfo|C_Commentator.GetPlayerCrowdControlInfo]](<span style="font-size:smaller; color:#ecbc2a">teamIndex, playerIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">spellID, expiration, duration</span>
+
: [[API C_Commentator.GetPlayerCrowdControlInfo|C_Commentator.GetPlayerCrowdControlInfo]](<span class="apiarg">teamIndex, playerIndex</span>) : <span class="apiret">spellID, expiration, duration</span>
: [[API C_Commentator.GetPlayerCrowdControlInfoByUnit|C_Commentator.GetPlayerCrowdControlInfoByUnit]](<span style="font-size:smaller; color:#ecbc2a">token</span>) : <span style="font-size:smaller; color:#4ec9b0">spellID, expiration, duration</span>
+
: [[API C_Commentator.GetPlayerCrowdControlInfoByUnit|C_Commentator.GetPlayerCrowdControlInfoByUnit]](<span class="apiarg">token</span>) : <span class="apiret">spellID, expiration, duration</span>
: [[API C_Commentator.GetPlayerData|C_Commentator.GetPlayerData]](<span style="font-size:smaller; color:#ecbc2a">teamIndex, playerIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_Commentator.GetPlayerData|C_Commentator.GetPlayerData]](<span class="apiarg">teamIndex, playerIndex</span>) : <span class="apiret">info</span>
: [[API C_Commentator.GetPlayerFlagInfo|C_Commentator.GetPlayerFlagInfo]](<span style="font-size:smaller; color:#ecbc2a">teamIndex, playerIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">hasFlag</span>
+
: [[API C_Commentator.GetPlayerFlagInfo|C_Commentator.GetPlayerFlagInfo]](<span class="apiarg">teamIndex, playerIndex</span>) : <span class="apiret">hasFlag</span>
: [[API C_Commentator.GetPlayerFlagInfoByUnit|C_Commentator.GetPlayerFlagInfoByUnit]](<span style="font-size:smaller; color:#ecbc2a">unitToken</span>) : <span style="font-size:smaller; color:#4ec9b0">hasFlag</span>
+
: [[API C_Commentator.GetPlayerFlagInfoByUnit|C_Commentator.GetPlayerFlagInfoByUnit]](<span class="apiarg">unitToken</span>) : <span class="apiret">hasFlag</span>
: [[API C_Commentator.GetPlayerOverrideName|C_Commentator.GetPlayerOverrideName]](<span style="font-size:smaller; color:#ecbc2a">originalName</span>) : <span style="font-size:smaller; color:#4ec9b0">overrideName</span>
+
: [[API C_Commentator.GetPlayerOverrideName|C_Commentator.GetPlayerOverrideName]](<span class="apiarg">originalName</span>) : <span class="apiret">overrideName</span>
: [[API C_Commentator.GetPlayerSpellCharges|C_Commentator.GetPlayerSpellCharges]](<span style="font-size:smaller; color:#ecbc2a">teamIndex, playerIndex, spellID</span>) : <span style="font-size:smaller; color:#4ec9b0">charges, maxCharges, startTime, duration</span>
+
: [[API C_Commentator.GetPlayerSpellCharges|C_Commentator.GetPlayerSpellCharges]](<span class="apiarg">teamIndex, playerIndex, spellID</span>) : <span class="apiret">charges, maxCharges, startTime, duration</span>
: [[API C_Commentator.GetPlayerSpellChargesByUnit|C_Commentator.GetPlayerSpellChargesByUnit]](<span style="font-size:smaller; color:#ecbc2a">unitToken, spellID</span>) : <span style="font-size:smaller; color:#4ec9b0">charges, maxCharges, startTime, duration</span>
+
: [[API C_Commentator.GetPlayerSpellChargesByUnit|C_Commentator.GetPlayerSpellChargesByUnit]](<span class="apiarg">unitToken, spellID</span>) : <span class="apiret">charges, maxCharges, startTime, duration</span>
: [[API C_Commentator.GetPositionLerpAmount|C_Commentator.GetPositionLerpAmount]]() : <span style="font-size:smaller; color:#4ec9b0">amount</span>
+
: [[API C_Commentator.GetPositionLerpAmount|C_Commentator.GetPositionLerpAmount]]() : <span class="apiret">amount</span>
: [[API C_Commentator.GetSmoothFollowTransitioning|C_Commentator.GetSmoothFollowTransitioning]]() : <span style="font-size:smaller; color:#4ec9b0">enabled</span>
+
: [[API C_Commentator.GetSmoothFollowTransitioning|C_Commentator.GetSmoothFollowTransitioning]]() : <span class="apiret">enabled</span>
: [[API C_Commentator.GetSoftlockWeight|C_Commentator.GetSoftlockWeight]]() : <span style="font-size:smaller; color:#4ec9b0">weight</span>
+
: [[API C_Commentator.GetSoftlockWeight|C_Commentator.GetSoftlockWeight]]() : <span class="apiret">weight</span>
: [[API C_Commentator.GetSpeedFactor|C_Commentator.GetSpeedFactor]]() : <span style="font-size:smaller; color:#4ec9b0">factor</span>
+
: [[API C_Commentator.GetSpeedFactor|C_Commentator.GetSpeedFactor]]() : <span class="apiret">factor</span>
: [[API C_Commentator.GetStartLocation|C_Commentator.GetStartLocation]](<span style="font-size:smaller; color:#ecbc2a">mapID</span>) : <span style="font-size:smaller; color:#4ec9b0">pos</span>
+
: [[API C_Commentator.GetStartLocation|C_Commentator.GetStartLocation]](<span class="apiarg">mapID</span>) : <span class="apiret">pos</span>
: [[API C_Commentator.GetTeamColor|C_Commentator.GetTeamColor]](<span style="font-size:smaller; color:#ecbc2a">teamIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">color</span>
+
: [[API C_Commentator.GetTeamColor|C_Commentator.GetTeamColor]](<span class="apiarg">teamIndex</span>) : <span class="apiret">color</span>
: [[API C_Commentator.GetTeamColorByUnit|C_Commentator.GetTeamColorByUnit]](<span style="font-size:smaller; color:#ecbc2a">unitToken</span>) : <span style="font-size:smaller; color:#4ec9b0">color</span>
+
: [[API C_Commentator.GetTeamColorByUnit|C_Commentator.GetTeamColorByUnit]](<span class="apiarg">unitToken</span>) : <span class="apiret">color</span>
: [[API C_Commentator.GetTimeLeftInMatch|C_Commentator.GetTimeLeftInMatch]]() : <span style="font-size:smaller; color:#4ec9b0">timeLeft</span>
+
: [[API C_Commentator.GetTimeLeftInMatch|C_Commentator.GetTimeLeftInMatch]]() : <span class="apiret">timeLeft</span>
: [[API C_Commentator.GetTrackedSpellID|C_Commentator.GetTrackedSpellID]](<span style="font-size:smaller; color:#ecbc2a">indirectSpellID</span>) : <span style="font-size:smaller; color:#4ec9b0">trackedSpellID</span>
+
: [[API C_Commentator.GetTrackedSpellID|C_Commentator.GetTrackedSpellID]](<span class="apiarg">indirectSpellID</span>) : <span class="apiret">trackedSpellID</span>
: [[API C_Commentator.GetTrackedSpells|C_Commentator.GetTrackedSpells]](<span style="font-size:smaller; color:#ecbc2a">teamIndex, playerIndex, category</span>) : <span style="font-size:smaller; color:#4ec9b0">spells</span>
+
: [[API C_Commentator.GetTrackedSpells|C_Commentator.GetTrackedSpells]](<span class="apiarg">teamIndex, playerIndex, category</span>) : <span class="apiret">spells</span>
: [[API C_Commentator.GetTrackedSpellsByUnit|C_Commentator.GetTrackedSpellsByUnit]](<span style="font-size:smaller; color:#ecbc2a">unitToken, category</span>) : <span style="font-size:smaller; color:#4ec9b0">spells</span>
+
: [[API C_Commentator.GetTrackedSpellsByUnit|C_Commentator.GetTrackedSpellsByUnit]](<span class="apiarg">unitToken, category</span>) : <span class="apiret">spells</span>
: [[API C_Commentator.GetUnitData|C_Commentator.GetUnitData]](<span style="font-size:smaller; color:#ecbc2a">unitToken</span>) : <span style="font-size:smaller; color:#4ec9b0">data</span>
+
: [[API C_Commentator.GetUnitData|C_Commentator.GetUnitData]](<span class="apiarg">unitToken</span>) : <span class="apiret">data</span>
: [[API C_Commentator.GetWargameInfo|C_Commentator.GetWargameInfo]](<span style="font-size:smaller; color:#ecbc2a">listID</span>) : <span style="font-size:smaller; color:#4ec9b0">name, minPlayers, maxPlayers, isArena</span>
+
: [[API C_Commentator.GetWargameInfo|C_Commentator.GetWargameInfo]](<span class="apiarg">listID</span>) : <span class="apiret">name, minPlayers, maxPlayers, isArena</span>
: [[API C_Commentator.HasTrackedAuras|C_Commentator.HasTrackedAuras]](<span style="font-size:smaller; color:#ecbc2a">token</span>) : <span style="font-size:smaller; color:#4ec9b0">hasOffensiveAura, hasDefensiveAura</span>
+
: [[API C_Commentator.HasTrackedAuras|C_Commentator.HasTrackedAuras]](<span class="apiarg">token</span>) : <span class="apiret">hasOffensiveAura, hasDefensiveAura</span>
: [[API C_Commentator.IsSmartCameraLocked|C_Commentator.IsSmartCameraLocked]]() : <span style="font-size:smaller; color:#4ec9b0">isSmartCameraLocked</span>
+
: [[API C_Commentator.IsSmartCameraLocked|C_Commentator.IsSmartCameraLocked]]() : <span class="apiret">isSmartCameraLocked</span>
: [[API C_Commentator.IsSpectating|C_Commentator.IsSpectating]]() : <span style="font-size:smaller; color:#4ec9b0">isSpectating</span>
+
: [[API C_Commentator.IsSpectating|C_Commentator.IsSpectating]]() : <span class="apiret">isSpectating</span>
: [[API C_Commentator.IsTrackedDefensiveAura|C_Commentator.IsTrackedDefensiveAura]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>) : <span style="font-size:smaller; color:#4ec9b0">isDefensiveTrigger</span>
+
: [[API C_Commentator.IsTrackedDefensiveAura|C_Commentator.IsTrackedDefensiveAura]](<span class="apiarg">spellID</span>) : <span class="apiret">isDefensiveTrigger</span>
: [[API C_Commentator.IsTrackedOffensiveAura|C_Commentator.IsTrackedOffensiveAura]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>) : <span style="font-size:smaller; color:#4ec9b0">isOffensiveTrigger</span>
+
: [[API C_Commentator.IsTrackedOffensiveAura|C_Commentator.IsTrackedOffensiveAura]](<span class="apiarg">spellID</span>) : <span class="apiret">isOffensiveTrigger</span>
: [[API C_Commentator.IsTrackedSpell|C_Commentator.IsTrackedSpell]](<span style="font-size:smaller; color:#ecbc2a">teamIndex, playerIndex, spellID, category</span>) : <span style="font-size:smaller; color:#4ec9b0">isTracked</span>
+
: [[API C_Commentator.IsTrackedSpell|C_Commentator.IsTrackedSpell]](<span class="apiarg">teamIndex, playerIndex, spellID, category</span>) : <span class="apiret">isTracked</span>
: [[API C_Commentator.IsTrackedSpellByUnit|C_Commentator.IsTrackedSpellByUnit]](<span style="font-size:smaller; color:#ecbc2a">unitToken, spellID, category</span>) : <span style="font-size:smaller; color:#4ec9b0">isTracked</span>
+
: [[API C_Commentator.IsTrackedSpellByUnit|C_Commentator.IsTrackedSpellByUnit]](<span class="apiarg">unitToken, spellID, category</span>) : <span class="apiret">isTracked</span>
: [[API C_Commentator.IsUsingSmartCamera|C_Commentator.IsUsingSmartCamera]]() : <span style="font-size:smaller; color:#4ec9b0">isUsingSmartCamera</span>
+
: [[API C_Commentator.IsUsingSmartCamera|C_Commentator.IsUsingSmartCamera]]() : <span class="apiret">isUsingSmartCamera</span>
: [[API C_Commentator.LookAtPlayer|C_Commentator.LookAtPlayer]](<span style="font-size:smaller; color:#ecbc2a">factionIndex, playerIndex [, lookAtIndex]</span>)
+
: [[API C_Commentator.LookAtPlayer|C_Commentator.LookAtPlayer]](<span class="apiarg">factionIndex, playerIndex [, lookAtIndex]</span>)
 
: [[API C_Commentator.RemoveAllOverrideNames|C_Commentator.RemoveAllOverrideNames]]()
 
: [[API C_Commentator.RemoveAllOverrideNames|C_Commentator.RemoveAllOverrideNames]]()
: [[API C_Commentator.RemovePlayerOverrideName|C_Commentator.RemovePlayerOverrideName]](<span style="font-size:smaller; color:#ecbc2a">originalPlayerName</span>)
+
: [[API C_Commentator.RemovePlayerOverrideName|C_Commentator.RemovePlayerOverrideName]](<span class="apiarg">originalPlayerName</span>)
: [[API C_Commentator.RequestPlayerCooldownInfo|C_Commentator.RequestPlayerCooldownInfo]](<span style="font-size:smaller; color:#ecbc2a">teamIndex, playerIndex</span>)
+
: [[API C_Commentator.RequestPlayerCooldownInfo|C_Commentator.RequestPlayerCooldownInfo]](<span class="apiarg">teamIndex, playerIndex</span>)
 
: [[API C_Commentator.ResetFoVTarget|C_Commentator.ResetFoVTarget]]()
 
: [[API C_Commentator.ResetFoVTarget|C_Commentator.ResetFoVTarget]]()
: [[API C_Commentator.ResetSeriesScores|C_Commentator.ResetSeriesScores]](<span style="font-size:smaller; color:#ecbc2a">teamName1, teamName2</span>)
+
: [[API C_Commentator.ResetSeriesScores|C_Commentator.ResetSeriesScores]](<span class="apiarg">teamName1, teamName2</span>)
 
: [[API C_Commentator.ResetSettings|C_Commentator.ResetSettings]]()
 
: [[API C_Commentator.ResetSettings|C_Commentator.ResetSettings]]()
 
: [[API C_Commentator.ResetTrackedAuras|C_Commentator.ResetTrackedAuras]]()
 
: [[API C_Commentator.ResetTrackedAuras|C_Commentator.ResetTrackedAuras]]()
: [[API C_Commentator.SetAdditionalCameraWeight|C_Commentator.SetAdditionalCameraWeight]](<span style="font-size:smaller; color:#ecbc2a">teamIndex, playerIndex, weight</span>)
+
: [[API C_Commentator.SetAdditionalCameraWeight|C_Commentator.SetAdditionalCameraWeight]](<span class="apiarg">teamIndex, playerIndex, weight</span>)
: [[API C_Commentator.SetAdditionalCameraWeightByToken|C_Commentator.SetAdditionalCameraWeightByToken]](<span style="font-size:smaller; color:#ecbc2a">unitToken, weight</span>)
+
: [[API C_Commentator.SetAdditionalCameraWeightByToken|C_Commentator.SetAdditionalCameraWeightByToken]](<span class="apiarg">unitToken, weight</span>)
: [[API C_Commentator.SetBlacklistedAuras|C_Commentator.SetBlacklistedAuras]](<span style="font-size:smaller; color:#ecbc2a">spellIDs</span>)
+
: [[API C_Commentator.SetBlocklistedAuras|C_Commentator.SetBlocklistedAuras]](<span class="apiarg">spellIDs</span>)
: [[API C_Commentator.SetBlacklistedCooldowns|C_Commentator.SetBlacklistedCooldowns]](<span style="font-size:smaller; color:#ecbc2a">specID, spellIDs</span>)
+
: [[API C_Commentator.SetBlocklistedCooldowns|C_Commentator.SetBlocklistedCooldowns]](<span class="apiarg">specID, spellIDs</span>)
: [[API C_Commentator.SetCamera|C_Commentator.SetCamera]](<span style="font-size:smaller; color:#ecbc2a">xPos, yPos, zPos, yaw, pitch, roll, fov</span>)
+
: [[API C_Commentator.SetCamera|C_Commentator.SetCamera]](<span class="apiarg">xPos, yPos, zPos, yaw, pitch, roll, fov</span>)
: [[API C_Commentator.SetCameraCollision|C_Commentator.SetCameraCollision]](<span style="font-size:smaller; color:#ecbc2a">collide</span>)
+
: [[API C_Commentator.SetCameraCollision|C_Commentator.SetCameraCollision]](<span class="apiarg">collide</span>)
: [[API C_Commentator.SetCameraPosition|C_Commentator.SetCameraPosition]](<span style="font-size:smaller; color:#ecbc2a">xPos, yPos, zPos, snapToLocation</span>)
+
: [[API C_Commentator.SetCameraPosition|C_Commentator.SetCameraPosition]](<span class="apiarg">xPos, yPos, zPos, snapToLocation</span>)
: [[API C_Commentator.SetCheatsEnabled|C_Commentator.SetCheatsEnabled]](<span style="font-size:smaller; color:#ecbc2a">enableCheats</span>)
+
: [[API C_Commentator.SetCheatsEnabled|C_Commentator.SetCheatsEnabled]](<span class="apiarg">enableCheats</span>)
: [[API C_Commentator.SetCommentatorHistory|C_Commentator.SetCommentatorHistory]](<span style="font-size:smaller; color:#ecbc2a">history</span>)
+
: [[API C_Commentator.SetCommentatorHistory|C_Commentator.SetCommentatorHistory]](<span class="apiarg">history</span>)
: [[API C_Commentator.SetDistanceBeforeForcedHorizontalConvergence|C_Commentator.SetDistanceBeforeForcedHorizontalConvergence]](<span style="font-size:smaller; color:#ecbc2a">distance</span>)
+
: [[API C_Commentator.SetDistanceBeforeForcedHorizontalConvergence|C_Commentator.SetDistanceBeforeForcedHorizontalConvergence]](<span class="apiarg">distance</span>)
: [[API C_Commentator.SetDurationToForceHorizontalConvergence|C_Commentator.SetDurationToForceHorizontalConvergence]](<span style="font-size:smaller; color:#ecbc2a">ms</span>)
+
: [[API C_Commentator.SetDurationToForceHorizontalConvergence|C_Commentator.SetDurationToForceHorizontalConvergence]](<span class="apiarg">ms</span>)
: [[API C_Commentator.SetExcludeDistance|C_Commentator.SetExcludeDistance]](<span style="font-size:smaller; color:#ecbc2a">excludeDistance</span>)
+
: [[API C_Commentator.SetExcludeDistance|C_Commentator.SetExcludeDistance]](<span class="apiarg">excludeDistance</span>)
: [[API C_Commentator.SetFollowCameraSpeeds|C_Commentator.SetFollowCameraSpeeds]](<span style="font-size:smaller; color:#ecbc2a">elasticSpeed, minSpeed</span>)
+
: [[API C_Commentator.SetFollowCameraSpeeds|C_Commentator.SetFollowCameraSpeeds]](<span class="apiarg">elasticSpeed, minSpeed</span>)
: [[API C_Commentator.SetHardlockWeight|C_Commentator.SetHardlockWeight]](<span style="font-size:smaller; color:#ecbc2a">weight</span>)
+
: [[API C_Commentator.SetHardlockWeight|C_Commentator.SetHardlockWeight]](<span class="apiarg">weight</span>)
: [[API C_Commentator.SetHorizontalAngleThresholdToSmooth|C_Commentator.SetHorizontalAngleThresholdToSmooth]](<span style="font-size:smaller; color:#ecbc2a">angle</span>)
+
: [[API C_Commentator.SetHorizontalAngleThresholdToSmooth|C_Commentator.SetHorizontalAngleThresholdToSmooth]](<span class="apiarg">angle</span>)
: [[API C_Commentator.SetLookAtLerpAmount|C_Commentator.SetLookAtLerpAmount]](<span style="font-size:smaller; color:#ecbc2a">amount</span>)
+
: [[API C_Commentator.SetLookAtLerpAmount|C_Commentator.SetLookAtLerpAmount]](<span class="apiarg">amount</span>)
: [[API C_Commentator.SetMapAndInstanceIndex|C_Commentator.SetMapAndInstanceIndex]](<span style="font-size:smaller; color:#ecbc2a">mapIndex, instanceIndex</span>)
+
: [[API C_Commentator.SetMapAndInstanceIndex|C_Commentator.SetMapAndInstanceIndex]](<span class="apiarg">mapIndex, instanceIndex</span>)
: [[API C_Commentator.SetMouseDisabled|C_Commentator.SetMouseDisabled]](<span style="font-size:smaller; color:#ecbc2a">disabled</span>)
+
: [[API C_Commentator.SetMouseDisabled|C_Commentator.SetMouseDisabled]](<span class="apiarg">disabled</span>)
: [[API C_Commentator.SetMoveSpeed|C_Commentator.SetMoveSpeed]](<span style="font-size:smaller; color:#ecbc2a">newSpeed</span>)
+
: [[API C_Commentator.SetMoveSpeed|C_Commentator.SetMoveSpeed]](<span class="apiarg">newSpeed</span>)
: [[API C_Commentator.SetMsToHoldForHorizontalMovement|C_Commentator.SetMsToHoldForHorizontalMovement]](<span style="font-size:smaller; color:#ecbc2a">ms</span>)
+
: [[API C_Commentator.SetMsToHoldForHorizontalMovement|C_Commentator.SetMsToHoldForHorizontalMovement]](<span class="apiarg">ms</span>)
: [[API C_Commentator.SetMsToHoldForVerticalMovement|C_Commentator.SetMsToHoldForVerticalMovement]](<span style="font-size:smaller; color:#ecbc2a">ms</span>)
+
: [[API C_Commentator.SetMsToHoldForVerticalMovement|C_Commentator.SetMsToHoldForVerticalMovement]](<span class="apiarg">ms</span>)
: [[API C_Commentator.SetMsToSmoothHorizontalChange|C_Commentator.SetMsToSmoothHorizontalChange]](<span style="font-size:smaller; color:#ecbc2a">ms</span>)
+
: [[API C_Commentator.SetMsToSmoothHorizontalChange|C_Commentator.SetMsToSmoothHorizontalChange]](<span class="apiarg">ms</span>)
: [[API C_Commentator.SetMsToSmoothVerticalChange|C_Commentator.SetMsToSmoothVerticalChange]](<span style="font-size:smaller; color:#ecbc2a">ms</span>)
+
: [[API C_Commentator.SetMsToSmoothVerticalChange|C_Commentator.SetMsToSmoothVerticalChange]](<span class="apiarg">ms</span>)
: [[API C_Commentator.SetPositionLerpAmount|C_Commentator.SetPositionLerpAmount]](<span style="font-size:smaller; color:#ecbc2a">amount</span>)
+
: [[API C_Commentator.SetPositionLerpAmount|C_Commentator.SetPositionLerpAmount]](<span class="apiarg">amount</span>)
: [[API C_Commentator.SetRequestedDebuffCooldowns|C_Commentator.SetRequestedDebuffCooldowns]](<span style="font-size:smaller; color:#ecbc2a">specID, spellIDs</span>)
+
: [[API C_Commentator.SetRequestedDebuffCooldowns|C_Commentator.SetRequestedDebuffCooldowns]](<span class="apiarg">specID, spellIDs</span>)
: [[API C_Commentator.SetRequestedDefensiveCooldowns|C_Commentator.SetRequestedDefensiveCooldowns]](<span style="font-size:smaller; color:#ecbc2a">specID, spellIDs</span>)
+
: [[API C_Commentator.SetRequestedDefensiveCooldowns|C_Commentator.SetRequestedDefensiveCooldowns]](<span class="apiarg">specID, spellIDs</span>)
: [[API C_Commentator.SetRequestedOffensiveCooldowns|C_Commentator.SetRequestedOffensiveCooldowns]](<span style="font-size:smaller; color:#ecbc2a">specID, spellIDs</span>)
+
: [[API C_Commentator.SetRequestedOffensiveCooldowns|C_Commentator.SetRequestedOffensiveCooldowns]](<span class="apiarg">specID, spellIDs</span>)
: [[API C_Commentator.SetSeriesScore|C_Commentator.SetSeriesScore]](<span style="font-size:smaller; color:#ecbc2a">teamName1, teamName2, scoringTeamName, score</span>)
+
: [[API C_Commentator.SetSeriesScore|C_Commentator.SetSeriesScore]](<span class="apiarg">teamName1, teamName2, scoringTeamName, score</span>)
: [[API C_Commentator.SetSeriesScores|C_Commentator.SetSeriesScores]](<span style="font-size:smaller; color:#ecbc2a">teamName1, teamName2, score1, score2</span>)
+
: [[API C_Commentator.SetSeriesScores|C_Commentator.SetSeriesScores]](<span class="apiarg">teamName1, teamName2, score1, score2</span>)
: [[API C_Commentator.SetSmartCameraLocked|C_Commentator.SetSmartCameraLocked]](<span style="font-size:smaller; color:#ecbc2a">locked</span>)
+
: [[API C_Commentator.SetSmartCameraLocked|C_Commentator.SetSmartCameraLocked]](<span class="apiarg">locked</span>)
: [[API C_Commentator.SetSmoothFollowTransitioning|C_Commentator.SetSmoothFollowTransitioning]](<span style="font-size:smaller; color:#ecbc2a">enabled</span>)
+
: [[API C_Commentator.SetSmoothFollowTransitioning|C_Commentator.SetSmoothFollowTransitioning]](<span class="apiarg">enabled</span>)
: [[API C_Commentator.SetSoftlockWeight|C_Commentator.SetSoftlockWeight]](<span style="font-size:smaller; color:#ecbc2a">weight</span>)
+
: [[API C_Commentator.SetSoftlockWeight|C_Commentator.SetSoftlockWeight]](<span class="apiarg">weight</span>)
: [[API C_Commentator.SetSpeedFactor|C_Commentator.SetSpeedFactor]](<span style="font-size:smaller; color:#ecbc2a">factor</span>)
+
: [[API C_Commentator.SetSpeedFactor|C_Commentator.SetSpeedFactor]](<span class="apiarg">factor</span>)
: [[API C_Commentator.SetTargetHeightOffset|C_Commentator.SetTargetHeightOffset]](<span style="font-size:smaller; color:#ecbc2a">offset</span>)
+
: [[API C_Commentator.SetTargetHeightOffset|C_Commentator.SetTargetHeightOffset]](<span class="apiarg">offset</span>)
: [[API C_Commentator.SetUseSmartCamera|C_Commentator.SetUseSmartCamera]](<span style="font-size:smaller; color:#ecbc2a">useSmartCamera</span>)
+
: [[API C_Commentator.SetUseSmartCamera|C_Commentator.SetUseSmartCamera]](<span class="apiarg">useSmartCamera</span>)
 
: [[API C_Commentator.SnapCameraLookAtPoint|C_Commentator.SnapCameraLookAtPoint]]()
 
: [[API C_Commentator.SnapCameraLookAtPoint|C_Commentator.SnapCameraLookAtPoint]]()
: [[API C_Commentator.StartWargame|C_Commentator.StartWargame]](<span style="font-size:smaller; color:#ecbc2a">listID, teamSize, tournamentRules, teamOneCaptain, teamTwoCaptain</span>)
+
: [[API C_Commentator.StartWargame|C_Commentator.StartWargame]](<span class="apiarg">listID, teamSize, tournamentRules, teamOneCaptain, teamTwoCaptain</span>)
 
: [[API C_Commentator.SwapTeamSides|C_Commentator.SwapTeamSides]]()
 
: [[API C_Commentator.SwapTeamSides|C_Commentator.SwapTeamSides]]()
 
: [[API C_Commentator.ToggleCheats|C_Commentator.ToggleCheats]]()
 
: [[API C_Commentator.ToggleCheats|C_Commentator.ToggleCheats]]()
: [[API C_Commentator.UpdateMapInfo|C_Commentator.UpdateMapInfo]](<span style="font-size:smaller; color:#ecbc2a">[targetPlayer]</span>)
+
: [[API C_Commentator.UpdateMapInfo|C_Commentator.UpdateMapInfo]](<span class="apiarg">[targetPlayer]</span>)
 
: [[API C_Commentator.UpdatePlayerInfo|C_Commentator.UpdatePlayerInfo]]()
 
: [[API C_Commentator.UpdatePlayerInfo|C_Commentator.UpdatePlayerInfo]]()
 
: [[API C_Commentator.ZoomIn|C_Commentator.ZoomIn]]()
 
: [[API C_Commentator.ZoomIn|C_Commentator.ZoomIn]]()
Line 4,316: Line 4,403:
   
 
=== Tutorials ===
 
=== Tutorials ===
: [[API C_PlayerInfo.IsPlayerEligibleForNPE|C_PlayerInfo.IsPlayerEligibleForNPE]]() : <span style="font-size:smaller; color:#4ec9b0">isEligible, failureReason</span>
+
: [[API C_PlayerInfo.IsPlayerEligibleForNPE|C_PlayerInfo.IsPlayerEligibleForNPE]]() : <span class="apiret">isEligible, failureReason</span>
: [[API C_PlayerInfo.IsPlayerEligibleForNPEv2|C_PlayerInfo.IsPlayerEligibleForNPEv2]]() : <span style="font-size:smaller; color:#4ec9b0">isEligible, failureReason</span>
+
: [[API C_PlayerInfo.IsPlayerEligibleForNPEv2|C_PlayerInfo.IsPlayerEligibleForNPEv2]]() : <span class="apiret">isEligible, failureReason</span>
: [[API C_PlayerInfo.IsPlayerNPERestricted|C_PlayerInfo.IsPlayerNPERestricted]]() : <span style="font-size:smaller; color:#4ec9b0">isRestricted</span>
+
: [[API C_PlayerInfo.IsPlayerNPERestricted|C_PlayerInfo.IsPlayerNPERestricted]]() : <span class="apiret">isRestricted</span>
 
: [[API C_SplashScreen.AcknowledgeSplash|C_SplashScreen.AcknowledgeSplash]]()
 
: [[API C_SplashScreen.AcknowledgeSplash|C_SplashScreen.AcknowledgeSplash]]()
: [[API C_SplashScreen.CanViewSplashScreen|C_SplashScreen.CanViewSplashScreen]]() : <span style="font-size:smaller; color:#4ec9b0">canView</span>
+
: [[API C_SplashScreen.CanViewSplashScreen|C_SplashScreen.CanViewSplashScreen]]() : <span class="apiret">canView</span>
: [[API C_SplashScreen.RequestLatestSplashScreen|C_SplashScreen.RequestLatestSplashScreen]](<span style="font-size:smaller; color:#ecbc2a">fromGameMenu</span>)
+
: [[API C_SplashScreen.RequestLatestSplashScreen|C_SplashScreen.RequestLatestSplashScreen]](<span class="apiarg">fromGameMenu</span>)
: [[API C_StableInfo.GetNumActivePets|C_StableInfo.GetNumActivePets]]() : <span style="font-size:smaller; color:#4ec9b0">numActivePets</span>
+
: [[API C_StableInfo.GetNumActivePets|C_StableInfo.GetNumActivePets]]() : <span class="apiret">numActivePets</span>
: [[API C_StableInfo.GetNumStablePets|C_StableInfo.GetNumStablePets]]() : <span style="font-size:smaller; color:#4ec9b0">numStablePets</span>
+
: [[API C_StableInfo.GetNumStablePets|C_StableInfo.GetNumStablePets]]() : <span class="apiret">numStablePets</span>
 
: [[API C_Tutorial.AbandonTutorialArea|C_Tutorial.AbandonTutorialArea]]()
 
: [[API C_Tutorial.AbandonTutorialArea|C_Tutorial.AbandonTutorialArea]]()
 
: [[API C_Tutorial.ReturnToTutorialArea|C_Tutorial.ReturnToTutorialArea]]()
 
: [[API C_Tutorial.ReturnToTutorialArea|C_Tutorial.ReturnToTutorialArea]]()
 
: [[API CanResetTutorials|CanResetTutorials]]()
 
: [[API CanResetTutorials|CanResetTutorials]]()
 
: [[API ClearTutorials|ClearTutorials]]()
 
: [[API ClearTutorials|ClearTutorials]]()
: [[API ClosestGameObjectPosition|ClosestGameObjectPosition]](<span style="font-size:smaller; color:#ecbc2a">gameObjectID</span>)
+
: [[API ClosestGameObjectPosition|ClosestGameObjectPosition]](<span class="apiarg">gameObjectID</span>)
: [[API ClosestUnitPosition|ClosestUnitPosition]](<span style="font-size:smaller; color:#ecbc2a">creatureID</span>) - Returns the unit position of the closest creature by ID. Only works for mobs in the starting zones.
+
: [[API ClosestUnitPosition|ClosestUnitPosition]](<span class="apiarg">creatureID</span>) - Returns the unit position of the closest creature by ID. Only works for mobs in the starting zones.
: [[API FlagTutorial|FlagTutorial]](<span style="font-size:smaller; color:#ecbc2a">tutorial</span>)
+
: [[API FlagTutorial|FlagTutorial]](<span class="apiarg">tutorial</span>)
: [[API GetNextCompleatedTutorial|GetNextCompleatedTutorial]](<span style="font-size:smaller; color:#ecbc2a">tutorial</span>)
+
: [[API GetNextCompleatedTutorial|GetNextCompleatedTutorial]](<span class="apiarg">tutorial</span>)
: [[API GetPrevCompleatedTutorial|GetPrevCompleatedTutorial]](<span style="font-size:smaller; color:#ecbc2a">tutorial</span>)
+
: [[API GetPrevCompleatedTutorial|GetPrevCompleatedTutorial]](<span class="apiarg">tutorial</span>)
 
: [[API GetTutorialsEnabled|GetTutorialsEnabled]]()
 
: [[API GetTutorialsEnabled|GetTutorialsEnabled]]()
 
: [[API IsSplashFramePrimaryFeatureUnlocked|IsSplashFramePrimaryFeatureUnlocked]]()
 
: [[API IsSplashFramePrimaryFeatureUnlocked|IsSplashFramePrimaryFeatureUnlocked]]()
: [[API IsTutorialFlagged|IsTutorialFlagged]](<span style="font-size:smaller; color:#ecbc2a">tutorial</span>)
+
: [[API IsTutorialFlagged|IsTutorialFlagged]](<span class="apiarg">tutorial</span>)
 
: [[API RequestBottomLeftActionBar|RequestBottomLeftActionBar]]()
 
: [[API RequestBottomLeftActionBar|RequestBottomLeftActionBar]]()
 
: [[API ResetTutorials|ResetTutorials]]()
 
: [[API ResetTutorials|ResetTutorials]]()
 
: [[API ShouldShowSpecialSplashScreen|ShouldShowSpecialSplashScreen]]()
 
: [[API ShouldShowSpecialSplashScreen|ShouldShowSpecialSplashScreen]]()
 
: [[API SplashFrameCanBeShown|SplashFrameCanBeShown]]()
 
: [[API SplashFrameCanBeShown|SplashFrameCanBeShown]]()
: [[API TriggerTutorial|TriggerTutorial]](<span style="font-size:smaller; color:#ecbc2a">tutorial</span>)
+
: [[API TriggerTutorial|TriggerTutorial]](<span class="apiarg">tutorial</span>)
   
 
=== UI Objects ===
 
=== UI Objects ===
: [[API GetFileIDFromPath|GetFileIDFromPath]](<span style="font-size:smaller; color:#ecbc2a">filePath</span>) - Returns the fileID corresponding to the given game file path (texture, sound, model, etc.).
+
: [[API GetFileIDFromPath|GetFileIDFromPath]](<span class="apiarg">filePath</span>) - Returns the fileID corresponding to the given game file path (texture, sound, model, etc.).
: [[API SetUIVisibility|SetUIVisibility]](<span style="font-size:smaller; color:#ecbc2a">visible</span>) - Hides or shows the entire UI.
+
: [[API SetUIVisibility|SetUIVisibility]](<span class="apiarg">visible</span>) - Hides or shows the entire UI.
: <small>UI</small> [[API EasyMenu|EasyMenu]](<span style="font-size:smaller; color:#ecbc2a">menuList, menuFrame, anchor, x, y, displayMode, autoHideDelay</span>)
+
: <small>UI</small> [[API EasyMenu|EasyMenu]](<span class="apiarg">menuList, menuFrame, anchor, x, y, displayMode, autoHideDelay</span>)
: <small>UI</small> [[API ToggleDropDownMenu|ToggleDropDownMenu]](<span style="font-size:smaller; color:#ecbc2a">level, value, dropDownFrame, anchorName, xOffset, yOffset</span>)
+
: <small>UI</small> [[API ToggleDropDownMenu|ToggleDropDownMenu]](<span class="apiarg">level, value, dropDownFrame, anchorName, xOffset, yOffset</span>)
   
 
==== Frame ====
 
==== Frame ====
  +
: [[API C_FrameManager.GetFrameVisibilityState|C_FrameManager.GetFrameVisibilityState]](<span class="apiarg">frameType</span>) : <span class="apiret">shouldShow</span>
: [[API CreateFrame|CreateFrame]](<span style="font-size:smaller; color:#ecbc2a">frameType [, frameName, parentFrame, inheritsFrame, id]</span>) - Create a new frame of the specified type.
 
: [[API DoesTemplateExist|DoesTemplateExist]](<span style="font-size:smaller; color:#ecbc2a">template</span>) - Returns if a virtual frame template exists.
+
: [[API CreateFrame|CreateFrame]](<span class="apiarg">frameType [, frameName, parentFrame, inheritsFrame, id]</span>) - Create a new frame of the specified type.
: [[API EnumerateFrames|EnumerateFrames]](<span style="font-size:smaller; color:#ecbc2a">currentFrame</span>) - Get the Frame which follows currentFrame.
+
: [[API DoesTemplateExist|DoesTemplateExist]](<span class="apiarg">template</span>) - Returns if a virtual frame template exists.
  +
: [[API EnumerateFrames|EnumerateFrames]](<span class="apiarg">currentFrame</span>) - Get the Frame which follows currentFrame.
: [[API GetClickFrame|GetClickFrame]](<span style="font-size:smaller; color:#ecbc2a">name</span>)
 
  +
: [[API GetClickFrame|GetClickFrame]](<span class="apiarg">name</span>)
 
: [[API GetCurrentKeyBoardFocus|GetCurrentKeyBoardFocus]]() - Returns the [editbox] widget currently handling keyboard events.
 
: [[API GetCurrentKeyBoardFocus|GetCurrentKeyBoardFocus]]() - Returns the [editbox] widget currently handling keyboard events.
 
: [[API GetDefaultScale|GetDefaultScale]]()
 
: [[API GetDefaultScale|GetDefaultScale]]()
: [[API GetFramesRegisteredForEvent|GetFramesRegisteredForEvent]](<span style="font-size:smaller; color:#ecbc2a">event</span>) - Returns a list of frames that are registered for the given event.
+
: [[API GetFramesRegisteredForEvent|GetFramesRegisteredForEvent]](<span class="apiarg">event</span>) - Returns a list of frames that are registered for the given event.
 
: [[API GetMouseButtonName|GetMouseButtonName]]()
 
: [[API GetMouseButtonName|GetMouseButtonName]]()
 
: [[API GetMouseClickFocus|GetMouseClickFocus]]()
 
: [[API GetMouseClickFocus|GetMouseClickFocus]]()
Line 4,361: Line 4,449:
 
: [[API GetMouseMotionFocus|GetMouseMotionFocus]]()
 
: [[API GetMouseMotionFocus|GetMouseMotionFocus]]()
 
: [[API GetNumFrames|GetNumFrames]]() - Get the current number of Frame (and derivative) objects.
 
: [[API GetNumFrames|GetNumFrames]]() - Get the current number of Frame (and derivative) objects.
: [[API SetupFullscreenScale|SetupFullscreenScale]](<span style="font-size:smaller; color:#ecbc2a">frame</span>) - Configures scale of full-screen views, such as the world map, to best fill screen.
+
: [[API SetupFullscreenScale|SetupFullscreenScale]](<span class="apiarg">frame</span>) - Configures scale of full-screen views, such as the world map, to best fill screen.
: <small>UI</small> [[API MouseIsOver|MouseIsOver]](<span style="font-size:smaller; color:#ecbc2a">region, topOffset, bottomOffset, leftOffset, rightOffset</span>) - Checks whether the mouse is over the frame (or within specified offsets).
+
: <small>UI</small> [[API MouseIsOver|MouseIsOver]](<span class="apiarg">region, topOffset, bottomOffset, leftOffset, rightOffset</span>) - Checks whether the mouse is over the frame (or within specified offsets).
: <small>UI</small> [[API UIFrameFadeIn|UIFrameFadeIn]](<span style="font-size:smaller; color:#ecbc2a">frame, timeToFade, startAlpha, endAlpha</span>) - Fades a frame in.
+
: <small>UI</small> [[API UIFrameFadeIn|UIFrameFadeIn]](<span class="apiarg">frame, timeToFade, startAlpha, endAlpha</span>) - Fades a frame in.
: <small>UI</small> [[API UIFrameFadeOut|UIFrameFadeOut]](<span style="font-size:smaller; color:#ecbc2a">frame, timeToFade, startAlpha, endAlpha</span>) - Fades a frame out.
+
: <small>UI</small> [[API UIFrameFadeOut|UIFrameFadeOut]](<span class="apiarg">frame, timeToFade, startAlpha, endAlpha</span>) - Fades a frame out.
   
 
==== Font ====
 
==== Font ====
: [[API CreateFont|CreateFont]](<span style="font-size:smaller; color:#ecbc2a">name</span>) - Dynamically creates a font object.
+
: [[API CreateFont|CreateFont]](<span class="apiarg">name</span>) - Dynamically creates a font object.
: [[API GetFontInfo|GetFontInfo]](<span style="font-size:smaller; color:#ecbc2a">font or name</span>)
+
: [[API GetFontInfo|GetFontInfo]](<span class="apiarg">font or name</span>)
 
: [[API GetFonts|GetFonts]]() - Returns all available fonts.
 
: [[API GetFonts|GetFonts]]() - Returns all available fonts.
   
 
==== Texture ====
 
==== Texture ====
: [[API C_Texture.GetAtlasInfo|C_Texture.GetAtlasInfo]](<span style="font-size:smaller; color:#ecbc2a">atlas</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span> - Returns atlas info.
+
: [[API C_Texture.GetAtlasInfo|C_Texture.GetAtlasInfo]](<span class="apiarg">atlas</span>) : <span class="apiret">info</span> - Returns atlas info.
: [[API GetObjectIconTextureCoords|GetObjectIconTextureCoords]](<span style="font-size:smaller; color:#ecbc2a">textureIndex</span>)
+
: [[API GetObjectIconTextureCoords|GetObjectIconTextureCoords]](<span class="apiarg">textureIndex</span>)
: [[API SetPortraitTexture|SetPortraitTexture]](<span style="font-size:smaller; color:#ecbc2a">textureObject, unitToken</span>) - Sets a texture to a unit's 2D portrait.
+
: [[API SetPortraitTexture|SetPortraitTexture]](<span class="apiarg">textureObject, unitToken</span>) - Sets a texture to a unit's 2D portrait.
: [[API SetPortraitToTexture|SetPortraitToTexture]](<span style="font-size:smaller; color:#ecbc2a">textureObject, texturePath</span>) - Applies a circular mask to a texture, making it resemble a portrait.
+
: [[API SetPortraitToTexture|SetPortraitToTexture]](<span class="apiarg">textureObject, texturePath</span>) - Applies a circular mask to a texture, making it resemble a portrait.
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/CreateAtlasMarkup CreateAtlasMarkup](<span style="font-size:smaller; color:#ecbc2a">atlasName [, height, width, offsetX, offsetY]</span>) - Returns a texture fontstring for an atlas.
+
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/CreateAtlasMarkup CreateAtlasMarkup](<span class="apiarg">atlasName [, height, width, offsetX, offsetY]</span>) - Returns a texture fontstring for an atlas.
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/CreateTextureMarkup CreateTextureMarkup](<span style="font-size:smaller; color:#ecbc2a">file, fileWidth, fileHeight, width, height, left, right, top, bottom [, xOffset, yOffset]</span>) - Returns a texture fontstring.
+
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/CreateTextureMarkup CreateTextureMarkup](<span class="apiarg">file, fileWidth, fileHeight, width, height, left, right, top, bottom [, xOffset, yOffset]</span>) - Returns a texture fontstring.
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/GetTextureInfo GetTextureInfo](<span style="font-size:smaller; color:#ecbc2a">obj</span>) - Returns the type and info of a texture.
+
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/GetTextureInfo GetTextureInfo](<span class="apiarg">obj</span>) - Returns the type and info of a texture.
   
 
==== ModelScene ====
 
==== ModelScene ====
: [[API C_ModelInfo.AddActiveModelScene|C_ModelInfo.AddActiveModelScene]](<span style="font-size:smaller; color:#ecbc2a">modelSceneFrame, modelSceneID</span>)
+
: [[API C_ModelInfo.AddActiveModelScene|C_ModelInfo.AddActiveModelScene]](<span class="apiarg">modelSceneFrame, modelSceneID</span>)
: [[API C_ModelInfo.AddActiveModelSceneActor|C_ModelInfo.AddActiveModelSceneActor]](<span style="font-size:smaller; color:#ecbc2a">modelSceneFrameActor, modelSceneActorID</span>)
+
: [[API C_ModelInfo.AddActiveModelSceneActor|C_ModelInfo.AddActiveModelSceneActor]](<span class="apiarg">modelSceneFrameActor, modelSceneActorID</span>)
: [[API C_ModelInfo.ClearActiveModelScene|C_ModelInfo.ClearActiveModelScene]](<span style="font-size:smaller; color:#ecbc2a">modelSceneFrame</span>)
+
: [[API C_ModelInfo.ClearActiveModelScene|C_ModelInfo.ClearActiveModelScene]](<span class="apiarg">modelSceneFrame</span>)
: [[API C_ModelInfo.ClearActiveModelSceneActor|C_ModelInfo.ClearActiveModelSceneActor]](<span style="font-size:smaller; color:#ecbc2a">modelSceneFrameActor</span>)
+
: [[API C_ModelInfo.ClearActiveModelSceneActor|C_ModelInfo.ClearActiveModelSceneActor]](<span class="apiarg">modelSceneFrameActor</span>)
: [[API C_ModelInfo.GetModelSceneActorDisplayInfoByID|C_ModelInfo.GetModelSceneActorDisplayInfoByID]](<span style="font-size:smaller; color:#ecbc2a">modelActorDisplayID</span>) : <span style="font-size:smaller; color:#4ec9b0">actorDisplayInfo</span>
+
: [[API C_ModelInfo.GetModelSceneActorDisplayInfoByID|C_ModelInfo.GetModelSceneActorDisplayInfoByID]](<span class="apiarg">modelActorDisplayID</span>) : <span class="apiret">actorDisplayInfo</span>
: [[API C_ModelInfo.GetModelSceneActorInfoByID|C_ModelInfo.GetModelSceneActorInfoByID]](<span style="font-size:smaller; color:#ecbc2a">modelActorID</span>) : <span style="font-size:smaller; color:#4ec9b0">actorInfo</span>
+
: [[API C_ModelInfo.GetModelSceneActorInfoByID|C_ModelInfo.GetModelSceneActorInfoByID]](<span class="apiarg">modelActorID</span>) : <span class="apiret">actorInfo</span>
: [[API C_ModelInfo.GetModelSceneCameraInfoByID|C_ModelInfo.GetModelSceneCameraInfoByID]](<span style="font-size:smaller; color:#ecbc2a">modelSceneCameraID</span>) : <span style="font-size:smaller; color:#4ec9b0">modelSceneCameraInfo</span>
+
: [[API C_ModelInfo.GetModelSceneCameraInfoByID|C_ModelInfo.GetModelSceneCameraInfoByID]](<span class="apiarg">modelSceneCameraID</span>) : <span class="apiret">modelSceneCameraInfo</span>
: [[API C_ModelInfo.GetModelSceneInfoByID|C_ModelInfo.GetModelSceneInfoByID]](<span style="font-size:smaller; color:#ecbc2a">modelSceneID</span>) : <span style="font-size:smaller; color:#4ec9b0">modelSceneType, modelCameraIDs, modelActorsIDs</span>
+
: [[API C_ModelInfo.GetModelSceneInfoByID|C_ModelInfo.GetModelSceneInfoByID]](<span class="apiarg">modelSceneID</span>) : <span class="apiret">modelSceneType, modelCameraIDs, modelActorsIDs</span>
: [[API GetUICameraInfo|GetUICameraInfo]](<span style="font-size:smaller; color:#ecbc2a">uiCameraID</span>)
+
: [[API GetUICameraInfo|GetUICameraInfo]](<span class="apiarg">uiCameraID</span>)
   
 
==== Blizzard ====
 
==== Blizzard ====
 
Used internally for the Blizzard_PrototypeDialog addon.
 
Used internally for the Blizzard_PrototypeDialog addon.
: [[API C_PrototypeDialog.EnsureRemoved|C_PrototypeDialog.EnsureRemoved]](<span style="font-size:smaller; color:#ecbc2a">instanceID</span>)
+
: [[API C_PrototypeDialog.EnsureRemoved|C_PrototypeDialog.EnsureRemoved]](<span class="apiarg">instanceID</span>)
: [[API C_PrototypeDialog.SelectOption|C_PrototypeDialog.SelectOption]](<span style="font-size:smaller; color:#ecbc2a">instanceID, optionIndex</span>)
+
: [[API C_PrototypeDialog.SelectOption|C_PrototypeDialog.SelectOption]](<span class="apiarg">instanceID, optionIndex</span>)
  +
  +
==== Toasts ====
  +
: [[API C_EventToastManager.GetLevelUpDisplayToastsFromLevel|C_EventToastManager.GetLevelUpDisplayToastsFromLevel]](<span class="apiarg">level</span>) : <span class="apiret">toastInfo</span>
  +
: [[API C_EventToastManager.GetNextToastToDisplay|C_EventToastManager.GetNextToastToDisplay]]() : <span class="apiret">toastInfo</span>
  +
: [[API C_EventToastManager.RemoveCurrentToast|C_EventToastManager.RemoveCurrentToast]]()
   
 
=== UI Widget Manager ===
 
=== UI Widget Manager ===
Line 4,400: Line 4,493:
   
 
Position
 
Position
: [[API C_UIWidgetManager.GetAllWidgetsBySetID|C_UIWidgetManager.GetAllWidgetsBySetID]](<span style="font-size:smaller; color:#ecbc2a">setID</span>) : <span style="font-size:smaller; color:#4ec9b0">widgets</span> - Returns all widgets for a widget set ID.
+
: [[API C_UIWidgetManager.GetAllWidgetsBySetID|C_UIWidgetManager.GetAllWidgetsBySetID]](<span class="apiarg">setID</span>) : <span class="apiret">widgets</span> - Returns all widgets for a widget set ID.
: [[API C_UIWidgetManager.GetBelowMinimapWidgetSetID|C_UIWidgetManager.GetBelowMinimapWidgetSetID]]() : <span style="font-size:smaller; color:#4ec9b0">setID</span>
+
: [[API C_UIWidgetManager.GetBelowMinimapWidgetSetID|C_UIWidgetManager.GetBelowMinimapWidgetSetID]]() : <span class="apiret">setID</span>
: [[API C_UIWidgetManager.GetObjectiveTrackerWidgetSetID|C_UIWidgetManager.GetObjectiveTrackerWidgetSetID]]() : <span style="font-size:smaller; color:#4ec9b0">setID</span>
+
: [[API C_UIWidgetManager.GetObjectiveTrackerWidgetSetID|C_UIWidgetManager.GetObjectiveTrackerWidgetSetID]]() : <span class="apiret">setID</span>
: [[API C_UIWidgetManager.GetPowerBarWidgetSetID|C_UIWidgetManager.GetPowerBarWidgetSetID]]() : <span style="font-size:smaller; color:#4ec9b0">setID</span>
+
: [[API C_UIWidgetManager.GetPowerBarWidgetSetID|C_UIWidgetManager.GetPowerBarWidgetSetID]]() : <span class="apiret">setID</span>
: [[API C_UIWidgetManager.GetTopCenterWidgetSetID|C_UIWidgetManager.GetTopCenterWidgetSetID]]() : <span style="font-size:smaller; color:#4ec9b0">setID</span> - Returns the widget set ID for the top center part of the screen.
+
: [[API C_UIWidgetManager.GetTopCenterWidgetSetID|C_UIWidgetManager.GetTopCenterWidgetSetID]]() : <span class="apiret">setID</span> - Returns the widget set ID for the top center part of the screen.
: [[API C_UIWidgetManager.GetWidgetSetInfo|C_UIWidgetManager.GetWidgetSetInfo]](<span style="font-size:smaller; color:#ecbc2a">widgetSetID</span>) : <span style="font-size:smaller; color:#4ec9b0">widgetSetInfo</span>
+
: [[API C_UIWidgetManager.GetWidgetSetInfo|C_UIWidgetManager.GetWidgetSetInfo]](<span class="apiarg">widgetSetID</span>) : <span class="apiret">widgetSetInfo</span>
 
Visualization
 
Visualization
: [[API C_UIWidgetManager.GetBulletTextListWidgetVisualizationInfo|C_UIWidgetManager.GetBulletTextListWidgetVisualizationInfo]](<span style="font-size:smaller; color:#ecbc2a">widgetID</span>) : <span style="font-size:smaller; color:#4ec9b0">widgetInfo</span>
+
: [[API C_UIWidgetManager.GetBulletTextListWidgetVisualizationInfo|C_UIWidgetManager.GetBulletTextListWidgetVisualizationInfo]](<span class="apiarg">widgetID</span>) : <span class="apiret">widgetInfo</span>
: [[API C_UIWidgetManager.GetCaptureBarWidgetVisualizationInfo|C_UIWidgetManager.GetCaptureBarWidgetVisualizationInfo]](<span style="font-size:smaller; color:#ecbc2a">widgetID</span>) : <span style="font-size:smaller; color:#4ec9b0">widgetInfo</span>
+
: [[API C_UIWidgetManager.GetCaptureBarWidgetVisualizationInfo|C_UIWidgetManager.GetCaptureBarWidgetVisualizationInfo]](<span class="apiarg">widgetID</span>) : <span class="apiret">widgetInfo</span>
: [[API C_UIWidgetManager.GetCaptureZoneVisualizationInfo|C_UIWidgetManager.GetCaptureZoneVisualizationInfo]](<span style="font-size:smaller; color:#ecbc2a">widgetID</span>) : <span style="font-size:smaller; color:#4ec9b0">widgetInfo</span>
+
: [[API C_UIWidgetManager.GetCaptureZoneVisualizationInfo|C_UIWidgetManager.GetCaptureZoneVisualizationInfo]](<span class="apiarg">widgetID</span>) : <span class="apiret">widgetInfo</span>
: [[API C_UIWidgetManager.GetDiscreteProgressStepsVisualizationInfo|C_UIWidgetManager.GetDiscreteProgressStepsVisualizationInfo]](<span style="font-size:smaller; color:#ecbc2a">widgetID</span>) : <span style="font-size:smaller; color:#4ec9b0">widgetInfo</span>
+
: [[API C_UIWidgetManager.GetDiscreteProgressStepsVisualizationInfo|C_UIWidgetManager.GetDiscreteProgressStepsVisualizationInfo]](<span class="apiarg">widgetID</span>) : <span class="apiret">widgetInfo</span>
: [[API C_UIWidgetManager.GetDoubleIconAndTextWidgetVisualizationInfo|C_UIWidgetManager.GetDoubleIconAndTextWidgetVisualizationInfo]](<span style="font-size:smaller; color:#ecbc2a">widgetID</span>) : <span style="font-size:smaller; color:#4ec9b0">widgetInfo</span>
+
: [[API C_UIWidgetManager.GetDoubleIconAndTextWidgetVisualizationInfo|C_UIWidgetManager.GetDoubleIconAndTextWidgetVisualizationInfo]](<span class="apiarg">widgetID</span>) : <span class="apiret">widgetInfo</span>
: [[API C_UIWidgetManager.GetDoubleStateIconRowVisualizationInfo|C_UIWidgetManager.GetDoubleStateIconRowVisualizationInfo]](<span style="font-size:smaller; color:#ecbc2a">widgetID</span>) : <span style="font-size:smaller; color:#4ec9b0">widgetInfo</span>
+
: [[API C_UIWidgetManager.GetDoubleStateIconRowVisualizationInfo|C_UIWidgetManager.GetDoubleStateIconRowVisualizationInfo]](<span class="apiarg">widgetID</span>) : <span class="apiret">widgetInfo</span>
: [[API C_UIWidgetManager.GetDoubleStatusBarWidgetVisualizationInfo|C_UIWidgetManager.GetDoubleStatusBarWidgetVisualizationInfo]](<span style="font-size:smaller; color:#ecbc2a">widgetID</span>) : <span style="font-size:smaller; color:#4ec9b0">widgetInfo</span>
+
: [[API C_UIWidgetManager.GetDoubleStatusBarWidgetVisualizationInfo|C_UIWidgetManager.GetDoubleStatusBarWidgetVisualizationInfo]](<span class="apiarg">widgetID</span>) : <span class="apiret">widgetInfo</span>
: [[API C_UIWidgetManager.GetHorizontalCurrenciesWidgetVisualizationInfo|C_UIWidgetManager.GetHorizontalCurrenciesWidgetVisualizationInfo]](<span style="font-size:smaller; color:#ecbc2a">widgetID</span>) : <span style="font-size:smaller; color:#4ec9b0">widgetInfo</span>
+
: [[API C_UIWidgetManager.GetHorizontalCurrenciesWidgetVisualizationInfo|C_UIWidgetManager.GetHorizontalCurrenciesWidgetVisualizationInfo]](<span class="apiarg">widgetID</span>) : <span class="apiret">widgetInfo</span>
: [[API C_UIWidgetManager.GetIconAndTextWidgetVisualizationInfo|C_UIWidgetManager.GetIconAndTextWidgetVisualizationInfo]](<span style="font-size:smaller; color:#ecbc2a">widgetID</span>) : <span style="font-size:smaller; color:#4ec9b0">widgetInfo</span>
+
: [[API C_UIWidgetManager.GetIconAndTextWidgetVisualizationInfo|C_UIWidgetManager.GetIconAndTextWidgetVisualizationInfo]](<span class="apiarg">widgetID</span>) : <span class="apiret">widgetInfo</span>
: [[API C_UIWidgetManager.GetIconTextAndBackgroundWidgetVisualizationInfo|C_UIWidgetManager.GetIconTextAndBackgroundWidgetVisualizationInfo]](<span style="font-size:smaller; color:#ecbc2a">widgetID</span>) : <span style="font-size:smaller; color:#4ec9b0">widgetInfo</span>
+
: [[API C_UIWidgetManager.GetIconTextAndBackgroundWidgetVisualizationInfo|C_UIWidgetManager.GetIconTextAndBackgroundWidgetVisualizationInfo]](<span class="apiarg">widgetID</span>) : <span class="apiret">widgetInfo</span>
: [[API C_UIWidgetManager.GetIconTextAndCurrenciesWidgetVisualizationInfo|C_UIWidgetManager.GetIconTextAndCurrenciesWidgetVisualizationInfo]](<span style="font-size:smaller; color:#ecbc2a">widgetID</span>) : <span style="font-size:smaller; color:#4ec9b0">widgetInfo</span>
+
: [[API C_UIWidgetManager.GetIconTextAndCurrenciesWidgetVisualizationInfo|C_UIWidgetManager.GetIconTextAndCurrenciesWidgetVisualizationInfo]](<span class="apiarg">widgetID</span>) : <span class="apiret">widgetInfo</span>
: [[API C_UIWidgetManager.GetScenarioHeaderCurrenciesAndBackgroundWidgetVisualizationInfo|C_UIWidgetManager.GetScenarioHeaderCurrenciesAndBackgroundWidgetVisualizationInfo]](<span style="font-size:smaller; color:#ecbc2a">widgetID</span>) : <span style="font-size:smaller; color:#4ec9b0">widgetInfo</span>
+
: [[API C_UIWidgetManager.GetScenarioHeaderCurrenciesAndBackgroundWidgetVisualizationInfo|C_UIWidgetManager.GetScenarioHeaderCurrenciesAndBackgroundWidgetVisualizationInfo]](<span class="apiarg">widgetID</span>) : <span class="apiret">widgetInfo</span>
: [[API C_UIWidgetManager.GetScenarioHeaderTimerWidgetVisualizationInfo|C_UIWidgetManager.GetScenarioHeaderTimerWidgetVisualizationInfo]](<span style="font-size:smaller; color:#ecbc2a">widgetID</span>) : <span style="font-size:smaller; color:#4ec9b0">widgetInfo</span>
+
: [[API C_UIWidgetManager.GetScenarioHeaderTimerWidgetVisualizationInfo|C_UIWidgetManager.GetScenarioHeaderTimerWidgetVisualizationInfo]](<span class="apiarg">widgetID</span>) : <span class="apiret">widgetInfo</span>
: [[API C_UIWidgetManager.GetSpellDisplayVisualizationInfo|C_UIWidgetManager.GetSpellDisplayVisualizationInfo]](<span style="font-size:smaller; color:#ecbc2a">widgetID</span>) : <span style="font-size:smaller; color:#4ec9b0">widgetInfo</span>
+
: [[API C_UIWidgetManager.GetSpacerVisualizationInfo|C_UIWidgetManager.GetSpacerVisualizationInfo]](<span class="apiarg">widgetID</span>) : <span class="apiret">widgetInfo</span>
: [[API C_UIWidgetManager.GetStackedResourceTrackerWidgetVisualizationInfo|C_UIWidgetManager.GetStackedResourceTrackerWidgetVisualizationInfo]](<span style="font-size:smaller; color:#ecbc2a">widgetID</span>) : <span style="font-size:smaller; color:#4ec9b0">widgetInfo</span>
+
: [[API C_UIWidgetManager.GetSpellDisplayVisualizationInfo|C_UIWidgetManager.GetSpellDisplayVisualizationInfo]](<span class="apiarg">widgetID</span>) : <span class="apiret">widgetInfo</span>
: [[API C_UIWidgetManager.GetStatusBarWidgetVisualizationInfo|C_UIWidgetManager.GetStatusBarWidgetVisualizationInfo]](<span style="font-size:smaller; color:#ecbc2a">widgetID</span>) : <span style="font-size:smaller; color:#4ec9b0">widgetInfo</span>
+
: [[API C_UIWidgetManager.GetStackedResourceTrackerWidgetVisualizationInfo|C_UIWidgetManager.GetStackedResourceTrackerWidgetVisualizationInfo]](<span class="apiarg">widgetID</span>) : <span class="apiret">widgetInfo</span>
: [[API C_UIWidgetManager.GetTextureAndTextRowVisualizationInfo|C_UIWidgetManager.GetTextureAndTextRowVisualizationInfo]](<span style="font-size:smaller; color:#ecbc2a">widgetID</span>) : <span style="font-size:smaller; color:#4ec9b0">widgetInfo</span>
+
: [[API C_UIWidgetManager.GetStatusBarWidgetVisualizationInfo|C_UIWidgetManager.GetStatusBarWidgetVisualizationInfo]](<span class="apiarg">widgetID</span>) : <span class="apiret">widgetInfo</span>
: [[API C_UIWidgetManager.GetTextureAndTextVisualizationInfo|C_UIWidgetManager.GetTextureAndTextVisualizationInfo]](<span style="font-size:smaller; color:#ecbc2a">widgetID</span>) : <span style="font-size:smaller; color:#4ec9b0">widgetInfo</span>
+
: [[API C_UIWidgetManager.GetTextColumnRowVisualizationInfo|C_UIWidgetManager.GetTextColumnRowVisualizationInfo]](<span class="apiarg">widgetID</span>) : <span class="apiret">widgetInfo</span>
: [[API C_UIWidgetManager.GetTextureWithAnimationVisualizationInfo|C_UIWidgetManager.GetTextureWithAnimationVisualizationInfo]](<span style="font-size:smaller; color:#ecbc2a">widgetID</span>) : <span style="font-size:smaller; color:#4ec9b0">widgetInfo</span>
+
: [[API C_UIWidgetManager.GetTextureAndTextRowVisualizationInfo|C_UIWidgetManager.GetTextureAndTextRowVisualizationInfo]](<span class="apiarg">widgetID</span>) : <span class="apiret">widgetInfo</span>
: [[API C_UIWidgetManager.GetTextWithStateWidgetVisualizationInfo|C_UIWidgetManager.GetTextWithStateWidgetVisualizationInfo]](<span style="font-size:smaller; color:#ecbc2a">widgetID</span>) : <span style="font-size:smaller; color:#4ec9b0">widgetInfo</span>
+
: [[API C_UIWidgetManager.GetTextureAndTextVisualizationInfo|C_UIWidgetManager.GetTextureAndTextVisualizationInfo]](<span class="apiarg">widgetID</span>) : <span class="apiret">widgetInfo</span>
: [[API C_UIWidgetManager.GetZoneControlVisualizationInfo|C_UIWidgetManager.GetZoneControlVisualizationInfo]](<span style="font-size:smaller; color:#ecbc2a">widgetID</span>) : <span style="font-size:smaller; color:#4ec9b0">widgetInfo</span>
+
: [[API C_UIWidgetManager.GetTextureWithAnimationVisualizationInfo|C_UIWidgetManager.GetTextureWithAnimationVisualizationInfo]](<span class="apiarg">widgetID</span>) : <span class="apiret">widgetInfo</span>
  +
: [[API C_UIWidgetManager.GetTextWithStateWidgetVisualizationInfo|C_UIWidgetManager.GetTextWithStateWidgetVisualizationInfo]](<span class="apiarg">widgetID</span>) : <span class="apiret">widgetInfo</span>
  +
: [[API C_UIWidgetManager.GetZoneControlVisualizationInfo|C_UIWidgetManager.GetZoneControlVisualizationInfo]](<span class="apiarg">widgetID</span>) : <span class="apiret">widgetInfo</span>
   
: [[API C_UIWidgetManager.RegisterUnitForWidgetUpdates|C_UIWidgetManager.RegisterUnitForWidgetUpdates]](<span style="font-size:smaller; color:#ecbc2a">unitToken</span>)
+
: [[API C_UIWidgetManager.RegisterUnitForWidgetUpdates|C_UIWidgetManager.RegisterUnitForWidgetUpdates]](<span class="apiarg">unitToken [, isGuid]</span>)
: [[API C_UIWidgetManager.SetProcessingUnit|C_UIWidgetManager.SetProcessingUnit]](<span style="font-size:smaller; color:#ecbc2a">[unit]</span>)
+
: [[API C_UIWidgetManager.SetProcessingUnit|C_UIWidgetManager.SetProcessingUnit]](<span class="apiarg">[unit]</span>)
: [[API C_UIWidgetManager.UnregisterUnitForWidgetUpdates|C_UIWidgetManager.UnregisterUnitForWidgetUpdates]](<span style="font-size:smaller; color:#ecbc2a">unitToken</span>)
+
: [[API C_UIWidgetManager.SetProcessingUnitGuid|C_UIWidgetManager.SetProcessingUnitGuid]](<span class="apiarg">[unit]</span>)
  +
: [[API C_UIWidgetManager.UnregisterUnitForWidgetUpdates|C_UIWidgetManager.UnregisterUnitForWidgetUpdates]](<span class="apiarg">unitToken [, isGuid]</span>)
: [[API C_TaskQuest.GetUIWidgetSetIDFromQuestID|C_TaskQuest.GetUIWidgetSetIDFromQuestID]](<span style="font-size:smaller; color:#ecbc2a">questID</span>) : <span style="font-size:smaller; color:#4ec9b0">UiWidgetSetID</span>
 
  +
: [[API C_TaskQuest.GetUIWidgetSetIDFromQuestID|C_TaskQuest.GetUIWidgetSetIDFromQuestID]](<span class="apiarg">questID</span>) : <span class="apiret">UiWidgetSetID</span>
 
: [[API C_Widget.IsFrameWidget|C_Widget.IsFrameWidget]]()
 
: [[API C_Widget.IsFrameWidget|C_Widget.IsFrameWidget]]()
 
: [[API C_Widget.IsRenderableWidget|C_Widget.IsRenderableWidget]]()
 
: [[API C_Widget.IsRenderableWidget|C_Widget.IsRenderableWidget]]()
: [[API C_Widget.IsWidget|C_Widget.IsWidget]](<span style="font-size:smaller; color:#ecbc2a">object</span>)
+
: [[API C_Widget.IsWidget|C_Widget.IsWidget]](<span class="apiarg">object</span>)
: [[API UnitWidgetSet|UnitWidgetSet]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) : <span style="font-size:smaller; color:#4ec9b0">uiWidgetSet</span>
+
: [[API UnitWidgetSet|UnitWidgetSet]](<span class="apiarg">unit</span>) : <span class="apiret">uiWidgetSet</span>
   
 
=== Units ===
 
=== Units ===
 
These are functions which act on one or more units. Units are identified by [[UnitId]]s.
 
These are functions which act on one or more units. Units are identified by [[UnitId]]s.
: [[API C_PlayerInfo.GetContentDifficultyCreatureForPlayer|C_PlayerInfo.GetContentDifficultyCreatureForPlayer]](<span style="font-size:smaller; color:#ecbc2a">unitToken</span>) : <span style="font-size:smaller; color:#4ec9b0">difficulty</span>
+
: [[API C_PlayerInfo.GetContentDifficultyCreatureForPlayer|C_PlayerInfo.GetContentDifficultyCreatureForPlayer]](<span class="apiarg">unitToken</span>) : <span class="apiret">difficulty</span>
: [[API GetThreatStatusColor|GetThreatStatusColor]](<span style="font-size:smaller; color:#ecbc2a">status</span>) - Returns RGB values for a given UnitThreatSituation return value.
+
: [[API GetThreatStatusColor|GetThreatStatusColor]](<span class="apiarg">status</span>) - Returns RGB values for a given UnitThreatSituation return value.
: [[API GetUnitChargedPowerPoints|GetUnitChargedPowerPoints]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) : <span style="font-size:smaller; color:#4ec9b0">pointIndices</span>
+
: [[API GetUnitChargedPowerPoints|GetUnitChargedPowerPoints]](<span class="apiarg">unit</span>) : <span class="apiret">pointIndices</span>
: [[API GetUnitSpeed|GetUnitSpeed]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the moving speed of the unit.
+
: [[API GetUnitSpeed|GetUnitSpeed]](<span class="apiarg">unit</span>) - Returns the moving speed of the unit.
: [[API UnitAffectingCombat|UnitAffectingCombat]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Determine if the unit is in combat or has aggro. (returns nil if "false" and 1 if "true")
+
: [[API UnitAffectingCombat|UnitAffectingCombat]](<span class="apiarg">unit</span>) - Determine if the unit is in combat or has aggro. (returns nil if "false" and 1 if "true")
: [[API UnitArmor|UnitArmor]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the armor statistics relevant to the specified unit.
+
: [[API UnitArmor|UnitArmor]](<span class="apiarg">unit</span>) - Returns the armor statistics relevant to the specified unit.
: [[API UnitAttackPower|UnitAttackPower]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the unit's melee attack power and modifiers.
+
: [[API UnitAttackPower|UnitAttackPower]](<span class="apiarg">unit</span>) - Returns the unit's melee attack power and modifiers.
: [[API UnitAttackSpeed|UnitAttackSpeed]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the unit's melee attack speed for each hand.
+
: [[API UnitAttackSpeed|UnitAttackSpeed]](<span class="apiarg">unit</span>) - Returns the unit's melee attack speed for each hand.
: [[API UnitCanAssist|UnitCanAssist]](<span style="font-size:smaller; color:#ecbc2a">unit, otherUnit</span>) - Indicates whether the first unit can assist the second unit.
+
: [[API UnitCanAssist|UnitCanAssist]](<span class="apiarg">unit, otherUnit</span>) - Indicates whether the first unit can assist the second unit.
: [[API UnitCanAttack|UnitCanAttack]](<span style="font-size:smaller; color:#ecbc2a">unit, otherUnit</span>) - Returns true if the first unit can attack the second, false otherwise.
+
: [[API UnitCanAttack|UnitCanAttack]](<span class="apiarg">unit, otherUnit</span>) - Returns true if the first unit can attack the second, false otherwise.
: [[API UnitCanCooperate|UnitCanCooperate]](<span style="font-size:smaller; color:#ecbc2a">unit, otherUnit</span>) - Returns true if the first unit can cooperate with the second, false otherwise.
+
: [[API UnitCanCooperate|UnitCanCooperate]](<span class="apiarg">unit, otherUnit</span>) - Returns true if the first unit can cooperate with the second, false otherwise.
 
: [[API UnitCanPetBattle|UnitCanPetBattle]]()
 
: [[API UnitCanPetBattle|UnitCanPetBattle]]()
: [[API UnitCastingInfo|UnitCastingInfo]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns information about the spell currently being cast by the specified unit.
+
: [[API UnitCastingInfo|UnitCastingInfo]](<span class="apiarg">unit</span>) - Returns information about the spell currently being cast by the specified unit.
: [[API UnitChannelInfo|UnitChannelInfo]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns information about the spell currently being channeled by the specified unit.
+
: [[API UnitChannelInfo|UnitChannelInfo]](<span class="apiarg">unit</span>) - Returns information about the spell currently being channeled by the specified unit.
: [[API UnitClass|UnitClass]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) : <span style="font-size:smaller; color:#4ec9b0">className, classFilename, classID</span> - Returns the class name of the specified unit (e.g., "Warrior" or "Shaman").
+
: [[API UnitClass|UnitClass]](<span class="apiarg">unit</span>) : <span class="apiret">className, classFilename, classID</span> - Returns the class name of the specified unit (e.g., "Warrior" or "Shaman").
: [[API UnitClassBase|UnitClassBase]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) : <span style="font-size:smaller; color:#4ec9b0">classFilename, classID</span>
+
: [[API UnitClassBase|UnitClassBase]](<span class="apiarg">unit</span>) : <span class="apiret">classFilename, classID</span>
: [[API UnitClassification|UnitClassification]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the classification of the specified unit (e.g., "elite" or "worldboss").
+
: [[API UnitClassification|UnitClassification]](<span class="apiarg">unit</span>) - Returns the classification of the specified unit (e.g., "elite" or "worldboss").
: [[API UnitCreatureFamily|UnitCreatureFamily]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the type of creature of the specified unit (e.g., "Crab").
+
: [[API UnitCreatureFamily|UnitCreatureFamily]](<span class="apiarg">unit</span>) - Returns the type of creature of the specified unit (e.g., "Crab").
: [[API UnitCreatureType|UnitCreatureType]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the classification type of creature of the specified unit (e.g., "Beast").
+
: [[API UnitCreatureType|UnitCreatureType]](<span class="apiarg">unit</span>) - Returns the classification type of creature of the specified unit (e.g., "Beast").
: [[API UnitDamage|UnitDamage]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the damage statistics relevant to the specified unit.
+
: [[API UnitDamage|UnitDamage]](<span class="apiarg">unit</span>) - Returns the damage statistics relevant to the specified unit.
: [[API UnitDetailedThreatSituation|UnitDetailedThreatSituation]](<span style="font-size:smaller; color:#ecbc2a">unit, unitMob</span>) - Returns detailed information about the specified unit's threat on a mob.
+
: [[API UnitDetailedThreatSituation|UnitDetailedThreatSituation]](<span class="apiarg">unit, unitMob</span>) - Returns detailed information about the specified unit's threat on a mob.
: [[API UnitDistanceSquared|UnitDistanceSquared]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the squared distance to a unit in your group.
+
: [[API UnitDistanceSquared|UnitDistanceSquared]](<span class="apiarg">unit</span>) - Returns the squared distance to a unit in your group.
: [[API UnitEffectiveLevel|UnitEffectiveLevel]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the unit's effective (scaled) level.
+
: [[API UnitEffectiveLevel|UnitEffectiveLevel]](<span class="apiarg">unit</span>) - Returns the unit's effective (scaled) level.
: [[API UnitExists|UnitExists]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns 1 if the specified unit exists, nil otherwise.
+
: [[API UnitExists|UnitExists]](<span class="apiarg">unit</span>) - Returns 1 if the specified unit exists, nil otherwise.
: [[API UnitFactionGroup|UnitFactionGroup]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the faction group id and name of the specified unit. (eg. "Alliance") - string returned is localization-independent (used in filepath)
+
: [[API UnitFactionGroup|UnitFactionGroup]](<span class="apiarg">unit</span>) - Returns the faction group id and name of the specified unit. (eg. "Alliance") - string returned is localization-independent (used in filepath)
: [[API UnitFullName|UnitFullName]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the player's (unit's) name and server.
+
: [[API UnitFullName|UnitFullName]](<span class="apiarg">unit</span>) - Returns the player's (unit's) name and server.
 
: [[API UnitGetAvailableRoles|UnitGetAvailableRoles]]()
 
: [[API UnitGetAvailableRoles|UnitGetAvailableRoles]]()
: [[API UnitGetIncomingHeals|UnitGetIncomingHeals]](<span style="font-size:smaller; color:#ecbc2a">unit [, healer]</span>) - Returns the predicted heals cast on the specified unit.
+
: [[API UnitGetIncomingHeals|UnitGetIncomingHeals]](<span class="apiarg">unit [, healer]</span>) - Returns the predicted heals cast on the specified unit.
: [[API UnitGetTotalAbsorbs|UnitGetTotalAbsorbs]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the total amount of damage the unit can absorb before losing health.
+
: [[API UnitGetTotalAbsorbs|UnitGetTotalAbsorbs]](<span class="apiarg">unit</span>) - Returns the total amount of damage the unit can absorb before losing health.
: [[API UnitGetTotalHealAbsorbs|UnitGetTotalHealAbsorbs]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the total amount of healing the unit can absorb without gaining health.
+
: [[API UnitGetTotalHealAbsorbs|UnitGetTotalHealAbsorbs]](<span class="apiarg">unit</span>) - Returns the total amount of healing the unit can absorb without gaining health.
: [[API UnitGroupRolesAssigned|UnitGroupRolesAssigned]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the assigned role in a group formed via the Dungeon Finder Tool.
+
: [[API UnitGroupRolesAssigned|UnitGroupRolesAssigned]](<span class="apiarg">unit</span>) - Returns the assigned role in a group formed via the Dungeon Finder Tool.
: [[API UnitGUID|UnitGUID]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the GUID as a string for the specified unit matching the GUIDs used by the new combat logs.
+
: [[API UnitGUID|UnitGUID]](<span class="apiarg">unit</span>) - Returns the GUID as a string for the specified unit matching the GUIDs used by the new combat logs.
: [[API UnitHasIncomingResurrection|UnitHasIncomingResurrection]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns whether the unit is currently being resurrected.
+
: [[API UnitHasIncomingResurrection|UnitHasIncomingResurrection]](<span class="apiarg">unit</span>) - Returns whether the unit is currently being resurrected.
: [[API UnitHasLFGDeserter|UnitHasLFGDeserter]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns whether the unit is currently unable to use the dungeon finder due to leaving a group prematurely.
+
: [[API UnitHasLFGDeserter|UnitHasLFGDeserter]](<span class="apiarg">unit</span>) - Returns whether the unit is currently unable to use the dungeon finder due to leaving a group prematurely.
: [[API UnitHasLFGRandomCooldown|UnitHasLFGRandomCooldown]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns whether the unit is currently under the effects of the random dungeon cooldown.
+
: [[API UnitHasLFGRandomCooldown|UnitHasLFGRandomCooldown]](<span class="apiarg">unit</span>) - Returns whether the unit is currently under the effects of the random dungeon cooldown.
: [[API UnitHasRelicSlot|UnitHasRelicSlot]](<span style="font-size:smaller; color:#ecbc2a">unit</span>)
+
: [[API UnitHasRelicSlot|UnitHasRelicSlot]](<span class="apiarg">unit</span>)
: [[API UnitHealth|UnitHealth]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the current health, in points, of the specified unit.
+
: [[API UnitHealth|UnitHealth]](<span class="apiarg">unit</span>) - Returns the current health, in points, of the specified unit.
: [[API UnitHealthMax|UnitHealthMax]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the maximum health, in points, of the specified unit.
+
: [[API UnitHealthMax|UnitHealthMax]](<span class="apiarg">unit</span>) - Returns the maximum health, in points, of the specified unit.
 
: [[API UnitHPPerStamina|UnitHPPerStamina]]()
 
: [[API UnitHPPerStamina|UnitHPPerStamina]]()
 
: [[API UnitInOtherParty|UnitInOtherParty]]()
 
: [[API UnitInOtherParty|UnitInOtherParty]]()
: [[API UnitInRange|UnitInRange]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns true if the unit (party or raid only) is in range of a typical spell such as flash heal.
+
: [[API UnitInRange|UnitInRange]](<span class="apiarg">unit</span>) - Returns true if the unit (party or raid only) is in range of a typical spell such as flash heal.
: [[API UnitIsAFK|UnitIsAFK]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Only works for friendly units.
+
: [[API UnitIsAFK|UnitIsAFK]](<span class="apiarg">unit</span>) - Only works for friendly units.
: [[API UnitIsCharmed|UnitIsCharmed]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns true if the specified unit is charmed, false otherwise.
+
: [[API UnitIsCharmed|UnitIsCharmed]](<span class="apiarg">unit</span>) - Returns true if the specified unit is charmed, false otherwise.
: [[API UnitIsConnected|UnitIsConnected]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) : <span style="font-size:smaller; color:#4ec9b0">isConnected</span> - Returns 1 if the specified unit is connected or npc, nil if offline or not a valid unit.
+
: [[API UnitIsConnected|UnitIsConnected]](<span class="apiarg">unit</span>) : <span class="apiret">isConnected</span> - Returns 1 if the specified unit is connected or npc, nil if offline or not a valid unit.
: [[API UnitIsControlling|UnitIsControlling]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns true if the local player is directly controlling the specified unit.
+
: [[API UnitIsControlling|UnitIsControlling]](<span class="apiarg">unit</span>) - Returns true if the local player is directly controlling the specified unit.
: [[API UnitIsCorpse|UnitIsCorpse]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns true if the specified unit is a corpse, false otherwise.
+
: [[API UnitIsCorpse|UnitIsCorpse]](<span class="apiarg">unit</span>) - Returns true if the specified unit is a corpse, false otherwise.
: [[API UnitIsDead|UnitIsDead]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns true if the specified unit is dead, nil otherwise.
+
: [[API UnitIsDead|UnitIsDead]](<span class="apiarg">unit</span>) - Returns true if the specified unit is dead, nil otherwise.
: [[API UnitIsDeadOrGhost|UnitIsDeadOrGhost]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns true if the specified unit is dead or a ghost, nil otherwise.
+
: [[API UnitIsDeadOrGhost|UnitIsDeadOrGhost]](<span class="apiarg">unit</span>) - Returns true if the specified unit is dead or a ghost, nil otherwise.
: [[API UnitIsDND|UnitIsDND]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Only works for friendly units.
+
: [[API UnitIsDND|UnitIsDND]](<span class="apiarg">unit</span>) - Only works for friendly units.
: [[API UnitIsEnemy|UnitIsEnemy]](<span style="font-size:smaller; color:#ecbc2a">unit, otherUnit</span>) - Returns true if the specified units are enemies, false otherwise.
+
: [[API UnitIsEnemy|UnitIsEnemy]](<span class="apiarg">unit, otherUnit</span>) - Returns true if the specified units are enemies, false otherwise.
: [[API UnitIsFeignDeath|UnitIsFeignDeath]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns true if the specified unit (must be a member of your group) is feigning death.
+
: [[API UnitIsFeignDeath|UnitIsFeignDeath]](<span class="apiarg">unit</span>) - Returns true if the specified unit (must be a member of your group) is feigning death.
: [[API UnitIsFriend|UnitIsFriend]](<span style="font-size:smaller; color:#ecbc2a">unit, otherUnit</span>) - Returns true if the specified units are friends (PC of same faction or friendly NPC), false otherwise.
+
: [[API UnitIsFriend|UnitIsFriend]](<span class="apiarg">unit, otherUnit</span>) - Returns true if the specified units are friends (PC of same faction or friendly NPC), false otherwise.
: [[API UnitIsGhost|UnitIsGhost]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns true if the specified unit is a ghost, false otherwise.
+
: [[API UnitIsGhost|UnitIsGhost]](<span class="apiarg">unit</span>) - Returns true if the specified unit is a ghost, false otherwise.
 
: [[API UnitIsGroupAssistant|UnitIsGroupAssistant]]()
 
: [[API UnitIsGroupAssistant|UnitIsGroupAssistant]]()
: [[API UnitIsInMyGuild|UnitIsInMyGuild]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns whether the specified unit is in the same guild as the player's character.
+
: [[API UnitIsInMyGuild|UnitIsInMyGuild]](<span class="apiarg">unit</span>) - Returns whether the specified unit is in the same guild as the player's character.
 
: [[API UnitIsOtherPlayersPet|UnitIsOtherPlayersPet]]()
 
: [[API UnitIsOtherPlayersPet|UnitIsOtherPlayersPet]]()
: [[API UnitIsOwnerOrControllerOfUnit|UnitIsOwnerOrControllerOfUnit]](<span style="font-size:smaller; color:#ecbc2a">controllingUnit, controlledUnit</span>) : <span style="font-size:smaller; color:#4ec9b0">unitIsOwnerOrControllerOfUnit</span>
+
: [[API UnitIsOwnerOrControllerOfUnit|UnitIsOwnerOrControllerOfUnit]](<span class="apiarg">controllingUnit, controlledUnit</span>) : <span class="apiret">unitIsOwnerOrControllerOfUnit</span>
: [[API UnitIsPlayer|UnitIsPlayer]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns true if the specified unit is a player character, false otherwise.
+
: [[API UnitIsPlayer|UnitIsPlayer]](<span class="apiarg">unit</span>) - Returns true if the specified unit is a player character, false otherwise.
: [[API UnitIsPossessed|UnitIsPossessed]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns whether the specified unit is currently under control of another (i.e. "pet" when casting Mind Control).
+
: [[API UnitIsPossessed|UnitIsPossessed]](<span class="apiarg">unit</span>) - Returns whether the specified unit is currently under control of another (i.e. "pet" when casting Mind Control).
: [[API UnitIsQuestBoss|UnitIsQuestBoss]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns true if the specified unit is the "boss" (objective) of a kill quest. If true, then the default UI displays a shield with a yellow "!" on it on the unit's unitframe.
+
: [[API UnitIsQuestBoss|UnitIsQuestBoss]](<span class="apiarg">unit</span>) - Returns true if the specified unit is the "boss" (objective) of a kill quest. If true, then the default UI displays a shield with a yellow "!" on it on the unit's unitframe.
: [[API UnitIsRaidOfficer|UnitIsRaidOfficer]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns whether the specified unit is an officer in your raid.
+
: [[API UnitIsRaidOfficer|UnitIsRaidOfficer]](<span class="apiarg">unit</span>) - Returns whether the specified unit is an officer in your raid.
: [[API UnitIsSameServer|UnitIsSameServer]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns whether the specified unit is from the same server as the player's character.
+
: [[API UnitIsSameServer|UnitIsSameServer]](<span class="apiarg">unit</span>) - Returns whether the specified unit is from the same server as the player's character.
 
: [[API UnitIsTapDenied|UnitIsTapDenied]]()
 
: [[API UnitIsTapDenied|UnitIsTapDenied]]()
: [[API UnitIsTrivial|UnitIsTrivial]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns true if the specified unit is trivial (Trivial means the unit is "grey" to the player. false otherwise.
+
: [[API UnitIsTrivial|UnitIsTrivial]](<span class="apiarg">unit</span>) - Returns true if the specified unit is trivial (Trivial means the unit is "grey" to the player. false otherwise.
 
: [[API UnitIsUnconscious|UnitIsUnconscious]]()
 
: [[API UnitIsUnconscious|UnitIsUnconscious]]()
: [[API UnitIsUnit|UnitIsUnit]](<span style="font-size:smaller; color:#ecbc2a">unit, otherUnit</span>) - Determine if two units are the same unit.
+
: [[API UnitIsUnit|UnitIsUnit]](<span class="apiarg">unit, otherUnit</span>) - Determine if two units are the same unit.
: [[API UnitIsVisible|UnitIsVisible]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - 1 if visible, nil if not.
+
: [[API UnitIsVisible|UnitIsVisible]](<span class="apiarg">unit</span>) - 1 if visible, nil if not.
 
: [[API UnitLeadsAnyGroup|UnitLeadsAnyGroup]]()
 
: [[API UnitLeadsAnyGroup|UnitLeadsAnyGroup]]()
: [[API UnitLevel|UnitLevel]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the level of a unit.
+
: [[API UnitLevel|UnitLevel]](<span class="apiarg">unit</span>) - Returns the level of a unit.
: [[API UnitName|UnitName]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the name (and realm name) of a unit.
+
: [[API UnitName|UnitName]](<span class="apiarg">unit</span>) - Returns the name (and realm name) of a unit.
 
: [[API UnitNameUnmodified|UnitNameUnmodified]]()
 
: [[API UnitNameUnmodified|UnitNameUnmodified]]()
: [[API UnitPlayerControlled|UnitPlayerControlled]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns true if the specified unit is controlled by a player, false otherwise.
+
: [[API UnitPlayerControlled|UnitPlayerControlled]](<span class="apiarg">unit</span>) - Returns true if the specified unit is controlled by a player, false otherwise.
: [[API UnitPlayerOrPetInParty|UnitPlayerOrPetInParty]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns 1 if the specified unit/pet is a member of the player's party, nil otherwise (returns nil for "player" and "pet")
+
: [[API UnitPlayerOrPetInParty|UnitPlayerOrPetInParty]](<span class="apiarg">unit</span>) - Returns 1 if the specified unit/pet is a member of the player's party, nil otherwise (returns nil for "player" and "pet")
: [[API UnitPlayerOrPetInRaid|UnitPlayerOrPetInRaid]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns 1 if the specified unit/pet is a member of the player's raid, nil otherwise (returns nil for "player" and "pet")
+
: [[API UnitPlayerOrPetInRaid|UnitPlayerOrPetInRaid]](<span class="apiarg">unit</span>) - Returns 1 if the specified unit/pet is a member of the player's raid, nil otherwise (returns nil for "player" and "pet")
: [[API UnitPower|UnitPower]](<span style="font-size:smaller; color:#ecbc2a">unitToken [, powerType, unmodified]</span>) : <span style="font-size:smaller; color:#4ec9b0">power</span> - Returns current power of the specified unit (Replaces [[API UnitMana|UnitMana]])
+
: [[API UnitPower|UnitPower]](<span class="apiarg">unitToken [, powerType, unmodified]</span>) : <span class="apiret">power</span> - Returns current power of the specified unit (Replaces [[API UnitMana|UnitMana]])
: [[API UnitPowerDisplayMod|UnitPowerDisplayMod]](<span style="font-size:smaller; color:#ecbc2a">powerType</span>) : <span style="font-size:smaller; color:#4ec9b0">displayMod</span>
+
: [[API UnitPowerDisplayMod|UnitPowerDisplayMod]](<span class="apiarg">powerType</span>) : <span class="apiret">displayMod</span>
: [[API UnitPowerMax|UnitPowerMax]](<span style="font-size:smaller; color:#ecbc2a">unitToken [, powerType, unmodified]</span>) : <span style="font-size:smaller; color:#4ec9b0">maxPower</span> - Returns max power of the specified unit (Replaces [[API UnitManaMax|UnitManaMax]])
+
: [[API UnitPowerMax|UnitPowerMax]](<span class="apiarg">unitToken [, powerType, unmodified]</span>) : <span class="apiret">maxPower</span> - Returns max power of the specified unit (Replaces [[API UnitManaMax|UnitManaMax]])
: [[API UnitPowerType|UnitPowerType]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns a number corresponding to the power type (e.g., mana, rage or energy) of the specified unit.
+
: [[API UnitPowerType|UnitPowerType]](<span class="apiarg">unit</span>) - Returns a number corresponding to the power type (e.g., mana, rage or energy) of the specified unit.
: [[API UnitQuestTrivialLevelRange|UnitQuestTrivialLevelRange]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) : <span style="font-size:smaller; color:#4ec9b0">levelRange</span> - Returns the difference between the units' current level and the level at which fixed-level quests are of trivial difficulty.
+
: [[API UnitQuestTrivialLevelRange|UnitQuestTrivialLevelRange]](<span class="apiarg">unit</span>) : <span class="apiret">levelRange</span> - Returns the difference between the units' current level and the level at which fixed-level quests are of trivial difficulty.
: [[API UnitRace|UnitRace]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the race name of the specified unit (e.g., "Human" or "Troll").
+
: [[API UnitRace|UnitRace]](<span class="apiarg">unit</span>) - Returns the race name of the specified unit (e.g., "Human" or "Troll").
: [[API UnitRangedAttackPower|UnitRangedAttackPower]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the ranged attack power of the unit.
+
: [[API UnitRangedAttackPower|UnitRangedAttackPower]](<span class="apiarg">unit</span>) - Returns the ranged attack power of the unit.
: [[API UnitRangedDamage|UnitRangedDamage]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the ranged attack speed and damage of the unit.
+
: [[API UnitRangedDamage|UnitRangedDamage]](<span class="apiarg">unit</span>) - Returns the ranged attack speed and damage of the unit.
: [[API UnitReaction|UnitReaction]](<span style="font-size:smaller; color:#ecbc2a">unit, otherUnit</span>) - Returns a number corresponding to the reaction (aggressive, neutral or friendly) of the first unit towards the second unit.
+
: [[API UnitReaction|UnitReaction]](<span class="apiarg">unit, otherUnit</span>) - Returns a number corresponding to the reaction (aggressive, neutral or friendly) of the first unit towards the second unit.
 
: [[API UnitRealmRelationship|UnitRealmRelationship]]()
 
: [[API UnitRealmRelationship|UnitRealmRelationship]]()
: [[API UnitSelectionColor|UnitSelectionColor]](<span style="font-size:smaller; color:#ecbc2a">unit [, useExtendedColors]</span>) - Returns RGBA values for the color of a unit's selection (the outline around and the circle underneath a player character or an NPC).
+
: [[API UnitSelectionColor|UnitSelectionColor]](<span class="apiarg">unit [, useExtendedColors]</span>) - Returns RGBA values for the color of a unit's selection (the outline around and the circle underneath a player character or an NPC).
: [[API UnitSelectionType|UnitSelectionType]](<span style="font-size:smaller; color:#ecbc2a">unit [, useExtendedColors]</span>) - Returns a number corresponding to the type of a unit's selection (the outline around and the circle underneath a player character or an NPC).
+
: [[API UnitSelectionType|UnitSelectionType]](<span class="apiarg">unit [, useExtendedColors]</span>) - Returns a number corresponding to the type of a unit's selection (the outline around and the circle underneath a player character or an NPC).
 
: [[API UnitSetRole|UnitSetRole]]()
 
: [[API UnitSetRole|UnitSetRole]]()
: [[API UnitSex|UnitSex]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) : <span style="font-size:smaller; color:#4ec9b0">sex</span> - Returns a code indicating the gender of the specified unit, if known. (1=unknown, 2=male, 3=female)
+
: [[API UnitSex|UnitSex]](<span class="apiarg">unit</span>) : <span class="apiret">sex</span> - Returns a code indicating the gender of the specified unit, if known. (1=unknown, 2=male, 3=female)
 
: [[API UnitShouldDisplayName|UnitShouldDisplayName]]()
 
: [[API UnitShouldDisplayName|UnitShouldDisplayName]]()
: [[API UnitSpellHaste|UnitSpellHaste]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the current spell haste percentage for a unit.
+
: [[API UnitSpellHaste|UnitSpellHaste]](<span class="apiarg">unit</span>) - Returns the current spell haste percentage for a unit.
 
: [[API UnitStagger|UnitStagger]]()
 
: [[API UnitStagger|UnitStagger]]()
: [[API UnitStat|UnitStat]](<span style="font-size:smaller; color:#ecbc2a">unit, statIndex</span>) - Returns the statistics relevant to the specified unit and basic attribute (e.g., strength or intellect).
+
: [[API UnitStat|UnitStat]](<span class="apiarg">unit, statIndex</span>) - Returns the statistics relevant to the specified unit and basic attribute (e.g., strength or intellect).
 
: [[API UnitThreatPercentageOfLead|UnitThreatPercentageOfLead]]()
 
: [[API UnitThreatPercentageOfLead|UnitThreatPercentageOfLead]]()
: [[API UnitThreatSituation|UnitThreatSituation]](<span style="font-size:smaller; color:#ecbc2a">unit, mobUnit</span>) - Returns the specified unit's threat status on a mob.
+
: [[API UnitThreatSituation|UnitThreatSituation]](<span class="apiarg">unit, mobUnit</span>) - Returns the specified unit's threat status on a mob.
: [[API UnitTreatAsPlayerForDisplay|UnitTreatAsPlayerForDisplay]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) : <span style="font-size:smaller; color:#4ec9b0">treatAsPlayer</span> - Whether a unit should be treated as if it was an actual player.
+
: [[API UnitTreatAsPlayerForDisplay|UnitTreatAsPlayerForDisplay]](<span class="apiarg">unit</span>) : <span class="apiret">treatAsPlayer</span> - Whether a unit should be treated as if it was an actual player.
: [[API UnitTrialBankedLevels|UnitTrialBankedLevels]](<span style="font-size:smaller; color:#ecbc2a">unit</span>)
+
: [[API UnitTrialBankedLevels|UnitTrialBankedLevels]](<span class="apiarg">unit</span>)
: [[API UnitTrialXP|UnitTrialXP]](<span style="font-size:smaller; color:#ecbc2a">unit</span>)
+
: [[API UnitTrialXP|UnitTrialXP]](<span class="apiarg">unit</span>)
: [[API UnitWeaponAttackPower|UnitWeaponAttackPower]](<span style="font-size:smaller; color:#ecbc2a">unit</span>)
+
: [[API UnitWeaponAttackPower|UnitWeaponAttackPower]](<span class="apiarg">unit</span>)
: [[API UnitXP|UnitXP]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the number of experience points the specified unit has in their current level. (only works on your player)
+
: [[API UnitXP|UnitXP]](<span class="apiarg">unit</span>) - Returns the number of experience points the specified unit has in their current level. (only works on your player)
: [[API UnitXPMax|UnitXPMax]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the number of experience points the specified unit needs to reach their next level. (only works on your player)
+
: [[API UnitXPMax|UnitXPMax]](<span class="apiarg">unit</span>) - Returns the number of experience points the specified unit needs to reach their next level. (only works on your player)
: <small>UI</small> [[API GetUnitName|GetUnitName]](<span style="font-size:smaller; color:#ecbc2a">unit, showServerName</span>) - Returns the name and optionally the realm of the unit.
+
: <small>UI</small> [[API GetUnitName|GetUnitName]](<span class="apiarg">unit, showServerName</span>) - Returns the name and optionally the realm of the unit.
   
 
==== Buffs ====
 
==== Buffs ====
: <small>NOCOMBAT</small> [[API CancelUnitBuff|CancelUnitBuff]](<span style="font-size:smaller; color:#ecbc2a">unit, index or spell [, filter or rank]</span>) - Removes a specific buff from the player.
+
: <small>NOCOMBAT</small> [[API CancelUnitBuff|CancelUnitBuff]](<span class="apiarg">unit, index or spell [, filter or rank]</span>) - Removes a specific buff from the player.
: [[API GetPlayerAuraBySpellID|GetPlayerAuraBySpellID]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>) - Returns an active buff/debuff by spell ID on the player character.
+
: [[API GetPlayerAuraBySpellID|GetPlayerAuraBySpellID]](<span class="apiarg">spellID</span>) - Returns an active buff/debuff by spell ID on the player character.
: [[API UnitAura|UnitAura]](<span style="font-size:smaller; color:#ecbc2a">unit, index [, filter]</span>) - Returns info about buffs and debuffs of a unit.
+
: [[API UnitAura|UnitAura]](<span class="apiarg">unit, index [, filter]</span>) - Returns info about buffs and debuffs of a unit.
: [[API UnitAuraBySlot|UnitAuraBySlot]](<span style="font-size:smaller; color:#ecbc2a">unit, slot</span>)
+
: [[API UnitAuraBySlot|UnitAuraBySlot]](<span class="apiarg">unit, slot</span>)
: [[API UnitAuraSlots|UnitAuraSlots]](<span style="font-size:smaller; color:#ecbc2a">unit [, filter, maxSlots, continuationToken]</span>)
+
: [[API UnitAuraSlots|UnitAuraSlots]](<span class="apiarg">unit [, filter, maxSlots, continuationToken]</span>)
: [[API UnitBuff|UnitBuff]](<span style="font-size:smaller; color:#ecbc2a">unit, index [, raidFilter]</span>) - Shorthand for <code>UnitAura(_, _, "HELPFUL")</code>
+
: [[API UnitBuff|UnitBuff]](<span class="apiarg">unit, index [, raidFilter]</span>) - Shorthand for <code>UnitAura(unit, index, "HELPFUL")</code>
: [[API UnitDebuff|UnitDebuff]](<span style="font-size:smaller; color:#ecbc2a">unit, index [, raidFilter]</span>) - Shorthand for <code>UnitAura(_, _, "HARMFUL")</code>
+
: [[API UnitDebuff|UnitDebuff]](<span class="apiarg">unit, index [, raidFilter]</span>) - Shorthand for <code>UnitAura(unit, index, "HARMFUL")</code>
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=FindAura AuraUtil.FindAura](<span style="font-size:smaller; color:#ecbc2a">predicate, unit, filter, predicateArg1, predicateArg2, predicateArg3</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=FindAura AuraUtil.FindAura](<span class="apiarg">predicate, unit, filter, predicateArg1, predicateArg2, predicateArg3</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=FindAuraByName AuraUtil.FindAuraByName](<span style="font-size:smaller; color:#ecbc2a">auraName, unit, filter</span>) - Finds the first aura that matches the name.
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=FindAuraByName AuraUtil.FindAuraByName](<span class="apiarg">auraName, unit, filter</span>) - Finds the first aura that matches the name.
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ForEachAura AuraUtil.ForEachAura](<span style="font-size:smaller; color:#ecbc2a">unit, filter, maxCount, func</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ForEachAura AuraUtil.ForEachAura](<span class="apiarg">unit, filter, maxCount, func</span>)
 
Weapon Enchants
 
Weapon Enchants
: <small>PROTECTED</small> [[API CancelItemTempEnchantment|CancelItemTempEnchantment]](<span style="font-size:smaller; color:#ecbc2a">weaponHand</span>) - Cancels a temporary weapon enchant on ''weaponHand'' (1 for Main hand, 2 for Off hand).
+
: <small>PROTECTED</small> [[API CancelItemTempEnchantment|CancelItemTempEnchantment]](<span class="apiarg">weaponHand</span>) - Cancels a temporary weapon enchant on ''weaponHand'' (1 for Main hand, 2 for Off hand).
 
: [[API GetWeaponEnchantInfo|GetWeaponEnchantInfo]]() - Returns information about main and offhand weapon enchantments.
 
: [[API GetWeaponEnchantInfo|GetWeaponEnchantInfo]]() - Returns information about main and offhand weapon enchantments.
   
Line 4,562: Line 4,658:
 
: [[API C_NamePlate.GetNamePlateEnemyPreferredClickInsets|C_NamePlate.GetNamePlateEnemyPreferredClickInsets]]()
 
: [[API C_NamePlate.GetNamePlateEnemyPreferredClickInsets|C_NamePlate.GetNamePlateEnemyPreferredClickInsets]]()
 
: [[API C_NamePlate.GetNamePlateEnemySize|C_NamePlate.GetNamePlateEnemySize]]()
 
: [[API C_NamePlate.GetNamePlateEnemySize|C_NamePlate.GetNamePlateEnemySize]]()
: [[API C_NamePlate.GetNamePlateForUnit|C_NamePlate.GetNamePlateForUnit]](<span style="font-size:smaller; color:#ecbc2a">unitToken [, includeForbidden]</span>)
+
: [[API C_NamePlate.GetNamePlateForUnit|C_NamePlate.GetNamePlateForUnit]](<span class="apiarg">unitToken [, includeForbidden]</span>)
 
: [[API C_NamePlate.GetNamePlateFriendlyClickThrough|C_NamePlate.GetNamePlateFriendlyClickThrough]]()
 
: [[API C_NamePlate.GetNamePlateFriendlyClickThrough|C_NamePlate.GetNamePlateFriendlyClickThrough]]()
 
: [[API C_NamePlate.GetNamePlateFriendlyPreferredClickInsets|C_NamePlate.GetNamePlateFriendlyPreferredClickInsets]]()
 
: [[API C_NamePlate.GetNamePlateFriendlyPreferredClickInsets|C_NamePlate.GetNamePlateFriendlyPreferredClickInsets]]()
 
: [[API C_NamePlate.GetNamePlateFriendlySize|C_NamePlate.GetNamePlateFriendlySize]]()
 
: [[API C_NamePlate.GetNamePlateFriendlySize|C_NamePlate.GetNamePlateFriendlySize]]()
: [[API C_NamePlate.GetNamePlates|C_NamePlate.GetNamePlates]](<span style="font-size:smaller; color:#ecbc2a">[includeForbidden]</span>)
+
: [[API C_NamePlate.GetNamePlates|C_NamePlate.GetNamePlates]](<span class="apiarg">[includeForbidden]</span>)
 
: [[API C_NamePlate.GetNamePlateSelfClickThrough|C_NamePlate.GetNamePlateSelfClickThrough]]()
 
: [[API C_NamePlate.GetNamePlateSelfClickThrough|C_NamePlate.GetNamePlateSelfClickThrough]]()
 
: [[API C_NamePlate.GetNamePlateSelfPreferredClickInsets|C_NamePlate.GetNamePlateSelfPreferredClickInsets]]()
 
: [[API C_NamePlate.GetNamePlateSelfPreferredClickInsets|C_NamePlate.GetNamePlateSelfPreferredClickInsets]]()
Line 4,572: Line 4,668:
 
: [[API C_NamePlate.GetNumNamePlateMotionTypes|C_NamePlate.GetNumNamePlateMotionTypes]]()
 
: [[API C_NamePlate.GetNumNamePlateMotionTypes|C_NamePlate.GetNumNamePlateMotionTypes]]()
 
: [[API C_NamePlate.GetTargetClampingInsets|C_NamePlate.GetTargetClampingInsets]]()
 
: [[API C_NamePlate.GetTargetClampingInsets|C_NamePlate.GetTargetClampingInsets]]()
: [[API C_NamePlate.SetNamePlateEnemyClickThrough|C_NamePlate.SetNamePlateEnemyClickThrough]](<span style="font-size:smaller; color:#ecbc2a">clickthrough</span>)
+
: [[API C_NamePlate.SetNamePlateEnemyClickThrough|C_NamePlate.SetNamePlateEnemyClickThrough]](<span class="apiarg">clickthrough</span>)
 
: [[API C_NamePlate.SetNamePlateEnemyPreferredClickInsets|C_NamePlate.SetNamePlateEnemyPreferredClickInsets]]()
 
: [[API C_NamePlate.SetNamePlateEnemyPreferredClickInsets|C_NamePlate.SetNamePlateEnemyPreferredClickInsets]]()
: [[API C_NamePlate.SetNamePlateEnemySize|C_NamePlate.SetNamePlateEnemySize]](<span style="font-size:smaller; color:#ecbc2a">width, height</span>)
+
: [[API C_NamePlate.SetNamePlateEnemySize|C_NamePlate.SetNamePlateEnemySize]](<span class="apiarg">width, height</span>)
 
: [[API C_NamePlate.SetNamePlateFriendlyClickThrough|C_NamePlate.SetNamePlateFriendlyClickThrough]]()
 
: [[API C_NamePlate.SetNamePlateFriendlyClickThrough|C_NamePlate.SetNamePlateFriendlyClickThrough]]()
: [[API C_NamePlate.SetNamePlateFriendlyPreferredClickInsets|C_NamePlate.SetNamePlateFriendlyPreferredClickInsets]](<span style="font-size:smaller; color:#ecbc2a">left, right, top, bottom</span>)
+
: [[API C_NamePlate.SetNamePlateFriendlyPreferredClickInsets|C_NamePlate.SetNamePlateFriendlyPreferredClickInsets]](<span class="apiarg">left, right, top, bottom</span>)
: [[API C_NamePlate.SetNamePlateFriendlySize|C_NamePlate.SetNamePlateFriendlySize]](<span style="font-size:smaller; color:#ecbc2a">width, height</span>)
+
: [[API C_NamePlate.SetNamePlateFriendlySize|C_NamePlate.SetNamePlateFriendlySize]](<span class="apiarg">width, height</span>)
: [[API C_NamePlate.SetNamePlateSelfClickThrough|C_NamePlate.SetNamePlateSelfClickThrough]](<span style="font-size:smaller; color:#ecbc2a">clickthrough</span>)
+
: [[API C_NamePlate.SetNamePlateSelfClickThrough|C_NamePlate.SetNamePlateSelfClickThrough]](<span class="apiarg">clickthrough</span>)
: [[API C_NamePlate.SetNamePlateSelfPreferredClickInsets|C_NamePlate.SetNamePlateSelfPreferredClickInsets]](<span style="font-size:smaller; color:#ecbc2a">left, right, top, bottom</span>)
+
: [[API C_NamePlate.SetNamePlateSelfPreferredClickInsets|C_NamePlate.SetNamePlateSelfPreferredClickInsets]](<span class="apiarg">left, right, top, bottom</span>)
: [[API C_NamePlate.SetNamePlateSelfSize|C_NamePlate.SetNamePlateSelfSize]](<span style="font-size:smaller; color:#ecbc2a">width, height</span>)
+
: [[API C_NamePlate.SetNamePlateSelfSize|C_NamePlate.SetNamePlateSelfSize]](<span class="apiarg">width, height</span>)
: [[API C_NamePlate.SetTargetClampingInsets|C_NamePlate.SetTargetClampingInsets]](<span style="font-size:smaller; color:#ecbc2a">clickthrough</span>)
+
: [[API C_NamePlate.SetTargetClampingInsets|C_NamePlate.SetTargetClampingInsets]](<span class="apiarg">clickthrough</span>)
: [[API SetInWorldUIVisibility|SetInWorldUIVisibility]](<span style="font-size:smaller; color:#ecbc2a">visible</span>) - Allows nameplates to be shown even while the UI is hidden (with Alt-Z)
+
: [[API SetInWorldUIVisibility|SetInWorldUIVisibility]](<span class="apiarg">visible</span>) - Allows nameplates to be shown even while the UI is hidden (with Alt-Z)
: [[API UnitNameplateShowsWidgetsOnly|UnitNameplateShowsWidgetsOnly]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) : <span style="font-size:smaller; color:#4ec9b0">nameplateShowsWidgetsOnly</span>
+
: [[API UnitNameplateShowsWidgetsOnly|UnitNameplateShowsWidgetsOnly]](<span class="apiarg">unit</span>) : <span class="apiret">nameplateShowsWidgetsOnly</span>
   
 
==== Loss of Control ====
 
==== Loss of Control ====
: [[API C_LossOfControl.GetActiveLossOfControlData|C_LossOfControl.GetActiveLossOfControlData]](<span style="font-size:smaller; color:#ecbc2a">index</span>) : <span style="font-size:smaller; color:#4ec9b0">event</span> - Returns info about an active loss-of-control effect.
+
: [[API C_LossOfControl.GetActiveLossOfControlData|C_LossOfControl.GetActiveLossOfControlData]](<span class="apiarg">index</span>) : <span class="apiret">event</span> - Returns info about an active loss-of-control effect.
: [[API C_LossOfControl.GetActiveLossOfControlDataByUnit|C_LossOfControl.GetActiveLossOfControlDataByUnit]](<span style="font-size:smaller; color:#ecbc2a">unitToken, index</span>) : <span style="font-size:smaller; color:#4ec9b0">event</span>
+
: [[API C_LossOfControl.GetActiveLossOfControlDataByUnit|C_LossOfControl.GetActiveLossOfControlDataByUnit]](<span class="apiarg">unitToken, index</span>) : <span class="apiret">event</span>
: [[API C_LossOfControl.GetActiveLossOfControlDataCount|C_LossOfControl.GetActiveLossOfControlDataCount]]() : <span style="font-size:smaller; color:#4ec9b0">count</span> - Returns the number of active loss-of-control effects.
+
: [[API C_LossOfControl.GetActiveLossOfControlDataCount|C_LossOfControl.GetActiveLossOfControlDataCount]]() : <span class="apiret">count</span> - Returns the number of active loss-of-control effects.
: [[API C_LossOfControl.GetActiveLossOfControlDataCountByUnit|C_LossOfControl.GetActiveLossOfControlDataCountByUnit]](<span style="font-size:smaller; color:#ecbc2a">unitToken</span>) : <span style="font-size:smaller; color:#4ec9b0">count</span>
+
: [[API C_LossOfControl.GetActiveLossOfControlDataCountByUnit|C_LossOfControl.GetActiveLossOfControlDataCountByUnit]](<span class="apiarg">unitToken</span>) : <span class="apiret">count</span>
: [[API GetActionLossOfControlCooldown|GetActionLossOfControlCooldown]](<span style="font-size:smaller; color:#ecbc2a">slot</span>)
+
: [[API GetActionLossOfControlCooldown|GetActionLossOfControlCooldown]](<span class="apiarg">slot</span>)
: [[API GetSpellLossOfControlCooldown|GetSpellLossOfControlCooldown]](<span style="font-size:smaller; color:#ecbc2a">spellSlot</span>)
+
: [[API GetSpellLossOfControlCooldown|GetSpellLossOfControlCooldown]](<span class="apiarg">spellSlot</span>)
   
 
==== Phasing ====
 
==== Phasing ====
 
Players in different [[Phasing|Phases]] cannot see eachother.
 
Players in different [[Phasing|Phases]] cannot see eachother.
: [[API UnitInPartyShard|UnitInPartyShard]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) : <span style="font-size:smaller; color:#4ec9b0">inPartyShard</span>
+
: [[API UnitInPartyShard|UnitInPartyShard]](<span class="apiarg">unit</span>) : <span class="apiret">inPartyShard</span>
: [[API UnitPhaseReason|UnitPhaseReason]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) : <span style="font-size:smaller; color:#4ec9b0">reason</span> - Returns the reason if a unit is NOT in the same phase.
+
: [[API UnitPhaseReason|UnitPhaseReason]](<span class="apiarg">unit</span>) : <span class="apiret">reason</span> - Returns the reason if a unit is NOT in the same phase.
   
 
==== Power Bar ====
 
==== Power Bar ====
: [[API GetUnitPowerBarInfo|GetUnitPowerBarInfo]](<span style="font-size:smaller; color:#ecbc2a">unitToken</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API GetUnitPowerBarInfo|GetUnitPowerBarInfo]](<span class="apiarg">unitToken</span>) : <span class="apiret">info</span>
: [[API GetUnitPowerBarInfoByID|GetUnitPowerBarInfoByID]](<span style="font-size:smaller; color:#ecbc2a">barID</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API GetUnitPowerBarInfoByID|GetUnitPowerBarInfoByID]](<span class="apiarg">barID</span>) : <span class="apiret">info</span>
: [[API GetUnitPowerBarStrings|GetUnitPowerBarStrings]](<span style="font-size:smaller; color:#ecbc2a">unitToken</span>) : <span style="font-size:smaller; color:#4ec9b0">name, tooltip, cost</span>
+
: [[API GetUnitPowerBarStrings|GetUnitPowerBarStrings]](<span class="apiarg">unitToken</span>) : <span class="apiret">name, tooltip, cost</span>
: [[API GetUnitPowerBarStringsByID|GetUnitPowerBarStringsByID]](<span style="font-size:smaller; color:#ecbc2a">barID</span>) : <span style="font-size:smaller; color:#4ec9b0">name, tooltip, cost</span>
+
: [[API GetUnitPowerBarStringsByID|GetUnitPowerBarStringsByID]](<span class="apiarg">barID</span>) : <span class="apiret">name, tooltip, cost</span>
: [[API GetUnitPowerBarTextureInfo|GetUnitPowerBarTextureInfo]](<span style="font-size:smaller; color:#ecbc2a">unitToken, textureIndex [, timerIndex]</span>) : <span style="font-size:smaller; color:#4ec9b0">texture, colorR, colorG, colorB, colorA</span>
+
: [[API GetUnitPowerBarTextureInfo|GetUnitPowerBarTextureInfo]](<span class="apiarg">unitToken, textureIndex [, timerIndex]</span>) : <span class="apiret">texture, colorR, colorG, colorB, colorA</span>
: [[API GetUnitPowerBarTextureInfoByID|GetUnitPowerBarTextureInfoByID]](<span style="font-size:smaller; color:#ecbc2a">barID, textureIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">texture, colorR, colorG, colorB, colorA</span>
+
: [[API GetUnitPowerBarTextureInfoByID|GetUnitPowerBarTextureInfoByID]](<span class="apiarg">barID, textureIndex</span>) : <span class="apiret">texture, colorR, colorG, colorB, colorA</span>
 
: [[API UnitNumPowerBarTimers|UnitNumPowerBarTimers]]()
 
: [[API UnitNumPowerBarTimers|UnitNumPowerBarTimers]]()
: [[API UnitPowerBarID|UnitPowerBarID]](<span style="font-size:smaller; color:#ecbc2a">unitToken</span>) : <span style="font-size:smaller; color:#4ec9b0">barID</span>
+
: [[API UnitPowerBarID|UnitPowerBarID]](<span class="apiarg">unitToken</span>) : <span class="apiret">barID</span>
 
: [[API UnitPowerBarTimerInfo|UnitPowerBarTimerInfo]]()
 
: [[API UnitPowerBarTimerInfo|UnitPowerBarTimerInfo]]()
   
 
=== Vehicles ===
 
=== Vehicles ===
 
These functions were added in [[Patch 3.0.2]]
 
These functions were added in [[Patch 3.0.2]]
: [[API C_PvP.GetBattlefieldVehicleInfo|C_PvP.GetBattlefieldVehicleInfo]](<span style="font-size:smaller; color:#ecbc2a">vehicleIndex, uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_PvP.GetBattlefieldVehicleInfo|C_PvP.GetBattlefieldVehicleInfo]](<span class="apiarg">vehicleIndex, uiMapID</span>) : <span class="apiret">info</span>
: [[API C_PvP.GetBattlefieldVehicles|C_PvP.GetBattlefieldVehicles]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">vehicles</span>
+
: [[API C_PvP.GetBattlefieldVehicles|C_PvP.GetBattlefieldVehicles]](<span class="apiarg">uiMapID</span>) : <span class="apiret">vehicles</span>
: [[API CanEjectPassengerFromSeat|CanEjectPassengerFromSeat]](<span style="font-size:smaller; color:#ecbc2a">seat</span>) - Returns 1 if the player can eject a passenger from a seat.
+
: [[API CanEjectPassengerFromSeat|CanEjectPassengerFromSeat]](<span class="apiarg">seat</span>) - Returns 1 if the player can eject a passenger from a seat.
 
: [[API CanExitVehicle|CanExitVehicle]]() - Returns 1 if the player can be exit the Vehicle.
 
: [[API CanExitVehicle|CanExitVehicle]]() - Returns 1 if the player can be exit the Vehicle.
 
: [[API CanSwitchVehicleSeat|CanSwitchVehicleSeat]]()
 
: [[API CanSwitchVehicleSeat|CanSwitchVehicleSeat]]()
 
: [[API CanSwitchVehicleSeats|CanSwitchVehicleSeats]]() - Returns 1 if the player can Switch Seats in the Vehicle.
 
: [[API CanSwitchVehicleSeats|CanSwitchVehicleSeats]]() - Returns 1 if the player can Switch Seats in the Vehicle.
: [[API EjectPassengerFromSeat|EjectPassengerFromSeat]](<span style="font-size:smaller; color:#ecbc2a">seat</span>) - Ejects a passenger from a seat.
+
: [[API EjectPassengerFromSeat|EjectPassengerFromSeat]](<span class="apiarg">seat</span>) - Ejects a passenger from a seat.
: [[API GetNumBattlefieldVehicles|GetNumBattlefieldVehicles]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetNumBattlefieldVehicles|GetNumBattlefieldVehicles]](<span class="apiarg">index</span>)
: [[API GetVehicleUIIndicator|GetVehicleUIIndicator]](<span style="font-size:smaller; color:#ecbc2a">indicatorID</span>)
+
: [[API GetVehicleUIIndicator|GetVehicleUIIndicator]](<span class="apiarg">indicatorID</span>)
: [[API GetVehicleUIIndicatorSeat|GetVehicleUIIndicatorSeat]](<span style="font-size:smaller; color:#ecbc2a">indicatorID, indicatorSeatIndex</span>)
+
: [[API GetVehicleUIIndicatorSeat|GetVehicleUIIndicatorSeat]](<span class="apiarg">indicatorID, indicatorSeatIndex</span>)
 
: [[API IsUsingVehicleControls|IsUsingVehicleControls]]()
 
: [[API IsUsingVehicleControls|IsUsingVehicleControls]]()
 
: [[API IsVehicleAimAngleAdjustable|IsVehicleAimAngleAdjustable]]() - Returns 1 if the player can adjust the Aim Angle of the Vehicle.
 
: [[API IsVehicleAimAngleAdjustable|IsVehicleAimAngleAdjustable]]() - Returns 1 if the player can adjust the Aim Angle of the Vehicle.
 
: [[API IsVehicleAimPowerAdjustable|IsVehicleAimPowerAdjustable]]() - Returns 1 if the player can adjust the Aim Power of the Vehicle.
 
: [[API IsVehicleAimPowerAdjustable|IsVehicleAimPowerAdjustable]]() - Returns 1 if the player can adjust the Aim Power of the Vehicle.
: [[API PlayerVehicleHasComboPoints|PlayerVehicleHasComboPoints]]() : <span style="font-size:smaller; color:#4ec9b0">vehicleHasComboPoints</span>
+
: [[API PlayerVehicleHasComboPoints|PlayerVehicleHasComboPoints]]() : <span class="apiret">vehicleHasComboPoints</span>
: [[API UnitControllingVehicle|UnitControllingVehicle]](<span style="font-size:smaller; color:#ecbc2a">unit</span>)
+
: [[API UnitControllingVehicle|UnitControllingVehicle]](<span class="apiarg">unit</span>)
 
: [[API UnitHasVehiclePlayerFrameUI|UnitHasVehiclePlayerFrameUI]]()
 
: [[API UnitHasVehiclePlayerFrameUI|UnitHasVehiclePlayerFrameUI]]()
: [[API UnitHasVehicleUI|UnitHasVehicleUI]](<span style="font-size:smaller; color:#ecbc2a">unit</span>)
+
: [[API UnitHasVehicleUI|UnitHasVehicleUI]](<span class="apiarg">unit</span>)
: [[API UnitInVehicle|UnitInVehicle]](<span style="font-size:smaller; color:#ecbc2a">unit</span>)
+
: [[API UnitInVehicle|UnitInVehicle]](<span class="apiarg">unit</span>)
: [[API UnitInVehicleControlSeat|UnitInVehicleControlSeat]](<span style="font-size:smaller; color:#ecbc2a">unit</span>)
+
: [[API UnitInVehicleControlSeat|UnitInVehicleControlSeat]](<span class="apiarg">unit</span>)
 
: [[API UnitInVehicleHidesPetFrame|UnitInVehicleHidesPetFrame]]()
 
: [[API UnitInVehicleHidesPetFrame|UnitInVehicleHidesPetFrame]]()
: [[API UnitSwitchToVehicleSeat|UnitSwitchToVehicleSeat]](<span style="font-size:smaller; color:#ecbc2a">unit, seatId</span>)
+
: [[API UnitSwitchToVehicleSeat|UnitSwitchToVehicleSeat]](<span class="apiarg">unit, seatId</span>)
: [[API UnitTargetsVehicleInRaidUI|UnitTargetsVehicleInRaidUI]](<span style="font-size:smaller; color:#ecbc2a">unit</span>)
+
: [[API UnitTargetsVehicleInRaidUI|UnitTargetsVehicleInRaidUI]](<span class="apiarg">unit</span>)
: [[API UnitUsingVehicle|UnitUsingVehicle]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns whether the specified unit is currently using a vehicle (including transitioning between seats).
+
: [[API UnitUsingVehicle|UnitUsingVehicle]](<span class="apiarg">unit</span>) - Returns whether the specified unit is currently using a vehicle (including transitioning between seats).
: [[API UnitVehicleSeatCount|UnitVehicleSeatCount]](<span style="font-size:smaller; color:#ecbc2a">unit</span>)
+
: [[API UnitVehicleSeatCount|UnitVehicleSeatCount]](<span class="apiarg">unit</span>)
: [[API UnitVehicleSeatInfo|UnitVehicleSeatInfo]](<span style="font-size:smaller; color:#ecbc2a">unit, seatId</span>)
+
: [[API UnitVehicleSeatInfo|UnitVehicleSeatInfo]](<span class="apiarg">unit, seatId</span>)
: [[API UnitVehicleSkin|UnitVehicleSkin]](<span style="font-size:smaller; color:#ecbc2a">unit</span>)
+
: [[API UnitVehicleSkin|UnitVehicleSkin]](<span class="apiarg">unit</span>)
 
: [[API VehicleAimDecrement|VehicleAimDecrement]]()
 
: [[API VehicleAimDecrement|VehicleAimDecrement]]()
 
: [[API VehicleAimDownStart|VehicleAimDownStart]]()
 
: [[API VehicleAimDownStart|VehicleAimDownStart]]()
Line 4,657: Line 4,753:
 
[[Garrison]]s were added in [[Patch 6.0.2]] and also utilized in later expanions.
 
[[Garrison]]s were added in [[Patch 6.0.2]] and also utilized in later expanions.
 
: [[API C_Garrison.CanUpgradeGarrison|C_Garrison.CanUpgradeGarrison]]()
 
: [[API C_Garrison.CanUpgradeGarrison|C_Garrison.CanUpgradeGarrison]]()
: [[API C_Garrison.ClearCompleteTalent|C_Garrison.ClearCompleteTalent]](<span style="font-size:smaller; color:#ecbc2a">garrisonType</span>)
+
: [[API C_Garrison.ClearCompleteTalent|C_Garrison.ClearCompleteTalent]](<span class="apiarg">garrisonType</span>)
 
: [[API C_Garrison.CloseArchitect|C_Garrison.CloseArchitect]]()
 
: [[API C_Garrison.CloseArchitect|C_Garrison.CloseArchitect]]()
 
: [[API C_Garrison.CloseGarrisonTradeskillNPC|C_Garrison.CloseGarrisonTradeskillNPC]]()
 
: [[API C_Garrison.CloseGarrisonTradeskillNPC|C_Garrison.CloseGarrisonTradeskillNPC]]()
Line 4,663: Line 4,759:
 
: [[API C_Garrison.CloseTradeskillCrafter|C_Garrison.CloseTradeskillCrafter]]()
 
: [[API C_Garrison.CloseTradeskillCrafter|C_Garrison.CloseTradeskillCrafter]]()
 
: [[API C_Garrison.GetAllBonusAbilityEffects|C_Garrison.GetAllBonusAbilityEffects]]()
 
: [[API C_Garrison.GetAllBonusAbilityEffects|C_Garrison.GetAllBonusAbilityEffects]]()
: [[API C_Garrison.GetCompleteTalent|C_Garrison.GetCompleteTalent]](<span style="font-size:smaller; color:#ecbc2a">garrisonType</span>)
+
: [[API C_Garrison.GetCompleteTalent|C_Garrison.GetCompleteTalent]](<span class="apiarg">garrisonType</span>)
: [[API C_Garrison.GetCurrencyTypes|C_Garrison.GetCurrencyTypes]](<span style="font-size:smaller; color:#ecbc2a">garrType</span>)
+
: [[API C_Garrison.GetCurrencyTypes|C_Garrison.GetCurrencyTypes]](<span class="apiarg">garrType</span>)
: [[API C_Garrison.GetCurrentGarrTalentTreeFriendshipFactionID|C_Garrison.GetCurrentGarrTalentTreeFriendshipFactionID]]() : <span style="font-size:smaller; color:#4ec9b0">currentGarrTalentTreeFriendshipFactionID</span>
+
: [[API C_Garrison.GetCurrentGarrTalentTreeFriendshipFactionID|C_Garrison.GetCurrentGarrTalentTreeFriendshipFactionID]]() : <span class="apiret">currentGarrTalentTreeFriendshipFactionID</span>
: [[API C_Garrison.GetCurrentGarrTalentTreeID|C_Garrison.GetCurrentGarrTalentTreeID]]() : <span style="font-size:smaller; color:#4ec9b0">currentGarrTalentTreeID</span>
+
: [[API C_Garrison.GetCurrentGarrTalentTreeID|C_Garrison.GetCurrentGarrTalentTreeID]]() : <span class="apiret">currentGarrTalentTreeID</span>
: [[API C_Garrison.GetGarrisonInfo|C_Garrison.GetGarrisonInfo]](<span style="font-size:smaller; color:#ecbc2a">garrisonType</span>)
+
: [[API C_Garrison.GetGarrisonInfo|C_Garrison.GetGarrisonInfo]](<span class="apiarg">garrisonType</span>)
: [[API C_Garrison.GetGarrisonTalentTreeCurrencyTypes|C_Garrison.GetGarrisonTalentTreeCurrencyTypes]](<span style="font-size:smaller; color:#ecbc2a">garrTalentTreeID</span>) : <span style="font-size:smaller; color:#4ec9b0">garrTalentTreeCurrencyType</span>
+
: [[API C_Garrison.GetGarrisonTalentTreeCurrencyTypes|C_Garrison.GetGarrisonTalentTreeCurrencyTypes]](<span class="apiarg">garrTalentTreeID</span>) : <span class="apiret">garrTalentTreeCurrencyType</span>
: [[API C_Garrison.GetGarrisonTalentTreeType|C_Garrison.GetGarrisonTalentTreeType]](<span style="font-size:smaller; color:#ecbc2a">garrTalentTreeID</span>) : <span style="font-size:smaller; color:#4ec9b0">garrTalentTreeType</span>
+
: [[API C_Garrison.GetGarrisonTalentTreeType|C_Garrison.GetGarrisonTalentTreeType]](<span class="apiarg">garrTalentTreeID</span>) : <span class="apiret">garrTalentTreeType</span>
: [[API C_Garrison.GetGarrisonUpgradeCost|C_Garrison.GetGarrisonUpgradeCost]](<span style="font-size:smaller; color:#ecbc2a">followerType</span>)
+
: [[API C_Garrison.GetGarrisonUpgradeCost|C_Garrison.GetGarrisonUpgradeCost]](<span class="apiarg">followerType</span>)
 
: [[API C_Garrison.GetLandingPageGarrisonType|C_Garrison.GetLandingPageGarrisonType]]()
 
: [[API C_Garrison.GetLandingPageGarrisonType|C_Garrison.GetLandingPageGarrisonType]]()
: [[API C_Garrison.GetLandingPageItems|C_Garrison.GetLandingPageItems]](<span style="font-size:smaller; color:#ecbc2a">garrTypeID [, noSort]</span>)
+
: [[API C_Garrison.GetLandingPageItems|C_Garrison.GetLandingPageItems]](<span class="apiarg">garrTypeID [, noSort]</span>)
 
: [[API C_Garrison.GetLandingPageShipmentCount|C_Garrison.GetLandingPageShipmentCount]]()
 
: [[API C_Garrison.GetLandingPageShipmentCount|C_Garrison.GetLandingPageShipmentCount]]()
: [[API C_Garrison.GetLandingPageShipmentInfoByContainerID|C_Garrison.GetLandingPageShipmentInfoByContainerID]](<span style="font-size:smaller; color:#ecbc2a">shipmentContainerID</span>)
+
: [[API C_Garrison.GetLandingPageShipmentInfoByContainerID|C_Garrison.GetLandingPageShipmentInfoByContainerID]](<span class="apiarg">shipmentContainerID</span>)
: [[API C_Garrison.GetLooseShipments|C_Garrison.GetLooseShipments]](<span style="font-size:smaller; color:#ecbc2a">garrTypeID</span>)
+
: [[API C_Garrison.GetLooseShipments|C_Garrison.GetLooseShipments]](<span class="apiarg">garrTypeID</span>)
 
: [[API C_Garrison.GetNumPendingShipments|C_Garrison.GetNumPendingShipments]]()
 
: [[API C_Garrison.GetNumPendingShipments|C_Garrison.GetNumPendingShipments]]()
 
: [[API C_Garrison.GetNumShipmentCurrencies|C_Garrison.GetNumShipmentCurrencies]]()
 
: [[API C_Garrison.GetNumShipmentCurrencies|C_Garrison.GetNumShipmentCurrencies]]()
 
: [[API C_Garrison.GetNumShipmentReagents|C_Garrison.GetNumShipmentReagents]]()
 
: [[API C_Garrison.GetNumShipmentReagents|C_Garrison.GetNumShipmentReagents]]()
: [[API C_Garrison.GetPendingShipmentInfo|C_Garrison.GetPendingShipmentInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API C_Garrison.GetPendingShipmentInfo|C_Garrison.GetPendingShipmentInfo]](<span class="apiarg">index</span>)
 
: [[API C_Garrison.GetShipmentContainerInfo|C_Garrison.GetShipmentContainerInfo]]()
 
: [[API C_Garrison.GetShipmentContainerInfo|C_Garrison.GetShipmentContainerInfo]]()
 
: [[API C_Garrison.GetShipmentItemInfo|C_Garrison.GetShipmentItemInfo]]()
 
: [[API C_Garrison.GetShipmentItemInfo|C_Garrison.GetShipmentItemInfo]]()
: [[API C_Garrison.GetShipmentReagentCurrencyInfo|C_Garrison.GetShipmentReagentCurrencyInfo]](<span style="font-size:smaller; color:#ecbc2a">currencyIndex</span>)
+
: [[API C_Garrison.GetShipmentReagentCurrencyInfo|C_Garrison.GetShipmentReagentCurrencyInfo]](<span class="apiarg">currencyIndex</span>)
: [[API C_Garrison.GetShipmentReagentInfo|C_Garrison.GetShipmentReagentInfo]](<span style="font-size:smaller; color:#ecbc2a">reagentIndex</span>)
+
: [[API C_Garrison.GetShipmentReagentInfo|C_Garrison.GetShipmentReagentInfo]](<span class="apiarg">reagentIndex</span>)
: [[API C_Garrison.GetShipmentReagentItemLink|C_Garrison.GetShipmentReagentItemLink]](<span style="font-size:smaller; color:#ecbc2a">reagentIndex</span>)
+
: [[API C_Garrison.GetShipmentReagentItemLink|C_Garrison.GetShipmentReagentItemLink]](<span class="apiarg">reagentIndex</span>)
 
: [[API C_Garrison.GetSpecChangeCost|C_Garrison.GetSpecChangeCost]]()
 
: [[API C_Garrison.GetSpecChangeCost|C_Garrison.GetSpecChangeCost]]()
: [[API C_Garrison.GetTalentInfo|C_Garrison.GetTalentInfo]](<span style="font-size:smaller; color:#ecbc2a">talentID</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_Garrison.GetTalentInfo|C_Garrison.GetTalentInfo]](<span class="apiarg">talentID</span>) : <span class="apiret">info</span>
: [[API C_Garrison.GetTalentPointsSpentInTalentTree|C_Garrison.GetTalentPointsSpentInTalentTree]](<span style="font-size:smaller; color:#ecbc2a">garrTalentTreeID</span>) : <span style="font-size:smaller; color:#4ec9b0">talentPoints</span>
+
: [[API C_Garrison.GetTalentPointsSpentInTalentTree|C_Garrison.GetTalentPointsSpentInTalentTree]](<span class="apiarg">garrTalentTreeID</span>) : <span class="apiret">talentPoints</span>
: [[API C_Garrison.GetTalentTreeIDsByClassID|C_Garrison.GetTalentTreeIDsByClassID]](<span style="font-size:smaller; color:#ecbc2a">garrType, classID</span>) : <span style="font-size:smaller; color:#4ec9b0">treeIDs</span>
+
: [[API C_Garrison.GetTalentTreeIDsByClassID|C_Garrison.GetTalentTreeIDsByClassID]](<span class="apiarg">garrType, classID</span>) : <span class="apiret">treeIDs</span>
: [[API C_Garrison.GetTalentTreeInfo|C_Garrison.GetTalentTreeInfo]](<span style="font-size:smaller; color:#ecbc2a">treeID</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_Garrison.GetTalentTreeInfo|C_Garrison.GetTalentTreeInfo]](<span class="apiarg">treeID</span>) : <span class="apiret">info</span>
: [[API C_Garrison.GetTalentTreeResetInfo|C_Garrison.GetTalentTreeResetInfo]](<span style="font-size:smaller; color:#ecbc2a">garrTalentTreeID</span>) : <span style="font-size:smaller; color:#4ec9b0">goldCost, currencyCosts</span>
+
: [[API C_Garrison.GetTalentTreeResetInfo|C_Garrison.GetTalentTreeResetInfo]](<span class="apiarg">garrTalentTreeID</span>) : <span class="apiret">goldCost, currencyCosts</span>
: [[API C_Garrison.GetTalentTreeTalentPointResearchInfo|C_Garrison.GetTalentTreeTalentPointResearchInfo]](<span style="font-size:smaller; color:#ecbc2a">garrTalentTreeID, talentPointIndex, isRespec</span>) : <span style="font-size:smaller; color:#4ec9b0">goldCost, currencyCosts, durationSecs</span>
+
: [[API C_Garrison.GetTalentTreeTalentPointResearchInfo|C_Garrison.GetTalentTreeTalentPointResearchInfo]](<span class="apiarg">garrTalentTreeID, talentPointIndex, isRespec</span>) : <span class="apiret">goldCost, currencyCosts, durationSecs</span>
: [[API C_Garrison.GetTalentUnlockWorldQuest|C_Garrison.GetTalentUnlockWorldQuest]](<span style="font-size:smaller; color:#ecbc2a">talentID</span>) : <span style="font-size:smaller; color:#4ec9b0">worldQuestID</span>
+
: [[API C_Garrison.GetTalentUnlockWorldQuest|C_Garrison.GetTalentUnlockWorldQuest]](<span class="apiarg">talentID</span>) : <span class="apiret">worldQuestID</span>
: [[API C_Garrison.HasAdventures|C_Garrison.HasAdventures]]() : <span style="font-size:smaller; color:#4ec9b0">hasAdventures</span>
+
: [[API C_Garrison.HasAdventures|C_Garrison.HasAdventures]]() : <span class="apiret">hasAdventures</span>
: [[API C_Garrison.HasGarrison|C_Garrison.HasGarrison]](<span style="font-size:smaller; color:#ecbc2a">garrisonType</span>)
+
: [[API C_Garrison.HasGarrison|C_Garrison.HasGarrison]](<span class="apiarg">garrisonType</span>)
: [[API C_Garrison.IsFollowerOnCompletedMission|C_Garrison.IsFollowerOnCompletedMission]](<span style="font-size:smaller; color:#ecbc2a">followerID</span>) : <span style="font-size:smaller; color:#4ec9b0">followerOnCompletedMission</span>
+
: [[API C_Garrison.IsFollowerOnCompletedMission|C_Garrison.IsFollowerOnCompletedMission]](<span class="apiarg">followerID</span>) : <span class="apiret">followerOnCompletedMission</span>
 
: [[API C_Garrison.IsInvasionAvailable|C_Garrison.IsInvasionAvailable]]()
 
: [[API C_Garrison.IsInvasionAvailable|C_Garrison.IsInvasionAvailable]]()
 
: [[API C_Garrison.IsOnGarrisonMap|C_Garrison.IsOnGarrisonMap]]()
 
: [[API C_Garrison.IsOnGarrisonMap|C_Garrison.IsOnGarrisonMap]]()
 
: [[API C_Garrison.IsOnShipmentQuestForNPC|C_Garrison.IsOnShipmentQuestForNPC]]()
 
: [[API C_Garrison.IsOnShipmentQuestForNPC|C_Garrison.IsOnShipmentQuestForNPC]]()
: [[API C_Garrison.IsPlayerInGarrison|C_Garrison.IsPlayerInGarrison]](<span style="font-size:smaller; color:#ecbc2a">garrType</span>)
+
: [[API C_Garrison.IsPlayerInGarrison|C_Garrison.IsPlayerInGarrison]](<span class="apiarg">garrType</span>)
: [[API C_Garrison.IsTalentConditionMet|C_Garrison.IsTalentConditionMet]](<span style="font-size:smaller; color:#ecbc2a">talentID</span>) : <span style="font-size:smaller; color:#4ec9b0">isMet, failureString</span>
+
: [[API C_Garrison.IsTalentConditionMet|C_Garrison.IsTalentConditionMet]](<span class="apiarg">talentID</span>) : <span class="apiret">isMet, failureString</span>
 
: [[API C_Garrison.IsUsingPartyGarrison|C_Garrison.IsUsingPartyGarrison]]()
 
: [[API C_Garrison.IsUsingPartyGarrison|C_Garrison.IsUsingPartyGarrison]]()
 
: [[API C_Garrison.IsVisitGarrisonAvailable|C_Garrison.IsVisitGarrisonAvailable]]()
 
: [[API C_Garrison.IsVisitGarrisonAvailable|C_Garrison.IsVisitGarrisonAvailable]]()
: [[API C_Garrison.RequestGarrisonUpgradeable|C_Garrison.RequestGarrisonUpgradeable]](<span style="font-size:smaller; color:#ecbc2a">followerType</span>)
+
: [[API C_Garrison.RequestGarrisonUpgradeable|C_Garrison.RequestGarrisonUpgradeable]](<span class="apiarg">followerType</span>)
 
: [[API C_Garrison.RequestLandingPageShipmentInfo|C_Garrison.RequestLandingPageShipmentInfo]]()
 
: [[API C_Garrison.RequestLandingPageShipmentInfo|C_Garrison.RequestLandingPageShipmentInfo]]()
 
: [[API C_Garrison.RequestShipmentCreation|C_Garrison.RequestShipmentCreation]]()
 
: [[API C_Garrison.RequestShipmentCreation|C_Garrison.RequestShipmentCreation]]()
 
: [[API C_Garrison.RequestShipmentInfo|C_Garrison.RequestShipmentInfo]]()
 
: [[API C_Garrison.RequestShipmentInfo|C_Garrison.RequestShipmentInfo]]()
: [[API C_Garrison.ResearchTalent|C_Garrison.ResearchTalent]](<span style="font-size:smaller; color:#ecbc2a">garrTalentID</span>)
+
: [[API C_Garrison.ResearchTalent|C_Garrison.ResearchTalent]](<span class="apiarg">garrTalentID</span>)
: [[API C_Garrison.SetUsingPartyGarrison|C_Garrison.SetUsingPartyGarrison]](<span style="font-size:smaller; color:#ecbc2a">enabled</span>)
+
: [[API C_Garrison.SetUsingPartyGarrison|C_Garrison.SetUsingPartyGarrison]](<span class="apiarg">enabled</span>)
: [[API C_Garrison.ShouldShowMapTab|C_Garrison.ShouldShowMapTab]](<span style="font-size:smaller; color:#ecbc2a">garrType</span>)
+
: [[API C_Garrison.ShouldShowMapTab|C_Garrison.ShouldShowMapTab]](<span class="apiarg">garrType</span>)
: [[API C_Garrison.UpgradeGarrison|C_Garrison.UpgradeGarrison]](<span style="font-size:smaller; color:#ecbc2a">followerType</span>)
+
: [[API C_Garrison.UpgradeGarrison|C_Garrison.UpgradeGarrison]](<span class="apiarg">followerType</span>)
 
: [[API GetEquipmentNameFromSpell|GetEquipmentNameFromSpell]]() - returns a garrison equipment for a spell.
 
: [[API GetEquipmentNameFromSpell|GetEquipmentNameFromSpell]]() - returns a garrison equipment for a spell.
 
: [[API GetFollowerTypeIDFromSpell|GetFollowerTypeIDFromSpell]]() - Returns the Garrison expansion type.
 
: [[API GetFollowerTypeIDFromSpell|GetFollowerTypeIDFromSpell]]() - Returns the Garrison expansion type.
Line 4,716: Line 4,812:
   
 
==== Buildings ====
 
==== Buildings ====
: [[API C_Garrison.CancelConstruction|C_Garrison.CancelConstruction]](<span style="font-size:smaller; color:#ecbc2a">plotInstanceID</span>)
+
: [[API C_Garrison.CancelConstruction|C_Garrison.CancelConstruction]](<span class="apiarg">plotInstanceID</span>)
: [[API C_Garrison.GetBuildingInfo|C_Garrison.GetBuildingInfo]](<span style="font-size:smaller; color:#ecbc2a">buildingID</span>)
+
: [[API C_Garrison.GetBuildingInfo|C_Garrison.GetBuildingInfo]](<span class="apiarg">buildingID</span>)
 
: [[API C_Garrison.GetBuildingLockInfo|C_Garrison.GetBuildingLockInfo]]()
 
: [[API C_Garrison.GetBuildingLockInfo|C_Garrison.GetBuildingLockInfo]]()
 
: [[API C_Garrison.GetBuildingSizes|C_Garrison.GetBuildingSizes]]()
 
: [[API C_Garrison.GetBuildingSizes|C_Garrison.GetBuildingSizes]]()
 
: [[API C_Garrison.GetBuildingSpecInfo|C_Garrison.GetBuildingSpecInfo]]()
 
: [[API C_Garrison.GetBuildingSpecInfo|C_Garrison.GetBuildingSpecInfo]]()
: [[API C_Garrison.GetBuildingTimeRemaining|C_Garrison.GetBuildingTimeRemaining]](<span style="font-size:smaller; color:#ecbc2a">plotInstanceID</span>)
+
: [[API C_Garrison.GetBuildingTimeRemaining|C_Garrison.GetBuildingTimeRemaining]](<span class="apiarg">plotInstanceID</span>)
: [[API C_Garrison.GetBuildingTooltip|C_Garrison.GetBuildingTooltip]](<span style="font-size:smaller; color:#ecbc2a">buildingID</span>)
+
: [[API C_Garrison.GetBuildingTooltip|C_Garrison.GetBuildingTooltip]](<span class="apiarg">buildingID</span>)
: [[API C_Garrison.GetBuildingUpgradeInfo|C_Garrison.GetBuildingUpgradeInfo]](<span style="font-size:smaller; color:#ecbc2a">buildingID</span>)
+
: [[API C_Garrison.GetBuildingUpgradeInfo|C_Garrison.GetBuildingUpgradeInfo]](<span class="apiarg">buildingID</span>)
: [[API C_Garrison.GetBuildingsForPlot|C_Garrison.GetBuildingsForPlot]](<span style="font-size:smaller; color:#ecbc2a">plotInstanceID</span>)
+
: [[API C_Garrison.GetBuildingsForPlot|C_Garrison.GetBuildingsForPlot]](<span class="apiarg">plotInstanceID</span>)
: [[API C_Garrison.GetBuildingsForSize|C_Garrison.GetBuildingsForSize]](<span style="font-size:smaller; color:#ecbc2a">garrisonType, uiCategoryID</span>)
+
: [[API C_Garrison.GetBuildingsForSize|C_Garrison.GetBuildingsForSize]](<span class="apiarg">garrisonType, uiCategoryID</span>)
: [[API C_Garrison.GetBuildings|C_Garrison.GetBuildings]](<span style="font-size:smaller; color:#ecbc2a">garrisonType</span>)
+
: [[API C_Garrison.GetBuildings|C_Garrison.GetBuildings]](<span class="apiarg">garrisonType</span>)
: [[API C_Garrison.GetGarrisonPlotsInstancesForMap|C_Garrison.GetGarrisonPlotsInstancesForMap]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">garrisonPlotInstances</span>
+
: [[API C_Garrison.GetGarrisonPlotsInstancesForMap|C_Garrison.GetGarrisonPlotsInstancesForMap]](<span class="apiarg">uiMapID</span>) : <span class="apiret">garrisonPlotInstances</span>
: [[API C_Garrison.GetLandingPageShipmentInfo|C_Garrison.GetLandingPageShipmentInfo]](<span style="font-size:smaller; color:#ecbc2a">buildingID</span>)
+
: [[API C_Garrison.GetLandingPageShipmentInfo|C_Garrison.GetLandingPageShipmentInfo]](<span class="apiarg">buildingID</span>)
: [[API C_Garrison.GetOwnedBuildingInfoAbbrev|C_Garrison.GetOwnedBuildingInfoAbbrev]](<span style="font-size:smaller; color:#ecbc2a">plotInstanceID</span>)
+
: [[API C_Garrison.GetOwnedBuildingInfoAbbrev|C_Garrison.GetOwnedBuildingInfoAbbrev]](<span class="apiarg">plotInstanceID</span>)
: [[API C_Garrison.GetOwnedBuildingInfo|C_Garrison.GetOwnedBuildingInfo]](<span style="font-size:smaller; color:#ecbc2a">plotInstanceID</span>)
+
: [[API C_Garrison.GetOwnedBuildingInfo|C_Garrison.GetOwnedBuildingInfo]](<span class="apiarg">plotInstanceID</span>)
: [[API C_Garrison.GetPlotsForBuilding|C_Garrison.GetPlotsForBuilding]](<span style="font-size:smaller; color:#ecbc2a">buildingID</span>)
+
: [[API C_Garrison.GetPlotsForBuilding|C_Garrison.GetPlotsForBuilding]](<span class="apiarg">buildingID</span>)
: [[API C_Garrison.GetPlots|C_Garrison.GetPlots]](<span style="font-size:smaller; color:#ecbc2a">followerType</span>)
+
: [[API C_Garrison.GetPlots|C_Garrison.GetPlots]](<span class="apiarg">followerType</span>)
 
: [[API C_Garrison.GetShipDeathAnimInfo|C_Garrison.GetShipDeathAnimInfo]]()
 
: [[API C_Garrison.GetShipDeathAnimInfo|C_Garrison.GetShipDeathAnimInfo]]()
: [[API C_Garrison.GetTabForPlot|C_Garrison.GetTabForPlot]](<span style="font-size:smaller; color:#ecbc2a">plotInstanceID</span>)
+
: [[API C_Garrison.GetTabForPlot|C_Garrison.GetTabForPlot]](<span class="apiarg">plotInstanceID</span>)
 
: [[API C_Garrison.HasShipyard|C_Garrison.HasShipyard]]()
 
: [[API C_Garrison.HasShipyard|C_Garrison.HasShipyard]]()
 
: [[API C_Garrison.IsOnShipyardMap|C_Garrison.IsOnShipyardMap]]()
 
: [[API C_Garrison.IsOnShipyardMap|C_Garrison.IsOnShipyardMap]]()
: [[API C_Garrison.PlaceBuilding|C_Garrison.PlaceBuilding]](<span style="font-size:smaller; color:#ecbc2a">plotInstanceID, buildingID</span>)
+
: [[API C_Garrison.PlaceBuilding|C_Garrison.PlaceBuilding]](<span class="apiarg">plotInstanceID, buildingID</span>)
: [[API C_Garrison.SetBuildingActive|C_Garrison.SetBuildingActive]](<span style="font-size:smaller; color:#ecbc2a">plotInstanceID</span>)
+
: [[API C_Garrison.SetBuildingActive|C_Garrison.SetBuildingActive]](<span class="apiarg">plotInstanceID</span>)
 
: [[API C_Garrison.SetBuildingSpecialization|C_Garrison.SetBuildingSpecialization]]()
 
: [[API C_Garrison.SetBuildingSpecialization|C_Garrison.SetBuildingSpecialization]]()
: [[API C_Garrison.SwapBuildings|C_Garrison.SwapBuildings]](<span style="font-size:smaller; color:#ecbc2a">plotInstanceID1, plotInstanceID2</span>)
+
: [[API C_Garrison.SwapBuildings|C_Garrison.SwapBuildings]](<span class="apiarg">plotInstanceID1, plotInstanceID2</span>)
: [[API C_Garrison.UpgradeBuilding|C_Garrison.UpgradeBuilding]](<span style="font-size:smaller; color:#ecbc2a">plotInstanceID</span>)
+
: [[API C_Garrison.UpgradeBuilding|C_Garrison.UpgradeBuilding]](<span class="apiarg">plotInstanceID</span>)
 
Trophies
 
Trophies
: [[API C_Trophy.MonumentChangeAppearanceToTrophyID|C_Trophy.MonumentChangeAppearanceToTrophyID]](<span style="font-size:smaller; color:#ecbc2a">trophyID</span>)
+
: [[API C_Trophy.MonumentChangeAppearanceToTrophyID|C_Trophy.MonumentChangeAppearanceToTrophyID]](<span class="apiarg">trophyID</span>)
 
: [[API C_Trophy.MonumentCloseMonumentUI|C_Trophy.MonumentCloseMonumentUI]]()
 
: [[API C_Trophy.MonumentCloseMonumentUI|C_Trophy.MonumentCloseMonumentUI]]()
 
: [[API C_Trophy.MonumentGetCount|C_Trophy.MonumentGetCount]]()
 
: [[API C_Trophy.MonumentGetCount|C_Trophy.MonumentGetCount]]()
 
: [[API C_Trophy.MonumentGetSelectedTrophyID|C_Trophy.MonumentGetSelectedTrophyID]]()
 
: [[API C_Trophy.MonumentGetSelectedTrophyID|C_Trophy.MonumentGetSelectedTrophyID]]()
: [[API C_Trophy.MonumentGetTrophyInfoByIndex|C_Trophy.MonumentGetTrophyInfoByIndex]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API C_Trophy.MonumentGetTrophyInfoByIndex|C_Trophy.MonumentGetTrophyInfoByIndex]](<span class="apiarg">index</span>)
 
: [[API C_Trophy.MonumentLoadList|C_Trophy.MonumentLoadList]]()
 
: [[API C_Trophy.MonumentLoadList|C_Trophy.MonumentLoadList]]()
 
: [[API C_Trophy.MonumentLoadSelectedTrophyID|C_Trophy.MonumentLoadSelectedTrophyID]]()
 
: [[API C_Trophy.MonumentLoadSelectedTrophyID|C_Trophy.MonumentLoadSelectedTrophyID]]()
 
: [[API C_Trophy.MonumentRevertAppearanceToSaved|C_Trophy.MonumentRevertAppearanceToSaved]]()
 
: [[API C_Trophy.MonumentRevertAppearanceToSaved|C_Trophy.MonumentRevertAppearanceToSaved]]()
: [[API C_Trophy.MonumentSaveSelection|C_Trophy.MonumentSaveSelection]](<span style="font-size:smaller; color:#ecbc2a">trophyID</span>)
+
: [[API C_Trophy.MonumentSaveSelection|C_Trophy.MonumentSaveSelection]](<span class="apiarg">trophyID</span>)
   
 
==== Missions ====
 
==== Missions ====
 
Relates to [[Follower]]s and [[Mission]]s.
 
Relates to [[Follower]]s and [[Mission]]s.
: [[API C_Garrison.AddFollowerToMission|C_Garrison.AddFollowerToMission]](<span style="font-size:smaller; color:#ecbc2a">missionID, followerID [, boardIndex]</span>) : <span style="font-size:smaller; color:#4ec9b0">followerAdded</span>
+
: [[API C_Garrison.AddFollowerToMission|C_Garrison.AddFollowerToMission]](<span class="apiarg">missionID, followerID [, boardIndex]</span>) : <span class="apiret">followerAdded</span>
: [[API C_Garrison.AllowMissionStartAboveSoftCap|C_Garrison.AllowMissionStartAboveSoftCap]](<span style="font-size:smaller; color:#ecbc2a">garrFollowerTypeID</span>)
+
: [[API C_Garrison.AllowMissionStartAboveSoftCap|C_Garrison.AllowMissionStartAboveSoftCap]](<span class="apiarg">garrFollowerTypeID</span>)
: [[API C_Garrison.AreMissionFollowerRequirementsMet|C_Garrison.AreMissionFollowerRequirementsMet]](<span style="font-size:smaller; color:#ecbc2a">missionRecID</span>)
+
: [[API C_Garrison.AreMissionFollowerRequirementsMet|C_Garrison.AreMissionFollowerRequirementsMet]](<span class="apiarg">missionRecID</span>)
: [[API C_Garrison.AssignFollowerToBuilding|C_Garrison.AssignFollowerToBuilding]](<span style="font-size:smaller; color:#ecbc2a">plotInstanceID, followerID</span>)
+
: [[API C_Garrison.AssignFollowerToBuilding|C_Garrison.AssignFollowerToBuilding]](<span class="apiarg">plotInstanceID, followerID</span>)
 
: [[API C_Garrison.CanGenerateRecruits|C_Garrison.CanGenerateRecruits]]()
 
: [[API C_Garrison.CanGenerateRecruits|C_Garrison.CanGenerateRecruits]]()
: [[API C_Garrison.CanOpenMissionChest|C_Garrison.CanOpenMissionChest]](<span style="font-size:smaller; color:#ecbc2a">missionID</span>)
+
: [[API C_Garrison.CanOpenMissionChest|C_Garrison.CanOpenMissionChest]](<span class="apiarg">missionID</span>)
 
: [[API C_Garrison.CanSetRecruitmentPreference|C_Garrison.CanSetRecruitmentPreference]]()
 
: [[API C_Garrison.CanSetRecruitmentPreference|C_Garrison.CanSetRecruitmentPreference]]()
: [[API C_Garrison.CanSpellTargetFollowerIDWithAddAbility|C_Garrison.CanSpellTargetFollowerIDWithAddAbility]](<span style="font-size:smaller; color:#ecbc2a">followerID</span>)
+
: [[API C_Garrison.CanSpellTargetFollowerIDWithAddAbility|C_Garrison.CanSpellTargetFollowerIDWithAddAbility]](<span class="apiarg">followerID</span>)
: [[API C_Garrison.CastItemSpellOnFollowerAbility|C_Garrison.CastItemSpellOnFollowerAbility]](<span style="font-size:smaller; color:#ecbc2a">followerID, abilityID</span>)
+
: [[API C_Garrison.CastItemSpellOnFollowerAbility|C_Garrison.CastItemSpellOnFollowerAbility]](<span class="apiarg">followerID, abilityID</span>)
: [[API C_Garrison.CastSpellOnFollower|C_Garrison.CastSpellOnFollower]](<span style="font-size:smaller; color:#ecbc2a">followerID</span>)
+
: [[API C_Garrison.CastSpellOnFollower|C_Garrison.CastSpellOnFollower]](<span class="apiarg">followerID</span>)
: [[API C_Garrison.CastSpellOnFollowerAbility|C_Garrison.CastSpellOnFollowerAbility]](<span style="font-size:smaller; color:#ecbc2a">followerID, abilityID</span>)
+
: [[API C_Garrison.CastSpellOnFollowerAbility|C_Garrison.CastSpellOnFollowerAbility]](<span class="apiarg">followerID, abilityID</span>)
: [[API C_Garrison.CastSpellOnMission|C_Garrison.CastSpellOnMission]](<span style="font-size:smaller; color:#ecbc2a">missionID</span>)
+
: [[API C_Garrison.CastSpellOnMission|C_Garrison.CastSpellOnMission]](<span class="apiarg">missionID</span>)
 
: [[API C_Garrison.CloseMissionNPC|C_Garrison.CloseMissionNPC]]()
 
: [[API C_Garrison.CloseMissionNPC|C_Garrison.CloseMissionNPC]]()
 
: [[API C_Garrison.CloseRecruitmentNPC|C_Garrison.CloseRecruitmentNPC]]()
 
: [[API C_Garrison.CloseRecruitmentNPC|C_Garrison.CloseRecruitmentNPC]]()
: [[API C_Garrison.GenerateRecruits|C_Garrison.GenerateRecruits]](<span style="font-size:smaller; color:#ecbc2a">mechanicTypeID, traitID</span>)
+
: [[API C_Garrison.GenerateRecruits|C_Garrison.GenerateRecruits]](<span class="apiarg">mechanicTypeID, traitID</span>)
: [[API C_Garrison.GetAllEncounterThreats|C_Garrison.GetAllEncounterThreats]](<span style="font-size:smaller; color:#ecbc2a">garrFollowerTypeID</span>)
+
: [[API C_Garrison.GetAllEncounterThreats|C_Garrison.GetAllEncounterThreats]](<span class="apiarg">garrFollowerTypeID</span>)
: [[API C_Garrison.GetAvailableMissions|C_Garrison.GetAvailableMissions]](<span style="font-size:smaller; color:#ecbc2a">[missionList,] garrFollowerTypeID</span>)
+
: [[API C_Garrison.GetAvailableMissions|C_Garrison.GetAvailableMissions]](<span class="apiarg">[missionList,] garrFollowerTypeID</span>)
 
: [[API C_Garrison.GetAvailableRecruits|C_Garrison.GetAvailableRecruits]]()
 
: [[API C_Garrison.GetAvailableRecruits|C_Garrison.GetAvailableRecruits]]()
: [[API C_Garrison.GetBasicMissionInfo|C_Garrison.GetBasicMissionInfo]](<span style="font-size:smaller; color:#ecbc2a">missionID</span>)
+
: [[API C_Garrison.GetBasicMissionInfo|C_Garrison.GetBasicMissionInfo]](<span class="apiarg">missionID</span>)
: [[API C_Garrison.GetBuffedFollowersForMission|C_Garrison.GetBuffedFollowersForMission]](<span style="font-size:smaller; color:#ecbc2a">missionID, displayingAbilities</span>)
+
: [[API C_Garrison.GetBuffedFollowersForMission|C_Garrison.GetBuffedFollowersForMission]](<span class="apiarg">missionID, displayingAbilities</span>)
: [[API C_Garrison.GetClassSpecCategoryInfo|C_Garrison.GetClassSpecCategoryInfo]](<span style="font-size:smaller; color:#ecbc2a">garrFollowerType</span>)
+
: [[API C_Garrison.GetClassSpecCategoryInfo|C_Garrison.GetClassSpecCategoryInfo]](<span class="apiarg">garrFollowerType</span>)
: [[API C_Garrison.GetCombatAllyMission|C_Garrison.GetCombatAllyMission]](<span style="font-size:smaller; color:#ecbc2a">garrFollowerTypeID</span>)
+
: [[API C_Garrison.GetCombatAllyMission|C_Garrison.GetCombatAllyMission]](<span class="apiarg">garrFollowerTypeID</span>)
: [[API C_Garrison.GetCompleteMissions|C_Garrison.GetCompleteMissions]](<span style="font-size:smaller; color:#ecbc2a">[missionList,] garrFollowerTypeID</span>)
+
: [[API C_Garrison.GetCompleteMissions|C_Garrison.GetCompleteMissions]](<span class="apiarg">[missionList,] garrFollowerTypeID</span>)
: [[API C_Garrison.GetFollowerAbilities|C_Garrison.GetFollowerAbilities]](<span style="font-size:smaller; color:#ecbc2a">guid|id</span>)
+
: [[API C_Garrison.GetFollowerAbilities|C_Garrison.GetFollowerAbilities]](<span class="apiarg">guid|id</span>)
: [[API C_Garrison.GetFollowerAbilityAtIndex|C_Garrison.GetFollowerAbilityAtIndex]](<span style="font-size:smaller; color:#ecbc2a">followerID, index</span>)
+
: [[API C_Garrison.GetFollowerAbilityAtIndex|C_Garrison.GetFollowerAbilityAtIndex]](<span class="apiarg">followerID, index</span>)
: [[API C_Garrison.GetFollowerAbilityAtIndexByID|C_Garrison.GetFollowerAbilityAtIndexByID]](<span style="font-size:smaller; color:#ecbc2a">garrFollowerID, index</span>)
+
: [[API C_Garrison.GetFollowerAbilityAtIndexByID|C_Garrison.GetFollowerAbilityAtIndexByID]](<span class="apiarg">garrFollowerID, index</span>)
: [[API C_Garrison.GetFollowerAbilityCounterMechanicInfo|C_Garrison.GetFollowerAbilityCounterMechanicInfo]](<span style="font-size:smaller; color:#ecbc2a">garrAbilityID</span>)
+
: [[API C_Garrison.GetFollowerAbilityCounterMechanicInfo|C_Garrison.GetFollowerAbilityCounterMechanicInfo]](<span class="apiarg">garrAbilityID</span>)
: [[API C_Garrison.GetFollowerAbilityCountersForMechanicTypes|C_Garrison.GetFollowerAbilityCountersForMechanicTypes]](<span style="font-size:smaller; color:#ecbc2a">garrFollowerTypeID</span>)
+
: [[API C_Garrison.GetFollowerAbilityCountersForMechanicTypes|C_Garrison.GetFollowerAbilityCountersForMechanicTypes]](<span class="apiarg">garrFollowerTypeID</span>)
: [[API C_Garrison.GetFollowerAbilityDescription|C_Garrison.GetFollowerAbilityDescription]](<span style="font-size:smaller; color:#ecbc2a">garrAbilityID</span>)
+
: [[API C_Garrison.GetFollowerAbilityDescription|C_Garrison.GetFollowerAbilityDescription]](<span class="apiarg">garrAbilityID</span>)
: [[API C_Garrison.GetFollowerAbilityIcon|C_Garrison.GetFollowerAbilityIcon]](<span style="font-size:smaller; color:#ecbc2a">garrAbilityID</span>)
+
: [[API C_Garrison.GetFollowerAbilityIcon|C_Garrison.GetFollowerAbilityIcon]](<span class="apiarg">garrAbilityID</span>)
: [[API C_Garrison.GetFollowerAbilityInfo|C_Garrison.GetFollowerAbilityInfo]](<span style="font-size:smaller; color:#ecbc2a">garrAbilityID</span>)
+
: [[API C_Garrison.GetFollowerAbilityInfo|C_Garrison.GetFollowerAbilityInfo]](<span class="apiarg">garrAbilityID</span>)
: [[API C_Garrison.GetFollowerAbilityIsTrait|C_Garrison.GetFollowerAbilityIsTrait]](<span style="font-size:smaller; color:#ecbc2a">garrAbilityID</span>)
+
: [[API C_Garrison.GetFollowerAbilityIsTrait|C_Garrison.GetFollowerAbilityIsTrait]](<span class="apiarg">garrAbilityID</span>)
: [[API C_Garrison.GetFollowerAbilityLink|C_Garrison.GetFollowerAbilityLink]](<span style="font-size:smaller; color:#ecbc2a">abilityID</span>)
+
: [[API C_Garrison.GetFollowerAbilityLink|C_Garrison.GetFollowerAbilityLink]](<span class="apiarg">abilityID</span>)
: [[API C_Garrison.GetFollowerAbilityName|C_Garrison.GetFollowerAbilityName]](<span style="font-size:smaller; color:#ecbc2a">garrAbilityID</span>)
+
: [[API C_Garrison.GetFollowerAbilityName|C_Garrison.GetFollowerAbilityName]](<span class="apiarg">garrAbilityID</span>)
 
: [[API C_Garrison.GetFollowerActivationCost|C_Garrison.GetFollowerActivationCost]]()
 
: [[API C_Garrison.GetFollowerActivationCost|C_Garrison.GetFollowerActivationCost]]()
: [[API C_Garrison.GetFollowerBiasForMission|C_Garrison.GetFollowerBiasForMission]](<span style="font-size:smaller; color:#ecbc2a">missionID, followerID</span>)
+
: [[API C_Garrison.GetFollowerBiasForMission|C_Garrison.GetFollowerBiasForMission]](<span class="apiarg">missionID, followerID</span>)
: [[API C_Garrison.GetFollowerClassSpec|C_Garrison.GetFollowerClassSpec]](<span style="font-size:smaller; color:#ecbc2a">followerID</span>)
+
: [[API C_Garrison.GetFollowerClassSpec|C_Garrison.GetFollowerClassSpec]](<span class="apiarg">followerID</span>)
: [[API C_Garrison.GetFollowerClassSpecAtlas|C_Garrison.GetFollowerClassSpecAtlas]](<span style="font-size:smaller; color:#ecbc2a">garrSpecID</span>)
+
: [[API C_Garrison.GetFollowerClassSpecAtlas|C_Garrison.GetFollowerClassSpecAtlas]](<span class="apiarg">garrSpecID</span>)
: [[API C_Garrison.GetFollowerClassSpecByID|C_Garrison.GetFollowerClassSpecByID]](<span style="font-size:smaller; color:#ecbc2a">garrFollowerID</span>)
+
: [[API C_Garrison.GetFollowerClassSpecByID|C_Garrison.GetFollowerClassSpecByID]](<span class="apiarg">garrFollowerID</span>)
: [[API C_Garrison.GetFollowerClassSpecName|C_Garrison.GetFollowerClassSpecName]](<span style="font-size:smaller; color:#ecbc2a">garrFollowerID</span>)
+
: [[API C_Garrison.GetFollowerClassSpecName|C_Garrison.GetFollowerClassSpecName]](<span class="apiarg">garrFollowerID</span>)
: [[API C_Garrison.GetFollowerDisplayID|C_Garrison.GetFollowerDisplayID]](<span style="font-size:smaller; color:#ecbc2a">followerID</span>)
+
: [[API C_Garrison.GetFollowerDisplayID|C_Garrison.GetFollowerDisplayID]](<span class="apiarg">followerID</span>)
: [[API C_Garrison.GetFollowerInfo|C_Garrison.GetFollowerInfo]](<span style="font-size:smaller; color:#ecbc2a">guid|id</span>)
+
: [[API C_Garrison.GetFollowerInfo|C_Garrison.GetFollowerInfo]](<span class="apiarg">guid|id</span>)
 
: [[API C_Garrison.GetFollowerInfoForBuilding|C_Garrison.GetFollowerInfoForBuilding]]()
 
: [[API C_Garrison.GetFollowerInfoForBuilding|C_Garrison.GetFollowerInfoForBuilding]]()
: [[API C_Garrison.GetFollowerIsTroop|C_Garrison.GetFollowerIsTroop]](<span style="font-size:smaller; color:#ecbc2a">guid|id</span>)
+
: [[API C_Garrison.GetFollowerIsTroop|C_Garrison.GetFollowerIsTroop]](<span class="apiarg">guid|id</span>)
: [[API C_Garrison.GetFollowerItemLevelAverage|C_Garrison.GetFollowerItemLevelAverage]](<span style="font-size:smaller; color:#ecbc2a">followerID</span>)
+
: [[API C_Garrison.GetFollowerItemLevelAverage|C_Garrison.GetFollowerItemLevelAverage]](<span class="apiarg">followerID</span>)
: [[API C_Garrison.GetFollowerItems|C_Garrison.GetFollowerItems]](<span style="font-size:smaller; color:#ecbc2a">followerID</span>)
+
: [[API C_Garrison.GetFollowerItems|C_Garrison.GetFollowerItems]](<span class="apiarg">followerID</span>)
: [[API C_Garrison.GetFollowerLevel|C_Garrison.GetFollowerLevel]](<span style="font-size:smaller; color:#ecbc2a">followerID</span>)
+
: [[API C_Garrison.GetFollowerLevel|C_Garrison.GetFollowerLevel]](<span class="apiarg">followerID</span>)
: [[API C_Garrison.GetFollowerLevelXP|C_Garrison.GetFollowerLevelXP]](<span style="font-size:smaller; color:#ecbc2a">followerID</span>)
+
: [[API C_Garrison.GetFollowerLevelXP|C_Garrison.GetFollowerLevelXP]](<span class="apiarg">followerID</span>)
: [[API C_Garrison.GetFollowerLink|C_Garrison.GetFollowerLink]](<span style="font-size:smaller; color:#ecbc2a">followerID</span>)
+
: [[API C_Garrison.GetFollowerLink|C_Garrison.GetFollowerLink]](<span class="apiarg">followerID</span>)
: [[API C_Garrison.GetFollowerLinkByID|C_Garrison.GetFollowerLinkByID]](<span style="font-size:smaller; color:#ecbc2a">garrFollowerID</span>)
+
: [[API C_Garrison.GetFollowerLinkByID|C_Garrison.GetFollowerLinkByID]](<span class="apiarg">garrFollowerID</span>)
: [[API C_Garrison.GetFollowerMissionCompleteInfo|C_Garrison.GetFollowerMissionCompleteInfo]](<span style="font-size:smaller; color:#ecbc2a">followerID</span>) : <span style="font-size:smaller; color:#4ec9b0">followerMissionCompleteInfo</span>
+
: [[API C_Garrison.GetFollowerMissionCompleteInfo|C_Garrison.GetFollowerMissionCompleteInfo]](<span class="apiarg">followerID</span>) : <span class="apiret">followerMissionCompleteInfo</span>
: [[API C_Garrison.GetFollowerMissionTimeLeft|C_Garrison.GetFollowerMissionTimeLeft]](<span style="font-size:smaller; color:#ecbc2a">followerID</span>)
+
: [[API C_Garrison.GetFollowerMissionTimeLeft|C_Garrison.GetFollowerMissionTimeLeft]](<span class="apiarg">followerID</span>)
: [[API C_Garrison.GetFollowerMissionTimeLeftSeconds|C_Garrison.GetFollowerMissionTimeLeftSeconds]](<span style="font-size:smaller; color:#ecbc2a">followerID</span>)
+
: [[API C_Garrison.GetFollowerMissionTimeLeftSeconds|C_Garrison.GetFollowerMissionTimeLeftSeconds]](<span class="apiarg">followerID</span>)
: [[API C_Garrison.GetFollowerModelItems|C_Garrison.GetFollowerModelItems]](<span style="font-size:smaller; color:#ecbc2a">followerID</span>)
+
: [[API C_Garrison.GetFollowerModelItems|C_Garrison.GetFollowerModelItems]](<span class="apiarg">followerID</span>)
: [[API C_Garrison.GetFollowerName|C_Garrison.GetFollowerName]](<span style="font-size:smaller; color:#ecbc2a">followerID</span>)
+
: [[API C_Garrison.GetFollowerName|C_Garrison.GetFollowerName]](<span class="apiarg">followerID</span>)
: [[API C_Garrison.GetFollowerNameByID|C_Garrison.GetFollowerNameByID]](<span style="font-size:smaller; color:#ecbc2a">garrFollowerID</span>)
+
: [[API C_Garrison.GetFollowerNameByID|C_Garrison.GetFollowerNameByID]](<span class="apiarg">garrFollowerID</span>)
: [[API C_Garrison.GetFollowerPortraitIconID|C_Garrison.GetFollowerPortraitIconID]](<span style="font-size:smaller; color:#ecbc2a">followerID</span>)
+
: [[API C_Garrison.GetFollowerPortraitIconID|C_Garrison.GetFollowerPortraitIconID]](<span class="apiarg">followerID</span>)
: [[API C_Garrison.GetFollowerPortraitIconIDByID|C_Garrison.GetFollowerPortraitIconIDByID]](<span style="font-size:smaller; color:#ecbc2a">garrFollowerID</span>)
+
: [[API C_Garrison.GetFollowerPortraitIconIDByID|C_Garrison.GetFollowerPortraitIconIDByID]](<span class="apiarg">garrFollowerID</span>)
: [[API C_Garrison.GetFollowerQuality|C_Garrison.GetFollowerQuality]](<span style="font-size:smaller; color:#ecbc2a">followerID</span>)
+
: [[API C_Garrison.GetFollowerQuality|C_Garrison.GetFollowerQuality]](<span class="apiarg">followerID</span>)
: [[API C_Garrison.GetFollowerQualityTable|C_Garrison.GetFollowerQualityTable]](<span style="font-size:smaller; color:#ecbc2a">garrFollowerTypeID</span>)
+
: [[API C_Garrison.GetFollowerQualityTable|C_Garrison.GetFollowerQualityTable]](<span class="apiarg">garrFollowerTypeID</span>)
: [[API C_Garrison.GetFollowerRecentlyGainedAbilityIDs|C_Garrison.GetFollowerRecentlyGainedAbilityIDs]](<span style="font-size:smaller; color:#ecbc2a">followerID</span>)
+
: [[API C_Garrison.GetFollowerRecentlyGainedAbilityIDs|C_Garrison.GetFollowerRecentlyGainedAbilityIDs]](<span class="apiarg">followerID</span>)
: [[API C_Garrison.GetFollowerRecentlyGainedTraitIDs|C_Garrison.GetFollowerRecentlyGainedTraitIDs]](<span style="font-size:smaller; color:#ecbc2a">followerID</span>)
+
: [[API C_Garrison.GetFollowerRecentlyGainedTraitIDs|C_Garrison.GetFollowerRecentlyGainedTraitIDs]](<span class="apiarg">followerID</span>)
 
: [[API C_Garrison.GetFollowers|C_Garrison.GetFollowers]]() - Returns a table of followers and their attributes.
 
: [[API C_Garrison.GetFollowers|C_Garrison.GetFollowers]]() - Returns a table of followers and their attributes.
: [[API C_Garrison.GetFollowerShipments|C_Garrison.GetFollowerShipments]](<span style="font-size:smaller; color:#ecbc2a">garrTypeID</span>)
+
: [[API C_Garrison.GetFollowerShipments|C_Garrison.GetFollowerShipments]](<span class="apiarg">garrTypeID</span>)
: [[API C_Garrison.GetFollowerSoftCap|C_Garrison.GetFollowerSoftCap]](<span style="font-size:smaller; color:#ecbc2a">garrFollowerTypeID</span>)
+
: [[API C_Garrison.GetFollowerSoftCap|C_Garrison.GetFollowerSoftCap]](<span class="apiarg">garrFollowerTypeID</span>)
: [[API C_Garrison.GetFollowerSourceTextByID|C_Garrison.GetFollowerSourceTextByID]](<span style="font-size:smaller; color:#ecbc2a">garrFollowerID</span>)
+
: [[API C_Garrison.GetFollowerSourceTextByID|C_Garrison.GetFollowerSourceTextByID]](<span class="apiarg">garrFollowerID</span>)
: [[API C_Garrison.GetFollowerSpecializationAtIndex|C_Garrison.GetFollowerSpecializationAtIndex]](<span style="font-size:smaller; color:#ecbc2a">followerID, index</span>)
+
: [[API C_Garrison.GetFollowerSpecializationAtIndex|C_Garrison.GetFollowerSpecializationAtIndex]](<span class="apiarg">followerID, index</span>)
: [[API C_Garrison.GetFollowersSpellsForMission|C_Garrison.GetFollowersSpellsForMission]](<span style="font-size:smaller; color:#ecbc2a">missionID</span>)
+
: [[API C_Garrison.GetFollowersSpellsForMission|C_Garrison.GetFollowersSpellsForMission]](<span class="apiarg">missionID</span>)
: [[API C_Garrison.GetFollowerStatus|C_Garrison.GetFollowerStatus]](<span style="font-size:smaller; color:#ecbc2a">followerID</span>)
+
: [[API C_Garrison.GetFollowerStatus|C_Garrison.GetFollowerStatus]](<span class="apiarg">followerID</span>)
: [[API C_Garrison.GetFollowersTraitsForMission|C_Garrison.GetFollowersTraitsForMission]](<span style="font-size:smaller; color:#ecbc2a">missionID</span>)
+
: [[API C_Garrison.GetFollowersTraitsForMission|C_Garrison.GetFollowersTraitsForMission]](<span class="apiarg">missionID</span>)
: [[API C_Garrison.GetFollowerTraitAtIndex|C_Garrison.GetFollowerTraitAtIndex]](<span style="font-size:smaller; color:#ecbc2a">followerID, index</span>)
+
: [[API C_Garrison.GetFollowerTraitAtIndex|C_Garrison.GetFollowerTraitAtIndex]](<span class="apiarg">followerID, index</span>)
: [[API C_Garrison.GetFollowerTraitAtIndexByID|C_Garrison.GetFollowerTraitAtIndexByID]](<span style="font-size:smaller; color:#ecbc2a">garrFollowerID, index</span>)
+
: [[API C_Garrison.GetFollowerTraitAtIndexByID|C_Garrison.GetFollowerTraitAtIndexByID]](<span class="apiarg">garrFollowerID, index</span>)
: [[API C_Garrison.GetFollowerTypeByID|C_Garrison.GetFollowerTypeByID]](<span style="font-size:smaller; color:#ecbc2a">garrFollowerID</span>)
+
: [[API C_Garrison.GetFollowerTypeByID|C_Garrison.GetFollowerTypeByID]](<span class="apiarg">garrFollowerID</span>)
: [[API C_Garrison.GetFollowerTypeByMissionID|C_Garrison.GetFollowerTypeByMissionID]](<span style="font-size:smaller; color:#ecbc2a">missionID</span>)
+
: [[API C_Garrison.GetFollowerTypeByMissionID|C_Garrison.GetFollowerTypeByMissionID]](<span class="apiarg">missionID</span>)
: [[API C_Garrison.GetFollowerUnderBiasReason|C_Garrison.GetFollowerUnderBiasReason]](<span style="font-size:smaller; color:#ecbc2a">missionID, followerID</span>)
+
: [[API C_Garrison.GetFollowerUnderBiasReason|C_Garrison.GetFollowerUnderBiasReason]](<span class="apiarg">missionID, followerID</span>)
: [[API C_Garrison.GetFollowerXP|C_Garrison.GetFollowerXP]](<span style="font-size:smaller; color:#ecbc2a">followerID</span>)
+
: [[API C_Garrison.GetFollowerXP|C_Garrison.GetFollowerXP]](<span class="apiarg">followerID</span>)
: [[API C_Garrison.GetFollowerXPTable|C_Garrison.GetFollowerXPTable]](<span style="font-size:smaller; color:#ecbc2a">garrFollowerTypeID</span>)
+
: [[API C_Garrison.GetFollowerXPTable|C_Garrison.GetFollowerXPTable]](<span class="apiarg">garrFollowerTypeID</span>)
: [[API C_Garrison.GetFollowerZoneSupportAbilities|C_Garrison.GetFollowerZoneSupportAbilities]](<span style="font-size:smaller; color:#ecbc2a">guid|id</span>)
+
: [[API C_Garrison.GetFollowerZoneSupportAbilities|C_Garrison.GetFollowerZoneSupportAbilities]](<span class="apiarg">guid|id</span>)
: [[API C_Garrison.GetInProgressMissions|C_Garrison.GetInProgressMissions]](<span style="font-size:smaller; color:#ecbc2a">[missionList,] garrFollowerTypeID</span>)
+
: [[API C_Garrison.GetInProgressMissions|C_Garrison.GetInProgressMissions]](<span class="apiarg">[missionList,] garrFollowerTypeID</span>)
: [[API C_Garrison.GetMissionBonusAbilityEffects|C_Garrison.GetMissionBonusAbilityEffects]](<span style="font-size:smaller; color:#ecbc2a">missionID</span>)
+
: [[API C_Garrison.GetMissionBonusAbilityEffects|C_Garrison.GetMissionBonusAbilityEffects]](<span class="apiarg">missionID</span>)
: [[API C_Garrison.GetMissionCompleteEncounters|C_Garrison.GetMissionCompleteEncounters]](<span style="font-size:smaller; color:#ecbc2a">missionID</span>) : <span style="font-size:smaller; color:#4ec9b0">encounters</span>
+
: [[API C_Garrison.GetMissionCompleteEncounters|C_Garrison.GetMissionCompleteEncounters]](<span class="apiarg">missionID</span>) : <span class="apiret">encounters</span>
: [[API C_Garrison.GetMissionCost|C_Garrison.GetMissionCost]](<span style="font-size:smaller; color:#ecbc2a">missionID</span>)
+
: [[API C_Garrison.GetMissionCost|C_Garrison.GetMissionCost]](<span class="apiarg">missionID</span>)
: [[API C_Garrison.GetMissionDeploymentInfo|C_Garrison.GetMissionDeploymentInfo]](<span style="font-size:smaller; color:#ecbc2a">missionID</span>) : <span style="font-size:smaller; color:#4ec9b0">missionDeploymentInfo</span>
+
: [[API C_Garrison.GetMissionDeploymentInfo|C_Garrison.GetMissionDeploymentInfo]](<span class="apiarg">missionID</span>) : <span class="apiret">missionDeploymentInfo</span>
: [[API C_Garrison.GetMissionDisplayIDs|C_Garrison.GetMissionDisplayIDs]](<span style="font-size:smaller; color:#ecbc2a">missionID</span>)
+
: [[API C_Garrison.GetMissionDisplayIDs|C_Garrison.GetMissionDisplayIDs]](<span class="apiarg">missionID</span>)
: [[API C_Garrison.GetMissionEncounterIconInfo|C_Garrison.GetMissionEncounterIconInfo]](<span style="font-size:smaller; color:#ecbc2a">missionID</span>) : <span style="font-size:smaller; color:#4ec9b0">missionEncounterIconInfo</span>
+
: [[API C_Garrison.GetMissionEncounterIconInfo|C_Garrison.GetMissionEncounterIconInfo]](<span class="apiarg">missionID</span>) : <span class="apiret">missionEncounterIconInfo</span>
: [[API C_Garrison.GetMissionLink|C_Garrison.GetMissionLink]](<span style="font-size:smaller; color:#ecbc2a">missionID</span>)
+
: [[API C_Garrison.GetMissionLink|C_Garrison.GetMissionLink]](<span class="apiarg">missionID</span>)
: [[API C_Garrison.GetMissionMaxFollowers|C_Garrison.GetMissionMaxFollowers]](<span style="font-size:smaller; color:#ecbc2a">garrMissionID</span>)
+
: [[API C_Garrison.GetMissionMaxFollowers|C_Garrison.GetMissionMaxFollowers]](<span class="apiarg">garrMissionID</span>)
: [[API C_Garrison.GetMissionName|C_Garrison.GetMissionName]](<span style="font-size:smaller; color:#ecbc2a">garrMissionID</span>)
+
: [[API C_Garrison.GetMissionName|C_Garrison.GetMissionName]](<span class="apiarg">garrMissionID</span>)
: [[API C_Garrison.GetMissionRewardInfo|C_Garrison.GetMissionRewardInfo]](<span style="font-size:smaller; color:#ecbc2a">garrMissionID [, missionDBID]</span>)
+
: [[API C_Garrison.GetMissionRewardInfo|C_Garrison.GetMissionRewardInfo]](<span class="apiarg">garrMissionID [, missionDBID]</span>)
: [[API C_Garrison.GetMissionSuccessChance|C_Garrison.GetMissionSuccessChance]](<span style="font-size:smaller; color:#ecbc2a">missionID</span>)
+
: [[API C_Garrison.GetMissionSuccessChance|C_Garrison.GetMissionSuccessChance]](<span class="apiarg">missionID</span>)
: [[API C_Garrison.GetMissionTexture|C_Garrison.GetMissionTexture]](<span style="font-size:smaller; color:#ecbc2a">offeredGarrMissionTextureID</span>)
+
: [[API C_Garrison.GetMissionTexture|C_Garrison.GetMissionTexture]](<span class="apiarg">offeredGarrMissionTextureID</span>)
: [[API C_Garrison.GetMissionTimes|C_Garrison.GetMissionTimes]](<span style="font-size:smaller; color:#ecbc2a">missionID</span>)
+
: [[API C_Garrison.GetMissionTimes|C_Garrison.GetMissionTimes]](<span class="apiarg">missionID</span>)
: [[API C_Garrison.GetMissionUncounteredMechanics|C_Garrison.GetMissionUncounteredMechanics]](<span style="font-size:smaller; color:#ecbc2a">missionID</span>)
+
: [[API C_Garrison.GetMissionUncounteredMechanics|C_Garrison.GetMissionUncounteredMechanics]](<span class="apiarg">missionID</span>)
 
: [[API C_Garrison.GetNumActiveFollowers|C_Garrison.GetNumActiveFollowers]]()
 
: [[API C_Garrison.GetNumActiveFollowers|C_Garrison.GetNumActiveFollowers]]()
: [[API C_Garrison.GetNumFollowerActivationsRemaining|C_Garrison.GetNumFollowerActivationsRemaining]](<span style="font-size:smaller; color:#ecbc2a">garrTypeID</span>)
+
: [[API C_Garrison.GetNumFollowerActivationsRemaining|C_Garrison.GetNumFollowerActivationsRemaining]](<span class="apiarg">garrTypeID</span>)
 
: [[API C_Garrison.GetNumFollowerDailyActivations|C_Garrison.GetNumFollowerDailyActivations]]()
 
: [[API C_Garrison.GetNumFollowerDailyActivations|C_Garrison.GetNumFollowerDailyActivations]]()
 
: [[API C_Garrison.GetNumFollowers|C_Garrison.GetNumFollowers]]()
 
: [[API C_Garrison.GetNumFollowers|C_Garrison.GetNumFollowers]]()
: [[API C_Garrison.GetNumFollowersForMechanic|C_Garrison.GetNumFollowersForMechanic]](<span style="font-size:smaller; color:#ecbc2a">followerType, mechanicID</span>)
+
: [[API C_Garrison.GetNumFollowersForMechanic|C_Garrison.GetNumFollowersForMechanic]](<span class="apiarg">followerType, mechanicID</span>)
: [[API C_Garrison.GetNumFollowersOnMission|C_Garrison.GetNumFollowersOnMission]](<span style="font-size:smaller; color:#ecbc2a">missionID</span>)
+
: [[API C_Garrison.GetNumFollowersOnMission|C_Garrison.GetNumFollowersOnMission]](<span class="apiarg">missionID</span>)
: [[API C_Garrison.GetPartyBuffs|C_Garrison.GetPartyBuffs]](<span style="font-size:smaller; color:#ecbc2a">missionID</span>)
+
: [[API C_Garrison.GetPartyBuffs|C_Garrison.GetPartyBuffs]](<span class="apiarg">missionID</span>)
: [[API C_Garrison.GetPartyMentorLevels|C_Garrison.GetPartyMentorLevels]](<span style="font-size:smaller; color:#ecbc2a">missionID</span>)
+
: [[API C_Garrison.GetPartyMentorLevels|C_Garrison.GetPartyMentorLevels]](<span class="apiarg">missionID</span>)
: [[API C_Garrison.GetPartyMissionInfo|C_Garrison.GetPartyMissionInfo]](<span style="font-size:smaller; color:#ecbc2a">missionID</span>)
+
: [[API C_Garrison.GetPartyMissionInfo|C_Garrison.GetPartyMissionInfo]](<span class="apiarg">missionID</span>)
: [[API C_Garrison.GetPossibleFollowersForBuilding|C_Garrison.GetPossibleFollowersForBuilding]](<span style="font-size:smaller; color:#ecbc2a">followerType, plotInstanceID</span>)
+
: [[API C_Garrison.GetPossibleFollowersForBuilding|C_Garrison.GetPossibleFollowersForBuilding]](<span class="apiarg">followerType, plotInstanceID</span>)
: [[API C_Garrison.GetRecruitAbilities|C_Garrison.GetRecruitAbilities]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API C_Garrison.GetRecruitAbilities|C_Garrison.GetRecruitAbilities]](<span class="apiarg">index</span>)
 
: [[API C_Garrison.GetRecruiterAbilityCategories|C_Garrison.GetRecruiterAbilityCategories]]()
 
: [[API C_Garrison.GetRecruiterAbilityCategories|C_Garrison.GetRecruiterAbilityCategories]]()
: [[API C_Garrison.GetRecruiterAbilityList|C_Garrison.GetRecruiterAbilityList]](<span style="font-size:smaller; color:#ecbc2a">traits</span>)
+
: [[API C_Garrison.GetRecruiterAbilityList|C_Garrison.GetRecruiterAbilityList]](<span class="apiarg">traits</span>)
 
: [[API C_Garrison.GetRecruitmentPreferences|C_Garrison.GetRecruitmentPreferences]]()
 
: [[API C_Garrison.GetRecruitmentPreferences|C_Garrison.GetRecruitmentPreferences]]()
: [[API C_Garrison.IsAboveFollowerSoftCap|C_Garrison.IsAboveFollowerSoftCap]](<span style="font-size:smaller; color:#ecbc2a">garrFollowerTypeID</span>)
+
: [[API C_Garrison.IsAboveFollowerSoftCap|C_Garrison.IsAboveFollowerSoftCap]](<span class="apiarg">garrFollowerTypeID</span>)
: [[API C_Garrison.IsAtGarrisonMissionNPC|C_Garrison.IsAtGarrisonMissionNPC]]() : <span style="font-size:smaller; color:#4ec9b0">atGarrisonMissionNPC</span>
+
: [[API C_Garrison.IsAtGarrisonMissionNPC|C_Garrison.IsAtGarrisonMissionNPC]]() : <span class="apiret">atGarrisonMissionNPC</span>
: [[API C_Garrison.IsEnvironmentCountered|C_Garrison.IsEnvironmentCountered]](<span style="font-size:smaller; color:#ecbc2a">missionID</span>) : <span style="font-size:smaller; color:#4ec9b0">environmentCountered</span>
+
: [[API C_Garrison.IsEnvironmentCountered|C_Garrison.IsEnvironmentCountered]](<span class="apiarg">missionID</span>) : <span class="apiret">environmentCountered</span>
: [[API C_Garrison.IsFollowerCollected|C_Garrison.IsFollowerCollected]](<span style="font-size:smaller; color:#ecbc2a">garrFollowerID</span>)
+
: [[API C_Garrison.IsFollowerCollected|C_Garrison.IsFollowerCollected]](<span class="apiarg">garrFollowerID</span>)
: [[API C_Garrison.IsMechanicFullyCountered|C_Garrison.IsMechanicFullyCountered]](<span style="font-size:smaller; color:#ecbc2a">missionID, followerID, mechanicID</span>)
+
: [[API C_Garrison.IsMechanicFullyCountered|C_Garrison.IsMechanicFullyCountered]](<span class="apiarg">missionID, followerID, mechanicID</span>)
: [[API C_Garrison.MarkMissionComplete|C_Garrison.MarkMissionComplete]](<span style="font-size:smaller; color:#ecbc2a">missionID</span>)
+
: [[API C_Garrison.MarkMissionComplete|C_Garrison.MarkMissionComplete]](<span class="apiarg">missionID</span>)
: [[API C_Garrison.MissionBonusRoll|C_Garrison.MissionBonusRoll]](<span style="font-size:smaller; color:#ecbc2a">missionID</span>)
+
: [[API C_Garrison.MissionBonusRoll|C_Garrison.MissionBonusRoll]](<span class="apiarg">missionID</span>)
: [[API C_Garrison.RecruitFollower|C_Garrison.RecruitFollower]](<span style="font-size:smaller; color:#ecbc2a">followerIndex</span>)
+
: [[API C_Garrison.RecruitFollower|C_Garrison.RecruitFollower]](<span class="apiarg">followerIndex</span>)
: [[API C_Garrison.RemoveFollower|C_Garrison.RemoveFollower]](<span style="font-size:smaller; color:#ecbc2a">dbID</span>)
+
: [[API C_Garrison.RemoveFollower|C_Garrison.RemoveFollower]](<span class="apiarg">dbID</span>)
 
: [[API C_Garrison.RemoveFollowerFromBuilding|C_Garrison.RemoveFollowerFromBuilding]]()
 
: [[API C_Garrison.RemoveFollowerFromBuilding|C_Garrison.RemoveFollowerFromBuilding]]()
: [[API C_Garrison.RemoveFollowerFromMission|C_Garrison.RemoveFollowerFromMission]](<span style="font-size:smaller; color:#ecbc2a">missionID, followerID [, boardIndex]</span>)
+
: [[API C_Garrison.RemoveFollowerFromMission|C_Garrison.RemoveFollowerFromMission]](<span class="apiarg">missionID, followerID [, boardIndex]</span>)
: [[API C_Garrison.RenameFollower|C_Garrison.RenameFollower]](<span style="font-size:smaller; color:#ecbc2a">followerID, name</span>)
+
: [[API C_Garrison.RenameFollower|C_Garrison.RenameFollower]](<span class="apiarg">followerID, name</span>)
: [[API C_Garrison.RequestClassSpecCategoryInfo|C_Garrison.RequestClassSpecCategoryInfo]](<span style="font-size:smaller; color:#ecbc2a">garrFollowerTypeID</span>)
+
: [[API C_Garrison.RequestClassSpecCategoryInfo|C_Garrison.RequestClassSpecCategoryInfo]](<span class="apiarg">garrFollowerTypeID</span>)
: [[API C_Garrison.RushHealAllFollowers|C_Garrison.RushHealAllFollowers]](<span style="font-size:smaller; color:#ecbc2a">followerType</span>)
+
: [[API C_Garrison.RushHealAllFollowers|C_Garrison.RushHealAllFollowers]](<span class="apiarg">followerType</span>)
: [[API C_Garrison.RushHealFollower|C_Garrison.RushHealFollower]](<span style="font-size:smaller; color:#ecbc2a">garrFollowerID</span>)
+
: [[API C_Garrison.RushHealFollower|C_Garrison.RushHealFollower]](<span class="apiarg">garrFollowerID</span>)
: [[API C_Garrison.SearchForFollower|C_Garrison.SearchForFollower]](<span style="font-size:smaller; color:#ecbc2a">guid|id, searchString</span>)
+
: [[API C_Garrison.SearchForFollower|C_Garrison.SearchForFollower]](<span class="apiarg">guid|id, searchString</span>)
 
: [[API C_Garrison.SetFollowerFavorite|C_Garrison.SetFollowerFavorite]]()
 
: [[API C_Garrison.SetFollowerFavorite|C_Garrison.SetFollowerFavorite]]()
: [[API C_Garrison.SetFollowerInactive|C_Garrison.SetFollowerInactive]](<span style="font-size:smaller; color:#ecbc2a">followerID, inactive</span>)
+
: [[API C_Garrison.SetFollowerInactive|C_Garrison.SetFollowerInactive]](<span class="apiarg">followerID, inactive</span>)
: [[API C_Garrison.SetRecruitmentPreferences|C_Garrison.SetRecruitmentPreferences]](<span style="font-size:smaller; color:#ecbc2a">mechanicTypeID, traitID</span>)
+
: [[API C_Garrison.SetRecruitmentPreferences|C_Garrison.SetRecruitmentPreferences]](<span class="apiarg">mechanicTypeID, traitID</span>)
: [[API C_Garrison.ShowFollowerNameInErrorMessage|C_Garrison.ShowFollowerNameInErrorMessage]](<span style="font-size:smaller; color:#ecbc2a">missionRecID</span>)
+
: [[API C_Garrison.ShowFollowerNameInErrorMessage|C_Garrison.ShowFollowerNameInErrorMessage]](<span class="apiarg">missionRecID</span>)
: [[API C_Garrison.StartMission|C_Garrison.StartMission]](<span style="font-size:smaller; color:#ecbc2a">missionID</span>)
+
: [[API C_Garrison.StartMission|C_Garrison.StartMission]](<span class="apiarg">missionID</span>)
 
: [[API C_Garrison.TargetSpellHasFollowerItemLevelUpgrade|C_Garrison.TargetSpellHasFollowerItemLevelUpgrade]]()
 
: [[API C_Garrison.TargetSpellHasFollowerItemLevelUpgrade|C_Garrison.TargetSpellHasFollowerItemLevelUpgrade]]()
 
: [[API C_Garrison.TargetSpellHasFollowerReroll|C_Garrison.TargetSpellHasFollowerReroll]]()
 
: [[API C_Garrison.TargetSpellHasFollowerReroll|C_Garrison.TargetSpellHasFollowerReroll]]()
Line 4,892: Line 4,988:
   
 
==== Auto Missions ====
 
==== Auto Missions ====
: [[API C_Garrison.GetAutoCombatDamageClassValues|C_Garrison.GetAutoCombatDamageClassValues]]() : <span style="font-size:smaller; color:#4ec9b0">damageClassStrings</span>
+
: [[API C_Garrison.GetAutoCombatDamageClassValues|C_Garrison.GetAutoCombatDamageClassValues]]() : <span class="apiret">damageClassStrings</span>
: [[API C_Garrison.GetAutoMissionBoardState|C_Garrison.GetAutoMissionBoardState]](<span style="font-size:smaller; color:#ecbc2a">missionID</span>) : <span style="font-size:smaller; color:#4ec9b0">targetInfo</span>
+
: [[API C_Garrison.GetAutoMissionBoardState|C_Garrison.GetAutoMissionBoardState]](<span class="apiarg">missionID</span>) : <span class="apiret">targetInfo</span>
: [[API C_Garrison.GetAutoMissionEnvironmentEffect|C_Garrison.GetAutoMissionEnvironmentEffect]](<span style="font-size:smaller; color:#ecbc2a">missionID</span>) : <span style="font-size:smaller; color:#4ec9b0">autoMissionEnvEffect</span>
+
: [[API C_Garrison.GetAutoMissionEnvironmentEffect|C_Garrison.GetAutoMissionEnvironmentEffect]](<span class="apiarg">missionID</span>) : <span class="apiret">autoMissionEnvEffect</span>
: [[API C_Garrison.GetAutoMissionTargetingInfo|C_Garrison.GetAutoMissionTargetingInfo]](<span style="font-size:smaller; color:#ecbc2a">missionID, followerID, casterBoardIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">targetInfo</span>
+
: [[API C_Garrison.GetAutoMissionTargetingInfo|C_Garrison.GetAutoMissionTargetingInfo]](<span class="apiarg">missionID, followerID, casterBoardIndex</span>) : <span class="apiret">targetInfo</span>
: [[API C_Garrison.GetAutoTroops|C_Garrison.GetAutoTroops]](<span style="font-size:smaller; color:#ecbc2a">followerType</span>) : <span style="font-size:smaller; color:#4ec9b0">autoTroopInfo</span>
+
: [[API C_Garrison.GetAutoMissionTargetingInfoForSpell|C_Garrison.GetAutoMissionTargetingInfoForSpell]](<span class="apiarg">missionID, autoCombatSpellID, casterBoardIndex</span>) : <span class="apiret">targetInfo</span>
: [[API C_Garrison.GetCombatLogSpellInfo|C_Garrison.GetCombatLogSpellInfo]](<span style="font-size:smaller; color:#ecbc2a">autoCombatSpellID</span>) : <span style="font-size:smaller; color:#4ec9b0">spellInfo</span>
+
: [[API C_Garrison.GetAutoTroops|C_Garrison.GetAutoTroops]](<span class="apiarg">followerType</span>) : <span class="apiret">autoTroopInfo</span>
: [[API C_Garrison.GetFollowerAutoCombatSpells|C_Garrison.GetFollowerAutoCombatSpells]](<span style="font-size:smaller; color:#ecbc2a">garrFollowerID, followerLevel</span>) : <span style="font-size:smaller; color:#4ec9b0">spellInfo</span>
+
: [[API C_Garrison.GetCombatLogSpellInfo|C_Garrison.GetCombatLogSpellInfo]](<span class="apiarg">autoCombatSpellID</span>) : <span class="apiret">spellInfo</span>
: [[API C_Garrison.GetFollowerAutoCombatStats|C_Garrison.GetFollowerAutoCombatStats]](<span style="font-size:smaller; color:#ecbc2a">garrFollowerID</span>) : <span style="font-size:smaller; color:#4ec9b0">autoCombatInfo</span>
+
: [[API C_Garrison.GetFollowerAutoCombatSpells|C_Garrison.GetFollowerAutoCombatSpells]](<span class="apiarg">garrFollowerID, followerLevel</span>) : <span class="apiret">autoCombatSpells, autoCombatAutoAttack</span>
: [[API C_Garrison.RegenerateCombatLog|C_Garrison.RegenerateCombatLog]](<span style="font-size:smaller; color:#ecbc2a">missionID</span>) : <span style="font-size:smaller; color:#4ec9b0">success</span>
+
: [[API C_Garrison.GetFollowerAutoCombatStats|C_Garrison.GetFollowerAutoCombatStats]](<span class="apiarg">garrFollowerID</span>) : <span class="apiret">autoCombatInfo</span>
: [[API C_Garrison.SetAutoCombatSpellFastForward|C_Garrison.SetAutoCombatSpellFastForward]](<span style="font-size:smaller; color:#ecbc2a">state</span>)
+
: [[API C_Garrison.RegenerateCombatLog|C_Garrison.RegenerateCombatLog]](<span class="apiarg">missionID</span>) : <span class="apiret">success</span>
  +
: [[API C_Garrison.SetAutoCombatSpellFastForward|C_Garrison.SetAutoCombatSpellFastForward]](<span class="apiarg">state</span>)
   
 
=== Legion ===
 
=== Legion ===
 
==== Artifacts ====
 
==== Artifacts ====
 
[[Artifact]]s were added in [[Patch 7.0.3]]
 
[[Artifact]]s were added in [[Patch 7.0.3]]
: [[API C_ArtifactUI.AddPower|C_ArtifactUI.AddPower]](<span style="font-size:smaller; color:#ecbc2a">powerID</span>) : <span style="font-size:smaller; color:#4ec9b0">success</span>
+
: [[API C_ArtifactUI.AddPower|C_ArtifactUI.AddPower]](<span class="apiarg">powerID</span>) : <span class="apiret">success</span>
: [[API C_ArtifactUI.ApplyCursorRelicToSlot|C_ArtifactUI.ApplyCursorRelicToSlot]](<span style="font-size:smaller; color:#ecbc2a">relicSlotIndex</span>)
+
: [[API C_ArtifactUI.ApplyCursorRelicToSlot|C_ArtifactUI.ApplyCursorRelicToSlot]](<span class="apiarg">relicSlotIndex</span>)
: [[API C_ArtifactUI.CanApplyArtifactRelic|C_ArtifactUI.CanApplyArtifactRelic]](<span style="font-size:smaller; color:#ecbc2a">relicItemID, onlyUnlocked</span>) : <span style="font-size:smaller; color:#4ec9b0">canApply</span>
+
: [[API C_ArtifactUI.CanApplyArtifactRelic|C_ArtifactUI.CanApplyArtifactRelic]](<span class="apiarg">relicItemID, onlyUnlocked</span>) : <span class="apiret">canApply</span>
: [[API C_ArtifactUI.CanApplyCursorRelicToSlot|C_ArtifactUI.CanApplyCursorRelicToSlot]](<span style="font-size:smaller; color:#ecbc2a">relicSlotIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">canApply</span>
+
: [[API C_ArtifactUI.CanApplyCursorRelicToSlot|C_ArtifactUI.CanApplyCursorRelicToSlot]](<span class="apiarg">relicSlotIndex</span>) : <span class="apiret">canApply</span>
: [[API C_ArtifactUI.CanApplyRelicItemIDToEquippedArtifactSlot|C_ArtifactUI.CanApplyRelicItemIDToEquippedArtifactSlot]](<span style="font-size:smaller; color:#ecbc2a">relicItemID, relicSlotIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">canApply</span>
+
: [[API C_ArtifactUI.CanApplyRelicItemIDToEquippedArtifactSlot|C_ArtifactUI.CanApplyRelicItemIDToEquippedArtifactSlot]](<span class="apiarg">relicItemID, relicSlotIndex</span>) : <span class="apiret">canApply</span>
: [[API C_ArtifactUI.CanApplyRelicItemIDToSlot|C_ArtifactUI.CanApplyRelicItemIDToSlot]](<span style="font-size:smaller; color:#ecbc2a">relicItemID, relicSlotIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">canApply</span>
+
: [[API C_ArtifactUI.CanApplyRelicItemIDToSlot|C_ArtifactUI.CanApplyRelicItemIDToSlot]](<span class="apiarg">relicItemID, relicSlotIndex</span>) : <span class="apiret">canApply</span>
: [[API C_ArtifactUI.CheckRespecNPC|C_ArtifactUI.CheckRespecNPC]]() : <span style="font-size:smaller; color:#4ec9b0">canRespec</span>
+
: [[API C_ArtifactUI.CheckRespecNPC|C_ArtifactUI.CheckRespecNPC]]() : <span class="apiret">canRespec</span>
 
: [[API C_ArtifactUI.Clear|C_ArtifactUI.Clear]]() - Clear artifact data of last opened artifact weapon.
 
: [[API C_ArtifactUI.Clear|C_ArtifactUI.Clear]]() - Clear artifact data of last opened artifact weapon.
 
: [[API C_ArtifactUI.ClearForgeCamera|C_ArtifactUI.ClearForgeCamera]]()
 
: [[API C_ArtifactUI.ClearForgeCamera|C_ArtifactUI.ClearForgeCamera]]()
 
: [[API C_ArtifactUI.ConfirmRespec|C_ArtifactUI.ConfirmRespec]]()
 
: [[API C_ArtifactUI.ConfirmRespec|C_ArtifactUI.ConfirmRespec]]()
: [[API C_ArtifactUI.DoesEquippedArtifactHaveAnyRelicsSlotted|C_ArtifactUI.DoesEquippedArtifactHaveAnyRelicsSlotted]]() : <span style="font-size:smaller; color:#4ec9b0">hasAnyRelicsSlotted</span>
+
: [[API C_ArtifactUI.DoesEquippedArtifactHaveAnyRelicsSlotted|C_ArtifactUI.DoesEquippedArtifactHaveAnyRelicsSlotted]]() : <span class="apiret">hasAnyRelicsSlotted</span>
: [[API C_ArtifactUI.GetAppearanceInfo|C_ArtifactUI.GetAppearanceInfo]](<span style="font-size:smaller; color:#ecbc2a">appearanceSetIndex, appearanceIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">artifactAppearanceID, appearanceName, displayIndex, unlocked, ...</span> - Returns information about a selected artifact appearance.
+
: [[API C_ArtifactUI.GetAppearanceInfo|C_ArtifactUI.GetAppearanceInfo]](<span class="apiarg">appearanceSetIndex, appearanceIndex</span>) : <span class="apiret">artifactAppearanceID, appearanceName, displayIndex, unlocked, ...</span> - Returns information about a selected artifact appearance.
: [[API C_ArtifactUI.GetAppearanceInfoByID|C_ArtifactUI.GetAppearanceInfoByID]](<span style="font-size:smaller; color:#ecbc2a">artifactAppearanceID</span>) : <span style="font-size:smaller; color:#4ec9b0">artifactAppearanceSetID, artifactAppearanceID, appearanceName, ...</span> - Returns information about a selected artifact appearance.
+
: [[API C_ArtifactUI.GetAppearanceInfoByID|C_ArtifactUI.GetAppearanceInfoByID]](<span class="apiarg">artifactAppearanceID</span>) : <span class="apiret">artifactAppearanceSetID, artifactAppearanceID, appearanceName, ...</span> - Returns information about a selected artifact appearance.
: [[API C_ArtifactUI.GetAppearanceSetInfo|C_ArtifactUI.GetAppearanceSetInfo]](<span style="font-size:smaller; color:#ecbc2a">appearanceSetIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">artifactAppearanceSetID, appearanceSetName, appearanceSetDescription, ...</span>
+
: [[API C_ArtifactUI.GetAppearanceSetInfo|C_ArtifactUI.GetAppearanceSetInfo]](<span class="apiarg">appearanceSetIndex</span>) : <span class="apiret">artifactAppearanceSetID, appearanceSetName, appearanceSetDescription, ...</span>
: [[API C_ArtifactUI.GetArtifactArtInfo|C_ArtifactUI.GetArtifactArtInfo]]() : <span style="font-size:smaller; color:#4ec9b0">artifactArtInfo</span> - Returns information about the currently equipped artifact weapon.
+
: [[API C_ArtifactUI.GetArtifactArtInfo|C_ArtifactUI.GetArtifactArtInfo]]() : <span class="apiret">artifactArtInfo</span> - Returns information about the currently equipped artifact weapon.
: [[API C_ArtifactUI.GetArtifactInfo|C_ArtifactUI.GetArtifactInfo]]() : <span style="font-size:smaller; color:#4ec9b0">itemID, altItemID, name, icon, xp, pointsSpent, quality, artifactAppearanceID, ...</span>
+
: [[API C_ArtifactUI.GetArtifactInfo|C_ArtifactUI.GetArtifactInfo]]() : <span class="apiret">itemID, altItemID, name, icon, xp, pointsSpent, quality, artifactAppearanceID, ...</span>
: [[API C_ArtifactUI.GetArtifactItemID|C_ArtifactUI.GetArtifactItemID]]() : <span style="font-size:smaller; color:#4ec9b0">itemID</span>
+
: [[API C_ArtifactUI.GetArtifactItemID|C_ArtifactUI.GetArtifactItemID]]() : <span class="apiret">itemID</span>
: [[API C_ArtifactUI.GetArtifactTier|C_ArtifactUI.GetArtifactTier]]() : <span style="font-size:smaller; color:#4ec9b0">tier</span>
+
: [[API C_ArtifactUI.GetArtifactTier|C_ArtifactUI.GetArtifactTier]]() : <span class="apiret">tier</span>
: [[API C_ArtifactUI.GetArtifactXPRewardTargetInfo|C_ArtifactUI.GetArtifactXPRewardTargetInfo]](<span style="font-size:smaller; color:#ecbc2a">artifactCategoryID</span>) : <span style="font-size:smaller; color:#4ec9b0">name, icon</span>
+
: [[API C_ArtifactUI.GetArtifactXPRewardTargetInfo|C_ArtifactUI.GetArtifactXPRewardTargetInfo]](<span class="apiarg">artifactCategoryID</span>) : <span class="apiret">name, icon</span>
: [[API C_ArtifactUI.GetCostForPointAtRank|C_ArtifactUI.GetCostForPointAtRank]](<span style="font-size:smaller; color:#ecbc2a">rank, tier</span>) : <span style="font-size:smaller; color:#4ec9b0">cost</span>
+
: [[API C_ArtifactUI.GetCostForPointAtRank|C_ArtifactUI.GetCostForPointAtRank]](<span class="apiarg">rank, tier</span>) : <span class="apiret">cost</span>
: [[API C_ArtifactUI.GetEquippedArtifactArtInfo|C_ArtifactUI.GetEquippedArtifactArtInfo]]() : <span style="font-size:smaller; color:#4ec9b0">artifactArtInfo</span>
+
: [[API C_ArtifactUI.GetEquippedArtifactArtInfo|C_ArtifactUI.GetEquippedArtifactArtInfo]]() : <span class="apiret">artifactArtInfo</span>
: [[API C_ArtifactUI.GetEquippedArtifactInfo|C_ArtifactUI.GetEquippedArtifactInfo]]() : <span style="font-size:smaller; color:#4ec9b0">itemID, altItemID, name, icon, xp, pointsSpent, quality, artifactAppearanceID, ...</span>
+
: [[API C_ArtifactUI.GetEquippedArtifactInfo|C_ArtifactUI.GetEquippedArtifactInfo]]() : <span class="apiret">itemID, altItemID, name, icon, xp, pointsSpent, quality, artifactAppearanceID, ...</span>
: [[API C_ArtifactUI.GetEquippedArtifactItemID|C_ArtifactUI.GetEquippedArtifactItemID]]() : <span style="font-size:smaller; color:#4ec9b0">itemID</span>
+
: [[API C_ArtifactUI.GetEquippedArtifactItemID|C_ArtifactUI.GetEquippedArtifactItemID]]() : <span class="apiret">itemID</span>
: [[API C_ArtifactUI.GetEquippedArtifactNumRelicSlots|C_ArtifactUI.GetEquippedArtifactNumRelicSlots]](<span style="font-size:smaller; color:#ecbc2a">[onlyUnlocked]</span>) : <span style="font-size:smaller; color:#4ec9b0">numRelicSlots</span>
+
: [[API C_ArtifactUI.GetEquippedArtifactNumRelicSlots|C_ArtifactUI.GetEquippedArtifactNumRelicSlots]](<span class="apiarg">[onlyUnlocked]</span>) : <span class="apiret">numRelicSlots</span>
: [[API C_ArtifactUI.GetEquippedArtifactRelicInfo|C_ArtifactUI.GetEquippedArtifactRelicInfo]](<span style="font-size:smaller; color:#ecbc2a">relicSlotIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">name, icon, slotTypeName, link</span>
+
: [[API C_ArtifactUI.GetEquippedArtifactRelicInfo|C_ArtifactUI.GetEquippedArtifactRelicInfo]](<span class="apiarg">relicSlotIndex</span>) : <span class="apiret">name, icon, slotTypeName, link</span>
: [[API C_ArtifactUI.GetEquippedRelicLockedReason|C_ArtifactUI.GetEquippedRelicLockedReason]](<span style="font-size:smaller; color:#ecbc2a">relicSlotIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">lockedReason</span>
+
: [[API C_ArtifactUI.GetEquippedRelicLockedReason|C_ArtifactUI.GetEquippedRelicLockedReason]](<span class="apiarg">relicSlotIndex</span>) : <span class="apiret">lockedReason</span>
: [[API C_ArtifactUI.GetForgeRotation|C_ArtifactUI.GetForgeRotation]]() : <span style="font-size:smaller; color:#4ec9b0">forgeRotationX, forgeRotationY, forgeRotationZ</span>
+
: [[API C_ArtifactUI.GetForgeRotation|C_ArtifactUI.GetForgeRotation]]() : <span class="apiret">forgeRotationX, forgeRotationY, forgeRotationZ</span>
: [[API C_ArtifactUI.GetItemLevelIncreaseProvidedByRelic|C_ArtifactUI.GetItemLevelIncreaseProvidedByRelic]](<span style="font-size:smaller; color:#ecbc2a">itemLinkOrID</span>) : <span style="font-size:smaller; color:#4ec9b0">itemIevelIncrease</span>
+
: [[API C_ArtifactUI.GetItemLevelIncreaseProvidedByRelic|C_ArtifactUI.GetItemLevelIncreaseProvidedByRelic]](<span class="apiarg">itemLinkOrID</span>) : <span class="apiret">itemIevelIncrease</span>
: [[API C_ArtifactUI.GetMetaPowerInfo|C_ArtifactUI.GetMetaPowerInfo]]() : <span style="font-size:smaller; color:#4ec9b0">spellID, powerCost, currentRank</span>
+
: [[API C_ArtifactUI.GetMetaPowerInfo|C_ArtifactUI.GetMetaPowerInfo]]() : <span class="apiret">spellID, powerCost, currentRank</span>
: [[API C_ArtifactUI.GetNumAppearanceSets|C_ArtifactUI.GetNumAppearanceSets]]() : <span style="font-size:smaller; color:#4ec9b0">numAppearanceSets</span>
+
: [[API C_ArtifactUI.GetNumAppearanceSets|C_ArtifactUI.GetNumAppearanceSets]]() : <span class="apiret">numAppearanceSets</span>
: [[API C_ArtifactUI.GetNumObtainedArtifacts|C_ArtifactUI.GetNumObtainedArtifacts]]() : <span style="font-size:smaller; color:#4ec9b0">numObtainedArtifacts</span>
+
: [[API C_ArtifactUI.GetNumObtainedArtifacts|C_ArtifactUI.GetNumObtainedArtifacts]]() : <span class="apiret">numObtainedArtifacts</span>
: [[API C_ArtifactUI.GetNumRelicSlots|C_ArtifactUI.GetNumRelicSlots]](<span style="font-size:smaller; color:#ecbc2a">[onlyUnlocked]</span>) : <span style="font-size:smaller; color:#4ec9b0">numRelicSlots</span>
+
: [[API C_ArtifactUI.GetNumRelicSlots|C_ArtifactUI.GetNumRelicSlots]](<span class="apiarg">[onlyUnlocked]</span>) : <span class="apiret">numRelicSlots</span>
: [[API C_ArtifactUI.GetPointsRemaining|C_ArtifactUI.GetPointsRemaining]]() : <span style="font-size:smaller; color:#4ec9b0">pointsRemaining</span>
+
: [[API C_ArtifactUI.GetPointsRemaining|C_ArtifactUI.GetPointsRemaining]]() : <span class="apiret">pointsRemaining</span>
: [[API C_ArtifactUI.GetPowerHyperlink|C_ArtifactUI.GetPowerHyperlink]](<span style="font-size:smaller; color:#ecbc2a">powerID</span>) : <span style="font-size:smaller; color:#4ec9b0">link</span>
+
: [[API C_ArtifactUI.GetPowerHyperlink|C_ArtifactUI.GetPowerHyperlink]](<span class="apiarg">powerID</span>) : <span class="apiret">link</span>
: [[API C_ArtifactUI.GetPowerInfo|C_ArtifactUI.GetPowerInfo]](<span style="font-size:smaller; color:#ecbc2a">powerID</span>) : <span style="font-size:smaller; color:#4ec9b0">powerInfo</span>
+
: [[API C_ArtifactUI.GetPowerInfo|C_ArtifactUI.GetPowerInfo]](<span class="apiarg">powerID</span>) : <span class="apiret">powerInfo</span>
: [[API C_ArtifactUI.GetPowerLinks|C_ArtifactUI.GetPowerLinks]](<span style="font-size:smaller; color:#ecbc2a">powerID</span>) : <span style="font-size:smaller; color:#4ec9b0">linkingPowerID</span>
+
: [[API C_ArtifactUI.GetPowerLinks|C_ArtifactUI.GetPowerLinks]](<span class="apiarg">powerID</span>) : <span class="apiret">linkingPowerID</span>
: [[API C_ArtifactUI.GetPowers|C_ArtifactUI.GetPowers]]() : <span style="font-size:smaller; color:#4ec9b0">powerID</span>
+
: [[API C_ArtifactUI.GetPowers|C_ArtifactUI.GetPowers]]() : <span class="apiret">powerID</span>
: [[API C_ArtifactUI.GetPowersAffectedByRelic|C_ArtifactUI.GetPowersAffectedByRelic]](<span style="font-size:smaller; color:#ecbc2a">relicSlotIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">powerIDs</span>
+
: [[API C_ArtifactUI.GetPowersAffectedByRelic|C_ArtifactUI.GetPowersAffectedByRelic]](<span class="apiarg">relicSlotIndex</span>) : <span class="apiret">powerIDs</span>
: [[API C_ArtifactUI.GetPowersAffectedByRelicItemLink|C_ArtifactUI.GetPowersAffectedByRelicItemLink]](<span style="font-size:smaller; color:#ecbc2a">relicItemInfo</span>) : <span style="font-size:smaller; color:#4ec9b0">powerIDs</span>
+
: [[API C_ArtifactUI.GetPowersAffectedByRelicItemLink|C_ArtifactUI.GetPowersAffectedByRelicItemLink]](<span class="apiarg">relicItemInfo</span>) : <span class="apiret">powerIDs</span>
: [[API C_ArtifactUI.GetPreviewAppearance|C_ArtifactUI.GetPreviewAppearance]]() : <span style="font-size:smaller; color:#4ec9b0">artifactAppearanceID</span>
+
: [[API C_ArtifactUI.GetPreviewAppearance|C_ArtifactUI.GetPreviewAppearance]]() : <span class="apiret">artifactAppearanceID</span>
: [[API C_ArtifactUI.GetRelicInfo|C_ArtifactUI.GetRelicInfo]](<span style="font-size:smaller; color:#ecbc2a">relicSlotIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">name, icon, slotTypeName, link</span>
+
: [[API C_ArtifactUI.GetRelicInfo|C_ArtifactUI.GetRelicInfo]](<span class="apiarg">relicSlotIndex</span>) : <span class="apiret">name, icon, slotTypeName, link</span>
: [[API C_ArtifactUI.GetRelicInfoByItemID|C_ArtifactUI.GetRelicInfoByItemID]](<span style="font-size:smaller; color:#ecbc2a">itemID</span>) : <span style="font-size:smaller; color:#4ec9b0">name, icon, slotTypeName, link</span>
+
: [[API C_ArtifactUI.GetRelicInfoByItemID|C_ArtifactUI.GetRelicInfoByItemID]](<span class="apiarg">itemID</span>) : <span class="apiret">name, icon, slotTypeName, link</span>
: [[API C_ArtifactUI.GetRelicLockedReason|C_ArtifactUI.GetRelicLockedReason]](<span style="font-size:smaller; color:#ecbc2a">relicSlotIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">lockedReason</span>
+
: [[API C_ArtifactUI.GetRelicLockedReason|C_ArtifactUI.GetRelicLockedReason]](<span class="apiarg">relicSlotIndex</span>) : <span class="apiret">lockedReason</span>
: [[API C_ArtifactUI.GetRelicSlotType|C_ArtifactUI.GetRelicSlotType]](<span style="font-size:smaller; color:#ecbc2a">relicSlotIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">slotTypeName</span>
+
: [[API C_ArtifactUI.GetRelicSlotType|C_ArtifactUI.GetRelicSlotType]](<span class="apiarg">relicSlotIndex</span>) : <span class="apiret">slotTypeName</span>
: [[API C_ArtifactUI.GetRespecArtifactArtInfo|C_ArtifactUI.GetRespecArtifactArtInfo]]() : <span style="font-size:smaller; color:#4ec9b0">artifactArtInfo</span>
+
: [[API C_ArtifactUI.GetRespecArtifactArtInfo|C_ArtifactUI.GetRespecArtifactArtInfo]]() : <span class="apiret">artifactArtInfo</span>
: [[API C_ArtifactUI.GetRespecArtifactInfo|C_ArtifactUI.GetRespecArtifactInfo]]() : <span style="font-size:smaller; color:#4ec9b0">itemID, altItemID, name, icon, xp, pointsSpent, quality, artifactAppearanceID, ...</span>
+
: [[API C_ArtifactUI.GetRespecArtifactInfo|C_ArtifactUI.GetRespecArtifactInfo]]() : <span class="apiret">itemID, altItemID, name, icon, xp, pointsSpent, quality, artifactAppearanceID, ...</span>
: [[API C_ArtifactUI.GetRespecCost|C_ArtifactUI.GetRespecCost]]() : <span style="font-size:smaller; color:#4ec9b0">cost</span>
+
: [[API C_ArtifactUI.GetRespecCost|C_ArtifactUI.GetRespecCost]]() : <span class="apiret">cost</span>
: [[API C_ArtifactUI.GetTotalPowerCost|C_ArtifactUI.GetTotalPowerCost]](<span style="font-size:smaller; color:#ecbc2a">startingTrait, numTraits, artifactTier</span>) : <span style="font-size:smaller; color:#4ec9b0">totalArtifactPowerCost</span>
+
: [[API C_ArtifactUI.GetTotalPowerCost|C_ArtifactUI.GetTotalPowerCost]](<span class="apiarg">startingTrait, numTraits, artifactTier</span>) : <span class="apiret">totalArtifactPowerCost</span>
: [[API C_ArtifactUI.GetTotalPurchasedRanks|C_ArtifactUI.GetTotalPurchasedRanks]]() : <span style="font-size:smaller; color:#4ec9b0">totalPurchasedRanks</span>
+
: [[API C_ArtifactUI.GetTotalPurchasedRanks|C_ArtifactUI.GetTotalPurchasedRanks]]() : <span class="apiret">totalPurchasedRanks</span>
: [[API C_ArtifactUI.IsArtifactDisabled|C_ArtifactUI.IsArtifactDisabled]]() : <span style="font-size:smaller; color:#4ec9b0">artifactDisabled</span>
+
: [[API C_ArtifactUI.IsArtifactDisabled|C_ArtifactUI.IsArtifactDisabled]]() : <span class="apiret">artifactDisabled</span>
: [[API C_ArtifactUI.IsAtForge|C_ArtifactUI.IsAtForge]]() : <span style="font-size:smaller; color:#4ec9b0">isAtForge</span>
+
: [[API C_ArtifactUI.IsAtForge|C_ArtifactUI.IsAtForge]]() : <span class="apiret">isAtForge</span>
: [[API C_ArtifactUI.IsEquippedArtifactDisabled|C_ArtifactUI.IsEquippedArtifactDisabled]]() : <span style="font-size:smaller; color:#4ec9b0">artifactDisabled</span>
+
: [[API C_ArtifactUI.IsEquippedArtifactDisabled|C_ArtifactUI.IsEquippedArtifactDisabled]]() : <span class="apiret">artifactDisabled</span>
: [[API C_ArtifactUI.IsEquippedArtifactMaxed|C_ArtifactUI.IsEquippedArtifactMaxed]]() : <span style="font-size:smaller; color:#4ec9b0">artifactMaxed</span>
+
: [[API C_ArtifactUI.IsEquippedArtifactMaxed|C_ArtifactUI.IsEquippedArtifactMaxed]]() : <span class="apiret">artifactMaxed</span>
: [[API C_ArtifactUI.IsMaxedByRulesOrEffect|C_ArtifactUI.IsMaxedByRulesOrEffect]]() : <span style="font-size:smaller; color:#4ec9b0">isEffectivelyMaxed</span>
+
: [[API C_ArtifactUI.IsMaxedByRulesOrEffect|C_ArtifactUI.IsMaxedByRulesOrEffect]]() : <span class="apiret">isEffectivelyMaxed</span>
: [[API C_ArtifactUI.IsPowerKnown|C_ArtifactUI.IsPowerKnown]](<span style="font-size:smaller; color:#ecbc2a">powerID</span>) : <span style="font-size:smaller; color:#4ec9b0">known</span>
+
: [[API C_ArtifactUI.IsPowerKnown|C_ArtifactUI.IsPowerKnown]](<span class="apiarg">powerID</span>) : <span class="apiret">known</span>
: [[API C_ArtifactUI.IsViewedArtifactEquipped|C_ArtifactUI.IsViewedArtifactEquipped]]() : <span style="font-size:smaller; color:#4ec9b0">isViewedArtifactEquipped</span>
+
: [[API C_ArtifactUI.IsViewedArtifactEquipped|C_ArtifactUI.IsViewedArtifactEquipped]]() : <span class="apiret">isViewedArtifactEquipped</span>
: [[API C_ArtifactUI.SetAppearance|C_ArtifactUI.SetAppearance]](<span style="font-size:smaller; color:#ecbc2a">artifactAppearanceID</span>)
+
: [[API C_ArtifactUI.SetAppearance|C_ArtifactUI.SetAppearance]](<span class="apiarg">artifactAppearanceID</span>)
 
: [[API C_ArtifactUI.SetForgeCamera|C_ArtifactUI.SetForgeCamera]]()
 
: [[API C_ArtifactUI.SetForgeCamera|C_ArtifactUI.SetForgeCamera]]()
: [[API C_ArtifactUI.SetForgeRotation|C_ArtifactUI.SetForgeRotation]](<span style="font-size:smaller; color:#ecbc2a">forgeRotationX, forgeRotationY, forgeRotationZ</span>)
+
: [[API C_ArtifactUI.SetForgeRotation|C_ArtifactUI.SetForgeRotation]](<span class="apiarg">forgeRotationX, forgeRotationY, forgeRotationZ</span>)
: [[API C_ArtifactUI.SetPreviewAppearance|C_ArtifactUI.SetPreviewAppearance]](<span style="font-size:smaller; color:#ecbc2a">[artifactAppearanceID]</span>)
+
: [[API C_ArtifactUI.SetPreviewAppearance|C_ArtifactUI.SetPreviewAppearance]](<span class="apiarg">[artifactAppearanceID]</span>)
: [[API C_ArtifactUI.ShouldSuppressForgeRotation|C_ArtifactUI.ShouldSuppressForgeRotation]]() : <span style="font-size:smaller; color:#4ec9b0">shouldSuppressForgeRotation</span>
+
: [[API C_ArtifactUI.ShouldSuppressForgeRotation|C_ArtifactUI.ShouldSuppressForgeRotation]]() : <span class="apiret">shouldSuppressForgeRotation</span>
 
: [[API HasArtifactEquipped|HasArtifactEquipped]]()
 
: [[API HasArtifactEquipped|HasArtifactEquipped]]()
 
: [[API IsArtifactPowerItem|IsArtifactPowerItem]]()
 
: [[API IsArtifactPowerItem|IsArtifactPowerItem]]()
: [[API IsArtifactRelicItem|IsArtifactRelicItem]](<span style="font-size:smaller; color:#ecbc2a">item</span>)
+
: [[API IsArtifactRelicItem|IsArtifactRelicItem]](<span class="apiarg">item</span>)
   
 
==== Invasions ====
 
==== Invasions ====
 
[[Legion Invasions|Invasions]] were added in [[Patch 7.0.3]]
 
[[Legion Invasions|Invasions]] were added in [[Patch 7.0.3]]
: [[API C_InvasionInfo.AreInvasionsAvailable|C_InvasionInfo.AreInvasionsAvailable]]() : <span style="font-size:smaller; color:#4ec9b0">areInvasionsAvailable</span> - Returns true if invasions are active in the same physical area as the player.
+
: [[API C_InvasionInfo.AreInvasionsAvailable|C_InvasionInfo.AreInvasionsAvailable]]() : <span class="apiret">areInvasionsAvailable</span> - Returns true if invasions are active in the same physical area as the player.
: [[API C_InvasionInfo.GetInvasionForUiMapID|C_InvasionInfo.GetInvasionForUiMapID]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">invasionID</span> - Returns any invasion for a map.
+
: [[API C_InvasionInfo.GetInvasionForUiMapID|C_InvasionInfo.GetInvasionForUiMapID]](<span class="apiarg">uiMapID</span>) : <span class="apiret">invasionID</span> - Returns any invasion for a map.
: [[API C_InvasionInfo.GetInvasionInfo|C_InvasionInfo.GetInvasionInfo]](<span style="font-size:smaller; color:#ecbc2a">invasionID</span>) : <span style="font-size:smaller; color:#4ec9b0">invasionInfo</span> - Returns invasion info.
+
: [[API C_InvasionInfo.GetInvasionInfo|C_InvasionInfo.GetInvasionInfo]](<span class="apiarg">invasionID</span>) : <span class="apiret">invasionInfo</span> - Returns invasion info.
: [[API C_InvasionInfo.GetInvasionTimeLeft|C_InvasionInfo.GetInvasionTimeLeft]](<span style="font-size:smaller; color:#ecbc2a">invasionID</span>) : <span style="font-size:smaller; color:#4ec9b0">timeLeftMinutes</span> - Returns the time left for an invasion.
+
: [[API C_InvasionInfo.GetInvasionTimeLeft|C_InvasionInfo.GetInvasionTimeLeft]](<span class="apiarg">invasionID</span>) : <span class="apiret">timeLeftMinutes</span> - Returns the time left for an invasion.
   
 
==== Contribution ====
 
==== Contribution ====
 
Relates to buildings on the [[Broken Shore]] or [[Warfront|Warfronts]]; added in [[Patch 7.2.0]].
 
Relates to buildings on the [[Broken Shore]] or [[Warfront|Warfronts]]; added in [[Patch 7.2.0]].
 
: [[API C_ContributionCollector.Close|C_ContributionCollector.Close]]() - Closes the contribution collector API state.
 
: [[API C_ContributionCollector.Close|C_ContributionCollector.Close]]() - Closes the contribution collector API state.
: [[API C_ContributionCollector.Contribute|C_ContributionCollector.Contribute]](<span style="font-size:smaller; color:#ecbc2a">contributionID</span>) - Contributes resources to a building.
+
: [[API C_ContributionCollector.Contribute|C_ContributionCollector.Contribute]](<span class="apiarg">contributionID</span>) - Contributes resources to a building.
: [[API C_ContributionCollector.GetActive|C_ContributionCollector.GetActive]]() : <span style="font-size:smaller; color:#4ec9b0">contributionID</span> - Returns the currently active buildings.
+
: [[API C_ContributionCollector.GetActive|C_ContributionCollector.GetActive]]() : <span class="apiret">contributionID</span> - Returns the currently active buildings.
: [[API C_ContributionCollector.GetAtlases|C_ContributionCollector.GetAtlases]](<span style="font-size:smaller; color:#ecbc2a">contributionID</span>) : <span style="font-size:smaller; color:#4ec9b0">atlasName</span> - Returns a table listing the possible states for a building.
+
: [[API C_ContributionCollector.GetAtlases|C_ContributionCollector.GetAtlases]](<span class="apiarg">contributionID</span>) : <span class="apiret">atlasName</span> - Returns a table listing the possible states for a building.
: [[API C_ContributionCollector.GetBuffs|C_ContributionCollector.GetBuffs]](<span style="font-size:smaller; color:#ecbc2a">contributionID</span>) : <span style="font-size:smaller; color:#4ec9b0">spellID</span> - Returns the buffs provided when a building is active.
+
: [[API C_ContributionCollector.GetBuffs|C_ContributionCollector.GetBuffs]](<span class="apiarg">contributionID</span>) : <span class="apiret">spellID</span> - Returns the buffs provided when a building is active.
: [[API C_ContributionCollector.GetContributionAppearance|C_ContributionCollector.GetContributionAppearance]](<span style="font-size:smaller; color:#ecbc2a">contributionID, contributionState</span>) : <span style="font-size:smaller; color:#4ec9b0">appearance</span> - Returns contribution appearance info.
+
: [[API C_ContributionCollector.GetContributionAppearance|C_ContributionCollector.GetContributionAppearance]](<span class="apiarg">contributionID, contributionState</span>) : <span class="apiret">appearance</span> - Returns contribution appearance info.
: [[API C_ContributionCollector.GetContributionCollectorsForMap|C_ContributionCollector.GetContributionCollectorsForMap]](<span style="font-size:smaller; color:#ecbc2a">uiMapID</span>) : <span style="font-size:smaller; color:#4ec9b0">contributionCollectors</span> - Returns contribution buildings on a map.
+
: [[API C_ContributionCollector.GetContributionCollectorsForMap|C_ContributionCollector.GetContributionCollectorsForMap]](<span class="apiarg">uiMapID</span>) : <span class="apiret">contributionCollectors</span> - Returns contribution buildings on a map.
: [[API C_ContributionCollector.GetContributionResult|C_ContributionCollector.GetContributionResult]](<span style="font-size:smaller; color:#ecbc2a">contributionID</span>) : <span style="font-size:smaller; color:#4ec9b0">result</span> - Returns a value indicating the result of a contribution.
+
: [[API C_ContributionCollector.GetContributionResult|C_ContributionCollector.GetContributionResult]](<span class="apiarg">contributionID</span>) : <span class="apiret">result</span> - Returns a value indicating the result of a contribution.
: [[API C_ContributionCollector.GetDescription|C_ContributionCollector.GetDescription]](<span style="font-size:smaller; color:#ecbc2a">contributionID</span>) : <span style="font-size:smaller; color:#4ec9b0">description</span> - Returns the description of a building.
+
: [[API C_ContributionCollector.GetDescription|C_ContributionCollector.GetDescription]](<span class="apiarg">contributionID</span>) : <span class="apiret">description</span> - Returns the description of a building.
: [[API C_ContributionCollector.GetManagedContributionsForCreatureID|C_ContributionCollector.GetManagedContributionsForCreatureID]](<span style="font-size:smaller; color:#ecbc2a">creatureID</span>) : <span style="font-size:smaller; color:#4ec9b0">contributionID</span> - Returns contributions for a creature.
+
: [[API C_ContributionCollector.GetManagedContributionsForCreatureID|C_ContributionCollector.GetManagedContributionsForCreatureID]](<span class="apiarg">creatureID</span>) : <span class="apiret">contributionID</span> - Returns contributions for a creature.
: [[API C_ContributionCollector.GetName|C_ContributionCollector.GetName]](<span style="font-size:smaller; color:#ecbc2a">contributionID</span>) : <span style="font-size:smaller; color:#4ec9b0">name</span> - Returns the name of a building.
+
: [[API C_ContributionCollector.GetName|C_ContributionCollector.GetName]](<span class="apiarg">contributionID</span>) : <span class="apiret">name</span> - Returns the name of a building.
: [[API C_ContributionCollector.GetOrderIndex|C_ContributionCollector.GetOrderIndex]](<span style="font-size:smaller; color:#ecbc2a">contributionID</span>) : <span style="font-size:smaller; color:#4ec9b0">orderIndex</span> - Returns the order in which buildings are displayed.
+
: [[API C_ContributionCollector.GetOrderIndex|C_ContributionCollector.GetOrderIndex]](<span class="apiarg">contributionID</span>) : <span class="apiret">orderIndex</span> - Returns the order in which buildings are displayed.
: [[API C_ContributionCollector.GetRequiredContributionCurrency|C_ContributionCollector.GetRequiredContributionCurrency]](<span style="font-size:smaller; color:#ecbc2a">contributionID</span>) : <span style="font-size:smaller; color:#4ec9b0">currencyID, currencyAmount</span> - Returns the currencyID and amount needed to contribute to a building.
+
: [[API C_ContributionCollector.GetRequiredContributionCurrency|C_ContributionCollector.GetRequiredContributionCurrency]](<span class="apiarg">contributionID</span>) : <span class="apiret">currencyID, currencyAmount</span> - Returns the currencyID and amount needed to contribute to a building.
: [[API C_ContributionCollector.GetRequiredContributionItem|C_ContributionCollector.GetRequiredContributionItem]](<span style="font-size:smaller; color:#ecbc2a">contributionID</span>) : <span style="font-size:smaller; color:#4ec9b0">itemID, itemCount</span> - Returns the itemID and amount needed to contribute to a building.
+
: [[API C_ContributionCollector.GetRequiredContributionItem|C_ContributionCollector.GetRequiredContributionItem]](<span class="apiarg">contributionID</span>) : <span class="apiret">itemID, itemCount</span> - Returns the itemID and amount needed to contribute to a building.
: [[API C_ContributionCollector.GetRewardQuestID|C_ContributionCollector.GetRewardQuestID]](<span style="font-size:smaller; color:#ecbc2a">contributionID</span>) : <span style="font-size:smaller; color:#4ec9b0">questID</span> - Returns the hidden quest that is flagged completed when a contribution is made.
+
: [[API C_ContributionCollector.GetRewardQuestID|C_ContributionCollector.GetRewardQuestID]](<span class="apiarg">contributionID</span>) : <span class="apiret">questID</span> - Returns the hidden quest that is flagged completed when a contribution is made.
: [[API C_ContributionCollector.GetState|C_ContributionCollector.GetState]](<span style="font-size:smaller; color:#ecbc2a">contributionID</span>) : <span style="font-size:smaller; color:#4ec9b0">contributionState, contributionPercentageComplete, timeOfNextStateChange, ...</span> - Returns the current state of a building, its completion percentage, and time until next state change.
+
: [[API C_ContributionCollector.GetState|C_ContributionCollector.GetState]](<span class="apiarg">contributionID</span>) : <span class="apiret">contributionState, contributionPercentageComplete, timeOfNextStateChange, ...</span> - Returns the current state of a building, its completion percentage, and time until next state change.
: [[API C_ContributionCollector.HasPendingContribution|C_ContributionCollector.HasPendingContribution]](<span style="font-size:smaller; color:#ecbc2a">contributionID</span>) : <span style="font-size:smaller; color:#4ec9b0">hasPending</span> - Returns whether there is a pending contribution.
+
: [[API C_ContributionCollector.HasPendingContribution|C_ContributionCollector.HasPendingContribution]](<span class="apiarg">contributionID</span>) : <span class="apiret">hasPending</span> - Returns whether there is a pending contribution.
: [[API C_ContributionCollector.IsAwaitingRewardQuestData|C_ContributionCollector.IsAwaitingRewardQuestData]](<span style="font-size:smaller; color:#ecbc2a">contributionID</span>) : <span style="font-size:smaller; color:#4ec9b0">awaitingData</span> - Returns whether the contribution API is waiting for quest data.
+
: [[API C_ContributionCollector.IsAwaitingRewardQuestData|C_ContributionCollector.IsAwaitingRewardQuestData]](<span class="apiarg">contributionID</span>) : <span class="apiret">awaitingData</span> - Returns whether the contribution API is waiting for quest data.
   
 
=== Battle for Azeroth ===
 
=== Battle for Azeroth ===
 
==== Azerite ====
 
==== Azerite ====
 
[[:Azerite]] was added in [[Patch 8.0.1]]
 
[[:Azerite]] was added in [[Patch 8.0.1]]
: [[API C_AzeriteItem.FindActiveAzeriteItem|C_AzeriteItem.FindActiveAzeriteItem]]() : <span style="font-size:smaller; color:#4ec9b0">activeAzeriteItemLocation</span>
+
: [[API C_AzeriteItem.FindActiveAzeriteItem|C_AzeriteItem.FindActiveAzeriteItem]]() : <span class="apiret">activeAzeriteItemLocation</span>
: [[API C_AzeriteItem.GetAzeriteItemXPInfo|C_AzeriteItem.GetAzeriteItemXPInfo]](<span style="font-size:smaller; color:#ecbc2a">azeriteItemLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">xp, totalLevelXP</span>
+
: [[API C_AzeriteItem.GetAzeriteItemXPInfo|C_AzeriteItem.GetAzeriteItemXPInfo]](<span class="apiarg">azeriteItemLocation</span>) : <span class="apiret">xp, totalLevelXP</span>
: [[API C_AzeriteItem.GetPowerLevel|C_AzeriteItem.GetPowerLevel]](<span style="font-size:smaller; color:#ecbc2a">azeriteItemLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">powerLevel</span>
+
: [[API C_AzeriteItem.GetPowerLevel|C_AzeriteItem.GetPowerLevel]](<span class="apiarg">azeriteItemLocation</span>) : <span class="apiret">powerLevel</span>
: [[API C_AzeriteItem.GetUnlimitedPowerLevel|C_AzeriteItem.GetUnlimitedPowerLevel]](<span style="font-size:smaller; color:#ecbc2a">azeriteItemLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">powerLevel</span>
+
: [[API C_AzeriteItem.GetUnlimitedPowerLevel|C_AzeriteItem.GetUnlimitedPowerLevel]](<span class="apiarg">azeriteItemLocation</span>) : <span class="apiret">powerLevel</span>
: [[API C_AzeriteItem.HasActiveAzeriteItem|C_AzeriteItem.HasActiveAzeriteItem]]() : <span style="font-size:smaller; color:#4ec9b0">hasActiveAzeriteItem</span>
+
: [[API C_AzeriteItem.HasActiveAzeriteItem|C_AzeriteItem.HasActiveAzeriteItem]]() : <span class="apiret">hasActiveAzeriteItem</span>
: [[API C_AzeriteItem.IsAzeriteItem|C_AzeriteItem.IsAzeriteItem]](<span style="font-size:smaller; color:#ecbc2a">itemLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">isAzeriteItem</span>
+
: [[API C_AzeriteItem.IsAzeriteItem|C_AzeriteItem.IsAzeriteItem]](<span class="apiarg">itemLocation</span>) : <span class="apiret">isAzeriteItem</span>
: [[API C_AzeriteItem.IsAzeriteItemAtMaxLevel|C_AzeriteItem.IsAzeriteItemAtMaxLevel]]() : <span style="font-size:smaller; color:#4ec9b0">isAtMax</span>
+
: [[API C_AzeriteItem.IsAzeriteItemAtMaxLevel|C_AzeriteItem.IsAzeriteItemAtMaxLevel]]() : <span class="apiret">isAtMax</span>
: [[API C_AzeriteItem.IsAzeriteItemByID|C_AzeriteItem.IsAzeriteItemByID]](<span style="font-size:smaller; color:#ecbc2a">itemInfo</span>) : <span style="font-size:smaller; color:#4ec9b0">isAzeriteItem</span>
+
: [[API C_AzeriteItem.IsAzeriteItemByID|C_AzeriteItem.IsAzeriteItemByID]](<span class="apiarg">itemInfo</span>) : <span class="apiret">isAzeriteItem</span>
: [[API C_AzeriteItem.IsAzeriteItemEnabled|C_AzeriteItem.IsAzeriteItemEnabled]](<span style="font-size:smaller; color:#ecbc2a">azeriteItemLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">isEnabled</span>
+
: [[API C_AzeriteItem.IsAzeriteItemEnabled|C_AzeriteItem.IsAzeriteItemEnabled]](<span class="apiarg">azeriteItemLocation</span>) : <span class="apiret">isEnabled</span>
: [[API C_AzeriteEmpoweredItem.CanSelectPower|C_AzeriteEmpoweredItem.CanSelectPower]](<span style="font-size:smaller; color:#ecbc2a">azeriteEmpoweredItemLocation, powerID</span>) : <span style="font-size:smaller; color:#4ec9b0">canSelect</span>
+
: [[API C_AzeriteEmpoweredItem.CanSelectPower|C_AzeriteEmpoweredItem.CanSelectPower]](<span class="apiarg">azeriteEmpoweredItemLocation, powerID</span>) : <span class="apiret">canSelect</span>
 
: [[API C_AzeriteEmpoweredItem.CloseAzeriteEmpoweredItemRespec|C_AzeriteEmpoweredItem.CloseAzeriteEmpoweredItemRespec]]()
 
: [[API C_AzeriteEmpoweredItem.CloseAzeriteEmpoweredItemRespec|C_AzeriteEmpoweredItem.CloseAzeriteEmpoweredItemRespec]]()
: [[API C_AzeriteEmpoweredItem.ConfirmAzeriteEmpoweredItemRespec|C_AzeriteEmpoweredItem.ConfirmAzeriteEmpoweredItemRespec]](<span style="font-size:smaller; color:#ecbc2a">azeriteEmpoweredItemLocation</span>)
+
: [[API C_AzeriteEmpoweredItem.ConfirmAzeriteEmpoweredItemRespec|C_AzeriteEmpoweredItem.ConfirmAzeriteEmpoweredItemRespec]](<span class="apiarg">azeriteEmpoweredItemLocation</span>)
: [[API C_AzeriteEmpoweredItem.GetAllTierInfo|C_AzeriteEmpoweredItem.GetAllTierInfo]](<span style="font-size:smaller; color:#ecbc2a">azeriteEmpoweredItemLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">tierInfo</span>
+
: [[API C_AzeriteEmpoweredItem.GetAllTierInfo|C_AzeriteEmpoweredItem.GetAllTierInfo]](<span class="apiarg">azeriteEmpoweredItemLocation</span>) : <span class="apiret">tierInfo</span>
: [[API C_AzeriteEmpoweredItem.GetAllTierInfoByItemID|C_AzeriteEmpoweredItem.GetAllTierInfoByItemID]](<span style="font-size:smaller; color:#ecbc2a">itemInfo [, classID]</span>) : <span style="font-size:smaller; color:#4ec9b0">tierInfo</span>
+
: [[API C_AzeriteEmpoweredItem.GetAllTierInfoByItemID|C_AzeriteEmpoweredItem.GetAllTierInfoByItemID]](<span class="apiarg">itemInfo [, classID]</span>) : <span class="apiret">tierInfo</span>
: [[API C_AzeriteEmpoweredItem.GetAzeriteEmpoweredItemRespecCost|C_AzeriteEmpoweredItem.GetAzeriteEmpoweredItemRespecCost]]() : <span style="font-size:smaller; color:#4ec9b0">cost</span>
+
: [[API C_AzeriteEmpoweredItem.GetAzeriteEmpoweredItemRespecCost|C_AzeriteEmpoweredItem.GetAzeriteEmpoweredItemRespecCost]]() : <span class="apiret">cost</span>
: [[API C_AzeriteEmpoweredItem.GetPowerInfo|C_AzeriteEmpoweredItem.GetPowerInfo]](<span style="font-size:smaller; color:#ecbc2a">powerID</span>) : <span style="font-size:smaller; color:#4ec9b0">powerInfo</span>
+
: [[API C_AzeriteEmpoweredItem.GetPowerInfo|C_AzeriteEmpoweredItem.GetPowerInfo]](<span class="apiarg">powerID</span>) : <span class="apiret">powerInfo</span>
: [[API C_AzeriteEmpoweredItem.GetPowerText|C_AzeriteEmpoweredItem.GetPowerText]](<span style="font-size:smaller; color:#ecbc2a">azeriteEmpoweredItemLocation, powerID, level</span>) : <span style="font-size:smaller; color:#4ec9b0">powerText</span>
+
: [[API C_AzeriteEmpoweredItem.GetPowerText|C_AzeriteEmpoweredItem.GetPowerText]](<span class="apiarg">azeriteEmpoweredItemLocation, powerID, level</span>) : <span class="apiret">powerText</span>
: [[API C_AzeriteEmpoweredItem.GetSpecsForPower|C_AzeriteEmpoweredItem.GetSpecsForPower]](<span style="font-size:smaller; color:#ecbc2a">powerID</span>) : <span style="font-size:smaller; color:#4ec9b0">specInfo</span>
+
: [[API C_AzeriteEmpoweredItem.GetSpecsForPower|C_AzeriteEmpoweredItem.GetSpecsForPower]](<span class="apiarg">powerID</span>) : <span class="apiret">specInfo</span>
: [[API C_AzeriteEmpoweredItem.HasAnyUnselectedPowers|C_AzeriteEmpoweredItem.HasAnyUnselectedPowers]](<span style="font-size:smaller; color:#ecbc2a">azeriteEmpoweredItemLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">hasAnyUnselectedPowers</span>
+
: [[API C_AzeriteEmpoweredItem.HasAnyUnselectedPowers|C_AzeriteEmpoweredItem.HasAnyUnselectedPowers]](<span class="apiarg">azeriteEmpoweredItemLocation</span>) : <span class="apiret">hasAnyUnselectedPowers</span>
: [[API C_AzeriteEmpoweredItem.HasBeenViewed|C_AzeriteEmpoweredItem.HasBeenViewed]](<span style="font-size:smaller; color:#ecbc2a">azeriteEmpoweredItemLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">hasBeenViewed</span>
+
: [[API C_AzeriteEmpoweredItem.HasBeenViewed|C_AzeriteEmpoweredItem.HasBeenViewed]](<span class="apiarg">azeriteEmpoweredItemLocation</span>) : <span class="apiret">hasBeenViewed</span>
: [[API C_AzeriteEmpoweredItem.IsAzeriteEmpoweredItem|C_AzeriteEmpoweredItem.IsAzeriteEmpoweredItem]](<span style="font-size:smaller; color:#ecbc2a">itemLocation</span>) : <span style="font-size:smaller; color:#4ec9b0">isAzeriteEmpoweredItem</span>
+
: [[API C_AzeriteEmpoweredItem.IsAzeriteEmpoweredItem|C_AzeriteEmpoweredItem.IsAzeriteEmpoweredItem]](<span class="apiarg">itemLocation</span>) : <span class="apiret">isAzeriteEmpoweredItem</span>
: [[API C_AzeriteEmpoweredItem.IsAzeriteEmpoweredItemByID|C_AzeriteEmpoweredItem.IsAzeriteEmpoweredItemByID]](<span style="font-size:smaller; color:#ecbc2a">itemInfo</span>) : <span style="font-size:smaller; color:#4ec9b0">isAzeriteEmpoweredItem</span>
+
: [[API C_AzeriteEmpoweredItem.IsAzeriteEmpoweredItemByID|C_AzeriteEmpoweredItem.IsAzeriteEmpoweredItemByID]](<span class="apiarg">itemInfo</span>) : <span class="apiret">isAzeriteEmpoweredItem</span>
: [[API C_AzeriteEmpoweredItem.IsAzeritePreviewSourceDisplayable|C_AzeriteEmpoweredItem.IsAzeritePreviewSourceDisplayable]](<span style="font-size:smaller; color:#ecbc2a">itemInfo [, classID]</span>) : <span style="font-size:smaller; color:#4ec9b0">isAzeritePreviewSourceDisplayable</span>
+
: [[API C_AzeriteEmpoweredItem.IsAzeritePreviewSourceDisplayable|C_AzeriteEmpoweredItem.IsAzeritePreviewSourceDisplayable]](<span class="apiarg">itemInfo [, classID]</span>) : <span class="apiret">isAzeritePreviewSourceDisplayable</span>
: [[API C_AzeriteEmpoweredItem.IsHeartOfAzerothEquipped|C_AzeriteEmpoweredItem.IsHeartOfAzerothEquipped]]() : <span style="font-size:smaller; color:#4ec9b0">isHeartOfAzerothEquipped</span>
+
: [[API C_AzeriteEmpoweredItem.IsHeartOfAzerothEquipped|C_AzeriteEmpoweredItem.IsHeartOfAzerothEquipped]]() : <span class="apiret">isHeartOfAzerothEquipped</span>
: [[API C_AzeriteEmpoweredItem.IsPowerAvailableForSpec|C_AzeriteEmpoweredItem.IsPowerAvailableForSpec]](<span style="font-size:smaller; color:#ecbc2a">powerID, specID</span>) : <span style="font-size:smaller; color:#4ec9b0">isPowerAvailableForSpec</span>
+
: [[API C_AzeriteEmpoweredItem.IsPowerAvailableForSpec|C_AzeriteEmpoweredItem.IsPowerAvailableForSpec]](<span class="apiarg">powerID, specID</span>) : <span class="apiret">isPowerAvailableForSpec</span>
: [[API C_AzeriteEmpoweredItem.IsPowerSelected|C_AzeriteEmpoweredItem.IsPowerSelected]](<span style="font-size:smaller; color:#ecbc2a">azeriteEmpoweredItemLocation, powerID</span>) : <span style="font-size:smaller; color:#4ec9b0">isSelected</span>
+
: [[API C_AzeriteEmpoweredItem.IsPowerSelected|C_AzeriteEmpoweredItem.IsPowerSelected]](<span class="apiarg">azeriteEmpoweredItemLocation, powerID</span>) : <span class="apiret">isSelected</span>
: [[API C_AzeriteEmpoweredItem.SelectPower|C_AzeriteEmpoweredItem.SelectPower]](<span style="font-size:smaller; color:#ecbc2a">azeriteEmpoweredItemLocation, powerID</span>) : <span style="font-size:smaller; color:#4ec9b0">success</span>
+
: [[API C_AzeriteEmpoweredItem.SelectPower|C_AzeriteEmpoweredItem.SelectPower]](<span class="apiarg">azeriteEmpoweredItemLocation, powerID</span>) : <span class="apiret">success</span>
: [[API C_AzeriteEmpoweredItem.SetHasBeenViewed|C_AzeriteEmpoweredItem.SetHasBeenViewed]](<span style="font-size:smaller; color:#ecbc2a">azeriteEmpoweredItemLocation</span>)
+
: [[API C_AzeriteEmpoweredItem.SetHasBeenViewed|C_AzeriteEmpoweredItem.SetHasBeenViewed]](<span class="apiarg">azeriteEmpoweredItemLocation</span>)
: [[API C_PaperDollInfo.GetInspectAzeriteItemEmpoweredChoices|C_PaperDollInfo.GetInspectAzeriteItemEmpoweredChoices]](<span style="font-size:smaller; color:#ecbc2a">unit, equipmentSlotIndex</span>) : <span style="font-size:smaller; color:#4ec9b0">azeritePowerIDs</span>
+
: [[API C_PaperDollInfo.GetInspectAzeriteItemEmpoweredChoices|C_PaperDollInfo.GetInspectAzeriteItemEmpoweredChoices]](<span class="apiarg">unit, equipmentSlotIndex</span>) : <span class="apiret">azeritePowerIDs</span>
 
Azerite Essences were added in [[Patch 8.2.0]]
 
Azerite Essences were added in [[Patch 8.2.0]]
: [[API C_AzeriteEssence.ActivateEssence|C_AzeriteEssence.ActivateEssence]](<span style="font-size:smaller; color:#ecbc2a">essenceID, milestoneID</span>)
+
: [[API C_AzeriteEssence.ActivateEssence|C_AzeriteEssence.ActivateEssence]](<span class="apiarg">essenceID, milestoneID</span>)
: [[API C_AzeriteEssence.CanActivateEssence|C_AzeriteEssence.CanActivateEssence]](<span style="font-size:smaller; color:#ecbc2a">essenceID, milestoneID</span>) : <span style="font-size:smaller; color:#4ec9b0">canActivate</span>
+
: [[API C_AzeriteEssence.CanActivateEssence|C_AzeriteEssence.CanActivateEssence]](<span class="apiarg">essenceID, milestoneID</span>) : <span class="apiret">canActivate</span>
: [[API C_AzeriteEssence.CanDeactivateEssence|C_AzeriteEssence.CanDeactivateEssence]](<span style="font-size:smaller; color:#ecbc2a">milestoneID</span>) : <span style="font-size:smaller; color:#4ec9b0">canDeactivate</span>
+
: [[API C_AzeriteEssence.CanDeactivateEssence|C_AzeriteEssence.CanDeactivateEssence]](<span class="apiarg">milestoneID</span>) : <span class="apiret">canDeactivate</span>
: [[API C_AzeriteEssence.CanOpenUI|C_AzeriteEssence.CanOpenUI]]() : <span style="font-size:smaller; color:#4ec9b0">canOpen</span>
+
: [[API C_AzeriteEssence.CanOpenUI|C_AzeriteEssence.CanOpenUI]]() : <span class="apiret">canOpen</span>
 
: [[API C_AzeriteEssence.ClearPendingActivationEssence|C_AzeriteEssence.ClearPendingActivationEssence]]()
 
: [[API C_AzeriteEssence.ClearPendingActivationEssence|C_AzeriteEssence.ClearPendingActivationEssence]]()
 
: [[API C_AzeriteEssence.CloseForge|C_AzeriteEssence.CloseForge]]()
 
: [[API C_AzeriteEssence.CloseForge|C_AzeriteEssence.CloseForge]]()
: [[API C_AzeriteEssence.GetEssenceHyperlink|C_AzeriteEssence.GetEssenceHyperlink]](<span style="font-size:smaller; color:#ecbc2a">essenceID, rank</span>) : <span style="font-size:smaller; color:#4ec9b0">link</span>
+
: [[API C_AzeriteEssence.GetEssenceHyperlink|C_AzeriteEssence.GetEssenceHyperlink]](<span class="apiarg">essenceID, rank</span>) : <span class="apiret">link</span>
: [[API C_AzeriteEssence.GetEssenceInfo|C_AzeriteEssence.GetEssenceInfo]](<span style="font-size:smaller; color:#ecbc2a">essenceID</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_AzeriteEssence.GetEssenceInfo|C_AzeriteEssence.GetEssenceInfo]](<span class="apiarg">essenceID</span>) : <span class="apiret">info</span>
: [[API C_AzeriteEssence.GetEssences|C_AzeriteEssence.GetEssences]]() : <span style="font-size:smaller; color:#4ec9b0">essences</span>
+
: [[API C_AzeriteEssence.GetEssences|C_AzeriteEssence.GetEssences]]() : <span class="apiret">essences</span>
: [[API C_AzeriteEssence.GetMilestoneEssence|C_AzeriteEssence.GetMilestoneEssence]](<span style="font-size:smaller; color:#ecbc2a">milestoneID</span>) : <span style="font-size:smaller; color:#4ec9b0">essenceID</span>
+
: [[API C_AzeriteEssence.GetMilestoneEssence|C_AzeriteEssence.GetMilestoneEssence]](<span class="apiarg">milestoneID</span>) : <span class="apiret">essenceID</span>
: [[API C_AzeriteEssence.GetMilestoneInfo|C_AzeriteEssence.GetMilestoneInfo]](<span style="font-size:smaller; color:#ecbc2a">milestoneID</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_AzeriteEssence.GetMilestoneInfo|C_AzeriteEssence.GetMilestoneInfo]](<span class="apiarg">milestoneID</span>) : <span class="apiret">info</span>
: [[API C_AzeriteEssence.GetMilestones|C_AzeriteEssence.GetMilestones]]() : <span style="font-size:smaller; color:#4ec9b0">milestones</span>
+
: [[API C_AzeriteEssence.GetMilestones|C_AzeriteEssence.GetMilestones]]() : <span class="apiret">milestones</span>
: [[API C_AzeriteEssence.GetMilestoneSpell|C_AzeriteEssence.GetMilestoneSpell]](<span style="font-size:smaller; color:#ecbc2a">milestoneID</span>) : <span style="font-size:smaller; color:#4ec9b0">spellID</span>
+
: [[API C_AzeriteEssence.GetMilestoneSpell|C_AzeriteEssence.GetMilestoneSpell]](<span class="apiarg">milestoneID</span>) : <span class="apiret">spellID</span>
: [[API C_AzeriteEssence.GetNumUnlockedEssences|C_AzeriteEssence.GetNumUnlockedEssences]]() : <span style="font-size:smaller; color:#4ec9b0">numUnlockedEssences</span>
+
: [[API C_AzeriteEssence.GetNumUnlockedEssences|C_AzeriteEssence.GetNumUnlockedEssences]]() : <span class="apiret">numUnlockedEssences</span>
: [[API C_AzeriteEssence.GetNumUsableEssences|C_AzeriteEssence.GetNumUsableEssences]]() : <span style="font-size:smaller; color:#4ec9b0">numUsableEssences</span>
+
: [[API C_AzeriteEssence.GetNumUsableEssences|C_AzeriteEssence.GetNumUsableEssences]]() : <span class="apiret">numUsableEssences</span>
: [[API C_AzeriteEssence.GetPendingActivationEssence|C_AzeriteEssence.GetPendingActivationEssence]]() : <span style="font-size:smaller; color:#4ec9b0">essenceID</span>
+
: [[API C_AzeriteEssence.GetPendingActivationEssence|C_AzeriteEssence.GetPendingActivationEssence]]() : <span class="apiret">essenceID</span>
: [[API C_AzeriteEssence.HasNeverActivatedAnyEssences|C_AzeriteEssence.HasNeverActivatedAnyEssences]]() : <span style="font-size:smaller; color:#4ec9b0">hasNeverActivatedAnyEssences</span>
+
: [[API C_AzeriteEssence.HasNeverActivatedAnyEssences|C_AzeriteEssence.HasNeverActivatedAnyEssences]]() : <span class="apiret">hasNeverActivatedAnyEssences</span>
: [[API C_AzeriteEssence.HasPendingActivationEssence|C_AzeriteEssence.HasPendingActivationEssence]]() : <span style="font-size:smaller; color:#4ec9b0">hasEssence</span>
+
: [[API C_AzeriteEssence.HasPendingActivationEssence|C_AzeriteEssence.HasPendingActivationEssence]]() : <span class="apiret">hasEssence</span>
: [[API C_AzeriteEssence.IsAtForge|C_AzeriteEssence.IsAtForge]]() : <span style="font-size:smaller; color:#4ec9b0">isAtForge</span>
+
: [[API C_AzeriteEssence.IsAtForge|C_AzeriteEssence.IsAtForge]]() : <span class="apiret">isAtForge</span>
: [[API C_AzeriteEssence.SetPendingActivationEssence|C_AzeriteEssence.SetPendingActivationEssence]](<span style="font-size:smaller; color:#ecbc2a">essenceID</span>)
+
: [[API C_AzeriteEssence.SetPendingActivationEssence|C_AzeriteEssence.SetPendingActivationEssence]](<span class="apiarg">essenceID</span>)
: [[API C_AzeriteEssence.UnlockMilestone|C_AzeriteEssence.UnlockMilestone]](<span style="font-size:smaller; color:#ecbc2a">milestoneID</span>)
+
: [[API C_AzeriteEssence.UnlockMilestone|C_AzeriteEssence.UnlockMilestone]](<span class="apiarg">milestoneID</span>)
   
 
==== Corruption ====
 
==== Corruption ====
 
[[Corrupted item]]s were added in [[Patch 8.3.0]]
 
[[Corrupted item]]s were added in [[Patch 8.3.0]]
: [[API C_Item.IsItemCorrupted|C_Item.IsItemCorrupted]](<span style="font-size:smaller; color:#ecbc2a">itemLoc</span>) : <span style="font-size:smaller; color:#4ec9b0">isCorrupted</span>
+
: [[API C_Item.IsItemCorrupted|C_Item.IsItemCorrupted]](<span class="apiarg">itemLoc</span>) : <span class="apiret">isCorrupted</span>
: [[API C_Item.IsItemCorruptionRelated|C_Item.IsItemCorruptionRelated]](<span style="font-size:smaller; color:#ecbc2a">itemLoc</span>) : <span style="font-size:smaller; color:#4ec9b0">isCorruptionRelated</span>
+
: [[API C_Item.IsItemCorruptionRelated|C_Item.IsItemCorruptionRelated]](<span class="apiarg">itemLoc</span>) : <span class="apiret">isCorruptionRelated</span>
: [[API C_Item.IsItemCorruptionResistant|C_Item.IsItemCorruptionResistant]](<span style="font-size:smaller; color:#ecbc2a">itemLoc</span>) : <span style="font-size:smaller; color:#4ec9b0">isCorruptionResistant</span>
+
: [[API C_Item.IsItemCorruptionResistant|C_Item.IsItemCorruptionResistant]](<span class="apiarg">itemLoc</span>) : <span class="apiret">isCorruptionResistant</span>
 
: [[API C_ItemInteraction.SetCorruptionReforgerItemTooltip|C_ItemInteraction.SetCorruptionReforgerItemTooltip]]()
 
: [[API C_ItemInteraction.SetCorruptionReforgerItemTooltip|C_ItemInteraction.SetCorruptionReforgerItemTooltip]]()
 
: [[API GetCorruption|GetCorruption]]()
 
: [[API GetCorruption|GetCorruption]]()
 
: [[API GetCorruptionResistance|GetCorruptionResistance]]()
 
: [[API GetCorruptionResistance|GetCorruptionResistance]]()
: [[API GetNegativeCorruptionEffectInfo|GetNegativeCorruptionEffectInfo]]() : <span style="font-size:smaller; color:#4ec9b0">corruptionEffects</span>
+
: [[API GetNegativeCorruptionEffectInfo|GetNegativeCorruptionEffectInfo]]() : <span class="apiret">corruptionEffects</span>
: [[API IsCorruptedItem|IsCorruptedItem]](<span style="font-size:smaller; color:#ecbc2a">item</span>)
+
: [[API IsCorruptedItem|IsCorruptedItem]](<span class="apiarg">item</span>)
   
 
==== Island Expeditions ====
 
==== Island Expeditions ====
 
[[Island Expeditions]] were added in [[Patch 8.0.1]]
 
[[Island Expeditions]] were added in [[Patch 8.0.1]]
 
: [[API C_IslandsQueue.CloseIslandsQueueScreen|C_IslandsQueue.CloseIslandsQueueScreen]]() - Closes the islands queue screen.
 
: [[API C_IslandsQueue.CloseIslandsQueueScreen|C_IslandsQueue.CloseIslandsQueueScreen]]() - Closes the islands queue screen.
: [[API C_IslandsQueue.GetIslandDifficultyInfo|C_IslandsQueue.GetIslandDifficultyInfo]]() : <span style="font-size:smaller; color:#4ec9b0">islandDifficultyInfo</span> - Returns the island expedition modes.
+
: [[API C_IslandsQueue.GetIslandDifficultyInfo|C_IslandsQueue.GetIslandDifficultyInfo]]() : <span class="apiret">islandDifficultyInfo</span> - Returns the island expedition modes.
: [[API C_IslandsQueue.GetIslandsMaxGroupSize|C_IslandsQueue.GetIslandsMaxGroupSize]]() : <span style="font-size:smaller; color:#4ec9b0">maxGroupSize</span> - Returns the max group size for expeditions.
+
: [[API C_IslandsQueue.GetIslandsMaxGroupSize|C_IslandsQueue.GetIslandsMaxGroupSize]]() : <span class="apiret">maxGroupSize</span> - Returns the max group size for expeditions.
: [[API C_IslandsQueue.GetIslandsWeeklyQuestID|C_IslandsQueue.GetIslandsWeeklyQuestID]]() : <span style="font-size:smaller; color:#4ec9b0">questID</span> - Returns the weekly island quest.
+
: [[API C_IslandsQueue.GetIslandsWeeklyQuestID|C_IslandsQueue.GetIslandsWeeklyQuestID]]() : <span class="apiret">questID</span> - Returns the weekly island quest.
: [[API C_IslandsQueue.QueueForIsland|C_IslandsQueue.QueueForIsland]](<span style="font-size:smaller; color:#ecbc2a">difficultyID</span>) - Queues for an island expedition.
+
: [[API C_IslandsQueue.QueueForIsland|C_IslandsQueue.QueueForIsland]](<span class="apiarg">difficultyID</span>) - Queues for an island expedition.
: [[API C_IslandsQueue.RequestPreloadRewardData|C_IslandsQueue.RequestPreloadRewardData]](<span style="font-size:smaller; color:#ecbc2a">questId</span>) - Preloads reward data for a quest id.
+
: [[API C_IslandsQueue.RequestPreloadRewardData|C_IslandsQueue.RequestPreloadRewardData]](<span class="apiarg">questId</span>) - Preloads reward data for a quest id.
: [[API C_PartyPose.GetPartyPoseInfoByMapID|C_PartyPose.GetPartyPoseInfoByMapID]](<span style="font-size:smaller; color:#ecbc2a">mapID</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span> - Returns party pose info for a map.
+
: [[API C_PartyPose.GetPartyPoseInfoByMapID|C_PartyPose.GetPartyPoseInfoByMapID]](<span class="apiarg">mapID</span>) : <span class="apiret">info</span> - Returns party pose info for a map.
 
: [[API ShouldShowIslandsWeeklyPOI|ShouldShowIslandsWeeklyPOI]]()
 
: [[API ShouldShowIslandsWeeklyPOI|ShouldShowIslandsWeeklyPOI]]()
   
 
==== Scrapping Machine ====
 
==== Scrapping Machine ====
 
The [[Scrapper]] was added in [[Patch 8.0.1]]
 
The [[Scrapper]] was added in [[Patch 8.0.1]]
: [[API C_Item.CanScrapItem|C_Item.CanScrapItem]](<span style="font-size:smaller; color:#ecbc2a">itemLoc</span>) : <span style="font-size:smaller; color:#4ec9b0">canBeScrapped</span>
+
: [[API C_Item.CanScrapItem|C_Item.CanScrapItem]](<span class="apiarg">itemLoc</span>) : <span class="apiret">canBeScrapped</span>
 
: [[API C_ScrappingMachineUI.CloseScrappingMachine|C_ScrappingMachineUI.CloseScrappingMachine]]()
 
: [[API C_ScrappingMachineUI.CloseScrappingMachine|C_ScrappingMachineUI.CloseScrappingMachine]]()
: [[API C_ScrappingMachineUI.DropPendingScrapItemFromCursor|C_ScrappingMachineUI.DropPendingScrapItemFromCursor]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API C_ScrappingMachineUI.DropPendingScrapItemFromCursor|C_ScrappingMachineUI.DropPendingScrapItemFromCursor]](<span class="apiarg">index</span>)
: [[API C_ScrappingMachineUI.GetCurrentPendingScrapItemLocationByIndex|C_ScrappingMachineUI.GetCurrentPendingScrapItemLocationByIndex]](<span style="font-size:smaller; color:#ecbc2a">index</span>) : <span style="font-size:smaller; color:#4ec9b0">itemLoc</span>
+
: [[API C_ScrappingMachineUI.GetCurrentPendingScrapItemLocationByIndex|C_ScrappingMachineUI.GetCurrentPendingScrapItemLocationByIndex]](<span class="apiarg">index</span>) : <span class="apiret">itemLoc</span>
: [[API C_ScrappingMachineUI.GetScrapSpellID|C_ScrappingMachineUI.GetScrapSpellID]]() : <span style="font-size:smaller; color:#4ec9b0">spellID</span>
+
: [[API C_ScrappingMachineUI.GetScrapSpellID|C_ScrappingMachineUI.GetScrapSpellID]]() : <span class="apiret">spellID</span>
: [[API C_ScrappingMachineUI.GetScrappingMachineName|C_ScrappingMachineUI.GetScrappingMachineName]]() : <span style="font-size:smaller; color:#4ec9b0">name</span>
+
: [[API C_ScrappingMachineUI.GetScrappingMachineName|C_ScrappingMachineUI.GetScrappingMachineName]]() : <span class="apiret">name</span>
: [[API C_ScrappingMachineUI.HasScrappableItems|C_ScrappingMachineUI.HasScrappableItems]]() : <span style="font-size:smaller; color:#4ec9b0">hasScrappableItems</span>
+
: [[API C_ScrappingMachineUI.HasScrappableItems|C_ScrappingMachineUI.HasScrappableItems]]() : <span class="apiret">hasScrappableItems</span>
 
: [[API C_ScrappingMachineUI.RemoveAllScrapItems|C_ScrappingMachineUI.RemoveAllScrapItems]]()
 
: [[API C_ScrappingMachineUI.RemoveAllScrapItems|C_ScrappingMachineUI.RemoveAllScrapItems]]()
 
: [[API C_ScrappingMachineUI.RemoveCurrentScrappingItem|C_ScrappingMachineUI.RemoveCurrentScrappingItem]]()
 
: [[API C_ScrappingMachineUI.RemoveCurrentScrappingItem|C_ScrappingMachineUI.RemoveCurrentScrappingItem]]()
: [[API C_ScrappingMachineUI.RemoveItemToScrap|C_ScrappingMachineUI.RemoveItemToScrap]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API C_ScrappingMachineUI.RemoveItemToScrap|C_ScrappingMachineUI.RemoveItemToScrap]](<span class="apiarg">index</span>)
 
: [[API C_ScrappingMachineUI.ScrapItems|C_ScrappingMachineUI.ScrapItems]]()
 
: [[API C_ScrappingMachineUI.ScrapItems|C_ScrappingMachineUI.ScrapItems]]()
: [[API C_ScrappingMachineUI.SetScrappingMachine|C_ScrappingMachineUI.SetScrappingMachine]](<span style="font-size:smaller; color:#ecbc2a">gameObject</span>)
+
: [[API C_ScrappingMachineUI.SetScrappingMachine|C_ScrappingMachineUI.SetScrappingMachine]](<span class="apiarg">gameObject</span>)
 
: [[API C_ScrappingMachineUI.ValidateScrappingList|C_ScrappingMachineUI.ValidateScrappingList]]()
 
: [[API C_ScrappingMachineUI.ValidateScrappingList|C_ScrappingMachineUI.ValidateScrappingList]]()
   
 
=== Shadowlands ===
 
=== Shadowlands ===
 
Ardenweald
 
Ardenweald
: [[API C_ArdenwealdGardening.GetGardenData|C_ArdenwealdGardening.GetGardenData]]() : <span style="font-size:smaller; color:#4ec9b0">data</span>
+
: [[API C_ArdenwealdGardening.GetGardenData|C_ArdenwealdGardening.GetGardenData]]() : <span class="apiret">data</span>
: [[API C_ArdenwealdGardening.IsGardenAccessible|C_ArdenwealdGardening.IsGardenAccessible]]() : <span style="font-size:smaller; color:#4ec9b0">accessible</span>
+
: [[API C_ArdenwealdGardening.IsGardenAccessible|C_ArdenwealdGardening.IsGardenAccessible]]() : <span class="apiret">accessible</span>
 
The Maw
 
The Maw
: [[API C_Spell.GetMawPowerBorderAtlasBySpellID|C_Spell.GetMawPowerBorderAtlasBySpellID]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>) : <span style="font-size:smaller; color:#4ec9b0">rarityBorderAtlas</span>
+
: [[API C_Spell.GetMawPowerBorderAtlasBySpellID|C_Spell.GetMawPowerBorderAtlasBySpellID]](<span class="apiarg">spellID</span>) : <span class="apiret">rarityBorderAtlas</span>
: [[API GetMawPowerLinkBySpellID|GetMawPowerLinkBySpellID]](<span style="font-size:smaller; color:#ecbc2a">spellID</span>)
+
: [[API GetMawPowerLinkBySpellID|GetMawPowerLinkBySpellID]](<span class="apiarg">spellID</span>)
 
Torghast
 
Torghast
: [[API C_PartyInfo.IsPartyInJailersTower|C_PartyInfo.IsPartyInJailersTower]]() : <span style="font-size:smaller; color:#4ec9b0">isPartyInJailersTower</span>
+
: [[API C_PartyInfo.IsPartyInJailersTower|C_PartyInfo.IsPartyInJailersTower]]() : <span class="apiret">isPartyInJailersTower</span>
: [[API C_ScenarioInfo.GetJailersTowerTypeString|C_ScenarioInfo.GetJailersTowerTypeString]](<span style="font-size:smaller; color:#ecbc2a">runType</span>) : <span style="font-size:smaller; color:#4ec9b0">typeString</span>
+
: [[API C_ScenarioInfo.GetJailersTowerTypeString|C_ScenarioInfo.GetJailersTowerTypeString]](<span class="apiarg">runType</span>) : <span class="apiret">typeString</span>
 
: [[API GetJailersTowerLevel|GetJailersTowerLevel]]()
 
: [[API GetJailersTowerLevel|GetJailersTowerLevel]]()
 
: [[API IsInJailersTower|IsInJailersTower]]()
 
: [[API IsInJailersTower|IsInJailersTower]]()
Line 5,110: Line 5,207:
 
[[:Anima]] was added in [[Patch 9.0.1]]
 
[[:Anima]] was added in [[Patch 9.0.1]]
 
: [[API C_AnimaDiversion.CloseUI|C_AnimaDiversion.CloseUI]]()
 
: [[API C_AnimaDiversion.CloseUI|C_AnimaDiversion.CloseUI]]()
: [[API C_AnimaDiversion.GetAnimaDiversionNodes|C_AnimaDiversion.GetAnimaDiversionNodes]]() : <span style="font-size:smaller; color:#4ec9b0">animaNodes</span>
+
: [[API C_AnimaDiversion.GetAnimaDiversionNodes|C_AnimaDiversion.GetAnimaDiversionNodes]]() : <span class="apiret">animaNodes</span>
: [[API C_AnimaDiversion.GetOriginPosition|C_AnimaDiversion.GetOriginPosition]]() : <span style="font-size:smaller; color:#4ec9b0">normalizedPosition</span>
+
: [[API C_AnimaDiversion.GetOriginPosition|C_AnimaDiversion.GetOriginPosition]]() : <span class="apiret">normalizedPosition</span>
: [[API C_AnimaDiversion.GetReinforceProgress|C_AnimaDiversion.GetReinforceProgress]]() : <span style="font-size:smaller; color:#4ec9b0">progress</span>
+
: [[API C_AnimaDiversion.GetReinforceProgress|C_AnimaDiversion.GetReinforceProgress]]() : <span class="apiret">progress</span>
: [[API C_AnimaDiversion.GetTextureKit|C_AnimaDiversion.GetTextureKit]]() : <span style="font-size:smaller; color:#4ec9b0">textureKit</span>
+
: [[API C_AnimaDiversion.GetTextureKit|C_AnimaDiversion.GetTextureKit]]() : <span class="apiret">textureKit</span>
 
: [[API C_AnimaDiversion.OpenAnimaDiversionUI|C_AnimaDiversion.OpenAnimaDiversionUI]]()
 
: [[API C_AnimaDiversion.OpenAnimaDiversionUI|C_AnimaDiversion.OpenAnimaDiversionUI]]()
: [[API C_AnimaDiversion.SelectAnimaNode|C_AnimaDiversion.SelectAnimaNode]](<span style="font-size:smaller; color:#ecbc2a">talentID, temporary</span>)
+
: [[API C_AnimaDiversion.SelectAnimaNode|C_AnimaDiversion.SelectAnimaNode]](<span class="apiarg">talentID, temporary</span>)
: [[API C_Item.IsAnimaItemByID|C_Item.IsAnimaItemByID]](<span style="font-size:smaller; color:#ecbc2a">itemInfo</span>) : <span style="font-size:smaller; color:#4ec9b0">isAnimaItem</span>
+
: [[API C_Item.IsAnimaItemByID|C_Item.IsAnimaItemByID]](<span class="apiarg">itemInfo</span>) : <span class="apiret">isAnimaItem</span>
   
 
==== Covenants ====
 
==== Covenants ====
 
[[Covenant]]s were added in [[Patch 9.0.1]]
 
[[Covenant]]s were added in [[Patch 9.0.1]]
: [[API C_Covenants.GetActiveCovenantID|C_Covenants.GetActiveCovenantID]]() : <span style="font-size:smaller; color:#4ec9b0">covenantID</span>
+
: [[API C_Covenants.GetActiveCovenantID|C_Covenants.GetActiveCovenantID]]() : <span class="apiret">covenantID</span>
: [[API C_Covenants.GetCovenantData|C_Covenants.GetCovenantData]](<span style="font-size:smaller; color:#ecbc2a">covenantID</span>) : <span style="font-size:smaller; color:#4ec9b0">data</span>
+
: [[API C_Covenants.GetCovenantData|C_Covenants.GetCovenantData]](<span class="apiarg">covenantID</span>) : <span class="apiret">data</span>
: [[API C_Covenants.GetCovenantIDs|C_Covenants.GetCovenantIDs]]() : <span style="font-size:smaller; color:#4ec9b0">covenantID</span>
+
: [[API C_Covenants.GetCovenantIDs|C_Covenants.GetCovenantIDs]]() : <span class="apiret">covenantID</span>
: [[API C_CovenantCallings.AreCallingsUnlocked|C_CovenantCallings.AreCallingsUnlocked]]() : <span style="font-size:smaller; color:#4ec9b0">unlocked</span>
+
: [[API C_CovenantCallings.AreCallingsUnlocked|C_CovenantCallings.AreCallingsUnlocked]]() : <span class="apiret">unlocked</span>
 
: [[API C_CovenantCallings.RequestCallings|C_CovenantCallings.RequestCallings]]()
 
: [[API C_CovenantCallings.RequestCallings|C_CovenantCallings.RequestCallings]]()
 
: [[API C_CovenantPreview.CloseFromUI|C_CovenantPreview.CloseFromUI]]()
 
: [[API C_CovenantPreview.CloseFromUI|C_CovenantPreview.CloseFromUI]]()
: [[API C_CovenantPreview.GetCovenantInfoForPlayerChoiceResponseID|C_CovenantPreview.GetCovenantInfoForPlayerChoiceResponseID]](<span style="font-size:smaller; color:#ecbc2a">playerChoiceResponseID</span>) : <span style="font-size:smaller; color:#4ec9b0">previewInfo</span>
+
: [[API C_CovenantPreview.GetCovenantInfoForPlayerChoiceResponseID|C_CovenantPreview.GetCovenantInfoForPlayerChoiceResponseID]](<span class="apiarg">playerChoiceResponseID</span>) : <span class="apiret">previewInfo</span>
: [[API C_CovenantSanctumUI.CanAccessReservoir|C_CovenantSanctumUI.CanAccessReservoir]]() : <span style="font-size:smaller; color:#4ec9b0">canAccess</span>
+
: [[API C_CovenantSanctumUI.CanAccessReservoir|C_CovenantSanctumUI.CanAccessReservoir]]() : <span class="apiret">canAccess</span>
: [[API C_CovenantSanctumUI.CanDepositAnima|C_CovenantSanctumUI.CanDepositAnima]]() : <span style="font-size:smaller; color:#4ec9b0">canDeposit</span>
+
: [[API C_CovenantSanctumUI.CanDepositAnima|C_CovenantSanctumUI.CanDepositAnima]]() : <span class="apiret">canDeposit</span>
 
: [[API C_CovenantSanctumUI.DepositAnima|C_CovenantSanctumUI.DepositAnima]]()
 
: [[API C_CovenantSanctumUI.DepositAnima|C_CovenantSanctumUI.DepositAnima]]()
 
: [[API C_CovenantSanctumUI.EndInteraction|C_CovenantSanctumUI.EndInteraction]]()
 
: [[API C_CovenantSanctumUI.EndInteraction|C_CovenantSanctumUI.EndInteraction]]()
: [[API C_CovenantSanctumUI.GetAnimaInfo|C_CovenantSanctumUI.GetAnimaInfo]]() : <span style="font-size:smaller; color:#4ec9b0">currencyID, maxDisplayableValue</span>
+
: [[API C_CovenantSanctumUI.GetAnimaInfo|C_CovenantSanctumUI.GetAnimaInfo]]() : <span class="apiret">currencyID, maxDisplayableValue</span>
: [[API C_CovenantSanctumUI.GetCurrentTalentTreeID|C_CovenantSanctumUI.GetCurrentTalentTreeID]]() : <span style="font-size:smaller; color:#4ec9b0">currentTalentTreeID</span>
+
: [[API C_CovenantSanctumUI.GetCurrentTalentTreeID|C_CovenantSanctumUI.GetCurrentTalentTreeID]]() : <span class="apiret">currentTalentTreeID</span>
: [[API C_CovenantSanctumUI.GetFeatures|C_CovenantSanctumUI.GetFeatures]]() : <span style="font-size:smaller; color:#4ec9b0">features</span>
+
: [[API C_CovenantSanctumUI.GetFeatures|C_CovenantSanctumUI.GetFeatures]]() : <span class="apiret">features</span>
: [[API C_CovenantSanctumUI.GetRenownLevel|C_CovenantSanctumUI.GetRenownLevel]]() : <span style="font-size:smaller; color:#4ec9b0">level</span>
+
: [[API C_CovenantSanctumUI.GetRenownLevel|C_CovenantSanctumUI.GetRenownLevel]]() : <span class="apiret">level</span>
: [[API C_CovenantSanctumUI.GetRenownLevels|C_CovenantSanctumUI.GetRenownLevels]](<span style="font-size:smaller; color:#ecbc2a">covenantID</span>) : <span style="font-size:smaller; color:#4ec9b0">levels</span>
+
: [[API C_CovenantSanctumUI.GetRenownLevels|C_CovenantSanctumUI.GetRenownLevels]](<span class="apiarg">covenantID</span>) : <span class="apiret">levels</span>
: [[API C_CovenantSanctumUI.GetRenownRewardsForLevel|C_CovenantSanctumUI.GetRenownRewardsForLevel]](<span style="font-size:smaller; color:#ecbc2a">covenantID, renownLevel</span>) : <span style="font-size:smaller; color:#4ec9b0">rewards</span>
+
: [[API C_CovenantSanctumUI.GetRenownRewardsForLevel|C_CovenantSanctumUI.GetRenownRewardsForLevel]](<span class="apiarg">covenantID, renownLevel</span>) : <span class="apiret">rewards</span>
: [[API C_CovenantSanctumUI.GetSanctumType|C_CovenantSanctumUI.GetSanctumType]]() : <span style="font-size:smaller; color:#4ec9b0">sanctumType</span>
+
: [[API C_CovenantSanctumUI.GetSanctumType|C_CovenantSanctumUI.GetSanctumType]]() : <span class="apiret">sanctumType</span>
: [[API C_CovenantSanctumUI.GetSoulCurrencies|C_CovenantSanctumUI.GetSoulCurrencies]]() : <span style="font-size:smaller; color:#4ec9b0">currencyIDs</span>
+
: [[API C_CovenantSanctumUI.GetSoulCurrencies|C_CovenantSanctumUI.GetSoulCurrencies]]() : <span class="apiret">currencyIDs</span>
: [[API C_CovenantSanctumUI.HasMaximumRenown|C_CovenantSanctumUI.HasMaximumRenown]]() : <span style="font-size:smaller; color:#4ec9b0">hasMaxRenown</span>
+
: [[API C_CovenantSanctumUI.HasMaximumRenown|C_CovenantSanctumUI.HasMaximumRenown]]() : <span class="apiret">hasMaxRenown</span>
: [[API C_CovenantSanctumUI.IsPlayerInRenownCatchUpMode|C_CovenantSanctumUI.IsPlayerInRenownCatchUpMode]]() : <span style="font-size:smaller; color:#4ec9b0">isInCatchUpMode</span>
+
: [[API C_CovenantSanctumUI.IsPlayerInRenownCatchUpMode|C_CovenantSanctumUI.IsPlayerInRenownCatchUpMode]]() : <span class="apiret">isInCatchUpMode</span>
: [[API C_CovenantSanctumUI.IsWeeklyRenownCapped|C_CovenantSanctumUI.IsWeeklyRenownCapped]]() : <span style="font-size:smaller; color:#4ec9b0">isWeeklyCapped</span>
+
: [[API C_CovenantSanctumUI.IsWeeklyRenownCapped|C_CovenantSanctumUI.IsWeeklyRenownCapped]]() : <span class="apiret">isWeeklyCapped</span>
 
: [[API C_CovenantSanctumUI.RequestCatchUpState|C_CovenantSanctumUI.RequestCatchUpState]]()
 
: [[API C_CovenantSanctumUI.RequestCatchUpState|C_CovenantSanctumUI.RequestCatchUpState]]()
   
Line 5,147: Line 5,244:
 
Shadowlands legendaries can be crafted in the [[Forge of Domination]].
 
Shadowlands legendaries can be crafted in the [[Forge of Domination]].
 
: [[API C_LegendaryCrafting.CloseRuneforgeInteraction|C_LegendaryCrafting.CloseRuneforgeInteraction]]()
 
: [[API C_LegendaryCrafting.CloseRuneforgeInteraction|C_LegendaryCrafting.CloseRuneforgeInteraction]]()
: [[API C_LegendaryCrafting.CraftRuneforgeLegendary|C_LegendaryCrafting.CraftRuneforgeLegendary]](<span style="font-size:smaller; color:#ecbc2a">description</span>)
+
: [[API C_LegendaryCrafting.CraftRuneforgeLegendary|C_LegendaryCrafting.CraftRuneforgeLegendary]](<span class="apiarg">description</span>)
: [[API C_LegendaryCrafting.GetRuneforgeItemPreviewInfo|C_LegendaryCrafting.GetRuneforgeItemPreviewInfo]](<span style="font-size:smaller; color:#ecbc2a">baseItem [, runeforgePowerID, modifiers]</span>) : <span style="font-size:smaller; color:#4ec9b0">info</span>
+
: [[API C_LegendaryCrafting.GetRuneforgeItemPreviewInfo|C_LegendaryCrafting.GetRuneforgeItemPreviewInfo]](<span class="apiarg">baseItem [, runeforgePowerID, modifiers]</span>) : <span class="apiret">info</span>
: [[API C_LegendaryCrafting.GetRuneforgeLegendaryComponentInfo|C_LegendaryCrafting.GetRuneforgeLegendaryComponentInfo]](<span style="font-size:smaller; color:#ecbc2a">runeforgeLegendary</span>) : <span style="font-size:smaller; color:#4ec9b0">componentInfo</span>
+
: [[API C_LegendaryCrafting.GetRuneforgeLegendaryComponentInfo|C_LegendaryCrafting.GetRuneforgeLegendaryComponentInfo]](<span class="apiarg">runeforgeLegendary</span>) : <span class="apiret">componentInfo</span>
: [[API C_LegendaryCrafting.GetRuneforgeLegendaryCost|C_LegendaryCrafting.GetRuneforgeLegendaryCost]](<span style="font-size:smaller; color:#ecbc2a">baseItem</span>) : <span style="font-size:smaller; color:#4ec9b0">cost</span>
+
: [[API C_LegendaryCrafting.GetRuneforgeLegendaryCost|C_LegendaryCrafting.GetRuneforgeLegendaryCost]](<span class="apiarg">baseItem</span>) : <span class="apiret">cost</span>
: [[API C_LegendaryCrafting.GetRuneforgeLegendaryCraftSpellID|C_LegendaryCrafting.GetRuneforgeLegendaryCraftSpellID]]() : <span style="font-size:smaller; color:#4ec9b0">spellID</span>
+
: [[API C_LegendaryCrafting.GetRuneforgeLegendaryCraftSpellID|C_LegendaryCrafting.GetRuneforgeLegendaryCraftSpellID]]() : <span class="apiret">spellID</span>
: [[API C_LegendaryCrafting.GetRuneforgeLegendaryCurrencies|C_LegendaryCrafting.GetRuneforgeLegendaryCurrencies]]() : <span style="font-size:smaller; color:#4ec9b0">currencies</span>
+
: [[API C_LegendaryCrafting.GetRuneforgeLegendaryCurrencies|C_LegendaryCrafting.GetRuneforgeLegendaryCurrencies]]() : <span class="apiret">currencies</span>
: [[API C_LegendaryCrafting.GetRuneforgeLegendaryUpgradeCost|C_LegendaryCrafting.GetRuneforgeLegendaryUpgradeCost]](<span style="font-size:smaller; color:#ecbc2a">runeforgeLegendary, upgradeItem</span>) : <span style="font-size:smaller; color:#4ec9b0">cost</span>
+
: [[API C_LegendaryCrafting.GetRuneforgeLegendaryUpgradeCost|C_LegendaryCrafting.GetRuneforgeLegendaryUpgradeCost]](<span class="apiarg">runeforgeLegendary, upgradeItem</span>) : <span class="apiret">cost</span>
: [[API C_LegendaryCrafting.GetRuneforgeModifierInfo|C_LegendaryCrafting.GetRuneforgeModifierInfo]](<span style="font-size:smaller; color:#ecbc2a">baseItem, [powerID], addedModifierIndex, modifiers</span>) : <span style="font-size:smaller; color:#4ec9b0">name, description</span>
+
: [[API C_LegendaryCrafting.GetRuneforgeModifierInfo|C_LegendaryCrafting.GetRuneforgeModifierInfo]](<span class="apiarg">baseItem, [powerID], addedModifierIndex, modifiers</span>) : <span class="apiret">name, description</span>
: [[API C_LegendaryCrafting.GetRuneforgeModifiers|C_LegendaryCrafting.GetRuneforgeModifiers]]() : <span style="font-size:smaller; color:#4ec9b0">modifiedReagentItemIDs</span>
+
: [[API C_LegendaryCrafting.GetRuneforgeModifiers|C_LegendaryCrafting.GetRuneforgeModifiers]]() : <span class="apiret">modifiedReagentItemIDs</span>
: [[API C_LegendaryCrafting.GetRuneforgePowerInfo|C_LegendaryCrafting.GetRuneforgePowerInfo]](<span style="font-size:smaller; color:#ecbc2a">runeforgePowerID</span>) : <span style="font-size:smaller; color:#4ec9b0">power</span>
+
: [[API C_LegendaryCrafting.GetRuneforgePowerInfo|C_LegendaryCrafting.GetRuneforgePowerInfo]](<span class="apiarg">runeforgePowerID</span>) : <span class="apiret">power</span>
: [[API C_LegendaryCrafting.GetRuneforgePowers|C_LegendaryCrafting.GetRuneforgePowers]](<span style="font-size:smaller; color:#ecbc2a">[baseItem, filter]</span>) : <span style="font-size:smaller; color:#4ec9b0">specRuneforgePowerIDs, otherSpecRuneforgePowerIDs</span>
+
: [[API C_LegendaryCrafting.GetRuneforgePowers|C_LegendaryCrafting.GetRuneforgePowers]](<span class="apiarg">[baseItem, filter]</span>) : <span class="apiret">primaryRuneforgePowerIDs, otherRuneforgePowerIDs</span>
: [[API C_LegendaryCrafting.GetRuneforgePowersByClassAndSpec|C_LegendaryCrafting.GetRuneforgePowersByClassAndSpec]](<span style="font-size:smaller; color:#ecbc2a">[classID, specID, filter]</span>) : <span style="font-size:smaller; color:#4ec9b0">runeforgePowerIDs</span>
+
: [[API C_LegendaryCrafting.GetRuneforgePowersByClassSpecAndCovenant|C_LegendaryCrafting.GetRuneforgePowersByClassSpecAndCovenant]](<span class="apiarg">[classID, specID, covenantID, filter]</span>) : <span class="apiret">runeforgePowerIDs</span>
: [[API C_LegendaryCrafting.GetRuneforgePowerSlots|C_LegendaryCrafting.GetRuneforgePowerSlots]](<span style="font-size:smaller; color:#ecbc2a">runeforgePowerID</span>) : <span style="font-size:smaller; color:#4ec9b0">slotNames</span>
+
: [[API C_LegendaryCrafting.GetRuneforgePowerSlots|C_LegendaryCrafting.GetRuneforgePowerSlots]](<span class="apiarg">runeforgePowerID</span>) : <span class="apiret">slotNames</span>
: [[API C_LegendaryCrafting.IsRuneforgeLegendary|C_LegendaryCrafting.IsRuneforgeLegendary]](<span style="font-size:smaller; color:#ecbc2a">item</span>) : <span style="font-size:smaller; color:#4ec9b0">isRuneforgeLegendary</span>
+
: [[API C_LegendaryCrafting.IsRuneforgeLegendary|C_LegendaryCrafting.IsRuneforgeLegendary]](<span class="apiarg">item</span>) : <span class="apiret">isRuneforgeLegendary</span>
: [[API C_LegendaryCrafting.IsRuneforgeLegendaryMaxLevel|C_LegendaryCrafting.IsRuneforgeLegendaryMaxLevel]](<span style="font-size:smaller; color:#ecbc2a">runeforgeLegendary</span>) : <span style="font-size:smaller; color:#4ec9b0">isMaxLevel</span>
+
: [[API C_LegendaryCrafting.IsRuneforgeLegendaryMaxLevel|C_LegendaryCrafting.IsRuneforgeLegendaryMaxLevel]](<span class="apiarg">runeforgeLegendary</span>) : <span class="apiret">isMaxLevel</span>
: [[API C_LegendaryCrafting.IsUpgradeItemValidForRuneforgeLegendary|C_LegendaryCrafting.IsUpgradeItemValidForRuneforgeLegendary]](<span style="font-size:smaller; color:#ecbc2a">runeforgeLegendary, upgradeItem</span>) : <span style="font-size:smaller; color:#4ec9b0">isValid</span>
+
: [[API C_LegendaryCrafting.IsUpgradeItemValidForRuneforgeLegendary|C_LegendaryCrafting.IsUpgradeItemValidForRuneforgeLegendary]](<span class="apiarg">runeforgeLegendary, upgradeItem</span>) : <span class="apiret">isValid</span>
: [[API C_LegendaryCrafting.IsValidRuneforgeBaseItem|C_LegendaryCrafting.IsValidRuneforgeBaseItem]](<span style="font-size:smaller; color:#ecbc2a">baseItem</span>) : <span style="font-size:smaller; color:#4ec9b0">isValid</span>
+
: [[API C_LegendaryCrafting.IsValidRuneforgeBaseItem|C_LegendaryCrafting.IsValidRuneforgeBaseItem]](<span class="apiarg">baseItem</span>) : <span class="apiret">isValid</span>
: [[API C_LegendaryCrafting.MakeRuneforgeCraftDescription|C_LegendaryCrafting.MakeRuneforgeCraftDescription]](<span style="font-size:smaller; color:#ecbc2a">baseItem, runeforgePowerID, modifiers</span>) : <span style="font-size:smaller; color:#4ec9b0">description</span>
+
: [[API C_LegendaryCrafting.MakeRuneforgeCraftDescription|C_LegendaryCrafting.MakeRuneforgeCraftDescription]](<span class="apiarg">baseItem, runeforgePowerID, modifiers</span>) : <span class="apiret">description</span>
: [[API C_LegendaryCrafting.UpgradeRuneforgeLegendary|C_LegendaryCrafting.UpgradeRuneforgeLegendary]](<span style="font-size:smaller; color:#ecbc2a">runeforgeLegendary, upgradeItem</span>)
+
: [[API C_LegendaryCrafting.UpgradeRuneforgeLegendary|C_LegendaryCrafting.UpgradeRuneforgeLegendary]](<span class="apiarg">runeforgeLegendary, upgradeItem</span>)
  +
: <small>DEPRECATED</small> [[API C_LegendaryCrafting.GetRuneforgePowersByClassAndSpec|C_LegendaryCrafting.GetRuneforgePowersByClassAndSpec]](<span class="apiarg">[classID, specID, filter]</span>) : <span class="apiret">runeforgePowerIDs</span>
   
 
==== Soulbinds ====
 
==== Soulbinds ====
 
Relates to [[Soulbinding]] and [[Conduit]]s.
 
Relates to [[Soulbinding]] and [[Conduit]]s.
: [[API C_Soulbinds.ActivateSoulbind|C_Soulbinds.ActivateSoulbind]](<span style="font-size:smaller; color:#ecbc2a">soulbindID</span>)
+
: [[API C_Soulbinds.ActivateSoulbind|C_Soulbinds.ActivateSoulbind]](<span class="apiarg">soulbindID</span>)
: [[API C_Soulbinds.CanActivateSoulbind|C_Soulbinds.CanActivateSoulbind]](<span style="font-size:smaller; color:#ecbc2a">soulbindID</span>) : <span style="font-size:smaller; color:#4ec9b0">result, errorDescription</span>
+
: [[API C_Soulbinds.CanActivateSoulbind|C_Soulbinds.CanActivateSoulbind]](<span class="apiarg">soulbindID</span>) : <span class="apiret">result, errorDescription</span>
: [[API C_Soulbinds.CanModifySoulbind|C_Soulbinds.CanModifySoulbind]]() : <span style="font-size:smaller; color:#4ec9b0">result</span>
+
: [[API C_Soulbinds.CanModifySoulbind|C_Soulbinds.CanModifySoulbind]]() : <span class="apiret">result</span>
: [[API C_Soulbinds.CanResetConduitsInSoulbind|C_Soulbinds.CanResetConduitsInSoulbind]](<span style="font-size:smaller; color:#ecbc2a">soulbindID</span>) : <span style="font-size:smaller; color:#4ec9b0">result, errorDescription</span>
+
: [[API C_Soulbinds.CanResetConduitsInSoulbind|C_Soulbinds.CanResetConduitsInSoulbind]](<span class="apiarg">soulbindID</span>) : <span class="apiret">result, errorDescription</span>
: [[API C_Soulbinds.CanSwitchActiveSoulbindTreeBranch|C_Soulbinds.CanSwitchActiveSoulbindTreeBranch]]() : <span style="font-size:smaller; color:#4ec9b0">result</span>
+
: [[API C_Soulbinds.CanSwitchActiveSoulbindTreeBranch|C_Soulbinds.CanSwitchActiveSoulbindTreeBranch]]() : <span class="apiret">result</span>
 
: [[API C_Soulbinds.CloseUI|C_Soulbinds.CloseUI]]()
 
: [[API C_Soulbinds.CloseUI|C_Soulbinds.CloseUI]]()
: [[API C_Soulbinds.CommitPendingConduitsInSoulbind|C_Soulbinds.CommitPendingConduitsInSoulbind]](<span style="font-size:smaller; color:#ecbc2a">soulbindID</span>)
+
: [[API C_Soulbinds.CommitPendingConduitsInSoulbind|C_Soulbinds.CommitPendingConduitsInSoulbind]](<span class="apiarg">soulbindID</span>)
: [[API C_Soulbinds.FindNodeIDActuallyInstalled|C_Soulbinds.FindNodeIDActuallyInstalled]](<span style="font-size:smaller; color:#ecbc2a">soulbindID, conduitID</span>) : <span style="font-size:smaller; color:#4ec9b0">nodeID</span>
+
: [[API C_Soulbinds.FindNodeIDActuallyInstalled|C_Soulbinds.FindNodeIDActuallyInstalled]](<span class="apiarg">soulbindID, conduitID</span>) : <span class="apiret">nodeID</span>
: [[API C_Soulbinds.FindNodeIDAppearingInstalled|C_Soulbinds.FindNodeIDAppearingInstalled]](<span style="font-size:smaller; color:#ecbc2a">soulbindID, conduitID</span>) : <span style="font-size:smaller; color:#4ec9b0">nodeID</span>
+
: [[API C_Soulbinds.FindNodeIDAppearingInstalled|C_Soulbinds.FindNodeIDAppearingInstalled]](<span class="apiarg">soulbindID, conduitID</span>) : <span class="apiret">nodeID</span>
: [[API C_Soulbinds.FindNodeIDPendingInstall|C_Soulbinds.FindNodeIDPendingInstall]](<span style="font-size:smaller; color:#ecbc2a">soulbindID, conduitID</span>) : <span style="font-size:smaller; color:#4ec9b0">nodeID</span>
+
: [[API C_Soulbinds.FindNodeIDPendingInstall|C_Soulbinds.FindNodeIDPendingInstall]](<span class="apiarg">soulbindID, conduitID</span>) : <span class="apiret">nodeID</span>
: [[API C_Soulbinds.FindNodeIDPendingUninstall|C_Soulbinds.FindNodeIDPendingUninstall]](<span style="font-size:smaller; color:#ecbc2a">soulbindID, conduitID</span>) : <span style="font-size:smaller; color:#4ec9b0">nodeID</span>
+
: [[API C_Soulbinds.FindNodeIDPendingUninstall|C_Soulbinds.FindNodeIDPendingUninstall]](<span class="apiarg">soulbindID, conduitID</span>) : <span class="apiret">nodeID</span>
: [[API C_Soulbinds.GetActiveSoulbindID|C_Soulbinds.GetActiveSoulbindID]]() : <span style="font-size:smaller; color:#4ec9b0">soulbindID</span>
+
: [[API C_Soulbinds.GetActiveSoulbindID|C_Soulbinds.GetActiveSoulbindID]]() : <span class="apiret">soulbindID</span>
: [[API C_Soulbinds.GetConduitCharges|C_Soulbinds.GetConduitCharges]]() : <span style="font-size:smaller; color:#4ec9b0">charges</span>
+
: [[API C_Soulbinds.GetConduitCollection|C_Soulbinds.GetConduitCollection]](<span class="apiarg">conduitType</span>) : <span class="apiret">collectionData</span>
: [[API C_Soulbinds.GetConduitChargesCapacity|C_Soulbinds.GetConduitChargesCapacity]]() : <span style="font-size:smaller; color:#4ec9b0">charges</span>
+
: [[API C_Soulbinds.GetConduitCollectionCount|C_Soulbinds.GetConduitCollectionCount]]() : <span class="apiret">count</span>
: [[API C_Soulbinds.GetConduitCollection|C_Soulbinds.GetConduitCollection]](<span style="font-size:smaller; color:#ecbc2a">conduitType</span>) : <span style="font-size:smaller; color:#4ec9b0">collectionData</span>
+
: [[API C_Soulbinds.GetConduitCollectionData|C_Soulbinds.GetConduitCollectionData]](<span class="apiarg">conduitID</span>) : <span class="apiret">collectionData</span>
: [[API C_Soulbinds.GetConduitCollectionCount|C_Soulbinds.GetConduitCollectionCount]]() : <span style="font-size:smaller; color:#4ec9b0">count</span>
+
: [[API C_Soulbinds.GetConduitCollectionDataAtCursor|C_Soulbinds.GetConduitCollectionDataAtCursor]]() : <span class="apiret">collectionData</span>
: [[API C_Soulbinds.GetConduitCollectionData|C_Soulbinds.GetConduitCollectionData]](<span style="font-size:smaller; color:#ecbc2a">conduitID</span>) : <span style="font-size:smaller; color:#4ec9b0">collectionData</span>
+
: [[API C_Soulbinds.GetConduitCollectionDataByVirtualID|C_Soulbinds.GetConduitCollectionDataByVirtualID]](<span class="apiarg">virtualID</span>) : <span class="apiret">collectionData</span>
: [[API C_Soulbinds.GetConduitCollectionDataAtCursor|C_Soulbinds.GetConduitCollectionDataAtCursor]]() : <span style="font-size:smaller; color:#4ec9b0">collectionData</span>
+
: [[API C_Soulbinds.GetConduitDisplayed|C_Soulbinds.GetConduitDisplayed]](<span class="apiarg">nodeID</span>) : <span class="apiret">conduitID</span>
: [[API C_Soulbinds.GetConduitCollectionDataByVirtualID|C_Soulbinds.GetConduitCollectionDataByVirtualID]](<span style="font-size:smaller; color:#ecbc2a">virtualID</span>) : <span style="font-size:smaller; color:#4ec9b0">collectionData</span>
+
: [[API C_Soulbinds.GetConduitHyperlink|C_Soulbinds.GetConduitHyperlink]](<span class="apiarg">conduitID, rank</span>) : <span class="apiret">link</span>
: [[API C_Soulbinds.GetConduitDisplayed|C_Soulbinds.GetConduitDisplayed]](<span style="font-size:smaller; color:#ecbc2a">nodeID</span>) : <span style="font-size:smaller; color:#4ec9b0">conduitID</span>
+
: [[API C_Soulbinds.GetConduitIDPendingInstall|C_Soulbinds.GetConduitIDPendingInstall]](<span class="apiarg">nodeID</span>) : <span class="apiret">conduitID</span>
: [[API C_Soulbinds.GetConduitHyperlink|C_Soulbinds.GetConduitHyperlink]](<span style="font-size:smaller; color:#ecbc2a">conduitID, rank</span>) : <span style="font-size:smaller; color:#4ec9b0">link</span>
+
: [[API C_Soulbinds.GetConduitQuality|C_Soulbinds.GetConduitQuality]](<span class="apiarg">conduitID, rank</span>) : <span class="apiret">quality</span>
: [[API C_Soulbinds.GetConduitIDPendingInstall|C_Soulbinds.GetConduitIDPendingInstall]](<span style="font-size:smaller; color:#ecbc2a">nodeID</span>) : <span style="font-size:smaller; color:#4ec9b0">conduitID</span>
+
: [[API C_Soulbinds.GetConduitRank|C_Soulbinds.GetConduitRank]](<span class="apiarg">conduitID</span>) : <span class="apiret">conduitRank</span>
: <small>DEPRECATED</small> [[API C_Soulbinds.GetConduitItemLevel|C_Soulbinds.GetConduitItemLevel]](<span style="font-size:smaller; color:#ecbc2a">conduitID, rank</span>) : <span style="font-size:smaller; color:#4ec9b0">itemLevel</span>
+
: [[API C_Soulbinds.GetConduitSpellID|C_Soulbinds.GetConduitSpellID]](<span class="apiarg">conduitID, conduitRank</span>) : <span class="apiret">spellID</span>
: [[API C_Soulbinds.GetConduitQuality|C_Soulbinds.GetConduitQuality]](<span style="font-size:smaller; color:#ecbc2a">conduitID, rank</span>) : <span style="font-size:smaller; color:#4ec9b0">quality</span>
+
: [[API C_Soulbinds.GetInstalledConduitID|C_Soulbinds.GetInstalledConduitID]](<span class="apiarg">nodeID</span>) : <span class="apiret">conduitID</span>
: [[API C_Soulbinds.GetConduitRank|C_Soulbinds.GetConduitRank]](<span style="font-size:smaller; color:#ecbc2a">conduitID</span>) : <span style="font-size:smaller; color:#4ec9b0">conduitRank</span>
+
: [[API C_Soulbinds.GetNode|C_Soulbinds.GetNode]](<span class="apiarg">nodeID</span>) : <span class="apiret">node</span>
: [[API C_Soulbinds.GetConduitSpellID|C_Soulbinds.GetConduitSpellID]](<span style="font-size:smaller; color:#ecbc2a">conduitID, conduitRank</span>) : <span style="font-size:smaller; color:#4ec9b0">spellID</span>
+
: [[API C_Soulbinds.GetSoulbindData|C_Soulbinds.GetSoulbindData]](<span class="apiarg">soulbindID</span>) : <span class="apiret">data</span>
: [[API C_Soulbinds.GetInstalledConduitID|C_Soulbinds.GetInstalledConduitID]](<span style="font-size:smaller; color:#ecbc2a">nodeID</span>) : <span style="font-size:smaller; color:#4ec9b0">conduitID</span>
+
: [[API C_Soulbinds.GetSpecsAssignedToSoulbind|C_Soulbinds.GetSpecsAssignedToSoulbind]](<span class="apiarg">soulbindID</span>) : <span class="apiret">specIDs</span>
: [[API C_Soulbinds.GetNode|C_Soulbinds.GetNode]](<span style="font-size:smaller; color:#ecbc2a">nodeID</span>) : <span style="font-size:smaller; color:#4ec9b0">node</span>
+
: [[API C_Soulbinds.GetTree|C_Soulbinds.GetTree]](<span class="apiarg">treeID</span>) : <span class="apiret">tree</span>
: [[API C_Soulbinds.GetSoulbindData|C_Soulbinds.GetSoulbindData]](<span style="font-size:smaller; color:#ecbc2a">soulbindID</span>) : <span style="font-size:smaller; color:#4ec9b0">data</span>
+
: [[API C_Soulbinds.HasAnyInstalledConduitInSoulbind|C_Soulbinds.HasAnyInstalledConduitInSoulbind]](<span class="apiarg">soulbindID</span>) : <span class="apiret">result</span>
: [[API C_Soulbinds.GetTotalConduitChargesPending|C_Soulbinds.GetTotalConduitChargesPending]]() : <span style="font-size:smaller; color:#4ec9b0">count</span>
+
: [[API C_Soulbinds.HasAnyPendingConduits|C_Soulbinds.HasAnyPendingConduits]]() : <span class="apiret">result</span>
: [[API C_Soulbinds.GetTotalConduitChargesPendingInSoulbind|C_Soulbinds.GetTotalConduitChargesPendingInSoulbind]](<span style="font-size:smaller; color:#ecbc2a">soulbindID</span>) : <span style="font-size:smaller; color:#4ec9b0">count</span>
+
: [[API C_Soulbinds.HasPendingConduitsInSoulbind|C_Soulbinds.HasPendingConduitsInSoulbind]](<span class="apiarg">soulbindID</span>) : <span class="apiret">result</span>
: [[API C_Soulbinds.GetTree|C_Soulbinds.GetTree]](<span style="font-size:smaller; color:#ecbc2a">treeID</span>) : <span style="font-size:smaller; color:#4ec9b0">tree</span>
+
: [[API C_Soulbinds.IsConduitInstalled|C_Soulbinds.IsConduitInstalled]](<span class="apiarg">nodeID</span>) : <span class="apiret">result</span>
: [[API C_Soulbinds.HasAnyInstalledConduitInSoulbind|C_Soulbinds.HasAnyInstalledConduitInSoulbind]](<span style="font-size:smaller; color:#ecbc2a">soulbindID</span>) : <span style="font-size:smaller; color:#4ec9b0">result</span>
+
: [[API C_Soulbinds.IsConduitInstalledInSoulbind|C_Soulbinds.IsConduitInstalledInSoulbind]](<span class="apiarg">soulbindID, conduitID</span>) : <span class="apiret">result</span>
: [[API C_Soulbinds.HasAnyPendingConduits|C_Soulbinds.HasAnyPendingConduits]]() : <span style="font-size:smaller; color:#4ec9b0">result</span>
+
: [[API C_Soulbinds.IsItemConduitByItemInfo|C_Soulbinds.IsItemConduitByItemInfo]](<span class="apiarg">itemInfo</span>) : <span class="apiret">result</span>
: [[API C_Soulbinds.HasPendingConduitsInSoulbind|C_Soulbinds.HasPendingConduitsInSoulbind]](<span style="font-size:smaller; color:#ecbc2a">soulbindID</span>) : <span style="font-size:smaller; color:#4ec9b0">result</span>
+
: [[API C_Soulbinds.IsNodePendingModify|C_Soulbinds.IsNodePendingModify]](<span class="apiarg">nodeID</span>) : <span class="apiret">result</span>
: [[API C_Soulbinds.IsConduitInstalled|C_Soulbinds.IsConduitInstalled]](<span style="font-size:smaller; color:#ecbc2a">nodeID</span>) : <span style="font-size:smaller; color:#4ec9b0">result</span>
+
: [[API C_Soulbinds.IsUnselectedConduitPendingInSoulbind|C_Soulbinds.IsUnselectedConduitPendingInSoulbind]](<span class="apiarg">soulbindID</span>) : <span class="apiret">result</span>
: [[API C_Soulbinds.IsConduitInstalledInSoulbind|C_Soulbinds.IsConduitInstalledInSoulbind]](<span style="font-size:smaller; color:#ecbc2a">soulbindID, conduitID</span>) : <span style="font-size:smaller; color:#4ec9b0">result</span>
+
: [[API C_Soulbinds.ModifyNode|C_Soulbinds.ModifyNode]](<span class="apiarg">nodeID, conduitID, type</span>)
: [[API C_Soulbinds.IsItemConduitByItemInfo|C_Soulbinds.IsItemConduitByItemInfo]](<span style="font-size:smaller; color:#ecbc2a">itemInfo</span>) : <span style="font-size:smaller; color:#4ec9b0">result</span>
+
: [[API C_Soulbinds.SelectNode|C_Soulbinds.SelectNode]](<span class="apiarg">nodeID</span>)
: [[API C_Soulbinds.IsNodePendingModify|C_Soulbinds.IsNodePendingModify]](<span style="font-size:smaller; color:#ecbc2a">nodeID</span>) : <span style="font-size:smaller; color:#4ec9b0">result</span>
+
: [[API C_Soulbinds.UnmodifyNode|C_Soulbinds.UnmodifyNode]](<span class="apiarg">nodeID</span>)
: [[API C_Soulbinds.IsUnselectedConduitPendingInSoulbind|C_Soulbinds.IsUnselectedConduitPendingInSoulbind]](<span style="font-size:smaller; color:#ecbc2a">soulbindID</span>) : <span style="font-size:smaller; color:#4ec9b0">result</span>
+
: [[API C_Item.IsItemConduit|C_Item.IsItemConduit]](<span class="apiarg">itemLoc</span>) : <span class="apiret">isConduit</span>
: [[API C_Soulbinds.ModifyNode|C_Soulbinds.ModifyNode]](<span style="font-size:smaller; color:#ecbc2a">nodeID, conduitID, type</span>)
 
: [[API C_Soulbinds.SelectNode|C_Soulbinds.SelectNode]](<span style="font-size:smaller; color:#ecbc2a">nodeID</span>)
 
: [[API C_Soulbinds.UnmodifyNode|C_Soulbinds.UnmodifyNode]](<span style="font-size:smaller; color:#ecbc2a">nodeID</span>)
 
: [[API C_Item.IsItemConduit|C_Item.IsItemConduit]](<span style="font-size:smaller; color:#ecbc2a">itemLoc</span>) : <span style="font-size:smaller; color:#4ec9b0">isConduit</span>
 
 
: [[API SetCursorVirtualItem|SetCursorVirtualItem]]()
 
: [[API SetCursorVirtualItem|SetCursorVirtualItem]]()
  +
: <small>DEPRECATED</small> [[API C_Soulbinds.GetConduitItemLevel|C_Soulbinds.GetConduitItemLevel]](<span class="apiarg">conduitID, rank</span>) : <span class="apiret">itemLevel</span>
   
 
== Classic ==
 
== Classic ==
Line 5,219: Line 5,314:
 
{{i-note|This list is up to date as of [[Patch_1.13.6/API_changes|Patch 1.13.6]] (36714) Nov 20 2020}}
 
{{i-note|This list is up to date as of [[Patch_1.13.6/API_changes|Patch 1.13.6]] (36714) Nov 20 2020}}
 
: [[API C_StorePublic.HasPurchaseableProducts|C_StorePublic.HasPurchaseableProducts]]()
 
: [[API C_StorePublic.HasPurchaseableProducts|C_StorePublic.HasPurchaseableProducts]]()
: [[API AttemptToSaveBindings|AttemptToSaveBindings]](<span style="font-size:smaller; color:#ecbc2a">which</span>) - Writes the current in-memory key bindings to disk.
+
: [[API AttemptToSaveBindings|AttemptToSaveBindings]](<span class="apiarg">which</span>) - Writes the current in-memory key bindings to disk.
 
: [[API CastingInfo|CastingInfo]]() - Returns the player's currently casting spell.
 
: [[API CastingInfo|CastingInfo]]() - Returns the player's currently casting spell.
 
: [[API ChannelInfo|ChannelInfo]]() - Returns the player's currently channeling spell.
 
: [[API ChannelInfo|ChannelInfo]]() - Returns the player's currently channeling spell.
  +
: [[API GetFirstBagBankSlotIndex|GetFirstBagBankSlotIndex]]() - Returns the index of the first bag slot within the bank container.
: [[API IsPlayerAttacking|IsPlayerAttacking]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns if the player is melee attacking the specified unit.
 
: [[API ShowCloak|ShowCloak]](<span style="font-size:smaller; color:#ecbc2a">flag</span>) - Enables or disables display of your cloak.
+
: [[API IsPlayerAttacking|IsPlayerAttacking]](<span class="apiarg">unit</span>) - Returns if the player is melee attacking the specified unit.
: [[API ShowHelm|ShowHelm]](<span style="font-size:smaller; color:#ecbc2a">flag</span>) - Enables or disables display of your helm.
+
: [[API ShowCloak|ShowCloak]](<span class="apiarg">flag</span>) - Enables or disables display of your cloak.
  +
: [[API ShowHelm|ShowHelm]](<span class="apiarg">flag</span>) - Enables or disables display of your helm.
 
: [[API ShowingCloak|ShowingCloak]]() - Returns if the player is showing his cloak.
 
: [[API ShowingCloak|ShowingCloak]]() - Returns if the player is showing his cloak.
 
: [[API ShowingHelm|ShowingHelm]]() - Returns if the player is showing his helm.
 
: [[API ShowingHelm|ShowingHelm]]() - Returns if the player is showing his helm.
: [[API UnitResistance|UnitResistance]](<span style="font-size:smaller; color:#ecbc2a">unit [, resistanceIndex]</span>) - Returns information about a unit's resistance.
+
: [[API UnitResistance|UnitResistance]](<span class="apiarg">unit [, resistanceIndex]</span>) - Returns information about a unit's resistance.
   
 
=== Auction House ===
 
=== Auction House ===
: [[API CalculateAuctionDeposit|CalculateAuctionDeposit]](<span style="font-size:smaller; color:#ecbc2a">runTime, stackSize, numStacks</span>) - Returns the required deposit for the current selling item given the specified duration (1=12h, 2=24h, 3=48h).
+
: [[API CalculateAuctionDeposit|CalculateAuctionDeposit]](<span class="apiarg">runTime, stackSize, numStacks</span>) - Returns the required deposit for the current selling item given the specified duration (1=12h, 2=24h, 3=48h).
: [[API CanCancelAuction|CanCancelAuction]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns 1 if auction can be canceled.
+
: [[API CanCancelAuction|CanCancelAuction]](<span class="apiarg">index</span>) - Returns 1 if auction can be canceled.
 
: [[API CanSendAuctionQuery|CanSendAuctionQuery]]() - Returns 1 if auction search button would be active, nil otherwise.
 
: [[API CanSendAuctionQuery|CanSendAuctionQuery]]() - Returns 1 if auction search button would be active, nil otherwise.
: [[API CancelAuction|CancelAuction]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Cancel the specified auction (on the "owner" list).
+
: [[API CancelAuction|CancelAuction]](<span class="apiarg">index</span>) - Cancel the specified auction (on the "owner" list).
 
: [[API CancelSell|CancelSell]]() - Clears the auction house listing queue, not creating any additional auctions.
 
: [[API CancelSell|CancelSell]]() - Clears the auction house listing queue, not creating any additional auctions.
 
: [[API ClickAuctionSellItemButton|ClickAuctionSellItemButton]]() - Puts the currently 'picked up' item into the 'create auction' slot.
 
: [[API ClickAuctionSellItemButton|ClickAuctionSellItemButton]]() - Puts the currently 'picked up' item into the 'create auction' slot.
 
: [[API CloseAuctionHouse|CloseAuctionHouse]]() - Will close the AuctionFrame if opened.
 
: [[API CloseAuctionHouse|CloseAuctionHouse]]() - Will close the AuctionFrame if opened.
: [[API GetAuctionDeposit|GetAuctionDeposit]](<span style="font-size:smaller; color:#ecbc2a">runTime, minBid, buyoutPrice [, itemCount, numStacks]</span>)
+
: [[API GetAuctionDeposit|GetAuctionDeposit]](<span class="apiarg">runTime, minBid, buyoutPrice [, itemCount, numStacks]</span>)
 
: [[API GetAuctionHouseDepositRate|GetAuctionHouseDepositRate]]() - Returns the deposit rate (percentage) for the currently open auction house (Possibly out-dated by [[API CalculateAuctionDeposit|CalculateAuctionDeposit]]).
 
: [[API GetAuctionHouseDepositRate|GetAuctionHouseDepositRate]]() - Returns the deposit rate (percentage) for the currently open auction house (Possibly out-dated by [[API CalculateAuctionDeposit|CalculateAuctionDeposit]]).
: [[API GetAuctionItemBattlePetInfo|GetAuctionItemBattlePetInfo]](<span style="font-size:smaller; color:#ecbc2a">type, index</span>) - Returns model details about the specified Battle Pet auction item.
+
: [[API GetAuctionItemBattlePetInfo|GetAuctionItemBattlePetInfo]](<span class="apiarg">type, index</span>) - Returns model details about the specified Battle Pet auction item.
: [[API GetAuctionItemInfo|GetAuctionItemInfo]](<span style="font-size:smaller; color:#ecbc2a">type, index</span>) - Returns details about the specified auction item.
+
: [[API GetAuctionItemInfo|GetAuctionItemInfo]](<span class="apiarg">type, index</span>) - Returns details about the specified auction item.
: [[API GetAuctionItemLink|GetAuctionItemLink]](<span style="font-size:smaller; color:#ecbc2a">type, index</span>) - Returns an [[itemLink]] for the specified auction item.
+
: [[API GetAuctionItemLink|GetAuctionItemLink]](<span class="apiarg">type, index</span>) - Returns an [[itemLink]] for the specified auction item.
: [[API GetAuctionItemSubClasses|GetAuctionItemSubClasses]](<span style="font-size:smaller; color:#ecbc2a">classID</span>) - Returns subcategories for the item category.
+
: [[API GetAuctionItemSubClasses|GetAuctionItemSubClasses]](<span class="apiarg">classID</span>) - Returns subcategories for the item category.
: [[API GetAuctionItemTimeLeft|GetAuctionItemTimeLeft]](<span style="font-size:smaller; color:#ecbc2a">type, index</span>) - Returns the time left status of the specified auction item.
+
: [[API GetAuctionItemTimeLeft|GetAuctionItemTimeLeft]](<span class="apiarg">type, index</span>) - Returns the time left status of the specified auction item.
 
: [[API GetAuctionSellItemInfo|GetAuctionSellItemInfo]]() - Returns information about the current selling item (or nil if none selected).
 
: [[API GetAuctionSellItemInfo|GetAuctionSellItemInfo]]() - Returns information about the current selling item (or nil if none selected).
 
: [[API GetAuctionSort|GetAuctionSort]]()
 
: [[API GetAuctionSort|GetAuctionSort]]()
: [[API GetBidderAuctionItems|GetBidderAuctionItems]](<span style="font-size:smaller; color:#ecbc2a">[page]</span>) - Returns details about an auction item on which the user is bidding (possibly out-dated by [[API GetAuctionItemInfo|GetAuctionItemInfo]]</small>)
+
: [[API GetBidderAuctionItems|GetBidderAuctionItems]](<span class="apiarg">[page]</span>) - Returns details about an auction item on which the user is bidding (possibly out-dated by [[API GetAuctionItemInfo|GetAuctionItemInfo]]</small>)
: [[API GetNumAuctionItems|GetNumAuctionItems]](<span style="font-size:smaller; color:#ecbc2a">type</span>) - Returns the size of the specified auction item list.
+
: [[API GetNumAuctionItems|GetNumAuctionItems]](<span class="apiarg">type</span>) - Returns the size of the specified auction item list.
: [[API GetOwnerAuctionItems|GetOwnerAuctionItems]](<span style="font-size:smaller; color:#ecbc2a">[page]</span>) - Returns details about an auction item of which the user is the owner (possibly out-dated by [[API GetAuctionItemInfo|GetAuctionItemInfo]]</small>)
+
: [[API GetOwnerAuctionItems|GetOwnerAuctionItems]](<span class="apiarg">[page]</span>) - Returns details about an auction item of which the user is the owner (possibly out-dated by [[API GetAuctionItemInfo|GetAuctionItemInfo]]</small>)
: [[API GetSelectedAuctionItem|GetSelectedAuctionItem]](<span style="font-size:smaller; color:#ecbc2a">type</span>) - Returns the index (1-50) of the selected auction item or 0 if none is selected.
+
: [[API GetSelectedAuctionItem|GetSelectedAuctionItem]](<span class="apiarg">type</span>) - Returns the index (1-50) of the selected auction item or 0 if none is selected.
: [[API IsAuctionSortReversed|IsAuctionSortReversed]](<span style="font-size:smaller; color:#ecbc2a">type, sort</span>) - Returns 1 if the specified auction list and sort is reversed, nil otherwise.
+
: [[API IsAuctionSortReversed|IsAuctionSortReversed]](<span class="apiarg">type, sort</span>) - Returns 1 if the specified auction list and sort is reversed, nil otherwise.
: [[API PlaceAuctionBid|PlaceAuctionBid]](<span style="font-size:smaller; color:#ecbc2a">type, index, bid</span>) - Place a bid on the selected auction item.
+
: [[API PlaceAuctionBid|PlaceAuctionBid]](<span class="apiarg">type, index, bid</span>) - Place a bid on the selected auction item.
: [[API PostAuction|PostAuction]](<span style="font-size:smaller; color:#ecbc2a">minBid, buyoutPrice, runTime, count</span>)
+
: [[API PostAuction|PostAuction]](<span class="apiarg">minBid, buyoutPrice, runTime, count</span>)
: [[API QueryAuctionItems|QueryAuctionItems]](<span style="font-size:smaller; color:#ecbc2a">name, minLevel, maxLevel, invTypeIndex, classIndex, subclassIndex, page, isUsable, qualityIndex</span>) - Performs a search of the auction house with the specified characteristics.
+
: [[API QueryAuctionItems|QueryAuctionItems]](<span class="apiarg">text, minLevel, maxLevel, page, usable, rarity, getAll, exactMatch, filterData</span>) - Performs a search of the auction house with the specified characteristics.
: [[API SetAuctionsTabShowing|SetAuctionsTabShowing]](<span style="font-size:smaller; color:#ecbc2a">showing</span>) - Sets whether auction-related events should be delivered to the client.
+
: [[API SetAuctionsTabShowing|SetAuctionsTabShowing]](<span class="apiarg">showing</span>) - Enables the right-click to select an item for posting from your bags shortcut.
: [[API SetSelectedAuctionItem|SetSelectedAuctionItem]](<span style="font-size:smaller; color:#ecbc2a">type, index</span>) - Selects a specific item in the auction house.
+
: [[API SetSelectedAuctionItem|SetSelectedAuctionItem]](<span class="apiarg">type, index</span>) - Selects a specific item in the auction house.
: [[API SortAuctionApplySort|SortAuctionApplySort]](<span style="font-size:smaller; color:#ecbc2a">type</span>)
+
: [[API SortAuctionApplySort|SortAuctionApplySort]](<span class="apiarg">type</span>)
: [[API SortAuctionClearSort|SortAuctionClearSort]](<span style="font-size:smaller; color:#ecbc2a">type</span>)
+
: [[API SortAuctionClearSort|SortAuctionClearSort]](<span class="apiarg">type</span>)
: [[API SortAuctionItems|SortAuctionItems]](<span style="font-size:smaller; color:#ecbc2a">type, sort</span>) - Toggles sorting the specific auction list by a specific column. (deprecated around Patch 2.0)
+
: [[API SortAuctionItems|SortAuctionItems]](<span class="apiarg">type, sort</span>) - Toggles sorting the specific auction list by a specific column.
: [[API SortAuctionSetSort|SortAuctionSetSort]](<span style="font-size:smaller; color:#ecbc2a">type, sort [, reverse]</span>) - Sorts the specific auction list by a specific column, optionally in reverse order. Requires SortAuctionApplySort() afterwards to update.
+
: [[API SortAuctionSetSort|SortAuctionSetSort]](<span class="apiarg">type, sort [, reverse]</span>) - Sorts the specific auction list by a specific column, optionally in reverse order. Requires SortAuctionApplySort() or another search query afterwards to update.
: [[API StartAuction|StartAuction]](<span style="font-size:smaller; color:#ecbc2a">minBid, buyoutPrice, runTime, stackSize, numStacks</span>) - Starts the auction you have created in the Create Auction panel.
+
: <small>DEPRECATED</small> [[API StartAuction|StartAuction]](<span class="apiarg">minBid, buyoutPrice, runTime, stackSize, numStacks</span>) - Starts the auction you have created in the Create Auction panel.
   
 
=== Hunter Pets ===
 
=== Hunter Pets ===
Line 5,270: Line 5,366:
 
==== Stables ====
 
==== Stables ====
 
: [[API BuyStableSlot|BuyStableSlot]]() - Buys the next stable slot if the stable window is open and you can afford it.
 
: [[API BuyStableSlot|BuyStableSlot]]() - Buys the next stable slot if the stable window is open and you can afford it.
: [[API ClickStablePet|ClickStablePet]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Selects a stable pet.
+
: [[API ClickStablePet|ClickStablePet]](<span class="apiarg">index</span>) - Selects a stable pet.
 
: [[API GetNextStableSlotCost|GetNextStableSlotCost]]() - Returns the next stable slot's cost in copper.
 
: [[API GetNextStableSlotCost|GetNextStableSlotCost]]() - Returns the next stable slot's cost in copper.
 
: [[API GetNumStablePets|GetNumStablePets]]() - Returns the amount of stable pets.
 
: [[API GetNumStablePets|GetNumStablePets]]() - Returns the amount of stable pets.
Line 5,276: Line 5,372:
 
: [[API GetSelectedStablePet|GetSelectedStablePet]]() - Gets the index of the currently selected pet in the stable.
 
: [[API GetSelectedStablePet|GetSelectedStablePet]]() - Gets the index of the currently selected pet in the stable.
 
: [[API StablePet|StablePet]]() - Puts your current pet in the stable if there is room.
 
: [[API StablePet|StablePet]]() - Puts your current pet in the stable if there is room.
: [[API UnstablePet|UnstablePet]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Unstables a pet.
+
: [[API UnstablePet|UnstablePet]](<span class="apiarg">index</span>) - Unstables a pet.
   
 
=== Keyring ===
 
=== Keyring ===
 
The [[Keyring]] was added again in [[Patch 1.13.3]]
 
The [[Keyring]] was added again in [[Patch 1.13.3]]
 
: [[API HasKey|HasKey]]() - Returns whether or not the player has a key ring.
 
: [[API HasKey|HasKey]]() - Returns whether or not the player has a key ring.
: [[API KeyRingButtonIDToInvSlotID|KeyRingButtonIDToInvSlotID]](<span style="font-size:smaller; color:#ecbc2a">buttonID</span>) - Map a keyring button to an inventory slot button for use in inventory functions.
+
: [[API KeyRingButtonIDToInvSlotID|KeyRingButtonIDToInvSlotID]](<span class="apiarg">buttonID</span>) - Map a keyring button to an inventory slot button for use in inventory functions.
   
 
=== Professions ===
 
=== Professions ===
 
: [[API CloseTradeSkill|CloseTradeSkill]]()
 
: [[API CloseTradeSkill|CloseTradeSkill]]()
: [[API CollapseTradeSkillSubClass|CollapseTradeSkillSubClass]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API CollapseTradeSkillSubClass|CollapseTradeSkillSubClass]](<span class="apiarg">index</span>)
: [[API DoTradeSkill|DoTradeSkill]](<span style="font-size:smaller; color:#ecbc2a">index [, repeat]</span>)
+
: [[API DoTradeSkill|DoTradeSkill]](<span class="apiarg">index [, repeat]</span>)
: [[API ExpandTradeSkillSubClass|ExpandTradeSkillSubClass]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API ExpandTradeSkillSubClass|ExpandTradeSkillSubClass]](<span class="apiarg">index</span>)
 
: [[API GetFirstTradeSkill|GetFirstTradeSkill]]()
 
: [[API GetFirstTradeSkill|GetFirstTradeSkill]]()
 
: [[API GetNumPrimaryProfessions|GetNumPrimaryProfessions]]()
 
: [[API GetNumPrimaryProfessions|GetNumPrimaryProfessions]]()
 
: [[API GetNumTradeSkills|GetNumTradeSkills]]()
 
: [[API GetNumTradeSkills|GetNumTradeSkills]]()
: [[API GetTradeSkillCooldown|GetTradeSkillCooldown]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetTradeSkillCooldown|GetTradeSkillCooldown]](<span class="apiarg">index</span>)
: [[API GetTradeSkillIcon|GetTradeSkillIcon]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetTradeSkillIcon|GetTradeSkillIcon]](<span class="apiarg">index</span>)
: [[API GetTradeSkillInfo|GetTradeSkillInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetTradeSkillInfo|GetTradeSkillInfo]](<span class="apiarg">index</span>)
: [[API GetTradeSkillInvSlotFilter|GetTradeSkillInvSlotFilter]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetTradeSkillInvSlotFilter|GetTradeSkillInvSlotFilter]](<span class="apiarg">index</span>)
 
: [[API GetTradeSkillInvSlots|GetTradeSkillInvSlots]]()
 
: [[API GetTradeSkillInvSlots|GetTradeSkillInvSlots]]()
: [[API GetTradeSkillItemLink|GetTradeSkillItemLink]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetTradeSkillItemLink|GetTradeSkillItemLink]](<span class="apiarg">index</span>)
 
: [[API GetTradeSkillItemStats|GetTradeSkillItemStats]]()
 
: [[API GetTradeSkillItemStats|GetTradeSkillItemStats]]()
 
: [[API GetTradeSkillLine|GetTradeSkillLine]]()
 
: [[API GetTradeSkillLine|GetTradeSkillLine]]()
: [[API GetTradeSkillNumMade|GetTradeSkillNumMade]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetTradeSkillNumMade|GetTradeSkillNumMade]](<span class="apiarg">index</span>)
: [[API GetTradeSkillNumReagents|GetTradeSkillNumReagents]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetTradeSkillNumReagents|GetTradeSkillNumReagents]](<span class="apiarg">index</span>)
: [[API GetTradeSkillReagentInfo|GetTradeSkillReagentInfo]](<span style="font-size:smaller; color:#ecbc2a">index, reagentIndex</span>)
+
: [[API GetTradeSkillReagentInfo|GetTradeSkillReagentInfo]](<span class="apiarg">index, reagentIndex</span>)
: [[API GetTradeSkillReagentItemLink|GetTradeSkillReagentItemLink]](<span style="font-size:smaller; color:#ecbc2a">index, reagentIndex</span>)
+
: [[API GetTradeSkillReagentItemLink|GetTradeSkillReagentItemLink]](<span class="apiarg">index, reagentIndex</span>)
 
: [[API GetTradeSkillSelectionIndex|GetTradeSkillSelectionIndex]]()
 
: [[API GetTradeSkillSelectionIndex|GetTradeSkillSelectionIndex]]()
: [[API GetTradeSkillSubClassFilter|GetTradeSkillSubClassFilter]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetTradeSkillSubClassFilter|GetTradeSkillSubClassFilter]](<span class="apiarg">index</span>)
 
: [[API GetTradeSkillSubClasses|GetTradeSkillSubClasses]]()
 
: [[API GetTradeSkillSubClasses|GetTradeSkillSubClasses]]()
: [[API GetTradeSkillTools|GetTradeSkillTools]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetTradeSkillTools|GetTradeSkillTools]](<span class="apiarg">index</span>)
 
: [[API GetTradeskillRepeatCount|GetTradeskillRepeatCount]]()
 
: [[API GetTradeskillRepeatCount|GetTradeskillRepeatCount]]()
: [[API SelectTradeSkill|SelectTradeSkill]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API SelectTradeSkill|SelectTradeSkill]](<span class="apiarg">index</span>)
: [[API SetTradeSkillInvSlotFilter|SetTradeSkillInvSlotFilter]](<span style="font-size:smaller; color:#ecbc2a">index [, on\off, exclusive]</span>)
+
: [[API SetTradeSkillInvSlotFilter|SetTradeSkillInvSlotFilter]](<span class="apiarg">index [, on\off, exclusive]</span>)
: [[API SetTradeSkillSubClassFilter|SetTradeSkillSubClassFilter]](<span style="font-size:smaller; color:#ecbc2a">index [, on\off, exclusive]</span>)
+
: [[API SetTradeSkillSubClassFilter|SetTradeSkillSubClassFilter]](<span class="apiarg">index [, on\off, exclusive]</span>)
   
 
==== Crafting ====
 
==== Crafting ====
 
The Craft UI is used for Enchanting and [[:Beast Training]].
 
The Craft UI is used for Enchanting and [[:Beast Training]].
 
: [[API CloseCraft|CloseCraft]]()
 
: [[API CloseCraft|CloseCraft]]()
: [[API CollapseCraftSkillLine|CollapseCraftSkillLine]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API CollapseCraftSkillLine|CollapseCraftSkillLine]](<span class="apiarg">index</span>)
: [[API DoCraft|DoCraft]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API DoCraft|DoCraft]](<span class="apiarg">index</span>)
: [[API ExpandCraftSkillLine|ExpandCraftSkillLine]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API ExpandCraftSkillLine|ExpandCraftSkillLine]](<span class="apiarg">index</span>)
 
: [[API GetCraftButtonToken|GetCraftButtonToken]]()
 
: [[API GetCraftButtonToken|GetCraftButtonToken]]()
: [[API GetCraftDescription|GetCraftDescription]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetCraftDescription|GetCraftDescription]](<span class="apiarg">index</span>)
 
: [[API GetCraftDisplaySkillLine|GetCraftDisplaySkillLine]]()
 
: [[API GetCraftDisplaySkillLine|GetCraftDisplaySkillLine]]()
: [[API GetCraftIcon|GetCraftIcon]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetCraftIcon|GetCraftIcon]](<span class="apiarg">index</span>)
: [[API GetCraftInfo|GetCraftInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetCraftInfo|GetCraftInfo]](<span class="apiarg">index</span>)
: [[API GetCraftItemLink|GetCraftItemLink]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetCraftItemLink|GetCraftItemLink]](<span class="apiarg">index</span>)
 
: [[API GetCraftName|GetCraftName]]()
 
: [[API GetCraftName|GetCraftName]]()
: [[API GetCraftNumReagents|GetCraftNumReagents]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetCraftNumReagents|GetCraftNumReagents]](<span class="apiarg">index</span>)
: [[API GetCraftReagentInfo|GetCraftReagentInfo]](<span style="font-size:smaller; color:#ecbc2a">index, reagentIndex</span>)
+
: [[API GetCraftReagentInfo|GetCraftReagentInfo]](<span class="apiarg">index, reagentIndex</span>)
: [[API GetCraftReagentItemLink|GetCraftReagentItemLink]](<span style="font-size:smaller; color:#ecbc2a">index, reagentIndex</span>)
+
: [[API GetCraftReagentItemLink|GetCraftReagentItemLink]](<span class="apiarg">index, reagentIndex</span>)
 
: [[API GetCraftSelectionIndex|GetCraftSelectionIndex]]()
 
: [[API GetCraftSelectionIndex|GetCraftSelectionIndex]]()
: [[API GetCraftSkillLine|GetCraftSkillLine]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetCraftSkillLine|GetCraftSkillLine]](<span class="apiarg">index</span>)
: [[API GetCraftSpellFocus|GetCraftSpellFocus]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API GetCraftSpellFocus|GetCraftSpellFocus]](<span class="apiarg">index</span>)
 
: [[API GetNumCrafts|GetNumCrafts]]()
 
: [[API GetNumCrafts|GetNumCrafts]]()
: [[API SelectCraft|SelectCraft]](<span style="font-size:smaller; color:#ecbc2a">index</span>)
+
: [[API SelectCraft|SelectCraft]](<span class="apiarg">index</span>)
   
 
=== PvP ===
 
=== PvP ===
 
: [[API GetInspectPVPRankProgress|GetInspectPVPRankProgress]]() - Gets the inspected unit's progress towards the next PvP rank.
 
: [[API GetInspectPVPRankProgress|GetInspectPVPRankProgress]]() - Gets the inspected unit's progress towards the next PvP rank.
 
: [[API GetPVPLastWeekStats|GetPVPLastWeekStats]]() - Gets the player's PVP contribution statistics for the previous week.
 
: [[API GetPVPLastWeekStats|GetPVPLastWeekStats]]() - Gets the player's PVP contribution statistics for the previous week.
: [[API GetPVPRankInfo|GetPVPRankInfo]](<span style="font-size:smaller; color:#ecbc2a">rank [, unit]</span>) - Returns information about a specific PvP rank.
+
: [[API GetPVPRankInfo|GetPVPRankInfo]](<span class="apiarg">rank [, unit]</span>) - Returns information about a specific PvP rank.
 
: [[API GetPVPRankProgress|GetPVPRankProgress]]() - Returns the player's progress to the next PvP rank.
 
: [[API GetPVPRankProgress|GetPVPRankProgress]]() - Returns the player's progress to the next PvP rank.
 
: [[API GetPVPThisWeekStats|GetPVPThisWeekStats]]() - Gets your PVP contribution statistics for the current week.
 
: [[API GetPVPThisWeekStats|GetPVPThisWeekStats]]() - Gets your PVP contribution statistics for the current week.
: [[API UnitIsCivilian|UnitIsCivilian]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Determine whether a unit is a civilian (low level enemy faction NPC that counts as a dishonorable kill).
+
: [[API UnitIsCivilian|UnitIsCivilian]](<span class="apiarg">unit</span>) - Determine whether a unit is a civilian (low level enemy faction NPC that counts as a dishonorable kill).
: [[API UnitPVPRank|UnitPVPRank]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the specified unit's PvP rank ID.
+
: [[API UnitPVPRank|UnitPVPRank]](<span class="apiarg">unit</span>) - Returns the specified unit's PvP rank ID.
   
 
==== Battlegrounds ====
 
==== Battlegrounds ====
: [[API GetBattlefieldInstanceInfo|GetBattlefieldInstanceInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns the battlefield instance ID for an index in the battlemaster listing.
+
: [[API GetBattlefieldInstanceInfo|GetBattlefieldInstanceInfo]](<span class="apiarg">index</span>) - Returns the battlefield instance ID for an index in the battlemaster listing.
 
: [[API GetNumBattlefields|GetNumBattlefields]]() - Returns the number of available instances for the selected battleground at the battlemaster.
 
: [[API GetNumBattlefields|GetNumBattlefields]]() - Returns the number of available instances for the selected battleground at the battlemaster.
 
: [[API GetSelectedBattlefield|GetSelectedBattlefield]]() - Returns the currently selected battlefield at the battlemaster.
 
: [[API GetSelectedBattlefield|GetSelectedBattlefield]]() - Returns the currently selected battlefield at the battlemaster.
: [[API SetSelectedBattlefield|SetSelectedBattlefield]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Selects a battlefield instance at the battlemaster.
+
: [[API SetSelectedBattlefield|SetSelectedBattlefield]](<span class="apiarg">index</span>) - Selects a battlefield instance at the battlemaster.
   
 
=== Skills ===
 
=== Skills ===
 
Relates to player/trainer [[Skill]]s.
 
Relates to player/trainer [[Skill]]s.
: [[API CollapseSkillHeader|CollapseSkillHeader]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Collapses a header in the skills window.
+
: [[API CollapseSkillHeader|CollapseSkillHeader]](<span class="apiarg">index</span>) - Collapses a header in the skills window.
: [[API CollapseTrainerSkillLine|CollapseTrainerSkillLine]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Collapses a header in the trainer window, hiding all spells below it.
+
: [[API CollapseTrainerSkillLine|CollapseTrainerSkillLine]](<span class="apiarg">index</span>) - Collapses a header in the trainer window, hiding all spells below it.
: [[API ExpandSkillHeader|ExpandSkillHeader]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Expands a header in the skills window.
+
: [[API ExpandSkillHeader|ExpandSkillHeader]](<span class="apiarg">index</span>) - Expands a header in the skills window.
: [[API ExpandTrainerSkillLine|ExpandTrainerSkillLine]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Expands a header in the trainer window, showing all spells below it.
+
: [[API ExpandTrainerSkillLine|ExpandTrainerSkillLine]](<span class="apiarg">index</span>) - Expands a header in the trainer window, showing all spells below it.
 
: [[API GetNumSkillLines|GetNumSkillLines]]() - Returns the number of skill lines in the skill window, including headers.
 
: [[API GetNumSkillLines|GetNumSkillLines]]() - Returns the number of skill lines in the skill window, including headers.
 
: [[API GetSelectedSkill|GetSelectedSkill]]() - Returns the currently selected skill line.
 
: [[API GetSelectedSkill|GetSelectedSkill]]() - Returns the currently selected skill line.
: [[API GetSkillLineInfo|GetSkillLineInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns information on a skill line/header.
+
: [[API GetSkillLineInfo|GetSkillLineInfo]](<span class="apiarg">index</span>) - Returns information on a skill line/header.
: [[API IsTrainerServiceLearnSpell|IsTrainerServiceLearnSpell]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns the type of trainer spell in the trainer window.
+
: [[API IsTrainerServiceLearnSpell|IsTrainerServiceLearnSpell]](<span class="apiarg">index</span>) - Returns the type of trainer spell in the trainer window.
: [[API SetSelectedSkill|SetSelectedSkill]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Selects a skill line in the skill window.
+
: [[API SetSelectedSkill|SetSelectedSkill]](<span class="apiarg">index</span>) - Selects a skill line in the skill window.
   
 
=== Talents ===
 
=== Talents ===
: [[API GetNumTalents|GetNumTalents]](<span style="font-size:smaller; color:#ecbc2a">tabIndex</span>) - Returns the amount of talents for a specialization.
+
: [[API GetNumTalents|GetNumTalents]](<span class="apiarg">tabIndex</span>) - Returns the amount of talents for a specialization.
 
: [[API GetNumTalentTabs|GetNumTalentTabs]]() - Returns the total number of talent tabs for the player.
 
: [[API GetNumTalentTabs|GetNumTalentTabs]]() - Returns the total number of talent tabs for the player.
: {{Wow-inline}} [[API_GetTalentInfo/Classic|GetTalentInfo]](<span style="font-size:smaller; color:#ecbc2a">tabIndex, talentIndex</span>) - Returns information about a talent.
+
: {{Wow-inline}} [[API_GetTalentInfo/Classic|GetTalentInfo]](<span class="apiarg">tabIndex, talentIndex</span>) - Returns information about a talent.
: [[API GetTalentPrereqs|GetTalentPrereqs]](<span style="font-size:smaller; color:#ecbc2a">tabIndex, talentIndex</span>) - Returns the tier and column of a talent's prerequisite, and if the talent is learnable.
+
: [[API GetTalentPrereqs|GetTalentPrereqs]](<span class="apiarg">tabIndex, talentIndex</span>) - Returns the tier and column of a talent's prerequisite, and if the talent is learnable.
: [[API GetTalentTabInfo|GetTalentTabInfo]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Returns information for a talent tab (tree).
+
: [[API GetTalentTabInfo|GetTalentTabInfo]](<span class="apiarg">index</span>) - Returns information for a talent tab (tree).
: [[API UnitCharacterPoints|UnitCharacterPoints]](<span style="font-size:smaller; color:#ecbc2a">unit</span>) - Returns the number of unspent talent points of the player.
+
: [[API UnitCharacterPoints|UnitCharacterPoints]](<span class="apiarg">unit</span>) - Returns the number of unspent talent points of the player.
   
 
=== Tracking ===
 
=== Tracking ===
Line 5,374: Line 5,470:
   
 
== FrameXML ==
 
== FrameXML ==
See also this [https://wow.gamepedia.com/Global_functions?oldid=5728117#FrameXML_Functions old list] of notable FrameXML functions.
 
 
 
=== MathUtil ===
 
=== MathUtil ===
: <small>UI</small> [http://townlong-yak.com/framexml/go/Lerp Lerp](<span style="font-size:smaller; color:#ecbc2a">startValue, endValue, amount</span>) : <span style="font-size:smaller; color:#4ec9b0">''number''</span> - Linearly interpolates between two values for a parameter <code>amount</code> in the closed unit interval [0, 1]
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/Lerp Lerp](<span class="apiarg">startValue, endValue, amount</span>) : <span class="apiret">''number''</span> - Linearly interpolates between two values for a parameter <code>amount</code> in the closed unit interval [0, 1]
: <small>UI</small> [http://townlong-yak.com/framexml/go/Clamp Clamp](<span style="font-size:smaller; color:#ecbc2a">value, min, max</span>) : <span style="font-size:smaller; color:#4ec9b0">''number''</span>
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/Clamp Clamp](<span class="apiarg">value, min, max</span>) : <span class="apiret">''number''</span>
: <small>UI</small> [http://townlong-yak.com/framexml/go/Saturate Saturate](<span style="font-size:smaller; color:#ecbc2a">value</span>) : <span style="font-size:smaller; color:#4ec9b0">''number''</span>
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/Saturate Saturate](<span class="apiarg">value</span>) : <span class="apiret">''number''</span>
: <small>UI</small> [http://townlong-yak.com/framexml/go/Wrap Wrap](<span style="font-size:smaller; color:#ecbc2a">value, max</span>) : <span style="font-size:smaller; color:#4ec9b0">''number''</span>
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/Wrap Wrap](<span class="apiarg">value, max</span>) : <span class="apiret">''number''</span>
: <small>UI</small> [http://townlong-yak.com/framexml/go/ClampDegrees ClampDegrees](<span style="font-size:smaller; color:#ecbc2a">value</span>) : <span style="font-size:smaller; color:#4ec9b0">''number''</span>
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/ClampDegrees ClampDegrees](<span class="apiarg">value</span>) : <span class="apiret">''number''</span>
: <small>UI</small> [http://townlong-yak.com/framexml/go/ClampMod ClampMod](<span style="font-size:smaller; color:#ecbc2a">value, mod</span>) : <span style="font-size:smaller; color:#4ec9b0">''number''</span>
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/ClampMod ClampMod](<span class="apiarg">value, mod</span>) : <span class="apiret">''number''</span>
: <small>UI</small> [http://townlong-yak.com/framexml/go/NegateIf NegateIf](<span style="font-size:smaller; color:#ecbc2a">value, condition</span>) : <span style="font-size:smaller; color:#4ec9b0">''number''</span>
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/NegateIf NegateIf](<span class="apiarg">value, condition</span>) : <span class="apiret">''number''</span>
: <small>UI</small> [http://townlong-yak.com/framexml/go/PercentageBetween PercentageBetween](<span style="font-size:smaller; color:#ecbc2a">value, startValue, endValue</span>) : <span style="font-size:smaller; color:#4ec9b0">''number''</span>
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/PercentageBetween PercentageBetween](<span class="apiarg">value, startValue, endValue</span>) : <span class="apiret">''number''</span>
: <small>UI</small> [http://townlong-yak.com/framexml/go/ClampedPercentageBetween ClampedPercentageBetween](<span style="font-size:smaller; color:#ecbc2a">value, startValue, endValue</span>) : <span style="font-size:smaller; color:#4ec9b0">''number''</span>
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/ClampedPercentageBetween ClampedPercentageBetween](<span class="apiarg">value, startValue, endValue</span>) : <span class="apiret">''number''</span>
: <small>UI</small> [http://townlong-yak.com/framexml/go/DeltaLerp DeltaLerp](<span style="font-size:smaller; color:#ecbc2a">startValue, endValue, amount, timeSec</span>) : <span style="font-size:smaller; color:#4ec9b0">''number''</span>
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/DeltaLerp DeltaLerp](<span class="apiarg">startValue, endValue, amount, timeSec</span>) : <span class="apiret">''number''</span>
: <small>UI</small> [http://townlong-yak.com/framexml/go/FrameDeltaLerp FrameDeltaLerp](<span style="font-size:smaller; color:#ecbc2a">startValue, endValue, amount</span>) : <span style="font-size:smaller; color:#4ec9b0">''number''</span>
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/FrameDeltaLerp FrameDeltaLerp](<span class="apiarg">startValue, endValue, amount</span>) : <span class="apiret">''number''</span>
: <small>UI</small> [http://townlong-yak.com/framexml/go/RandomFloatInRange RandomFloatInRange](<span style="font-size:smaller; color:#ecbc2a">minValue, maxValue</span>) : <span style="font-size:smaller; color:#4ec9b0">''number''</span>
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/RandomFloatInRange RandomFloatInRange](<span class="apiarg">minValue, maxValue</span>) : <span class="apiret">''number''</span>
: <small>UI</small> [http://townlong-yak.com/framexml/go/Round Round](<span style="font-size:smaller; color:#ecbc2a">value</span>) : <span style="font-size:smaller; color:#4ec9b0">''number''</span> - Rounds a value.
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/Round Round](<span class="apiarg">value</span>) : <span class="apiret">''number''</span> - Rounds a value.
: <small>UI</small> [http://townlong-yak.com/framexml/go/Square Square](<span style="font-size:smaller; color:#ecbc2a">value</span>) : <span style="font-size:smaller; color:#4ec9b0">''number''</span> - Squares a value.
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/Square Square](<span class="apiarg">value</span>) : <span class="apiret">''number''</span> - Squares a value.
: <small>UI</small> [http://townlong-yak.com/framexml/go/CalculateDistanceSq CalculateDistanceSq](<span style="font-size:smaller; color:#ecbc2a">x1, y1, x2, y2</span>) : <span style="font-size:smaller; color:#4ec9b0">''number''</span>
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/CalculateDistanceSq CalculateDistanceSq](<span class="apiarg">x1, y1, x2, y2</span>) : <span class="apiret">''number''</span>
: <small>UI</small> [http://townlong-yak.com/framexml/go/CalculateDistance CalculateDistance](<span style="font-size:smaller; color:#ecbc2a">x1, y1, x2, y2</span>) : <span style="font-size:smaller; color:#4ec9b0">''number''</span>
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/CalculateDistance CalculateDistance](<span class="apiarg">x1, y1, x2, y2</span>) : <span class="apiret">''number''</span>
: <small>UI</small> [http://townlong-yak.com/framexml/go/CalculateAngleBetween CalculateAngleBetween](<span style="font-size:smaller; color:#ecbc2a">x1, y1, x2, y2</span>) : <span style="font-size:smaller; color:#4ec9b0">''number''</span>
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/CalculateAngleBetween CalculateAngleBetween](<span class="apiarg">x1, y1, x2, y2</span>) : <span class="apiret">''number''</span>
   
 
=== TableUtil ===
 
=== TableUtil ===
: <small>UI</small> [http://townlong-yak.com/framexml/go/ripairs ripairs](<span style="font-size:smaller; color:#ecbc2a">tbl</span>) : <span style="font-size:smaller; color:#4ec9b0">iter, invariant, init</span> - Reverse iterates over a sequential table.
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/ripairs ripairs](<span class="apiarg">tbl</span>) : <span class="apiret">iter, invariant, init</span> - Reverse iterates over a sequential table.
: <small>UI</small> [http://townlong-yak.com/framexml/go/tDeleteItem tDeleteItem](<span style="font-size:smaller; color:#ecbc2a">tbl, item</span>) - Removes a value from a sequential table.
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/tDeleteItem tDeleteItem](<span class="apiarg">tbl, item</span>) - Removes a value from a sequential table.
: <small>UI</small> [http://townlong-yak.com/framexml/go/tIndexOf tIndexOf](<span style="font-size:smaller; color:#ecbc2a">tbl, item</span>) : <span style="font-size:smaller; color:#4ec9b0">index</span> - Returns the index for a value in a table.
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/tIndexOf tIndexOf](<span class="apiarg">tbl, item</span>) : <span class="apiret">index</span> - Returns the index for a value in a table.
: <small>UI</small> [http://townlong-yak.com/framexml/go/tContains tContains](<span style="font-size:smaller; color:#ecbc2a">tbl, item</span>) : <span style="font-size:smaller; color:#4ec9b0">''boolean''</span> - Returns true if a sequential table contains a value.
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/tContains tContains](<span class="apiarg">tbl, item</span>) : <span class="apiret">''boolean''</span> - Returns true if a sequential table contains a value.
: <small>UI</small> [http://townlong-yak.com/framexml/go/tCompare tCompare](<span style="font-size:smaller; color:#ecbc2a">lhsTable, rhsTable [, depth]</span>) : <span style="font-size:smaller; color:#4ec9b0">''boolean''</span> - Does a deep compare on the values of the table.
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/tCompare tCompare](<span class="apiarg">lhsTable, rhsTable [, depth]</span>) : <span class="apiret">''boolean''</span> - Does a deep compare on the values of the table.
: <small>UI</small> [http://townlong-yak.com/framexml/go/tInvert tInvert](<span style="font-size:smaller; color:#ecbc2a">tbl</span>) : <span style="font-size:smaller; color:#4ec9b0">''table''</span> - Returns an inverted table.
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/tInvert tInvert](<span class="apiarg">tbl</span>) : <span class="apiret">''table''</span> - Returns an inverted table.
: <small>UI</small> [http://townlong-yak.com/framexml/go/tFilter tFilter](<span style="font-size:smaller; color:#ecbc2a">tbl, pred, isIndexTable</span>) : <span style="font-size:smaller; color:#4ec9b0">''table''</span>
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/tFilter tFilter](<span class="apiarg">tbl, pred, isIndexTable</span>) : <span class="apiret">''table''</span>
: <small>UI</small> [http://townlong-yak.com/framexml/go/tAppendAll tAppendAll](<span style="font-size:smaller; color:#ecbc2a">table, addedArray</span>) - Appends the contents of a sequential table to another table.
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/tAppendAll tAppendAll](<span class="apiarg">table, addedArray</span>) - Appends the contents of a sequential table to another table.
: <small>UI</small> [http://townlong-yak.com/framexml/go/tUnorderedRemove tUnorderedRemove](<span style="font-size:smaller; color:#ecbc2a">tbl, index</span>)
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/tUnorderedRemove tUnorderedRemove](<span class="apiarg">tbl, index</span>)
: <small>UI</small> [http://townlong-yak.com/framexml/go/CopyTable CopyTable](<span style="font-size:smaller; color:#ecbc2a">settings</span>) : <span style="font-size:smaller; color:#4ec9b0">''table''</span> - Returns a deep copy of a table.
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/CopyTable CopyTable](<span class="apiarg">settings</span>) : <span class="apiret">''table''</span> - Returns a deep copy of a table.
: <small>UI</small> [http://townlong-yak.com/framexml/go/AccumulateIf AccumulateIf](<span style="font-size:smaller; color:#ecbc2a">tbl, pred</span>) : <span style="font-size:smaller; color:#4ec9b0">count</span>
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/AccumulateIf AccumulateIf](<span class="apiarg">tbl, pred</span>) : <span class="apiret">count</span>
: <small>UI</small> [http://townlong-yak.com/framexml/go/ContainsIf ContainsIf](<span style="font-size:smaller; color:#ecbc2a">tbl, pred</span>) : <span style="font-size:smaller; color:#4ec9b0">''boolean''</span>
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/ContainsIf ContainsIf](<span class="apiarg">tbl, pred</span>) : <span class="apiret">''boolean''</span>
: <small>UI</small> [http://townlong-yak.com/framexml/go/FindInTableIf FindInTableIf](<span style="font-size:smaller; color:#ecbc2a">tbl, pred</span>) : <span style="font-size:smaller; color:#4ec9b0">key, value</span>
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/FindInTableIf FindInTableIf](<span class="apiarg">tbl, pred</span>) : <span class="apiret">key, value</span>
: <small>UI</small> [http://townlong-yak.com/framexml/go/SafePack SafePack](<span style="font-size:smaller; color:#ecbc2a">...</span>) : <span style="font-size:smaller; color:#4ec9b0">''table''</span>
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/SafePack SafePack](<span class="apiarg">...</span>) : <span class="apiret">''table''</span>
: <small>UI</small> [http://townlong-yak.com/framexml/go/SafeUnpack SafeUnpack](<span style="font-size:smaller; color:#ecbc2a">tbl</span>) : <span style="font-size:smaller; color:#4ec9b0">...</span>
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/SafeUnpack SafeUnpack](<span class="apiarg">tbl</span>) : <span class="apiret">...</span>
   
 
=== CvarUtil ===
 
=== CvarUtil ===
: <small>UI</small> [http://townlong-yak.com/framexml/go/RegisterCVar RegisterCVar](<span style="font-size:smaller; color:#ecbc2a">name, value</span>)
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/RegisterCVar RegisterCVar](<span class="apiarg">name, value</span>)
 
: <small>UI</small> [http://townlong-yak.com/framexml/go/ResetTestCvars ResetTestCvars]()
 
: <small>UI</small> [http://townlong-yak.com/framexml/go/ResetTestCvars ResetTestCvars]()
: <small>UI</small> [http://townlong-yak.com/framexml/go/SetCVar SetCVar](<span style="font-size:smaller; color:#ecbc2a">name, value, eventName</span>) : <span style="font-size:smaller; color:#4ec9b0">success</span>
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/SetCVar SetCVar](<span class="apiarg">name, value, eventName</span>) : <span class="apiret">success</span>
: <small>UI</small> [http://townlong-yak.com/framexml/go/GetCVar GetCVar](<span style="font-size:smaller; color:#ecbc2a">name</span>) : <span style="font-size:smaller; color:#4ec9b0">value</span>
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/GetCVar GetCVar](<span class="apiarg">name</span>) : <span class="apiret">value</span>
: <small>UI</small> [http://townlong-yak.com/framexml/go/SetCVarBitfield SetCVarBitfield](<span style="font-size:smaller; color:#ecbc2a">name, index, value, scriptCVar</span>) : <span style="font-size:smaller; color:#4ec9b0">success</span>
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/SetCVarBitfield SetCVarBitfield](<span class="apiarg">name, index, value, scriptCVar</span>) : <span class="apiret">success</span>
: <small>UI</small> [http://townlong-yak.com/framexml/go/GetCVarBitfield GetCVarBitfield](<span style="font-size:smaller; color:#ecbc2a">name, index</span>) : <span style="font-size:smaller; color:#4ec9b0">''boolean''</span>
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/GetCVarBitfield GetCVarBitfield](<span class="apiarg">name, index</span>) : <span class="apiret">''boolean''</span>
: <small>UI</small> [http://townlong-yak.com/framexml/go/GetCVarBool GetCVarBool](<span style="font-size:smaller; color:#ecbc2a">name</span>) : <span style="font-size:smaller; color:#4ec9b0">''boolean''</span>
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/GetCVarBool GetCVarBool](<span class="apiarg">name</span>) : <span class="apiret">''boolean''</span>
: <small>UI</small> [http://townlong-yak.com/framexml/go/GetCVarDefault GetCVarDefault](<span style="font-size:smaller; color:#ecbc2a">name</span>) : <span style="font-size:smaller; color:#4ec9b0">value</span>
+
: <small>UI</small> [http://townlong-yak.com/framexml/go/GetCVarDefault GetCVarDefault](<span class="apiarg">name</span>) : <span class="apiret">value</span>
   
 
=== Mixins ===
 
=== Mixins ===
 
: <span class="noexcerpt" data-nosnippet>''See also the [https://github.com/Ketho/BlizzardInterfaceResources/blob/live/Resources/Mixins.lua Complete list]'' of mixins</span>
 
: <span class="noexcerpt" data-nosnippet>''See also the [https://github.com/Ketho/BlizzardInterfaceResources/blob/live/Resources/Mixins.lua Complete list]'' of mixins</span>
 
[[Wikipedia:Mixin|Mixin]]s are similar to classes in OOP languages. An object can "inherit" from multiple mixins.
 
[[Wikipedia:Mixin|Mixin]]s are similar to classes in OOP languages. An object can "inherit" from multiple mixins.
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/Mixin Mixin](<span style="font-size:smaller; color:#ecbc2a">object, ...</span>) - Copies mixins into an existing object.
+
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/Mixin Mixin](<span class="apiarg">object, ...</span>) - Copies mixins into an existing object.
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/CreateFromMixins CreateFromMixins](<span style="font-size:smaller; color:#ecbc2a">...</span>) - Copies mixins into a new object.
+
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/CreateFromMixins CreateFromMixins](<span class="apiarg">...</span>) - Copies mixins into a new object.
   
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/CreateColor CreateColor](<span style="font-size:smaller; color:#ecbc2a">r, g, b, a</span>) - Returns a [[ColorMixin]] object.
+
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/CreateColor CreateColor](<span class="apiarg">r, g, b, a</span>) - Returns a [[ColorMixin]] object.
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/CreateRectangle CreateRectangle](<span style="font-size:smaller; color:#ecbc2a">left, right, top, bottom</span>) - Returns a [[RectangleMixin]] object.
+
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/CreateRectangle CreateRectangle](<span class="apiarg">left, right, top, bottom</span>) - Returns a [[RectangleMixin]] object.
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/CreateVector2D CreateVector2D](<span style="font-size:smaller; color:#ecbc2a">x, y</span>) - Returns a [[Vector2DMixin]] object.
+
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/CreateVector2D CreateVector2D](<span class="apiarg">x, y</span>) - Returns a [[Vector2DMixin]] object.
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/CreateVector3D CreateVector3D](<span style="font-size:smaller; color:#ecbc2a">x, y, z</span>) - Returns a [[Vector3DMixin]] object.
+
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/CreateVector3D CreateVector3D](<span class="apiarg">x, y, z</span>) - Returns a [[Vector3DMixin]] object.
: <small>UI</small> [https://www.townlong-yak.com/framexml/9.0.2/ObjectAPI/Spell.lua#4 SpellMixin:CreateFromSpellID](<span style="font-size:smaller; color:#ecbc2a">spellID</span>) - Returns a [[SpellMixin]] object.
+
: <small>UI</small> [https://www.townlong-yak.com/framexml/9.0.2/ObjectAPI/Spell.lua#4 SpellMixin:CreateFromSpellID](<span class="apiarg">spellID</span>) - Returns a [[SpellMixin]] object.
: <small>UI</small> [https://www.townlong-yak.com/framexml/9.0.2/ObjectAPI/Item.lua#40 Item:CreateFromItemID](<span style="font-size:smaller; color:#ecbc2a">itemID</span>) - Returns an [[ItemMixin]] object.
+
: <small>UI</small> [https://www.townlong-yak.com/framexml/9.0.2/ObjectAPI/Item.lua#40 Item:CreateFromItemID](<span class="apiarg">itemID</span>) - Returns an [[ItemMixin]] object.
 
: <small>UI</small> [https://www.townlong-yak.com/framexml/9.0.2/ObjectAPI/ItemLocation.lua#9 ItemLocation:CreateFromBagAndSlot]() - Returns an [[ItemLocationMixin]] object.
 
: <small>UI</small> [https://www.townlong-yak.com/framexml/9.0.2/ObjectAPI/ItemLocation.lua#9 ItemLocation:CreateFromBagAndSlot]() - Returns an [[ItemLocationMixin]] object.
: <small>UI</small> [https://www.townlong-yak.com/framexml/9.0.2/ObjectAPI/PlayerLocation.lua#4 PlayerLocation:CreateFromGUID](<span style="font-size:smaller; color:#ecbc2a">guid</span>) - Returns a [[PlayerLocationMixin]] object.
+
: <small>UI</small> [https://www.townlong-yak.com/framexml/9.0.2/ObjectAPI/PlayerLocation.lua#4 PlayerLocation:CreateFromGUID](<span class="apiarg">guid</span>) - Returns a [[PlayerLocationMixin]] object.
: <small>UI</small> [https://www.townlong-yak.com/framexml/9.0.2/TransmogUtil.lua#76 TransmogUtil.CreateTransmogLocation](<span style="font-size:smaller; color:#ecbc2a">slotDescriptor, transmogType, modification</span>) - Returns a [[TransmogLocationMixin]] object.
+
: <small>UI</small> [https://www.townlong-yak.com/framexml/9.0.2/TransmogUtil.lua#76 TransmogUtil.CreateTransmogLocation](<span class="apiarg">slotDescriptor, transmogType, modification</span>) - Returns a [[TransmogLocationMixin]] object.
   
 
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/AnchorMixin AnchorMixin]
 
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/AnchorMixin AnchorMixin]
Line 5,447: Line 5,541:
 
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/TextureLoadingGroupMixin TextureLoadingGroupMixin]
 
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/TextureLoadingGroupMixin TextureLoadingGroupMixin]
   
: <small>UI</small> [[API CreateObjectPool|CreateObjectPool]](<span style="font-size:smaller; color:#ecbc2a">creationFunc, resetterFunc</span>) - Creates a [[ObjectPoolMixin]] object for [[UIOBJECT UIObject|widgets]].
+
: <small>UI</small> [[API CreateObjectPool|CreateObjectPool]](<span class="apiarg">creationFunc, resetterFunc</span>) - Creates a [[ObjectPoolMixin]] object for [[UIOBJECT UIObject|widgets]].
: <small>UI</small> [[API CreateFramePool|CreateFramePool]](<span style="font-size:smaller; color:#ecbc2a">frameType [, parent, frameTemplate, resetterFunc, forbidden]</span>) - Creates a [[FramePoolMixin]] for [[UIOBJECT Frame|Frames]].
+
: <small>UI</small> [[API CreateFramePool|CreateFramePool]](<span class="apiarg">frameType [, parent, frameTemplate, resetterFunc, forbidden]</span>) - Creates a [[FramePoolMixin]] for [[UIOBJECT Frame|Frames]].
: <small>UI</small> [[API CreateTexturePool|CreateTexturePool]](<span style="font-size:smaller; color:#ecbc2a">parent [, layer, subLayer, textureTemplate, resetterFunc]</span>) - Creates a [[TexturePoolMixin]] for [[UIOBJECT Texture|Textures]].
+
: <small>UI</small> [[API CreateTexturePool|CreateTexturePool]](<span class="apiarg">parent [, layer, subLayer, textureTemplate, resetterFunc]</span>) - Creates a [[TexturePoolMixin]] for [[UIOBJECT Texture|Textures]].
: <small>UI</small> [[API CreateFontStringPool|CreateFontStringPool]](<span style="font-size:smaller; color:#ecbc2a">parent [, layer, subLayer, fontStringTemplate, resetterFunc]</span>) - Creates a [[FontStringPoolMixin]] for [[UIOBJECT FontString|FontStrings]].
+
: <small>UI</small> [[API CreateFontStringPool|CreateFontStringPool]](<span class="apiarg">parent [, layer, subLayer, fontStringTemplate, resetterFunc]</span>) - Creates a [[FontStringPoolMixin]] for [[UIOBJECT FontString|FontStrings]].
: <small>UI</small> [[API CreateActorPool|CreateActorPool]](<span style="font-size:smaller; color:#ecbc2a">parent [, actorTemplate, resetterFunc]</span>) - Creates an [[ActorPoolMixin]] for [[UIOBJECT Actor|Actors]].
+
: <small>UI</small> [[API CreateActorPool|CreateActorPool]](<span class="apiarg">parent [, actorTemplate, resetterFunc]</span>) - Creates an [[ActorPoolMixin]] for [[UIOBJECT Actor|Actors]].
 
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/CreateFramePoolCollection CreateFramePoolCollection]() - Creates a [[FramePoolCollectionMixin]] object for [[FramePoolMixin|frame pools]].
 
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/CreateFramePoolCollection CreateFramePoolCollection]() - Creates a [[FramePoolCollectionMixin]] object for [[FramePoolMixin|frame pools]].
   
 
=== UIParent ===
 
=== UIParent ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=AbbreviateLargeNumbers AbbreviateLargeNumbers](<span style="font-size:smaller; color:#ecbc2a">value</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=AbbreviateLargeNumbers AbbreviateLargeNumbers](<span class="apiarg">value</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=AbbreviateNumbers AbbreviateNumbers](<span style="font-size:smaller; color:#ecbc2a">value</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=AbbreviateNumbers AbbreviateNumbers](<span class="apiarg">value</span>)
 
These functions toggle the Interface Panels, but if they use <code>ShowUIPanel()</code> they cannot be called in combat.
 
These functions toggle the Interface Panels, but if they use <code>ShowUIPanel()</code> they cannot be called in combat.
: <small>UI</small> {{api|ShowUIPanel}}(<span style="font-size:smaller; color:#ecbc2a">frame, force</span>)
+
: <small>UI</small> {{api|ShowUIPanel}}(<span class="apiarg">frame, force</span>)
 
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/PVEFrame_ToggleFrame PVEFrame_ToggleFrame]() - Toggles the Group Finder.
 
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/PVEFrame_ToggleFrame PVEFrame_ToggleFrame]() - Toggles the Group Finder.
 
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/ToggleAchievementFrame ToggleAchievementFrame]() - Shows the Achievements frame.
 
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/ToggleAchievementFrame ToggleAchievementFrame]() - Shows the Achievements frame.
: <small>UI</small> [[API ToggleCharacter|ToggleCharacter]](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Toggles the character pane to the specified frame.
+
: <small>UI</small> [[API ToggleCharacter|ToggleCharacter]](<span class="apiarg">index</span>) - Toggles the character pane to the specified frame.
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/ToggleCollectionsJournal ToggleCollectionsJournal](<span style="font-size:smaller; color:#ecbc2a">index</span>) - Toggles the Collections window.
+
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/ToggleCollectionsJournal ToggleCollectionsJournal](<span class="apiarg">index</span>) - Toggles the Collections window.
 
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/ToggleEncounterJournal ToggleEncounterJournal]() - Toggles the Adventure Guide.
 
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/ToggleEncounterJournal ToggleEncounterJournal]() - Toggles the Adventure Guide.
: <small>UI</small> [[API ToggleFriendsFrame|ToggleFriendsFrame]](<span style="font-size:smaller; color:#ecbc2a">[tabNumber]</span>) - Opens/closes the friends pane, optionally on a specific tab.
+
: <small>UI</small> [[API ToggleFriendsFrame|ToggleFriendsFrame]](<span class="apiarg">[tabNumber]</span>) - Opens/closes the friends pane, optionally on a specific tab.
 
: <small>UI</small> [[API ToggleGameMenu|ToggleGameMenu]]() - Opens/closes the game menu.
 
: <small>UI</small> [[API ToggleGameMenu|ToggleGameMenu]]() - Opens/closes the game menu.
 
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/ToggleGuildFrame ToggleGuildFrame]() - Toggles the Guild & Communites frame.
 
: <small>UI</small> [https://www.townlong-yak.com/framexml/go/ToggleGuildFrame ToggleGuildFrame]() - Toggles the Guild & Communites frame.
Line 5,470: Line 5,564:
 
: <small>UI</small> [[API ToggleMinimap|ToggleMinimap]]() - Turns the minimap display on/off.
 
: <small>UI</small> [[API ToggleMinimap|ToggleMinimap]]() - Turns the minimap display on/off.
 
: <small>UI</small> [[API TogglePVPUI|TogglePVPUI]]() - Opens/closes the PvP frame.
 
: <small>UI</small> [[API TogglePVPUI|TogglePVPUI]]() - Opens/closes the PvP frame.
: <small>UI</small> [[API ToggleSpellBook|ToggleSpellBook]](<span style="font-size:smaller; color:#ecbc2a">bookType</span>) - Shows the spellbook. Can show your spells or your pet's.
+
: <small>UI</small> [[API ToggleSpellBook|ToggleSpellBook]](<span class="apiarg">bookType</span>) - Shows the spellbook. Can show your spells or your pet's.
 
: <small>UI</small> [[API ToggleTalentFrame|ToggleTalentFrame]]() - Opens the Talent frame.
 
: <small>UI</small> [[API ToggleTalentFrame|ToggleTalentFrame]]() - Opens the Talent frame.
   
Line 5,480: Line 5,574:
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetClampedCurrentExpansionLevel GetClampedCurrentExpansionLevel]()
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetClampedCurrentExpansionLevel GetClampedCurrentExpansionLevel]()
 
=== AnchorUtil ===
 
=== AnchorUtil ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CreateAnchor AnchorUtil.CreateAnchor](<span style="font-size:smaller; color:#ecbc2a">point, relativeTo, relativePoint, x, y</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CreateAnchor AnchorUtil.CreateAnchor](<span class="apiarg">point, relativeTo, relativePoint, x, y</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CreateGridLayout AnchorUtil.CreateGridLayout](<span style="font-size:smaller; color:#ecbc2a">direction, rowSize, spacingX, spacingY</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CreateGridLayout AnchorUtil.CreateGridLayout](<span class="apiarg">direction, rowSize, spacingX, spacingY</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CreateAnchorFromPoint AnchorUtil.CreateAnchorFromPoint](<span style="font-size:smaller; color:#ecbc2a">region, pointIndex</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CreateAnchorFromPoint AnchorUtil.CreateAnchorFromPoint](<span class="apiarg">region, pointIndex</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GridLayout AnchorUtil.GridLayout](<span style="font-size:smaller; color:#ecbc2a">frames, initialAnchor, layout</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GridLayout AnchorUtil.GridLayout](<span class="apiarg">frames, initialAnchor, layout</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GridLayoutFactoryByCount AnchorUtil.GridLayoutFactoryByCount](<span style="font-size:smaller; color:#ecbc2a">factoryFunction, count, initialAnchor, layout</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GridLayoutFactoryByCount AnchorUtil.GridLayoutFactoryByCount](<span class="apiarg">factoryFunction, count, initialAnchor, layout</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GridLayoutFactory AnchorUtil.GridLayoutFactory](<span style="font-size:smaller; color:#ecbc2a">factoryFunction, initialAnchor, totalWidth, totalHeight, overrideDirection, overridePaddingX, overridePaddingY</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GridLayoutFactory AnchorUtil.GridLayoutFactory](<span class="apiarg">factoryFunction, initialAnchor, totalWidth, totalHeight, overrideDirection, overridePaddingX, overridePaddingY</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=MirrorRegionsAlongVerticalAxis AnchorUtil.MirrorRegionsAlongVerticalAxis](<span style="font-size:smaller; color:#ecbc2a">mirrorDescriptions</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=MirrorRegionsAlongVerticalAxis AnchorUtil.MirrorRegionsAlongVerticalAxis](<span class="apiarg">mirrorDescriptions</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=MirrorRegionsAlongHorizontalAxis AnchorUtil.MirrorRegionsAlongHorizontalAxis](<span style="font-size:smaller; color:#ecbc2a">mirrorDescriptions</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=MirrorRegionsAlongHorizontalAxis AnchorUtil.MirrorRegionsAlongHorizontalAxis](<span class="apiarg">mirrorDescriptions</span>)
 
=== ColorUtil ===
 
=== ColorUtil ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CreateColorFromHexString CreateColorFromHexString](<span style="font-size:smaller; color:#ecbc2a">hexColor</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CreateColorFromHexString CreateColorFromHexString](<span class="apiarg">hexColor</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CreateColorFromBytes CreateColorFromBytes](<span style="font-size:smaller; color:#ecbc2a">r, g, b, a</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CreateColorFromBytes CreateColorFromBytes](<span class="apiarg">r, g, b, a</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=AreColorsEqual AreColorsEqual](<span style="font-size:smaller; color:#ecbc2a">left, right</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=AreColorsEqual AreColorsEqual](<span class="apiarg">left, right</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetClassColor GetClassColor](<span style="font-size:smaller; color:#ecbc2a">classFilename</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetClassColor GetClassColor](<span class="apiarg">classFilename</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetClassColorObj GetClassColorObj](<span style="font-size:smaller; color:#ecbc2a">classFilename</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetClassColorObj GetClassColorObj](<span class="apiarg">classFilename</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetClassColoredTextForUnit GetClassColoredTextForUnit](<span style="font-size:smaller; color:#ecbc2a">unit, text</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetClassColoredTextForUnit GetClassColoredTextForUnit](<span class="apiarg">unit, text</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetFactionColor GetFactionColor](<span style="font-size:smaller; color:#ecbc2a">factionGroupTag</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetFactionColor GetFactionColor](<span class="apiarg">factionGroupTag</span>)
 
=== EasingUtil ===
 
=== EasingUtil ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=InQuadratic EasingUtil.InQuadratic](<span style="font-size:smaller; color:#ecbc2a">percent</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=InQuadratic EasingUtil.InQuadratic](<span class="apiarg">percent</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=OutQuadratic EasingUtil.OutQuadratic](<span style="font-size:smaller; color:#ecbc2a">percent</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=OutQuadratic EasingUtil.OutQuadratic](<span class="apiarg">percent</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=InOutQuadratic EasingUtil.InOutQuadratic](<span style="font-size:smaller; color:#ecbc2a">percent</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=InOutQuadratic EasingUtil.InOutQuadratic](<span class="apiarg">percent</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=InCubic EasingUtil.InCubic](<span style="font-size:smaller; color:#ecbc2a">percent</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=InCubic EasingUtil.InCubic](<span class="apiarg">percent</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=OutCubic EasingUtil.OutCubic](<span style="font-size:smaller; color:#ecbc2a">percent</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=OutCubic EasingUtil.OutCubic](<span class="apiarg">percent</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=InOutCubic EasingUtil.InOutCubic](<span style="font-size:smaller; color:#ecbc2a">percent</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=InOutCubic EasingUtil.InOutCubic](<span class="apiarg">percent</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=InQuartic EasingUtil.InQuartic](<span style="font-size:smaller; color:#ecbc2a">percent</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=InQuartic EasingUtil.InQuartic](<span class="apiarg">percent</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=OutQuartic EasingUtil.OutQuartic](<span style="font-size:smaller; color:#ecbc2a">percent</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=OutQuartic EasingUtil.OutQuartic](<span class="apiarg">percent</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=InOutQuartic EasingUtil.InOutQuartic](<span style="font-size:smaller; color:#ecbc2a">percent</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=InOutQuartic EasingUtil.InOutQuartic](<span class="apiarg">percent</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=InQuintic EasingUtil.InQuintic](<span style="font-size:smaller; color:#ecbc2a">percent</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=InQuintic EasingUtil.InQuintic](<span class="apiarg">percent</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=OutQuintic EasingUtil.OutQuintic](<span style="font-size:smaller; color:#ecbc2a">percent</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=OutQuintic EasingUtil.OutQuintic](<span class="apiarg">percent</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=InOutQuintic EasingUtil.InOutQuintic](<span style="font-size:smaller; color:#ecbc2a">percent</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=InOutQuintic EasingUtil.InOutQuintic](<span class="apiarg">percent</span>)
 
=== ErrorUtil ===
 
=== ErrorUtil ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CallErrorHandler CallErrorHandler](<span style="font-size:smaller; color:#ecbc2a">...</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CallErrorHandler CallErrorHandler](<span class="apiarg">...</span>)
 
=== Flags ===
 
=== Flags ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=Flags_CreateMask Flags_CreateMask](<span style="font-size:smaller; color:#ecbc2a">...</span>) - Creates a bitmask.
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=Flags_CreateMask Flags_CreateMask](<span class="apiarg">...</span>) - Creates a bitmask.
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=Flags_CreateMaskFromTable Flags_CreateMaskFromTable](<span style="font-size:smaller; color:#ecbc2a">flagsTable</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=Flags_CreateMaskFromTable Flags_CreateMaskFromTable](<span class="apiarg">flagsTable</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsSet FlagsUtil.IsSet](<span style="font-size:smaller; color:#ecbc2a">bitMask, flagOrMask</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsSet FlagsUtil.IsSet](<span class="apiarg">bitMask, flagOrMask</span>)
 
=== FormattingUtil ===
 
=== FormattingUtil ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SplitTextIntoLines SplitTextIntoLines](<span style="font-size:smaller; color:#ecbc2a">text, delimiter</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SplitTextIntoLines SplitTextIntoLines](<span class="apiarg">text, delimiter</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SplitTextIntoHeaderAndNonHeader SplitTextIntoHeaderAndNonHeader](<span style="font-size:smaller; color:#ecbc2a">text</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SplitTextIntoHeaderAndNonHeader SplitTextIntoHeaderAndNonHeader](<span class="apiarg">text</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=FormatValueWithSign FormatValueWithSign](<span style="font-size:smaller; color:#ecbc2a">value</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=FormatValueWithSign FormatValueWithSign](<span class="apiarg">value</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=FormatLargeNumber FormatLargeNumber](<span style="font-size:smaller; color:#ecbc2a">amount</span>) - Formats a number with dot or comma number seperators.
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=FormatLargeNumber FormatLargeNumber](<span class="apiarg">amount</span>) - Formats a number with dot or comma number seperators.
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetMoneyString GetMoneyString](<span style="font-size:smaller; color:#ecbc2a">money, separateThousands</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetMoneyString GetMoneyString](<span class="apiarg">money, separateThousands</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=FormatPercentage FormatPercentage](<span style="font-size:smaller; color:#ecbc2a">percentage, roundToNearestInteger</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=FormatPercentage FormatPercentage](<span class="apiarg">percentage, roundToNearestInteger</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=FormatFraction FormatFraction](<span style="font-size:smaller; color:#ecbc2a">numerator, denominator</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=FormatFraction FormatFraction](<span class="apiarg">numerator, denominator</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetHighlightedNumberDifferenceString GetHighlightedNumberDifferenceString](<span style="font-size:smaller; color:#ecbc2a">baseString, newString</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetHighlightedNumberDifferenceString GetHighlightedNumberDifferenceString](<span class="apiarg">baseString, newString</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=FormatUnreadMailTooltip FormatUnreadMailTooltip](<span style="font-size:smaller; color:#ecbc2a">tooltip, headerText, senders</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=FormatUnreadMailTooltip FormatUnreadMailTooltip](<span class="apiarg">tooltip, headerText, senders</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetCurrencyString GetCurrencyString](<span style="font-size:smaller; color:#ecbc2a">currencyID, overrideAmount, colorCode, abbreviate</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetCurrencyString GetCurrencyString](<span class="apiarg">currencyID, overrideAmount, colorCode, abbreviate</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetCurrenciesString GetCurrenciesString](<span style="font-size:smaller; color:#ecbc2a">currencies</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetCurrenciesString GetCurrenciesString](<span class="apiarg">currencies</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ReplaceGenderTokens ReplaceGenderTokens](<span style="font-size:smaller; color:#ecbc2a">string, gender</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ReplaceGenderTokens ReplaceGenderTokens](<span class="apiarg">string, gender</span>)
 
=== FrameUtil ===
 
=== FrameUtil ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=RegisterFrameForEvents FrameUtil.RegisterFrameForEvents](<span style="font-size:smaller; color:#ecbc2a">frame, events</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=RegisterFrameForEvents FrameUtil.RegisterFrameForEvents](<span class="apiarg">frame, events</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=UnregisterFrameForEvents FrameUtil.UnregisterFrameForEvents](<span style="font-size:smaller; color:#ecbc2a">frame, events</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=UnregisterFrameForEvents FrameUtil.UnregisterFrameForEvents](<span class="apiarg">frame, events</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=RegisterFrameForUnitEvents FrameUtil.RegisterFrameForUnitEvents](<span style="font-size:smaller; color:#ecbc2a">frame, events, ...</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=RegisterFrameForUnitEvents FrameUtil.RegisterFrameForUnitEvents](<span class="apiarg">frame, events, ...</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=DoesAncestryInclude DoesAncestryInclude](<span style="font-size:smaller; color:#ecbc2a">ancestry, frame</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=DoesAncestryInclude DoesAncestryInclude](<span class="apiarg">ancestry, frame</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetUnscaledFrameRect GetUnscaledFrameRect](<span style="font-size:smaller; color:#ecbc2a">frame, scale</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetUnscaledFrameRect GetUnscaledFrameRect](<span class="apiarg">frame, scale</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ApplyDefaultScale ApplyDefaultScale](<span style="font-size:smaller; color:#ecbc2a">frame, minScale, maxScale</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ApplyDefaultScale ApplyDefaultScale](<span class="apiarg">frame, minScale, maxScale</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=UpdateScaleForFit UpdateScaleForFit](<span style="font-size:smaller; color:#ecbc2a">frame</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=UpdateScaleForFit UpdateScaleForFit](<span class="apiarg">frame</span>)
 
=== FunctionUtil ===
 
=== FunctionUtil ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ExecuteFrameScript ExecuteFrameScript](<span style="font-size:smaller; color:#ecbc2a">frame, scriptName, ...</span>) - Manually calls the handler for a frame script.
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ExecuteFrameScript ExecuteFrameScript](<span class="apiarg">frame, scriptName, ...</span>) - Manually calls the handler for a frame script.
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CallMethodOnNearestAncestor CallMethodOnNearestAncestor](<span style="font-size:smaller; color:#ecbc2a">self, methodName, ...</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CallMethodOnNearestAncestor CallMethodOnNearestAncestor](<span class="apiarg">self, methodName, ...</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetValueOrCallFunction GetValueOrCallFunction](<span style="font-size:smaller; color:#ecbc2a">tbl, key, ...</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetValueOrCallFunction GetValueOrCallFunction](<span class="apiarg">tbl, key, ...</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GenerateClosure GenerateClosure](<span style="font-size:smaller; color:#ecbc2a">f, ...</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GenerateClosure GenerateClosure](<span class="apiarg">f, ...</span>)
 
=== InterfaceUtil ===
 
=== InterfaceUtil ===
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ReloadUI ReloadUI]()
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ReloadUI ReloadUI]()
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=OpenToSubscriptionProduct StoreInterfaceUtil.OpenToSubscriptionProduct]()
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=OpenToSubscriptionProduct StoreInterfaceUtil.OpenToSubscriptionProduct]()
 
=== LinkUtil ===
 
=== LinkUtil ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ExtractHyperlinkString ExtractHyperlinkString](<span style="font-size:smaller; color:#ecbc2a">linkString</span>) - Strips any UI escape sequence (e.g. color coding) from a [[UI_escape_sequences#Hyperlinks|hyperlink]].
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ExtractHyperlinkString ExtractHyperlinkString](<span class="apiarg">linkString</span>) - Strips any UI escape sequence (e.g. color coding) from a [[UI_escape_sequences#Hyperlinks|hyperlink]].
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ExtractLinkData ExtractLinkData](<span style="font-size:smaller; color:#ecbc2a">link</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ExtractLinkData ExtractLinkData](<span class="apiarg">link</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ExtractQuestRewardID ExtractQuestRewardID](<span style="font-size:smaller; color:#ecbc2a">linkString</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ExtractQuestRewardID ExtractQuestRewardID](<span class="apiarg">linkString</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetItemInfoFromHyperlink GetItemInfoFromHyperlink](<span style="font-size:smaller; color:#ecbc2a">link</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetItemInfoFromHyperlink GetItemInfoFromHyperlink](<span class="apiarg">link</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetAchievementInfoFromHyperlink GetAchievementInfoFromHyperlink](<span style="font-size:smaller; color:#ecbc2a">link</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetAchievementInfoFromHyperlink GetAchievementInfoFromHyperlink](<span class="apiarg">link</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetURLIndexAndLoadURL GetURLIndexAndLoadURL](<span style="font-size:smaller; color:#ecbc2a">self, link</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetURLIndexAndLoadURL GetURLIndexAndLoadURL](<span class="apiarg">self, link</span>)
   
 
=== NineSlice ===
 
=== NineSlice ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ApplyUniqueCornersLayout NineSliceUtil.ApplyUniqueCornersLayout](<span style="font-size:smaller; color:#ecbc2a">self, textureKit</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ApplyUniqueCornersLayout NineSliceUtil.ApplyUniqueCornersLayout](<span class="apiarg">self, textureKit</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ApplyIdenticalCornersLayout NineSliceUtil.ApplyIdenticalCornersLayout](<span style="font-size:smaller; color:#ecbc2a">self, textureKit</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ApplyIdenticalCornersLayout NineSliceUtil.ApplyIdenticalCornersLayout](<span class="apiarg">self, textureKit</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ApplyLayout NineSliceUtil.ApplyLayout](<span style="font-size:smaller; color:#ecbc2a">container, userLayout, textureKit</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ApplyLayout NineSliceUtil.ApplyLayout](<span class="apiarg">container, userLayout, textureKit</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=DisableSharpening NineSliceUtil.DisableSharpening](<span style="font-size:smaller; color:#ecbc2a">container</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=DisableSharpening NineSliceUtil.DisableSharpening](<span class="apiarg">container</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ApplyLayoutByName NineSliceUtil.ApplyLayoutByName](<span style="font-size:smaller; color:#ecbc2a">container, userLayoutName, textureKit</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ApplyLayoutByName NineSliceUtil.ApplyLayoutByName](<span class="apiarg">container, userLayoutName, textureKit</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetLayout NineSliceUtil.GetLayout](<span style="font-size:smaller; color:#ecbc2a">layoutName</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetLayout NineSliceUtil.GetLayout](<span class="apiarg">layoutName</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=AddLayout NineSliceUtil.AddLayout](<span style="font-size:smaller; color:#ecbc2a">layoutName, layout</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=AddLayout NineSliceUtil.AddLayout](<span class="apiarg">layoutName, layout</span>)
 
=== PixelUtil ===
 
=== PixelUtil ===
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetPixelToUIUnitFactor PixelUtil.GetPixelToUIUnitFactor]()
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetPixelToUIUnitFactor PixelUtil.GetPixelToUIUnitFactor]()
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetNearestPixelSize PixelUtil.GetNearestPixelSize](<span style="font-size:smaller; color:#ecbc2a">uiUnitSize, layoutScale, minPixels</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetNearestPixelSize PixelUtil.GetNearestPixelSize](<span class="apiarg">uiUnitSize, layoutScale, minPixels</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SetWidth PixelUtil.SetWidth](<span style="font-size:smaller; color:#ecbc2a">region, width, minPixels</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SetWidth PixelUtil.SetWidth](<span class="apiarg">region, width, minPixels</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SetHeight PixelUtil.SetHeight](<span style="font-size:smaller; color:#ecbc2a">region, height, minPixels</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SetHeight PixelUtil.SetHeight](<span class="apiarg">region, height, minPixels</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SetSize PixelUtil.SetSize](<span style="font-size:smaller; color:#ecbc2a">region, width, height, minWidthPixels, minHeightPixels</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SetSize PixelUtil.SetSize](<span class="apiarg">region, width, height, minWidthPixels, minHeightPixels</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SetPoint PixelUtil.SetPoint](<span style="font-size:smaller; color:#ecbc2a">region, point, relativeTo, relativePoint, offsetX, offsetY, minOffsetXPixels, minOffsetYPixels</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SetPoint PixelUtil.SetPoint](<span class="apiarg">region, point, relativeTo, relativePoint, offsetX, offsetY, minOffsetXPixels, minOffsetYPixels</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SetStatusBarValue PixelUtil.SetStatusBarValue](<span style="font-size:smaller; color:#ecbc2a">statusBar, value</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SetStatusBarValue PixelUtil.SetStatusBarValue](<span class="apiarg">statusBar, value</span>)
 
=== RegionUtil ===
 
=== RegionUtil ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsDescendantOf RegionUtil.IsDescendantOf](<span style="font-size:smaller; color:#ecbc2a">potentialDescendant, potentialAncestor</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsDescendantOf RegionUtil.IsDescendantOf](<span class="apiarg">potentialDescendant, potentialAncestor</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsDescendantOfOrSame RegionUtil.IsDescendantOfOrSame](<span style="font-size:smaller; color:#ecbc2a">potentialDescendant, potentialAncestorOrSame</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsDescendantOfOrSame RegionUtil.IsDescendantOfOrSame](<span class="apiarg">potentialDescendant, potentialAncestorOrSame</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CalculateDistanceSqBetween RegionUtil.CalculateDistanceSqBetween](<span style="font-size:smaller; color:#ecbc2a">region1, region2</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CalculateDistanceSqBetween RegionUtil.CalculateDistanceSqBetween](<span class="apiarg">region1, region2</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CalculateDistanceBetween RegionUtil.CalculateDistanceBetween](<span style="font-size:smaller; color:#ecbc2a">region1, region2</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CalculateDistanceBetween RegionUtil.CalculateDistanceBetween](<span class="apiarg">region1, region2</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CalculateAngleBetween RegionUtil.CalculateAngleBetween](<span style="font-size:smaller; color:#ecbc2a">region1, region2</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CalculateAngleBetween RegionUtil.CalculateAngleBetween](<span class="apiarg">region1, region2</span>)
 
=== RestrictedInfrastructure ===
 
=== RestrictedInfrastructure ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=tostringall tostringall](<span style="font-size:smaller; color:#ecbc2a">...</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=tostringall tostringall](<span class="apiarg">...</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsFrameHandle IsFrameHandle](<span style="font-size:smaller; color:#ecbc2a">handle, protected</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsFrameHandle IsFrameHandle](<span class="apiarg">handle, protected</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetFrameHandleFrame GetFrameHandleFrame](<span style="font-size:smaller; color:#ecbc2a">handle, protected, onlyProtected</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetFrameHandleFrame GetFrameHandleFrame](<span class="apiarg">handle, protected, onlyProtected</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetFrameHandle GetFrameHandle](<span style="font-size:smaller; color:#ecbc2a">frame, protected</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetFrameHandle GetFrameHandle](<span class="apiarg">frame, protected</span>)
 
=== ScriptAnimationUtil ===
 
=== ScriptAnimationUtil ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetScriptAnimationLock ScriptAnimationUtil.GetScriptAnimationLock](<span style="font-size:smaller; color:#ecbc2a">region</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetScriptAnimationLock ScriptAnimationUtil.GetScriptAnimationLock](<span class="apiarg">region</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ReleaseScriptAnimationLock ScriptAnimationUtil.ReleaseScriptAnimationLock](<span style="font-size:smaller; color:#ecbc2a">region</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ReleaseScriptAnimationLock ScriptAnimationUtil.ReleaseScriptAnimationLock](<span class="apiarg">region</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsScriptAnimationLockActive ScriptAnimationUtil.IsScriptAnimationLockActive](<span style="font-size:smaller; color:#ecbc2a">region</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsScriptAnimationLockActive ScriptAnimationUtil.IsScriptAnimationLockActive](<span class="apiarg">region</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ShakeFrameRandom ScriptAnimationUtil.ShakeFrameRandom](<span style="font-size:smaller; color:#ecbc2a">region, magnitude, duration, frequency</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ShakeFrameRandom ScriptAnimationUtil.ShakeFrameRandom](<span class="apiarg">region, magnitude, duration, frequency</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ShakeFrame ScriptAnimationUtil.ShakeFrame](<span style="font-size:smaller; color:#ecbc2a">region, shake, maximumDuration, frequency</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ShakeFrame ScriptAnimationUtil.ShakeFrame](<span class="apiarg">region, shake, maximumDuration, frequency</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GenerateEasedVariationCallback ScriptAnimationUtil.GenerateEasedVariationCallback](<span style="font-size:smaller; color:#ecbc2a">easingFunction, distanceX, distanceY, alpha, scale</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GenerateEasedVariationCallback ScriptAnimationUtil.GenerateEasedVariationCallback](<span class="apiarg">easingFunction, distanceX, distanceY, alpha, scale</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=StartScriptAnimation ScriptAnimationUtil.StartScriptAnimation](<span style="font-size:smaller; color:#ecbc2a">region, variationCallback, duration, onFinish</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=StartScriptAnimation ScriptAnimationUtil.StartScriptAnimation](<span class="apiarg">region, variationCallback, duration, onFinish</span>)
 
=== ScriptedAnimationEffects ===
 
=== ScriptedAnimationEffects ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetEffectByID ScriptedAnimationEffectsUtil.GetEffectByID](<span style="font-size:smaller; color:#ecbc2a">effectID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetEffectByID ScriptedAnimationEffectsUtil.GetEffectByID](<span class="apiarg">effectID</span>)
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ReloadDB ScriptedAnimationEffectsUtil.ReloadDB]()
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ReloadDB ScriptedAnimationEffectsUtil.ReloadDB]()
 
=== TextureUtil ===
 
=== TextureUtil ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetTextureInfo GetTextureInfo](<span style="font-size:smaller; color:#ecbc2a">obj</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetTextureInfo GetTextureInfo](<span class="apiarg">obj</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SetClampedTextureRotation SetClampedTextureRotation](<span style="font-size:smaller; color:#ecbc2a">texture, rotationDegrees</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SetClampedTextureRotation SetClampedTextureRotation](<span class="apiarg">texture, rotationDegrees</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ClearClampedTextureRotation ClearClampedTextureRotation](<span style="font-size:smaller; color:#ecbc2a">texture</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ClearClampedTextureRotation ClearClampedTextureRotation](<span class="apiarg">texture</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetTexCoordsByGrid GetTexCoordsByGrid](<span style="font-size:smaller; color:#ecbc2a">xOffset, yOffset, textureWidth, textureHeight, gridWidth, gridHeight</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetTexCoordsByGrid GetTexCoordsByGrid](<span class="apiarg">xOffset, yOffset, textureWidth, textureHeight, gridWidth, gridHeight</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetTexCoordsForRole GetTexCoordsForRole](<span style="font-size:smaller; color:#ecbc2a">role</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetTexCoordsForRole GetTexCoordsForRole](<span class="apiarg">role</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CreateTextureMarkup CreateTextureMarkup](<span style="font-size:smaller; color:#ecbc2a">file, fileWidth, fileHeight, width, height, left, right, top, bottom, xOffset, yOffset</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CreateTextureMarkup CreateTextureMarkup](<span class="apiarg">file, fileWidth, fileHeight, width, height, left, right, top, bottom, xOffset, yOffset</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CreateAtlasMarkup CreateAtlasMarkup](<span style="font-size:smaller; color:#ecbc2a">atlasName, width, height, offsetX, offsetY</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CreateAtlasMarkup CreateAtlasMarkup](<span class="apiarg">atlasName, width, height, offsetX, offsetY</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SetupAtlasesOnRegions SetupAtlasesOnRegions](<span style="font-size:smaller; color:#ecbc2a">frame, regionsToAtlases, useAtlasSize</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SetupAtlasesOnRegions SetupAtlasesOnRegions](<span class="apiarg">frame, regionsToAtlases, useAtlasSize</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetFinalNameFromTextureKit GetFinalNameFromTextureKit](<span style="font-size:smaller; color:#ecbc2a">fmt, textureKits</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetFinalNameFromTextureKit GetFinalNameFromTextureKit](<span class="apiarg">fmt, textureKits</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SetupTextureKitOnFrame SetupTextureKitOnFrame](<span style="font-size:smaller; color:#ecbc2a">textureKit, frame, fmt, setVisibility, useAtlasSize</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SetupTextureKitOnFrame SetupTextureKitOnFrame](<span class="apiarg">textureKit, frame, fmt, setVisibility, useAtlasSize</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SetupTextureKitOnFrames SetupTextureKitOnFrames](<span style="font-size:smaller; color:#ecbc2a">textureKit, frames, setVisibilityOfRegions, useAtlasSize</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SetupTextureKitOnFrames SetupTextureKitOnFrames](<span class="apiarg">textureKit, frames, setVisibilityOfRegions, useAtlasSize</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SetupTextureKitOnRegions SetupTextureKitOnRegions](<span style="font-size:smaller; color:#ecbc2a">textureKit, frame, regions, setVisibilityOfRegions, useAtlasSize</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SetupTextureKitOnRegions SetupTextureKitOnRegions](<span class="apiarg">textureKit, frame, regions, setVisibilityOfRegions, useAtlasSize</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SetupTextureKitsFromRegionInfo SetupTextureKitsFromRegionInfo](<span style="font-size:smaller; color:#ecbc2a">textureKit, frame, regionInfoList</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SetupTextureKitsFromRegionInfo SetupTextureKitsFromRegionInfo](<span class="apiarg">textureKit, frame, regionInfoList</span>)
 
=== TimeUtil ===
 
=== TimeUtil ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SecondsToMinutes SecondsToMinutes](<span style="font-size:smaller; color:#ecbc2a">seconds</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SecondsToMinutes SecondsToMinutes](<span class="apiarg">seconds</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=MinutesToSeconds MinutesToSeconds](<span style="font-size:smaller; color:#ecbc2a">minutes</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=MinutesToSeconds MinutesToSeconds](<span class="apiarg">minutes</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=HasTimePassed HasTimePassed](<span style="font-size:smaller; color:#ecbc2a">testTime, amountOfTime</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=HasTimePassed HasTimePassed](<span class="apiarg">testTime, amountOfTime</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SecondsToClock SecondsToClock](<span style="font-size:smaller; color:#ecbc2a">seconds, displayZeroHours</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SecondsToClock SecondsToClock](<span class="apiarg">seconds, displayZeroHours</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SecondsToTime SecondsToTime](<span style="font-size:smaller; color:#ecbc2a">seconds, noSeconds, notAbbreviated, maxCount, roundUp</span>) - Converts a number of seconds into a readable formatted string.
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SecondsToTime SecondsToTime](<span class="apiarg">seconds, noSeconds, notAbbreviated, maxCount, roundUp</span>) - Converts a number of seconds into a readable formatted string.
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SecondsToTimeAbbrev SecondsToTimeAbbrev](<span style="font-size:smaller; color:#ecbc2a">seconds</span>) - Converts a number of seconds into a readable and abbreviated formatted string.
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SecondsToTimeAbbrev SecondsToTimeAbbrev](<span class="apiarg">seconds</span>) - Converts a number of seconds into a readable and abbreviated formatted string.
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=FormatShortDate FormatShortDate](<span style="font-size:smaller; color:#ecbc2a">day, month, year</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=FormatShortDate FormatShortDate](<span class="apiarg">day, month, year</span>)
   
 
=== UnitUtil ===
 
=== UnitUtil ===
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetPlayerGuid GetPlayerGuid]()
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetPlayerGuid GetPlayerGuid]()
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsPlayerGuid IsPlayerGuid](<span style="font-size:smaller; color:#ecbc2a">guid</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsPlayerGuid IsPlayerGuid](<span class="apiarg">guid</span>)
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsPlayerInitialSpec IsPlayerInitialSpec]()
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsPlayerInitialSpec IsPlayerInitialSpec]()
   
Line 5,621: Line 5,715:
 
'''[https://github.com/Gethe/wow-ui-source/tree/live/FrameXML Interface/FrameXML]'''
 
'''[https://github.com/Gethe/wow-ui-source/tree/live/FrameXML Interface/FrameXML]'''
 
=== AchievementUtil ===
 
=== AchievementUtil ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsCriteriaAchievementEarned AchievementUtil.IsCriteriaAchievementEarned](<span style="font-size:smaller; color:#ecbc2a">achievementID, criteriaIndex</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsCriteriaAchievementEarned AchievementUtil.IsCriteriaAchievementEarned](<span class="apiarg">achievementID, criteriaIndex</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsCriteriaReputationGained AchievementUtil.IsCriteriaReputationGained](<span style="font-size:smaller; color:#ecbc2a">achievementID, criteriaIndex, checkCriteriaAchievement, countHiddenCriteria</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsCriteriaReputationGained AchievementUtil.IsCriteriaReputationGained](<span class="apiarg">achievementID, criteriaIndex, checkCriteriaAchievement, countHiddenCriteria</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsCategoryFeatOfStrength AchievementUtil.IsCategoryFeatOfStrength](<span style="font-size:smaller; color:#ecbc2a">category</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsCategoryFeatOfStrength AchievementUtil.IsCategoryFeatOfStrength](<span class="apiarg">category</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsFeatOfStrength AchievementUtil.IsFeatOfStrength](<span style="font-size:smaller; color:#ecbc2a">achievementID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsFeatOfStrength AchievementUtil.IsFeatOfStrength](<span class="apiarg">achievementID</span>)
 
=== ActionButtonUtil ===
 
=== ActionButtonUtil ===
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ShowAllActionButtonGrids ActionButtonUtil.ShowAllActionButtonGrids]()
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ShowAllActionButtonGrids ActionButtonUtil.ShowAllActionButtonGrids]()
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=HideAllActionButtonGrids ActionButtonUtil.HideAllActionButtonGrids]()
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=HideAllActionButtonGrids ActionButtonUtil.HideAllActionButtonGrids]()
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SetAllQuickKeybindButtonHighlights ActionButtonUtil.SetAllQuickKeybindButtonHighlights](<span style="font-size:smaller; color:#ecbc2a">show</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SetAllQuickKeybindButtonHighlights ActionButtonUtil.SetAllQuickKeybindButtonHighlights](<span class="apiarg">show</span>)
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ShowAllQuickKeybindButtonHighlights ActionButtonUtil.ShowAllQuickKeybindButtonHighlights]()
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ShowAllQuickKeybindButtonHighlights ActionButtonUtil.ShowAllQuickKeybindButtonHighlights]()
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=HideAllQuickKeybindButtonHighlights ActionButtonUtil.HideAllQuickKeybindButtonHighlights]()
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=HideAllQuickKeybindButtonHighlights ActionButtonUtil.HideAllQuickKeybindButtonHighlights]()
 
=== AzeriteEssenceUtil ===
 
=== AzeriteEssenceUtil ===
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=HasAnyUnlockableMilestones AzeriteEssenceUtil.HasAnyUnlockableMilestones]()
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=HasAnyUnlockableMilestones AzeriteEssenceUtil.HasAnyUnlockableMilestones]()
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetMilestoneAtPowerLevel AzeriteEssenceUtil.GetMilestoneAtPowerLevel](<span style="font-size:smaller; color:#ecbc2a">powerLevel</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetMilestoneAtPowerLevel AzeriteEssenceUtil.GetMilestoneAtPowerLevel](<span class="apiarg">powerLevel</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetMilestoneSpellInfo AzeriteEssenceUtil.GetMilestoneSpellInfo](<span style="font-size:smaller; color:#ecbc2a">milestoneID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetMilestoneSpellInfo AzeriteEssenceUtil.GetMilestoneSpellInfo](<span class="apiarg">milestoneID</span>)
 
=== AzeriteUtil ===
 
=== AzeriteUtil ===
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=EnumerateEquipedAzeriteEmpoweredItems AzeriteUtil.EnumerateEquipedAzeriteEmpoweredItems]()
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=EnumerateEquipedAzeriteEmpoweredItems AzeriteUtil.EnumerateEquipedAzeriteEmpoweredItems]()
Line 5,640: Line 5,734:
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=DoEquippedItemsHaveUnselectedPowers AzeriteUtil.DoEquippedItemsHaveUnselectedPowers]()
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=DoEquippedItemsHaveUnselectedPowers AzeriteUtil.DoEquippedItemsHaveUnselectedPowers]()
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetEquippedItemsUnselectedPowersCount AzeriteUtil.GetEquippedItemsUnselectedPowersCount]()
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetEquippedItemsUnselectedPowersCount AzeriteUtil.GetEquippedItemsUnselectedPowersCount]()
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GenerateRequiredSpecTooltipLine AzeriteUtil.GenerateRequiredSpecTooltipLine](<span style="font-size:smaller; color:#ecbc2a">powerID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GenerateRequiredSpecTooltipLine AzeriteUtil.GenerateRequiredSpecTooltipLine](<span class="apiarg">powerID</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=FindAzeritePowerTier AzeriteUtil.FindAzeritePowerTier](<span style="font-size:smaller; color:#ecbc2a">azeriteEmpoweredItemSource, powerID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=FindAzeritePowerTier AzeriteUtil.FindAzeritePowerTier](<span class="apiarg">azeriteEmpoweredItemSource, powerID</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetSelectedAzeritePowerInTier AzeriteUtil.GetSelectedAzeritePowerInTier](<span style="font-size:smaller; color:#ecbc2a">azeriteEmpoweredItemSource, tierIndex</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetSelectedAzeritePowerInTier AzeriteUtil.GetSelectedAzeritePowerInTier](<span class="apiarg">azeriteEmpoweredItemSource, tierIndex</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=HasSelectedAnyAzeritePower AzeriteUtil.HasSelectedAnyAzeritePower](<span style="font-size:smaller; color:#ecbc2a">azeriteEmpoweredItemSource</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=HasSelectedAnyAzeritePower AzeriteUtil.HasSelectedAnyAzeritePower](<span class="apiarg">azeriteEmpoweredItemSource</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=DoesBagContainAnyAzeriteEmpoweredItems AzeriteUtil.DoesBagContainAnyAzeriteEmpoweredItems](<span style="font-size:smaller; color:#ecbc2a">bagID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=DoesBagContainAnyAzeriteEmpoweredItems AzeriteUtil.DoesBagContainAnyAzeriteEmpoweredItems](<span class="apiarg">bagID</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsAzeriteItemLocationBankBag AzeriteUtil.IsAzeriteItemLocationBankBag](<span style="font-size:smaller; color:#ecbc2a">azeriteItemLocation</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsAzeriteItemLocationBankBag AzeriteUtil.IsAzeriteItemLocationBankBag](<span class="apiarg">azeriteItemLocation</span>)
 
=== CalendarUtil ===
 
=== CalendarUtil ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetCalendarInviteStatusInfo CalendarUtil.GetCalendarInviteStatusInfo](<span style="font-size:smaller; color:#ecbc2a">inviteStatus</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetCalendarInviteStatusInfo CalendarUtil.GetCalendarInviteStatusInfo](<span class="apiarg">inviteStatus</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetEventBroadcastText CalendarUtil.GetEventBroadcastText](<span style="font-size:smaller; color:#ecbc2a">event</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetEventBroadcastText CalendarUtil.GetEventBroadcastText](<span class="apiarg">event</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetOngoingEventBroadcastText CalendarUtil.GetOngoingEventBroadcastText](<span style="font-size:smaller; color:#ecbc2a">event</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetOngoingEventBroadcastText CalendarUtil.GetOngoingEventBroadcastText](<span class="apiarg">event</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=FormatCalendarTimeWeekday CalendarUtil.FormatCalendarTimeWeekday](<span style="font-size:smaller; color:#ecbc2a">messageDate</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=FormatCalendarTimeWeekday CalendarUtil.FormatCalendarTimeWeekday](<span class="apiarg">messageDate</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=AreDatesEqual CalendarUtil.AreDatesEqual](<span style="font-size:smaller; color:#ecbc2a">firstCalendarTime, secondCalendarTime</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=AreDatesEqual CalendarUtil.AreDatesEqual](<span class="apiarg">firstCalendarTime, secondCalendarTime</span>)
 
=== CampaignUtil ===
 
=== CampaignUtil ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=BuildChapterProgressText CampaignUtil.BuildChapterProgressText](<span style="font-size:smaller; color:#ecbc2a">campaign, formatString</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=BuildChapterProgressText CampaignUtil.BuildChapterProgressText](<span class="apiarg">campaign, formatString</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetSingleChapterText CampaignUtil.GetSingleChapterText](<span style="font-size:smaller; color:#ecbc2a">chapterID, lineSpacing</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetSingleChapterText CampaignUtil.GetSingleChapterText](<span class="apiarg">chapterID, lineSpacing</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=BuildAllChaptersText CampaignUtil.BuildAllChaptersText](<span style="font-size:smaller; color:#ecbc2a">campaign, lineSpacing</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=BuildAllChaptersText CampaignUtil.BuildAllChaptersText](<span class="apiarg">campaign, lineSpacing</span>)
 
=== CommunitiesUtil ===
 
=== CommunitiesUtil ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetMemberRGB CommunitiesUtil.GetMemberRGB](<span style="font-size:smaller; color:#ecbc2a">memberInfo</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetMemberRGB CommunitiesUtil.GetMemberRGB](<span class="apiarg">memberInfo</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SortClubs CommunitiesUtil.SortClubs](<span style="font-size:smaller; color:#ecbc2a">clubs</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SortClubs CommunitiesUtil.SortClubs](<span class="apiarg">clubs</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SortStreams CommunitiesUtil.SortStreams](<span style="font-size:smaller; color:#ecbc2a">streams</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SortStreams CommunitiesUtil.SortStreams](<span class="apiarg">streams</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SortMemberInfo CommunitiesUtil.SortMemberInfo](<span style="font-size:smaller; color:#ecbc2a">clubId, memberInfoArray</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SortMemberInfo CommunitiesUtil.SortMemberInfo](<span class="apiarg">clubId, memberInfoArray</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetMemberIdsSortedByName CommunitiesUtil.GetMemberIdsSortedByName](<span style="font-size:smaller; color:#ecbc2a">clubId, streamId</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetMemberIdsSortedByName CommunitiesUtil.GetMemberIdsSortedByName](<span class="apiarg">clubId, streamId</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetMemberInfo CommunitiesUtil.GetMemberInfo](<span style="font-size:smaller; color:#ecbc2a">clubId, memberIds</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetMemberInfo CommunitiesUtil.GetMemberInfo](<span class="apiarg">clubId, memberIds</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetMemberInfoLookup CommunitiesUtil.GetMemberInfoLookup](<span style="font-size:smaller; color:#ecbc2a">memberInfoArray</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetMemberInfoLookup CommunitiesUtil.GetMemberInfoLookup](<span class="apiarg">memberInfoArray</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetOnlineMembers CommunitiesUtil.GetOnlineMembers](<span style="font-size:smaller; color:#ecbc2a">memberInfoArray</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetOnlineMembers CommunitiesUtil.GetOnlineMembers](<span class="apiarg">memberInfoArray</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SortMembersByList CommunitiesUtil.SortMembersByList](<span style="font-size:smaller; color:#ecbc2a">memberInfoLookup, memberIds</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SortMembersByList CommunitiesUtil.SortMembersByList](<span class="apiarg">memberInfoLookup, memberIds</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetAndSortMemberInfo CommunitiesUtil.GetAndSortMemberInfo](<span style="font-size:smaller; color:#ecbc2a">clubId, streamId, filterOffline</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetAndSortMemberInfo CommunitiesUtil.GetAndSortMemberInfo](<span class="apiarg">clubId, streamId, filterOffline</span>)
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=DoesAnyCommunityHaveUnreadMessages CommunitiesUtil.DoesAnyCommunityHaveUnreadMessages]()
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=DoesAnyCommunityHaveUnreadMessages CommunitiesUtil.DoesAnyCommunityHaveUnreadMessages]()
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=DoesOtherCommunityHaveUnreadMessages CommunitiesUtil.DoesOtherCommunityHaveUnreadMessages](<span style="font-size:smaller; color:#ecbc2a">ignoreClubId</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=DoesOtherCommunityHaveUnreadMessages CommunitiesUtil.DoesOtherCommunityHaveUnreadMessages](<span class="apiarg">ignoreClubId</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=DoesCommunityHaveUnreadMessages CommunitiesUtil.DoesCommunityHaveUnreadMessages](<span style="font-size:smaller; color:#ecbc2a">clubId</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=DoesCommunityHaveUnreadMessages CommunitiesUtil.DoesCommunityHaveUnreadMessages](<span class="apiarg">clubId</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=DoesCommunityHaveOtherUnreadMessages CommunitiesUtil.DoesCommunityHaveOtherUnreadMessages](<span style="font-size:smaller; color:#ecbc2a">clubId, ignoreStreamId</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=DoesCommunityHaveOtherUnreadMessages CommunitiesUtil.DoesCommunityHaveOtherUnreadMessages](<span class="apiarg">clubId, ignoreStreamId</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetStreamNotificationSettingsLookup CommunitiesUtil.GetStreamNotificationSettingsLookup](<span style="font-size:smaller; color:#ecbc2a">clubId</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetStreamNotificationSettingsLookup CommunitiesUtil.GetStreamNotificationSettingsLookup](<span class="apiarg">clubId</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=DoesCommunityStreamHaveUnreadMessages CommunitiesUtil.DoesCommunityStreamHaveUnreadMessages](<span style="font-size:smaller; color:#ecbc2a">clubId, streamId</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=DoesCommunityStreamHaveUnreadMessages CommunitiesUtil.DoesCommunityStreamHaveUnreadMessages](<span class="apiarg">clubId, streamId</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CanKickClubMember CommunitiesUtil.CanKickClubMember](<span style="font-size:smaller; color:#ecbc2a">clubPrivileges, memberInfo</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CanKickClubMember CommunitiesUtil.CanKickClubMember](<span class="apiarg">clubPrivileges, memberInfo</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ClearAllUnreadNotifications CommunitiesUtil.ClearAllUnreadNotifications](<span style="font-size:smaller; color:#ecbc2a">clubId</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ClearAllUnreadNotifications CommunitiesUtil.ClearAllUnreadNotifications](<span class="apiarg">clubId</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=OpenInviteDialog CommunitiesUtil.OpenInviteDialog](<span style="font-size:smaller; color:#ecbc2a">clubId, streamId</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=OpenInviteDialog CommunitiesUtil.OpenInviteDialog](<span class="apiarg">clubId, streamId</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=FindCommunityAndStreamByName CommunitiesUtil.FindCommunityAndStreamByName](<span style="font-size:smaller; color:#ecbc2a">communityName, streamName</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=FindCommunityAndStreamByName CommunitiesUtil.FindCommunityAndStreamByName](<span class="apiarg">communityName, streamName</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=FindGuildStreamByType CommunitiesUtil.FindGuildStreamByType](<span style="font-size:smaller; color:#ecbc2a">clubStreamType</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=FindGuildStreamByType CommunitiesUtil.FindGuildStreamByType](<span class="apiarg">clubStreamType</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetRoleSpecClassLine CommunitiesUtil.GetRoleSpecClassLine](<span style="font-size:smaller; color:#ecbc2a">classID, specID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetRoleSpecClassLine CommunitiesUtil.GetRoleSpecClassLine](<span class="apiarg">classID, specID</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=AddLookingForLines CommunitiesUtil.AddLookingForLines](<span style="font-size:smaller; color:#ecbc2a">tooltip, recruitingSpecIds, recruitingSpecIdMap, playerSpecs</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=AddLookingForLines CommunitiesUtil.AddLookingForLines](<span class="apiarg">tooltip, recruitingSpecIds, recruitingSpecIdMap, playerSpecs</span>)
 
=== CovenantUtil ===
 
=== CovenantUtil ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetRenownRewardDisplayData CovenantUtil.GetRenownRewardDisplayData](<span style="font-size:smaller; color:#ecbc2a">rewardInfo, onItemUpdateCallback</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetRenownRewardDisplayData CovenantUtil.GetRenownRewardDisplayData](<span class="apiarg">rewardInfo, onItemUpdateCallback</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetUnformattedRenownRewardInfo CovenantUtil.GetUnformattedRenownRewardInfo](<span style="font-size:smaller; color:#ecbc2a">rewardInfo, onItemUpdateCallback</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetUnformattedRenownRewardInfo CovenantUtil.GetUnformattedRenownRewardInfo](<span class="apiarg">rewardInfo, onItemUpdateCallback</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetRenownRewardInfo CovenantUtil.GetRenownRewardInfo](<span style="font-size:smaller; color:#ecbc2a">rewardInfo, onItemUpdateCallback</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetRenownRewardInfo CovenantUtil.GetRenownRewardInfo](<span class="apiarg">rewardInfo, onItemUpdateCallback</span>)
 
=== CurrencyContainer ===
 
=== CurrencyContainer ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetCurrencyContainerInfo CurrencyContainerUtil.GetCurrencyContainerInfo](<span style="font-size:smaller; color:#ecbc2a">currencyID, numItems, name, texture, quality</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetCurrencyContainerInfo CurrencyContainerUtil.GetCurrencyContainerInfo](<span class="apiarg">currencyID, numItems, name, texture, quality</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetCurrencyContainerInfoForAlert CurrencyContainerUtil.GetCurrencyContainerInfoForAlert](<span style="font-size:smaller; color:#ecbc2a">currencyID, quantity, name, texture, quality</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetCurrencyContainerInfoForAlert CurrencyContainerUtil.GetCurrencyContainerInfoForAlert](<span class="apiarg">currencyID, quantity, name, texture, quality</span>)
 
=== DifficultyUtil ===
 
=== DifficultyUtil ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetDifficultyName DifficultyUtil.GetDifficultyName](<span style="font-size:smaller; color:#ecbc2a">difficultyID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetDifficultyName DifficultyUtil.GetDifficultyName](<span class="apiarg">difficultyID</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsPrimaryRaid DifficultyUtil.IsPrimaryRaid](<span style="font-size:smaller; color:#ecbc2a">difficultyID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsPrimaryRaid DifficultyUtil.IsPrimaryRaid](<span class="apiarg">difficultyID</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetNextPrimaryRaidDifficultyID DifficultyUtil.GetNextPrimaryRaidDifficultyID](<span style="font-size:smaller; color:#ecbc2a">difficultyID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetNextPrimaryRaidDifficultyID DifficultyUtil.GetNextPrimaryRaidDifficultyID](<span class="apiarg">difficultyID</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetMaxPlayers DifficultyUtil.GetMaxPlayers](<span style="font-size:smaller; color:#ecbc2a">difficultyID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetMaxPlayers DifficultyUtil.GetMaxPlayers](<span class="apiarg">difficultyID</span>)
 
=== ItemRef ===
 
=== ItemRef ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SetItemRef SetItemRef](<span style="font-size:smaller; color:#ecbc2a">link, text, button, chatFrame</span>) - Handles item link tooltips in chat.
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SetItemRef SetItemRef](<span class="apiarg">link, text, button, chatFrame</span>) - Handles item link tooltips in chat.
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetFixedLink GetFixedLink](<span style="font-size:smaller; color:#ecbc2a">text, quality</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetFixedLink GetFixedLink](<span class="apiarg">text, quality</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetBattlePetAbilityHyperlink GetBattlePetAbilityHyperlink](<span style="font-size:smaller; color:#ecbc2a">abilityID, maxHealth, power, speed</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetBattlePetAbilityHyperlink GetBattlePetAbilityHyperlink](<span class="apiarg">abilityID, maxHealth, power, speed</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetPlayerLink GetPlayerLink](<span style="font-size:smaller; color:#ecbc2a">characterName, linkDisplayText, lineID, chatType, chatTarget</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetPlayerLink GetPlayerLink](<span class="apiarg">characterName, linkDisplayText, lineID, chatType, chatTarget</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetBNPlayerLink GetBNPlayerLink](<span style="font-size:smaller; color:#ecbc2a">name, linkDisplayText, bnetIDAccount, lineID, chatType, chatTarget</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetBNPlayerLink GetBNPlayerLink](<span class="apiarg">name, linkDisplayText, bnetIDAccount, lineID, chatType, chatTarget</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetGMLink GetGMLink](<span style="font-size:smaller; color:#ecbc2a">gmName, linkDisplayText, lineID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetGMLink GetGMLink](<span class="apiarg">gmName, linkDisplayText, lineID</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetBNPlayerCommunityLink GetBNPlayerCommunityLink](<span style="font-size:smaller; color:#ecbc2a">playerName, linkDisplayText, bnetIDAccount, clubId, streamId, epoch, position</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetBNPlayerCommunityLink GetBNPlayerCommunityLink](<span class="apiarg">playerName, linkDisplayText, bnetIDAccount, clubId, streamId, epoch, position</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetPlayerCommunityLink GetPlayerCommunityLink](<span style="font-size:smaller; color:#ecbc2a">playerName, linkDisplayText, clubId, streamId, epoch, position</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetPlayerCommunityLink GetPlayerCommunityLink](<span class="apiarg">playerName, linkDisplayText, clubId, streamId, epoch, position</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetClubTicketLink GetClubTicketLink](<span style="font-size:smaller; color:#ecbc2a">ticketId, clubName, clubType</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetClubTicketLink GetClubTicketLink](<span class="apiarg">ticketId, clubName, clubType</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetClubFinderLink GetClubFinderLink](<span style="font-size:smaller; color:#ecbc2a">clubFinderId, clubName</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetClubFinderLink GetClubFinderLink](<span class="apiarg">clubFinderId, clubName</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetCalendarEventLink GetCalendarEventLink](<span style="font-size:smaller; color:#ecbc2a">monthOffset, monthDay, index</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetCalendarEventLink GetCalendarEventLink](<span class="apiarg">monthOffset, monthDay, index</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetCommunityLink GetCommunityLink](<span style="font-size:smaller; color:#ecbc2a">clubId</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetCommunityLink GetCommunityLink](<span class="apiarg">clubId</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SplitLink LinkUtil.SplitLink](<span style="font-size:smaller; color:#ecbc2a">link</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SplitLink LinkUtil.SplitLink](<span class="apiarg">link</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ExtractLink LinkUtil.ExtractLink](<span style="font-size:smaller; color:#ecbc2a">text</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ExtractLink LinkUtil.ExtractLink](<span class="apiarg">text</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsLinkType LinkUtil.IsLinkType](<span style="font-size:smaller; color:#ecbc2a">link, matchLinkType</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsLinkType LinkUtil.IsLinkType](<span class="apiarg">link, matchLinkType</span>)
 
=== ItemUtil ===
 
=== ItemUtil ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=RegisterCallback ItemButtonUtil.RegisterCallback](<span style="font-size:smaller; color:#ecbc2a">...</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=RegisterCallback ItemButtonUtil.RegisterCallback](<span class="apiarg">...</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=UnregisterCallback ItemButtonUtil.UnregisterCallback](<span style="font-size:smaller; color:#ecbc2a">...</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=UnregisterCallback ItemButtonUtil.UnregisterCallback](<span class="apiarg">...</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=TriggerEvent ItemButtonUtil.TriggerEvent](<span style="font-size:smaller; color:#ecbc2a">...</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=TriggerEvent ItemButtonUtil.TriggerEvent](<span class="apiarg">...</span>)
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetItemContext ItemButtonUtil.GetItemContext]()
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetItemContext ItemButtonUtil.GetItemContext]()
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=HasItemContext ItemButtonUtil.HasItemContext]()
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=HasItemContext ItemButtonUtil.HasItemContext]()
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetItemContextMatchResultForItem ItemButtonUtil.GetItemContextMatchResultForItem](<span style="font-size:smaller; color:#ecbc2a">itemLocation</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetItemContextMatchResultForItem ItemButtonUtil.GetItemContextMatchResultForItem](<span class="apiarg">itemLocation</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetItemContextMatchResultForContainer ItemButtonUtil.GetItemContextMatchResultForContainer](<span style="font-size:smaller; color:#ecbc2a">bagID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetItemContextMatchResultForContainer ItemButtonUtil.GetItemContextMatchResultForContainer](<span class="apiarg">bagID</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetItemDetails ItemUtil.GetItemDetails](<span style="font-size:smaller; color:#ecbc2a">itemLink, quantity, isCurrency, lootSource</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetItemDetails ItemUtil.GetItemDetails](<span class="apiarg">itemLink, quantity, isCurrency, lootSource</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=PickupBagItem ItemUtil.PickupBagItem](<span style="font-size:smaller; color:#ecbc2a">itemLocation</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=PickupBagItem ItemUtil.PickupBagItem](<span class="apiarg">itemLocation</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetOptionalReagentCount ItemUtil.GetOptionalReagentCount](<span style="font-size:smaller; color:#ecbc2a">itemID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetOptionalReagentCount ItemUtil.GetOptionalReagentCount](<span class="apiarg">itemID</span>)
 
=== MapUtil ===
 
=== MapUtil ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsMapTypeZone MapUtil.IsMapTypeZone](<span style="font-size:smaller; color:#ecbc2a">mapID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsMapTypeZone MapUtil.IsMapTypeZone](<span class="apiarg">mapID</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetMapParentInfo MapUtil.GetMapParentInfo](<span style="font-size:smaller; color:#ecbc2a">mapID, mapType, topMost</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetMapParentInfo MapUtil.GetMapParentInfo](<span class="apiarg">mapID, mapType, topMost</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ShouldMapTypeShowQuests MapUtil.ShouldMapTypeShowQuests](<span style="font-size:smaller; color:#ecbc2a">mapType</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ShouldMapTypeShowQuests MapUtil.ShouldMapTypeShowQuests](<span class="apiarg">mapType</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ShouldShowTask MapUtil.ShouldShowTask](<span style="font-size:smaller; color:#ecbc2a">mapID, info</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ShouldShowTask MapUtil.ShouldShowTask](<span class="apiarg">mapID, info</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=MapHasUnlockedBounties MapUtil.MapHasUnlockedBounties](<span style="font-size:smaller; color:#ecbc2a">mapID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=MapHasUnlockedBounties MapUtil.MapHasUnlockedBounties](<span class="apiarg">mapID</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=MapHasEmissaries MapUtil.MapHasEmissaries](<span style="font-size:smaller; color:#ecbc2a">mapID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=MapHasEmissaries MapUtil.MapHasEmissaries](<span class="apiarg">mapID</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=FindBestAreaNameAtMouse MapUtil.FindBestAreaNameAtMouse](<span style="font-size:smaller; color:#ecbc2a">mapID, normalizedCursorX, normalizedCursorY</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=FindBestAreaNameAtMouse MapUtil.FindBestAreaNameAtMouse](<span class="apiarg">mapID, normalizedCursorX, normalizedCursorY</span>)
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetDisplayableMapForPlayer MapUtil.GetDisplayableMapForPlayer]()
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetDisplayableMapForPlayer MapUtil.GetDisplayableMapForPlayer]()
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetBountySetMaps MapUtil.GetBountySetMaps](<span style="font-size:smaller; color:#ecbc2a">bountySetID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetBountySetMaps MapUtil.GetBountySetMaps](<span class="apiarg">bountySetID</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetMapCenterOnMap MapUtil.GetMapCenterOnMap](<span style="font-size:smaller; color:#ecbc2a">mapID, topMapID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetMapCenterOnMap MapUtil.GetMapCenterOnMap](<span class="apiarg">mapID, topMapID</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsChildMap MapUtil.IsChildMap](<span style="font-size:smaller; color:#ecbc2a">mapID, ancestorMapID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsChildMap MapUtil.IsChildMap](<span class="apiarg">mapID, ancestorMapID</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsOribosMap MapUtil.IsOribosMap](<span style="font-size:smaller; color:#ecbc2a">mapID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsOribosMap MapUtil.IsOribosMap](<span class="apiarg">mapID</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsShadowlandsZoneMap MapUtil.IsShadowlandsZoneMap](<span style="font-size:smaller; color:#ecbc2a">mapID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsShadowlandsZoneMap MapUtil.IsShadowlandsZoneMap](<span class="apiarg">mapID</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=MapShouldShowWorldQuestFilters MapUtil.MapShouldShowWorldQuestFilters](<span style="font-size:smaller; color:#ecbc2a">mapID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=MapShouldShowWorldQuestFilters MapUtil.MapShouldShowWorldQuestFilters](<span class="apiarg">mapID</span>)
 
=== PVPUtil ===
 
=== PVPUtil ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetTierName PVPUtil.GetTierName](<span style="font-size:smaller; color:#ecbc2a">tierEnum</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetTierName PVPUtil.GetTierName](<span class="apiarg">tierEnum</span>)
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ShouldShowLegacyRewards PVPUtil.ShouldShowLegacyRewards]()
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ShouldShowLegacyRewards PVPUtil.ShouldShowLegacyRewards]()
 
=== PartyUtil ===
 
=== PartyUtil ===
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetMinLevel PartyUtil.GetMinLevel]()
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetMinLevel PartyUtil.GetMinLevel]()
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetPhasedReasonString PartyUtil.GetPhasedReasonString](<span style="font-size:smaller; color:#ecbc2a">phaseReason, unitToken</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetPhasedReasonString PartyUtil.GetPhasedReasonString](<span class="apiarg">phaseReason, unitToken</span>)
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetGroupMemberCountsForDisplay GetGroupMemberCountsForDisplay]()
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetGroupMemberCountsForDisplay GetGroupMemberCountsForDisplay]()
 
=== QuestUtils ===
 
=== QuestUtils ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetWorldQuestAtlasInfo QuestUtil.GetWorldQuestAtlasInfo](<span style="font-size:smaller; color:#ecbc2a">worldQuestType, inProgress, tradeskillLineID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetWorldQuestAtlasInfo QuestUtil.GetWorldQuestAtlasInfo](<span class="apiarg">worldQuestType, inProgress, tradeskillLineID</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetQuestIconOffer QuestUtil.GetQuestIconOffer](<span style="font-size:smaller; color:#ecbc2a">isLegendary, frequency, isRepeatable, isCampaign, isCovenantCalling</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetQuestIconOffer QuestUtil.GetQuestIconOffer](<span class="apiarg">isLegendary, frequency, isRepeatable, isCampaign, isCovenantCalling</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ApplyQuestIconOfferToTexture QuestUtil.ApplyQuestIconOfferToTexture](<span style="font-size:smaller; color:#ecbc2a">texture, ...</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ApplyQuestIconOfferToTexture QuestUtil.ApplyQuestIconOfferToTexture](<span class="apiarg">texture, ...</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetQuestIconActive QuestUtil.GetQuestIconActive](<span style="font-size:smaller; color:#ecbc2a">isComplete, isLegendary, frequency, isRepeatable, isCampaign, isCovenantCalling</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetQuestIconActive QuestUtil.GetQuestIconActive](<span class="apiarg">isComplete, isLegendary, frequency, isRepeatable, isCampaign, isCovenantCalling</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ApplyQuestIconActiveToTexture QuestUtil.ApplyQuestIconActiveToTexture](<span style="font-size:smaller; color:#ecbc2a">texture, ...</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ApplyQuestIconActiveToTexture QuestUtil.ApplyQuestIconActiveToTexture](<span class="apiarg">texture, ...</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ShouldQuestIconsUseCampaignAppearance QuestUtil.ShouldQuestIconsUseCampaignAppearance](<span style="font-size:smaller; color:#ecbc2a">questID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ShouldQuestIconsUseCampaignAppearance QuestUtil.ShouldQuestIconsUseCampaignAppearance](<span class="apiarg">questID</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetQuestIconOfferForQuestID QuestUtil.GetQuestIconOfferForQuestID](<span style="font-size:smaller; color:#ecbc2a">questID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetQuestIconOfferForQuestID QuestUtil.GetQuestIconOfferForQuestID](<span class="apiarg">questID</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ApplyQuestIconOfferToTextureForQuestID QuestUtil.ApplyQuestIconOfferToTextureForQuestID](<span style="font-size:smaller; color:#ecbc2a">texture, ...</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ApplyQuestIconOfferToTextureForQuestID QuestUtil.ApplyQuestIconOfferToTextureForQuestID](<span class="apiarg">texture, ...</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetQuestIconActiveForQuestID QuestUtil.GetQuestIconActiveForQuestID](<span style="font-size:smaller; color:#ecbc2a">questID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetQuestIconActiveForQuestID QuestUtil.GetQuestIconActiveForQuestID](<span class="apiarg">questID</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ApplyQuestIconActiveToTextureForQuestID QuestUtil.ApplyQuestIconActiveToTextureForQuestID](<span style="font-size:smaller; color:#ecbc2a">texture, ...</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=ApplyQuestIconActiveToTextureForQuestID QuestUtil.ApplyQuestIconActiveToTextureForQuestID](<span class="apiarg">texture, ...</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SetupWorldQuestButton QuestUtil.SetupWorldQuestButton](<span style="font-size:smaller; color:#ecbc2a">button, info, inProgress, selected, isCriteria, isSpellTarget, isEffectivelyTracked</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=SetupWorldQuestButton QuestUtil.SetupWorldQuestButton](<span class="apiarg">button, info, inProgress, selected, isCriteria, isSpellTarget, isEffectivelyTracked</span>)
 
=== RuneforgeUtil ===
 
=== RuneforgeUtil ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetCostsString RuneforgeUtil.GetCostsString](<span style="font-size:smaller; color:#ecbc2a">costs</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetCostsString RuneforgeUtil.GetCostsString](<span class="apiarg">costs</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsUpgradeableRuneforgeLegendary RuneforgeUtil.IsUpgradeableRuneforgeLegendary](<span style="font-size:smaller; color:#ecbc2a">itemLocation</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=IsUpgradeableRuneforgeLegendary RuneforgeUtil.IsUpgradeableRuneforgeLegendary](<span class="apiarg">itemLocation</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetRuneforgeFilterText RuneforgeUtil.GetRuneforgeFilterText](<span style="font-size:smaller; color:#ecbc2a">filter</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetRuneforgeFilterText RuneforgeUtil.GetRuneforgeFilterText](<span class="apiarg">filter</span>)
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetPreviewClassAndSpec RuneforgeUtil.GetPreviewClassAndSpec]()
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetPreviewClassAndSpec RuneforgeUtil.GetPreviewClassAndSpec]()
 
=== TitleUtil ===
 
=== TitleUtil ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetNameFromTitleMaskID TitleUtil.GetNameFromTitleMaskID](<span style="font-size:smaller; color:#ecbc2a">titleMaskID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetNameFromTitleMaskID TitleUtil.GetNameFromTitleMaskID](<span class="apiarg">titleMaskID</span>)
 
=== TransmogUtil ===
 
=== TransmogUtil ===
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetInfoForEquippedSlot TransmogUtil.GetInfoForEquippedSlot](<span style="font-size:smaller; color:#ecbc2a">transmogLocation</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetInfoForEquippedSlot TransmogUtil.GetInfoForEquippedSlot](<span class="apiarg">transmogLocation</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CanEnchantSource TransmogUtil.CanEnchantSource](<span style="font-size:smaller; color:#ecbc2a">sourceID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CanEnchantSource TransmogUtil.CanEnchantSource](<span class="apiarg">sourceID</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetWeaponInfoForEnchant TransmogUtil.GetWeaponInfoForEnchant](<span style="font-size:smaller; color:#ecbc2a">transmogLocation</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetWeaponInfoForEnchant TransmogUtil.GetWeaponInfoForEnchant](<span class="apiarg">transmogLocation</span>)
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetBestWeaponInfoForIllusionDressup TransmogUtil.GetBestWeaponInfoForIllusionDressup]()
 
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetBestWeaponInfoForIllusionDressup TransmogUtil.GetBestWeaponInfoForIllusionDressup]()
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetSlotID TransmogUtil.GetSlotID](<span style="font-size:smaller; color:#ecbc2a">slotName</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetSlotID TransmogUtil.GetSlotID](<span class="apiarg">slotName</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetSlotName TransmogUtil.GetSlotName](<span style="font-size:smaller; color:#ecbc2a">slotID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetSlotName TransmogUtil.GetSlotName](<span class="apiarg">slotID</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CreateTransmogLocation TransmogUtil.CreateTransmogLocation](<span style="font-size:smaller; color:#ecbc2a">slotDescriptor, transmogType, modification</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=CreateTransmogLocation TransmogUtil.CreateTransmogLocation](<span class="apiarg">slotDescriptor, transmogType, modification</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetTransmogLocation TransmogUtil.GetTransmogLocation](<span style="font-size:smaller; color:#ecbc2a">slotDescriptor, transmogType, modification</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetTransmogLocation TransmogUtil.GetTransmogLocation](<span class="apiarg">slotDescriptor, transmogType, modification</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetTransmogLocationLookupKey TransmogUtil.GetTransmogLocationLookupKey](<span style="font-size:smaller; color:#ecbc2a">slotID, transmogType, modification</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetTransmogLocationLookupKey TransmogUtil.GetTransmogLocationLookupKey](<span class="apiarg">slotID, transmogType, modification</span>)
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetSetIcon TransmogUtil.GetSetIcon](<span style="font-size:smaller; color:#ecbc2a">setID</span>)
+
: <small>UI</small> [https://github.com/Gethe/wow-ui-source/search?q=GetSetIcon TransmogUtil.GetSetIcon](<span class="apiarg">setID</span>)
   
 
== See also ==
 
== See also ==

Revision as of 18:04, 28 November 2021

For the web API, see https://develop.battle.net/documentation/world-of-warcraft

The WoW API is a set of functions available to addons and macro scripts. Wowpedia maintains the list below, newer API is also officially documented in Blizzard_APIDocumentation and accessible with the /api command. The user interface code (FrameXML) can be exported from the game client.

Functions can be prefixed with the following tags:

  • PROTECTED - This can only be called from secure code, i.e. by Blizzard.
  • NOCOMBAT - This cannot be called from insecure code while in combat.
  • HW - This may only be called in response to a hardware event (user input).
  • NOSCRIPT - This may not be called directly from (macro) scripts, i.e. /run, RunScript and loadstring.
  • DEPRECATED - This function has been replaced or removed and its placeholder Lua wrapper will be removed in the next expansion.
  • UI - This is implemented in FrameXML but was considered important enough to be listed.

Shortcut: #Classic, #FrameXML, Global functions

API Reference

Note
Note: This list is up to date as of Patch 9.1.5 (41031) Nov 10 2021

Account

Relates to the subscription Account. See also Battle.net functions.

GetBillingTimeRested() - Returns the account rested time left. This function is only relevant on Chinese realms.
GetRestrictedAccountData() - Returns the cap on trial character level, money and profession skill.
GetSecondsUntilParentalControlsKick()
IsAccountSecured() - Returns if the account has been secured with Blizzard Mobile Authenticator.
IsRestrictedAccount() - Returns if the acount has trial account restrictions.
IsTrialAccount() : isTrialAccount - Returns whether the player is using a trial (free-to-play) account.
IsVeteranTrialAccount() : isVeteranTrialAccount - Returns whether the wow account has no game time.
NoPlayTime() - Returns whether the account is considered "unhealthy". This function is only relevant on Chinese realms.
PartialPlayTime() - Returns whether the account is considered "tired". This function is only relevant on Chinese realms.
SendSubscriptionInterstitialResponse(response)

Achievements

Achievements were added in Patch 3.0.2

C_AchievementInfo.GetRewardItemID(achievementID) : rewardItemID
C_AchievementInfo.GetSupercedingAchievements(achievementID) : supercedingAchievements - Returns the next achievement in a series.
C_AchievementInfo.IsValidAchievement(achievementId) : isValidAchievement
C_AchievementInfo.SetPortraitTexture(textureObject) - Sets a portrait texture for the unit being achievement compared.
AddTrackedAchievement(achievementId) - Add an achievement to tracking.
AreAccountAchievementsHidden()
CanShowAchievementUI() - Returns if the AchievementUI can be displayed.
ClearAchievementComparisonUnit() - Remove the unit being compared.
ClearAchievementSearchString()
GetAchievementCategory(achievementID) - Returns the category number the requested achievement belongs to.
GetAchievementComparisonInfo(achievementID) - Returns information about the comparison unit's achievements.
GetAchievementCriteriaInfo(achievementID, criteriaNum) - Returns information about the requested criteria.
GetAchievementCriteriaInfoByID(achievementID, criteriaIndex) - Returns achievement criteria info by criteriaIndex.
GetAchievementGuildRep()
GetAchievementInfo(achievementID or categoryID, index) - Returns information about the requested achievement.
GetAchievementLink(achievementID) - Returns a achievementLink for the specified achievement.
GetAchievementNumCriteria(achievementID) - Returns the number of criteria the requested achievement has.
GetAchievementNumRewards(achievementID) - Returns the number of rewards the requested achievement has.
GetAchievementReward(achievementID, rewardIndex) - Returns information about a reward item by rewardIndex.
GetAchievementSearchProgress()
GetAchievementSearchSize()
GetCategoryAchievementPoints(categoryID, includeSubCategories)
GetCategoryInfo(category) - Returns information about the requested achievement category.
GetCategoryList() - Returns the list of achievement categories.
GetCategoryNumAchievements(category [, includeAll) - Returns the number of achievements, and number completed and incompleted for the specific category.
GetComparisonAchievementPoints() - Returns the total number of achievement points the comparison unit has earned.
GetComparisonCategoryNumAchievements(achievementID) - Returns a number of achievements in a category for the comparison player.
GetFilteredAchievementID(index) - Returns the ID of a filtered achievement.
GetGuildAchievementMemberInfo(achievementID, index)
GetGuildAchievementMembers(achievementID)
GetGuildAchievementNumMembers(achievementID)
GetLatestCompletedAchievements() - Returns the ID's of the last 5 completed Achievements.
GetLatestCompletedComparisonAchievements() - Returns a list of the latest updated achievements for the comparison player.
GetNextAchievement(achievementID) - Returns the next achievement in a chain.
GetNumComparisonCompletedAchievements() - Returns the number of completed achievements for the comparison player.
GetNumCompletedAchievements() - Returns the total number of achievements, and number completed.
GetNumFilteredAchievements() - Returns the number of achievements that matches search text.
GetNumTrackedAchievements() - Returns the total number of the currently tracked achievements.
GetPreviousAchievement(achievementID) - Returns previous related achievements.
GetTotalAchievementPoints() - Returns the total number of achievement points earned.
GetTrackedAchievements() - Returns the achievementID of the currently tracked achievements.
HasCompletedAnyAchievement(achievementID)
IsAchievementEligible(achievementID)
IsTrackedAchievement(achievementID)
RemoveTrackedAchievement(achievementID) - Stops an achievement from being tracked.
SetAchievementComparisonUnit(unitId) - Set the unit to be compared to.
SetAchievementSearchString(searchText) - Starts a search for achievements containing the specified text.
SetFocusedAchievement(achievementID)
ShowAccountAchievements()
SwitchAchievementSearchTab(index)

Statistics

GetComparisonStatistic(achievementID) - Returns the value of the requested statistic for the comparison player.
GetLatestUpdatedComparisonStats() - Returns a list of the latest updated statistics for the comparison player.
GetLatestUpdatedStats() - Returns the ID's of the last 5 updated Statistics.
GetStatistic(achievementID) - Returns the value of the requested statistic.
GetStatisticsCategoryList() - Returns the list of statistic categories.

AddOns

Relates to AddOns.

DisableAddOn(addonIndex or AddOnName [, character]) - Disable the specified AddOn for subsequent sessions.
DisableAllAddOns([character]) - Disable all AddOns for subsequent sessions.
EnableAddOn(addonIndex or AddOnName [, character]) - Enable the specified AddOn for subsequent sessions.
EnableAllAddOns([character]) - Enable all AddOns for subsequent sessions.
GetAddOnDependencies(addonIndex or AddOnName) - Get dependency list for an AddOn.
GetAddOnEnableState([character], addonIndex or AddOnName)
GetAddOnInfo(addonIndex or AddOnName) - Get information about an AddOn.
GetAddOnMetadata(addonIndex or AddOnName, variable) - Retrieve metadata from addon's TOC file.
GetAddOnOptionalDependencies(addonIndex or AddOnName) - Returns a list of optional dependencies.
GetNumAddOns() - Get the number of user supplied AddOns.
IsAddOnLoaded(addonIndex or AddOnName) - Returns true if the specified AddOn is loaded.
IsAddOnLoadOnDemand(addonIndex or AddOnName) - Test whether an AddOn is load-on-demand.
IsAddonVersionCheckEnabled()
LoadAddOn(addonIndex or AddOnName) - Request loading of a Load-On-Demand AddOn.
ResetAddOns()
ResetDisabledAddOns()
SaveAddOns()
SetAddonVersionCheck(boolean)
UI UIParentLoadAddOn(AddOnName) - Loads or Reloads the specified AddOn, and pops up an error message if it fails to load for any reason.

Adventure Guide

The Adventure Guide was added in Patch 6.2.0

C_AdventureJournal.ActivateEntry(index)
C_AdventureJournal.CanBeShown()
C_AdventureJournal.GetNumAvailableSuggestions()
C_AdventureJournal.GetPrimaryOffset()
C_AdventureJournal.GetReward()
C_AdventureJournal.GetSuggestions([suggestions])
C_AdventureJournal.SetPrimaryOffset(offset)
C_AdventureJournal.UpdateSuggestions([levelUp])

Encounter Journal

The Encounter Journal was added in Patch 4.2.0

C_EncounterJournal.GetDungeonEntrancesForMap(uiMapID) : dungeonEntrances - Returns the instance entrances for a map.
C_EncounterJournal.GetEncountersOnMap(uiMapID) : encounters - Returns boss pin locations for an instance map.
C_EncounterJournal.GetSectionIconFlags(sectionID) : iconFlags - Returns the icon flags for a section, such as Magic Effect and Heroic Difficulty
C_EncounterJournal.GetSectionInfo(sectionID) : info - Returns information about an entry in the Abilities section of the Encounter Journal.
C_EncounterJournal.InstanceHasLoot([instanceID]) : hasLoot - Returns whether an instance has a loot table in the journal.
C_EncounterJournal.IsEncounterComplete(journalEncounterID) : isEncounterComplete - Returns if a boss encounter has been completed.
C_EncounterJournal.SetPreviewMythicPlusLevel(level)
C_EncounterJournal.SetPreviewPvpTier(tier)
C_RaidLocks.IsEncounterComplete(mapID, encounterID [, difficultyID]) : encounterIsComplete
EJ_ClearSearch() - Clears the encounter journal search results.
EJ_EndSearch() - Ends any active encounter journal search.
EJ_GetContentTuningID() - Returns the currently selected content tuning ID for BFA instances.
EJ_GetCreatureInfo(index [, encounterID]) - Returns encounter boss info.
EJ_GetCurrentTier() - Returns the currently active encounter journal tier index.
EJ_GetDifficulty() - Returns the currently viewed difficulty in the journal.
EJ_GetEncounterInfo(encounterID) - Returns encounter info from the journal.
EJ_GetEncounterInfoByIndex(index [, instanceID]) - idem
EJ_GetInstanceByIndex(index, isRaid) - Returns instance info for the Encounter Journal.
EJ_GetInstanceForMap(mapID) - Returns any corresponding instance ID for a UiMapID.
EJ_GetInstanceInfo() - Returns instance info for the Encounter Journal.
EJ_GetMapEncounter(mapID, index [, fromJournal]) - Returns boss pin locations on instance maps.
EJ_GetNumEncountersForLootByIndex(index) - Returns the amount of encounters that drop the same loot item.
EJ_GetNumSearchResults() - Returns the number of search results for the Encounter Journal.
EJ_GetNumTiers() - Returns the number of valid encounter journal tier indices.
EJ_GetSearchProgress() - Returns the search bar's progress ratio.
EJ_GetSearchResult(index) - Returns search results for the Encounter Journal.
EJ_GetSearchSize() - Returns the amount of Encounter Journal objects to search through.
EJ_GetSectionPath(sectionID) - Returns the parent Section ID if available.
EJ_GetTierInfo(index) - Get some information about the encounter journal tier for index.
EJ_HandleLinkPath(jtype, id) - Returns the supplementary instance and encounter ID for an encounter or section ID.
EJ_InstanceIsRaid() - Returns whether the selected instance is a raid.
EJ_IsSearchFinished() - Returns whether the current search has finished.
EJ_IsValidInstanceDifficulty(difficultyID) - Returns whether the difficultyID is valid for use in the journal.
EJ_SelectEncounter(encounterID) - Selects an encounter for the Encounter Journal API state.
EJ_SelectInstance(instanceID) - Selects an instance for the Encounter Journal API state.
EJ_SelectTier(index) - Selects a tier for the Encounter Journal API state.
EJ_SetDifficulty(difficultyID) - Sets the encounter difficulty shown in the Encounter Journal.
EJ_SetSearch(text) - Starts a search in the journal.
GetJournalInfoForSpellConfirmation(spellID)
SetPortraitTextureFromCreatureDisplayID(textureObject, creatureDisplayID)

Loot Journal

C_EncounterJournal.GetLootInfo(id) : itemInfo - Returns loot info for an encounter or instance.
C_EncounterJournal.GetLootInfoByIndex(index [, encounterIndex]) : itemInfo - Returns loot info for an encounter or instance.
C_EncounterJournal.GetSlotFilter() : filter - Returns the current equipment type slot filter.
C_EncounterJournal.ResetSlotFilter() - Resets the current slot filter.
C_EncounterJournal.SetSlotFilter(filterSlot) - Sets the Encounter Journal's equipment slot filter.
EJ_GetInvTypeSortOrder(invType) - Returns the sort order for an inventory type.
EJ_GetLootFilter() - Returns the currently used loot filter.
EJ_GetNumLoot() - Returns the amount of loot for the currently selected instance or encounter.
EJ_IsLootListOutOfDate() - Returns whether the loot list is out of date in relation to any filters when getting new loot data.
EJ_ResetLootFilter() - Clears any current loot filter in the journal.
EJ_SetLootFilter(classID, specID) - Sets the loot filter for a specialization.

Auction House

The Auction House was revamped in Patch 8.3.0

C_AuctionHouse.GetNumReplicateItems() : numReplicateItems - Returns the amount of auctions.
C_AuctionHouse.GetReplicateItemBattlePetInfo(index) : creatureID, displayID
C_AuctionHouse.GetReplicateItemInfo(index) : name, texture, count, qualityID, usable, level, levelType, minBid, ... - Returns information about the specified auction.
C_AuctionHouse.GetReplicateItemLink(index) : itemLink
C_AuctionHouse.GetReplicateItemTimeLeft(index) : timeLeft - Returns the time left for an auction.
C_AuctionHouse.ReplicateItems() - Queries all auctions listed on the Auction House.
C_AuctionHouse.CalculateCommodityDeposit(itemID, duration, quantity) : depositCost
C_AuctionHouse.CalculateItemDeposit(item, duration, quantity) : depositCost
C_AuctionHouse.CanCancelAuction(ownedAuctionID) : canCancelAuction
HW, NOSCRIPT C_AuctionHouse.CancelAuction(ownedAuctionID) - Cancels an auction.
C_AuctionHouse.CancelCommoditiesPurchase()
C_AuctionHouse.CancelSell()
C_AuctionHouse.CloseAuctionHouse()
C_AuctionHouse.ConfirmCommoditiesPurchase(itemID, quantity) - Completes a commodity item purchase.
C_AuctionHouse.FavoritesAreAvailable() : favoritesAreAvailable
C_AuctionHouse.GetAuctionItemSubClasses(classID) : subClasses
C_AuctionHouse.GetAvailablePostCount(item) : listCount
C_AuctionHouse.GetBidInfo(bidIndex) : bid
C_AuctionHouse.GetBidType(bidTypeIndex) : typeItemKey
C_AuctionHouse.GetBrowseResults() : browseResults
C_AuctionHouse.GetCancelCost(ownedAuctionID) : cancelCost
C_AuctionHouse.GetCommoditySearchResultInfo(itemID, commoditySearchResultIndex) : result - Returns search results for a commodity item.
C_AuctionHouse.GetCommoditySearchResultsQuantity(itemID) : totalQuantity
C_AuctionHouse.GetExtraBrowseInfo(itemKey) : extraInfo
C_AuctionHouse.GetFilterGroups() : filterGroups
C_AuctionHouse.GetItemCommodityStatus(item) : isCommodity
C_AuctionHouse.GetItemKeyFromItem(item) : itemKey
C_AuctionHouse.GetItemKeyInfo(itemKey [, restrictQualityToFilter]) : itemKeyInfo
C_AuctionHouse.GetItemKeyRequiredLevel(itemKey) : requiredLevel
C_AuctionHouse.GetItemSearchResultInfo(itemKey, itemSearchResultIndex) : result - Returns search results for an item.
C_AuctionHouse.GetItemSearchResultsQuantity(itemKey) : totalQuantity
C_AuctionHouse.GetMaxBidItemBid() : maxBid
C_AuctionHouse.GetMaxBidItemBuyout() : maxBuyout
C_AuctionHouse.GetMaxCommoditySearchResultPrice(itemID) : maxUnitPrice
C_AuctionHouse.GetMaxItemSearchResultBid(itemKey) : maxBid
C_AuctionHouse.GetMaxItemSearchResultBuyout(itemKey) : maxBuyout
C_AuctionHouse.GetMaxOwnedAuctionBid() : maxBid
C_AuctionHouse.GetMaxOwnedAuctionBuyout() : maxBuyout
C_AuctionHouse.GetNumBids() : numBids
C_AuctionHouse.GetNumBidTypes() : numBidTypes
C_AuctionHouse.GetNumCommoditySearchResults(itemID) : numSearchResults
C_AuctionHouse.GetNumItemSearchResults(itemKey) : numItemSearchResults
C_AuctionHouse.GetNumOwnedAuctions() : numOwnedAuctions
C_AuctionHouse.GetNumOwnedAuctionTypes() : numOwnedAuctionTypes
C_AuctionHouse.GetOwnedAuctionInfo(ownedAuctionIndex) : ownedAuction
C_AuctionHouse.GetOwnedAuctionType(ownedAuctionTypeIndex) : typeItemKey
C_AuctionHouse.GetQuoteDurationRemaining() : quoteDurationSeconds
C_AuctionHouse.GetTimeLeftBandInfo(timeLeftBand) : timeLeftMinSeconds, timeLeftMaxSeconds
C_AuctionHouse.HasFavorites() : hasFavorites
C_AuctionHouse.HasFullBidResults() : hasFullBidResults
C_AuctionHouse.HasFullBrowseResults() : hasFullBrowseResults
C_AuctionHouse.HasFullCommoditySearchResults(itemID) : hasFullResults
C_AuctionHouse.HasFullItemSearchResults(itemKey) : hasFullResults
C_AuctionHouse.HasFullOwnedAuctionResults() : hasFullOwnedAuctionResults
C_AuctionHouse.HasMaxFavorites() : hasMaxFavorites
C_AuctionHouse.HasSearchResults(itemKey) : hasSearchResults
C_AuctionHouse.IsFavoriteItem(itemKey) : isFavorite
C_AuctionHouse.IsSellItemValid(item [, displayError]) : valid
C_AuctionHouse.IsThrottledMessageSystemReady() : canSendThrottledMessage
C_AuctionHouse.MakeItemKey(itemID [, itemLevel, itemSuffix, battlePetSpeciesID]) : itemKey
HW, NOSCRIPT C_AuctionHouse.PlaceBid(auctionID, bidAmount) - Places a bid on a non-commodity item.
HW, NOSCRIPT C_AuctionHouse.PostCommodity(item, duration, quantity, unitPrice) - Posts a commodity item on the auction house.
HW, NOSCRIPT C_AuctionHouse.PostItem(item, duration, quantity [, bid, buyout]) - Posts an item on the auction house.
C_AuctionHouse.QueryBids(sorts, auctionIDs)
C_AuctionHouse.QueryOwnedAuctions(sorts)
C_AuctionHouse.RefreshCommoditySearchResults(itemID)
C_AuctionHouse.RefreshItemSearchResults(itemKey [, minLevelFilter, maxLevelFilter])
NOSCRIPT C_AuctionHouse.RequestMoreBrowseResults()
C_AuctionHouse.RequestMoreCommoditySearchResults(itemID) : hasFullResults
C_AuctionHouse.RequestMoreItemSearchResults(itemKey) : hasFullResults
C_AuctionHouse.RequestOwnedAuctionBidderInfo(auctionID) : bidderName
NOSCRIPT C_AuctionHouse.SearchForFavorites(sorts) - Searches for favorited items.
C_AuctionHouse.SearchForItemKeys(itemKeys, sorts)
NOSCRIPT C_AuctionHouse.SendBrowseQuery(query)
NOSCRIPT C_AuctionHouse.SendSearchQuery(itemKey, sorts, separateOwnerItems [, minLevelFilter, maxLevelFilter]) - Queries an item in the auction house.
C_AuctionHouse.SendSellSearchQuery(itemKey, sorts, separateOwnerItems) - Search for all auctions that are variants of a piece of gear, determined a specific item ID.
C_AuctionHouse.SetFavoriteItem(itemKey, setFavorite)
HW, NOSCRIPT C_AuctionHouse.StartCommoditiesPurchase(itemID, quantity) - Starts a commodity item purchase.

Black Market AH

The Black Market Auction House was added in Patch 5.0.4

C_BlackMarket.Close() - Notifies the server that the Black Market UI was closed.
C_BlackMarket.GetHotItem() - Returns information about the current "hot item" at the Black Market Auction House.
C_BlackMarket.GetItemInfoByID(marketID) - Returns information about a specific black market auction.
C_BlackMarket.GetItemInfoByIndex(index) - Returns information about a specific black market auction.
C_BlackMarket.GetNumItems() - Returns the number of auctions on the Black Market Auction House.
C_BlackMarket.IsViewOnly()
HW C_BlackMarket.ItemPlaceBid(marketID, bid) - Places a bid on a black market auction.
C_BlackMarket.RequestItems() - Requests updated black market auction information from the server.

WoW Tokens

WoW Tokens were added in Patch 6.1.2

C_WowTokenPublic.BuyToken()
C_WowTokenPublic.GetCommerceSystemStatus()
C_WowTokenPublic.GetCurrentMarketPrice()
C_WowTokenPublic.GetGuaranteedPrice()
C_WowTokenPublic.GetListedAuctionableTokenInfo(index)
C_WowTokenPublic.GetNumListedAuctionableTokens()
C_WowTokenPublic.IsAuctionableWowToken(itemID)
C_WowTokenPublic.IsConsumableWowToken()
C_WowTokenPublic.UpdateListedAuctionableTokens()
C_WowTokenPublic.UpdateMarketPrice()
C_WowTokenPublic.UpdateTokenCount()
C_WowTokenUI.StartTokenSell(tokenGUID)

Bags

GetBackpackAutosortDisabled()
GetBagName(bagID) - Get the name of one of the player's bags.
GetBagSlotFlag(index, flagIndex)
GetInsertItemsLeftToRight()
GetSortBagsRightToLeft()
IsBagSlotFlagEnabledOnOtherBags(index, flagIndex)
IsInventoryItemProfessionBag(unit, slot)
PutItemInBackpack() - Attempts to place item in backpack (bag slot 0).
PutItemInBag(inventoryId) - Attempts to place item in a specific bag.
SetBackpackAutosortDisabled(disable)
SetBagPortraitTexture(texture, slot)
SetBagSlotFlag(index, flagIndex, checked)
SetBarSlotFromIntro(slot)
SetInsertItemsLeftToRight(disable)
SetItemSearch(search)
SetSortBagsRightToLeft(disable)
SortBags()
UI CloseAllBags(callingFrame, forceUpdate)
UI CloseBackpack()
UI CloseBag(bagID)
UI IsBagOpen(bagID)
UI OpenAllBags(callingFrame, forceUpdate)
UI OpenBackpack()
UI OpenBag(bagID, force)
UI ToggleAllBags()
UI ToggleBackpack() - Toggles your backpack open/closed.
UI ToggleBag(bagID) - Opens or closes the specified bag.

Containers

GetContainerFreeSlots(index [, returnTable])
GetContainerItemCooldown(bagID, slot)
GetContainerItemDurability(bag, slot) - Get current and maximum durability of an item in the character's bags.
GetContainerItemEquipmentSetInfo(index, slot)
GetContainerItemID(bag, slot) - Returns the item ID of the item in a particular container slot.
GetContainerItemInfo(bagID, slot) - Get the info for an item in one of the player's bags.
GetContainerItemLink(bagID, slot) - Returns a link of the object located in the specified slot of a specified bag.
GetContainerItemPurchaseCurrency(bag, slot, itemIndex [, isEquipped])
GetContainerItemPurchaseInfo(index, slot [, isEquipped])
GetContainerItemPurchaseItem(bag, slot, itemIndex [, isEquipped])
GetContainerItemQuestInfo(bag, slot) - Returns information about quest and quest-starting items in your bags.
GetContainerNumFreeSlots(bagID) - Returns the number of free slots and type of slots in the bag specified by the index.
GetContainerNumSlots(bagID) - Returns the total number of slots in the bag specified by the index.
IsContainerFiltered(index)
IsContainerItemAnUpgrade(index, slot)
SplitContainerItem(bagID, slot, amount) - Picks up part of a stack.
UseContainerItem(bagID, slot [, target]) - Performs a "right click" action on, or targeted use of, on an item in bags.

Inventory

These functions manage your inventory, specifically equipped items.

CancelPendingEquip(index) - This function is used to cancel a pending equip.
PROTECTED ConfirmBindOnUse()
PROTECTED ConfirmNoRefundOnUse()
ContainerIDToInventoryID(bagID)
EquipPendingItem(invSlot) - Equips the currently pending Bind-on-Equip or Bind-on-Pickup item from the specified inventory slot.
GetAverageItemLevel() - Returns the character's current average iLevel and current average iLevel equipped.
GetInventoryAlertStatus(index) - Returns one of several codes describing the "status" of an equipped item.
GetInventoryItemBroken(unit, invSlot) - Determine if an inventory item is broken (no durability).
GetInventoryItemCooldown(unit, invSlot) - Get cooldown information for an inventory item.
GetInventoryItemCount(unit, invSlot) - Determine the quantity of an item in an inventory slot.
GetInventoryItemDurability(invSlot) - Returns the maximum and remaining durability points for an inventory item.
GetInventoryItemID(unit, invSlot) - Returns the item id of the item in the specified inventory slot.
GetInventoryItemLink(unit, invSlot) - Returns an itemLink for an inventory (equipped) item.
GetInventoryItemQuality(unit, invSlot) - Returns the quality of an inventory item.
GetInventoryItemTexture(unit, invSlot) - Returns the texture for an inventory item.
GetInventorySlotInfo(invSlotName) - Get the info for a named inventory slot (slot ID and texture)
HasWandEquipped() - Returns 1 if a wand is equipped, false otherwise.
IsInventoryItemLocked(id) - Returns whether an inventory item is locked, usually as it awaits pending action.
SetInventoryPortraitTexture(texture, unit, slot)
UpdateInventoryAlertStatus()
PROTECTED UseInventoryItem(invSlot) - Use an item in a specific inventory slot.

Bank

Relates to the Bank.

BankButtonIDToInvSlotID(buttonID, isBag) - Returns the ID number of a bank button or bag in terms of inventory slot ID.
BuyReagentBank()
CloseBankFrame() - Close the bank frame if it's open.
DepositReagentBank()
GetBankAutosortDisabled()
GetBankBagSlotFlag()
GetBankSlotCost(numSlots) - Returns the cost of the next bank slot.
GetNumBankSlots() - Returns total purchased bank bag slots, and a flag indicating if it's full.
GetReagentBankCost()
IsBagSlotFlagEnabledOnOtherBankBags()
IsReagentBankUnlocked()
PurchaseSlot() - Buys another bank slot if available.
ReagentBankButtonIDToInvSlotID()
SetBankAutosortDisabled()
SetBankBagSlotFlag()
SortBankBags()
SortReagentBankBags()

Guild Bank

The Guild bank was added in Patch 2.3.0

AutoStoreGuildBankItem(tab, slot) - Withdraws an item from the bank, and automatically stores it in the player's inventory.
BuyGuildBankTab() - Buys a guild bank tab, without confirmation.
CanEditGuildBankTabInfo()
CanGuildBankRepair()
CanWithdrawGuildBankMoney() - Boolean, true if player is permitted to withdraw funds. No bank proximity required.
CloseGuildBankFrame() - Closes the guild bank frame.
DepositGuildBankMoney(money) - Deposits "money" amount in copper.
GetCurrentGuildBankTab() - Integer of selected tab, >= 1.
GetGuildBankBonusDepositMoney()
GetGuildBankItemInfo(tab, slot) - Returns texture, amount and integer 1 or nil depending on locked state.
GetGuildBankItemLink(tab, slot) - Returns itemLink.
GetGuildBankMoney() - Integer, funds available in copper.
GetGuildBankMoneyTransaction(index) - No bank proximity required, however QueryGuildBankLog function requires proximity.
GetGuildBankTabCost() - Integer OR nil - cost in copper OR no tabs available to buy.
GetGuildBankTabInfo(tab) - Returns the name and icon of the guild bank tab queried.
GetGuildBankTabPermissions(tab) - Gets display / player's access info. Limited data available without bank proximity.
GetGuildBankText(tab) - Returns info text for a tab.
GetGuildBankTransaction(tab, index) - Requires Guild Bank Proximity.
GetGuildBankWithdrawGoldLimit() - Returns withdraw limit for currently selected rank in guild control.
GetGuildBankWithdrawMoney()
GetNumGuildBankMoneyTransactions() - Returns number of money log entries.
GetNumGuildBankTabs() - Integer count of bought tabs, >= 0. No bank proximity required.
GetNumGuildBankTransactions(tab) - Returns number of log transactions for tab "tab".
QueryGuildBankLog(tab) - Updates bank log data from the server, called before all transaction functions. "Money tab" is MAX_GUILDBANK_TABS+1.
QueryGuildBankTab(tab) - Updates bank tab data from the server, called before all item functions.
QueryGuildBankText()
SetCurrentGuildBankTab(tab) - Select different bank tab in the UI.
SetGuildBankTabInfo(tab, name, icon) - Modifies name and icon for tab.
SetGuildBankTabItemWithdraw()
SetGuildBankTabPermissions(tab, index, enabled) - Modifies the permissions for the GuildBankTab. Guild Leader Only.
SetGuildBankText(tab, infoText) - Modifies info text for a tab.
SetGuildBankWithdrawGoldLimit(amount) - Sets the gold withdraw limit from the guild bank. Guild Leader Only.
SplitGuildBankItem(tab, slot, amount) - Picks up part of a stack.
WithdrawGuildBankMoney(money) - Withdraws "money" copper from the guild bank.

Void Storage

Void Storage was added in Patch 4.3.0

CanUseVoidStorage() - Returns if the player has access to the Void Storage.
ClearVoidTransferDepositSlot(slotIndex) - Clears the specified Void Transfer deposit slot.
ClickVoidStorageSlot(slotIndex [, isRightClick]) - Clicks the specified Void Storage slot.
ClickVoidTransferDepositSlot(slotIndex [, isRightClick]) - Clicks the specified Void Transfer deposit slot.
ClickVoidTransferWithdrawalSlot(slotIndex [, isRightClick]) - Clicks the specified Void Transfer withdrawal slot.
CloseVoidStorageFrame()
ExecuteVoidTransfer() - Applies all pending void transfers (and pays for the cost of any deposited items).
GetNumVoidTransferDeposit() - Returns the number of items being deposited into the Void Storage.
GetNumVoidTransferWithdrawal() - Returns the number of items being withdrawed from the Void Storage.
GetVoidItemHyperlinkString(slotIndex) - Returns the item link of an item in void storage.
GetVoidItemInfo(slotIndex) - Returns itemID, textureName, locked, recentDeposit, isFiltered.
GetVoidTransferCost() - Returns the total Void Transfer cost.
GetVoidTransferDepositInfo(slotIndex) - Returns itemID, textureName.
GetVoidTransferWithdrawalInfo(slotIndex) - Returns itemID, textureName.
IsVoidStorageReady()
UnlockVoidStorage() - Pays for and activates the Void Storage.
GetVoidStorageSlotPageIndex(slot)
GetVoidUnlockCost()

Books

Relates to item text from books, etc.

CloseItemText() - Close an open item text (book, plaque, etc).
ItemTextGetCreator() - Get the creator of the current text (if player-created).
ItemTextGetItem() - Get the name of the text.
ItemTextGetMaterial() - Get the material on which the text is printed.
ItemTextGetPage() - Get the page number of the currently viewed page.
ItemTextGetText() - Get the page contents of the currently viewed page.
ItemTextHasNextPage() - Determine if there is another page after the current one.
ItemTextIsFullPage()
ItemTextNextPage() - Request the next page of the text.
ItemTextPrevPage() - Request the previous page of the text.

Calendar

The Calendar was added in Patch 3.0.1 and reworked in Patch 8.0.1

HW C_Calendar.AddEvent() - Saves the new event currently being created to the server.
C_Calendar.AreNamesReady() : ready
C_Calendar.CanAddEvent() : canAddEvent - Returns whether the player can add an event.
C_Calendar.CanSendInvite() : canSendInvite - Returns whether the player can send invites.
C_Calendar.CloseEvent() - Closes the selected event without saving it.
C_Calendar.ContextMenuEventCanComplain(offsetMonths, monthDay, eventIndex) : canComplain - Returns whether the player can report the event as spam.
C_Calendar.ContextMenuEventCanEdit(offsetMonths, monthDay, eventIndex) : canEdit - Returns whether the player can edit the event.
C_Calendar.ContextMenuEventCanRemove(offsetMonths, monthDay, eventIndex) : canRemove - Returns whether the player can remove the event.
C_Calendar.ContextMenuEventClipboard() : exists
C_Calendar.ContextMenuEventComplain() - Reports the event as spam.
C_Calendar.ContextMenuEventCopy() - Copies the event to the clipboard.
C_Calendar.ContextMenuEventGetCalendarType() : calendarType
C_Calendar.ContextMenuEventPaste(offsetMonths, monthDay) - Pastes the clipboard event to the date.
C_Calendar.ContextMenuEventRemove() - Deletes the event.
C_Calendar.ContextMenuEventSignUp()
C_Calendar.ContextMenuGetEventIndex() : info
C_Calendar.ContextMenuInviteAvailable() - Accepts the invitation to the event.
C_Calendar.ContextMenuInviteDecline() - Declines the invitation to the event.
C_Calendar.ContextMenuInviteRemove() - Removes the event from the calendar.
C_Calendar.ContextMenuInviteTentative()
C_Calendar.ContextMenuSelectEvent(offsetMonths, monthDay, eventIndex)
C_Calendar.CreateCommunitySignUpEvent()
C_Calendar.CreateGuildAnnouncementEvent()
C_Calendar.CreateGuildSignUpEvent()
C_Calendar.CreatePlayerEvent() - Creates a new calendar event candidate for the player.
C_Calendar.EventAvailable() - Accepts the invitation to the currently open event.
C_Calendar.EventCanEdit() : canEdit - Returns whether the event can be edited.
C_Calendar.EventClearAutoApprove() - Turns off automatic confirmations.
C_Calendar.EventClearLocked() - Unlocks the event.
C_Calendar.EventClearModerator(inviteIndex)
C_Calendar.EventDecline() - Declines the invitation to the currently open event.
C_Calendar.EventGetCalendarType() : calendarType
C_Calendar.EventGetClubId() : info
C_Calendar.EventGetInvite(eventIndex) : info - Returns status information for an invitee for the currently opened event.
C_Calendar.EventGetInviteResponseTime(eventIndex) : time
C_Calendar.EventGetInviteSortCriterion() : criterion, reverse
C_Calendar.EventGetSelectedInvite() : inviteIndex
C_Calendar.EventGetStatusOptions(eventIndex) : options
C_Calendar.EventGetTextures(eventType) : textures
C_Calendar.EventGetTypes() : types
C_Calendar.EventGetTypesDisplayOrdered() : infos
C_Calendar.EventHasPendingInvite() : hasPendingInvite - Returns whether the player has an unanswered invitation to the currently selected event.
C_Calendar.EventHaveSettingsChanged() : haveSettingsChanged - Returns whether the currently opened event has been modified.
C_Calendar.EventInvite(name) - Invites a player to the currently selected event.
C_Calendar.EventRemoveInvite(inviteIndex)
C_Calendar.EventRemoveInviteByGuid(guid)
C_Calendar.EventSelectInvite(inviteIndex)
C_Calendar.EventSetAutoApprove()
C_Calendar.EventSetClubId([clubId])
C_Calendar.EventSetDate(month, monthDay, year) - Sets the date for the currently opened event.
C_Calendar.EventSetDescription(description)
C_Calendar.EventSetInviteStatus(eventIndex, status) - Sets the invitation status of a player to the current event.
C_Calendar.EventSetLocked()
C_Calendar.EventSetModerator(inviteIndex)
C_Calendar.EventSetTextureID(textureIndex)
C_Calendar.EventSetTime(hour, minute) - Sets the time for the currently opened event.
C_Calendar.EventSetTitle(title) - Sets the title for the currently opened event.
C_Calendar.EventSetType(typeIndex) - Sets the event type for the current calendar event.
C_Calendar.EventSignUp()
C_Calendar.EventSortInvites(criterion, reverse)
C_Calendar.EventTentative()
C_Calendar.GetClubCalendarEvents(clubId, startTime, endTime) : events
C_Calendar.GetDayEvent(monthOffset, monthDay, index) : event - Retrieve information about the specified event.
C_Calendar.GetDefaultGuildFilter() : info
C_Calendar.GetEventIndex() : info
C_Calendar.GetEventIndexInfo(eventID [, monthOffset, monthDay]) : eventIndexInfo
C_Calendar.GetEventInfo() : info - Returns detailed information about an event.
C_Calendar.GetFirstPendingInvite(offsetMonths, monthDay) : firstPendingInvite
C_Calendar.GetGuildEventInfo(index) : info
C_Calendar.GetGuildEventSelectionInfo(index) : info
C_Calendar.GetHolidayInfo(monthOffset, monthDay, index) : event - Returns seasonal holiday info.
C_Calendar.GetMaxCreateDate() : maxCreateDate - Returns the last day supported by the Calendar API.
C_Calendar.GetMinDate() : minDate - Returns the first day supported by the Calendar API.
C_Calendar.GetMonthInfo([offsetMonths]) : monthInfo - Returns information about the calendar month by offset.
C_Calendar.GetNextClubId() : clubId
C_Calendar.GetNumDayEvents(offsetMonths, monthDay) : numDayEvents - Returns the number of events for a given day/month offset.
C_Calendar.GetNumGuildEvents() : numGuildEvents
C_Calendar.GetNumInvites() : num - Returns the number of invitees for the currently opened event.
C_Calendar.GetNumPendingInvites() : num
C_Calendar.GetRaidInfo(offsetMonths, monthDay, eventIndex) : info
C_Calendar.IsActionPending() : actionPending
C_Calendar.IsEventOpen() : isOpen
C_Calendar.MassInviteCommunity(clubId, minLevel, maxLevel [, maxRankOrder])
C_Calendar.MassInviteGuild(minLevel, maxLevel, maxRankOrder)
C_Calendar.OpenCalendar() - Requests calendar information from the server. Does not open the calendar frame.
C_Calendar.OpenEvent(offsetMonths, monthDay, index) : success - Establishes an event for future calendar API calls
C_Calendar.RemoveEvent() - Removes the selected event from the calendar (invitees only).
C_Calendar.SetAbsMonth(month, year) - Sets the reference month and year for functions which use a month offset.
C_Calendar.SetMonth(offsetMonths)
C_Calendar.SetNextClubId([clubId])
HW C_Calendar.UpdateEvent() - Saves the selected event.

Chat

These are specific to chat messages and channels.

C_ChatInfo.GetChannelInfoFromIdentifier(channelIdentifier) : info
C_ChatInfo.GetChannelRosterInfo(channelIndex, rosterIndex) : name, owner, moderator, guid
C_ChatInfo.GetChannelRuleset(channelIndex) : ruleset
C_ChatInfo.GetChannelRulesetForChannelID(channelID) : ruleset
C_ChatInfo.GetChannelShortcut(channelIndex) : shortcut
C_ChatInfo.GetChannelShortcutForChannelID(channelID) : shortcut
C_ChatInfo.GetChatTypeName(typeID) : name
C_ChatInfo.GetClubStreamIDs(clubID) : ids
C_ChatInfo.GetGeneralChannelID() : channelID
C_ChatInfo.GetGeneralChannelLocalID() : localID
C_ChatInfo.GetMentorChannelID() : channelID
C_ChatInfo.GetNumActiveChannels() : numChannels
C_ChatInfo.GetNumReservedChatWindows() : numReserved
C_ChatInfo.IsChannelRegional(channelIndex) : isRegional
C_ChatInfo.IsChannelRegionalForChannelID(channelID) : isRegional
C_ChatInfo.IsPartyChannelType(channelType) : isPartyChannelType
C_ChatInfo.IsRegionalServiceAvailable() : available
C_ChatInfo.IsValidChatLine([chatLine]) : isValid
C_ChatInfo.ReplaceIconAndGroupExpressions(input [, noIconReplacement, noGroupReplacement]) : output - Replaces icon and group tags like {rt4}, {diamond} and {g1}.
C_ChatInfo.ResetDefaultZoneChannels()
C_ChatInfo.SwapChatChannelsByChannelIndex(firstChannelIndex, secondChannelIndex)
C_ChatBubbles.GetAllChatBubbles([includeForbidden]) : chatBubbles - Returns all active chat bubbles.
CancelEmote() - Stops an active emote, e.g. when closing the map.
ChannelBan(channel, name) - Bans a player from the specified channel.
ChannelInvite(channel, name) - Invites the specified user to the channel.
ChannelKick(channel, name) - Kicks the specified user from the channel.
ChannelModerator(channel, name) - Sets the specified player as the channel moderator.
ChannelToggleAnnouncements(channel) - Toggles the channel to display announcements either on or off.
ChannelUnban(channel, name) - Unbans a player from a channel.
ChannelUnmoderator(channel, name) - Takes the specified user away from the moderator status.
DeclineChannelInvite(channel)
DisplayChannelOwner(channel) - Displays the owner of the specified channel in the default chat.
DoEmote(emote [, target]) - Perform a voice emote.
EnumerateServerChannels() - Retrieves all available server channels (zone dependent).
GetAlternativeDefaultLanguage()
GetChannelDisplayInfo(channelID) - Returns the name of the channel according to the given id.
GetChannelList() - Retrieves joined channels.
GetChannelName(channel or index) - Retrieves the name from a specific channel.
GetDefaultLanguage(unit) - Returns the default language that the unit is speaking after logon.
GetLanguageByIndex(index) - Returns the language specified by the index.
GetNumChannelMembers()
GetNumDisplayChannels()
GetNumGroupChannels()
GetNumLanguages() - Returns the number of languages your character can speak.
GetSelectedDisplayChannel()
IsDisplayChannelModerator()
IsDisplayChannelOwner()
JoinChannelByName(channelName [, password, frameID, hasVoice]) - Join the specified chat channel (with optional password, and register for specified frame).
JoinPermanentChannel(channelName [, password, frameID, hasVoice]) - Permanently join the specified chat channel (with optional password, and register for specified frame)
JoinTemporaryChannel(channelName [, password, frameID, hasVoice]) - Temporary join the specified chat channel (with optional password, and register for specified frame)
LeaveChannelByLocalID(localID)
LeaveChannelByName(channel) - Leaves the channel with the specified name.
ListChannelByName(channelMatch) - Lists members in the given channel to the chat window.
ListChannels() - Lists all of the channels into the chat window.
LoggingChat(newState) - Gets or sets whether logging chat to Logs\WoWChatLog.txt is enabled.
LoggingCombat(newState) - Gets or sets whether logging combat to Logs\WoWCombatLog.txt is enabled.
SendChatMessage(msg [, chatType, languageID, target]) - Sends a chat message.
SetChannelOwner(channel, name) - Sets the channel owner.
SetChannelPassword(channel, password) - Changes the password of the current channel.
SetSelectedDisplayChannel(channelID)

Chat Window

These are specific to chat window management.

AddChatWindowChannel(chatFrameIndex, channel) - Make a chat channel visible in a specific ChatFrame.
AddChatWindowMessages() - Adds a messaging group to the specified chat window.
ChangeChatColor(channelName, r, g, b) - Update the color for a type of chat message.
GetChatTypeIndex(type) - Get the numeric ID of a type of chat message.
GetChatWindowChannels(index) - Get the chat channels received by a chat window.
GetChatWindowInfo(index) - Get setup information about a chat window.
GetChatWindowMessages(index) - Get the chat message types received by a chat window.
GetChatWindowSavedDimensions(index)
GetChatWindowSavedPosition(index)
RedockChatWindows()
RemoveChatWindowChannel(chatFrameIndex, channel) - Make a chat channel invisible (hidden) in a specific ChatFrame.
RemoveChatWindowMessages(chatFrameIndex, messageGroup) - Remove a set of chat messages from this window.
ResetChatColors()
ResetChatWindows()
SetChatColorNameByClass(chatType, colorNameByClass)
SetChatWindowAlpha(index, alpha) - Sets the Alpha value(transparency) of ChatFrame<index> (alpha - 0-100)
SetChatWindowColor(index, r, g, b) - Sets the background color of a a chat window. (r/g/b - 0-255)
SetChatWindowDocked(index, docked) - Set whether a chat window is docked. (docked - 0/1)
SetChatWindowLocked(index, locked) - Sets ChatFrame<index> so that it is or is not movable. (locked - 0/1)
SetChatWindowName(index, name) - Sets the alpha value of ChatFrame.
SetChatWindowSavedDimensions(index, width, height)
SetChatWindowSavedPosition(index, point, xOffsetRatio, yOffsetRatio)
SetChatWindowShown(index, shown) - Shows or Hides ChatFrame<index> depending on value of <shown> (shown - 0/1)
SetChatWindowSize(index, size) - Sets the font size of a chat window. (size - default 14)
SetChatWindowUninteractable(id, isUninteractable)
UI ChatFrame_AddChannel(chatFrame, channelName) - Activate channel in chatFrame.
UI ChatFrame_AddMessageEventFilter(event, filterFunc) - Add a chat message filtering function.
UI ChatFrame_GetMessageEventFilters(event) - Retreive the list of chat message filtering functions.
UI ChatFrame_OnHyperlinkShow(reference, link, button) - Called when the user clicks on a chatlink.
UI ChatFrame_RemoveMessageEventFilter(event, filterFunc) - Unregister a chat message filtering function.

AddOn Messages

C_ChatInfo.GetRegisteredAddonMessagePrefixes() : registeredPrefixes - Returns addon message prefixes the client is currently registered to receive.
C_ChatInfo.IsAddonMessagePrefixRegistered(prefix) : isRegistered - Returns whether the prefix is registered.
C_ChatInfo.RegisterAddonMessagePrefix(prefix) : successfulRequest - Registers an addon message prefix.
C_ChatInfo.SendAddonMessage(prefix, message [, chatType, target]) : success - Sends a message to the hidden addon channel.
C_ChatInfo.SendAddonMessageLogged(prefix, message [, chatType, target]) : success - Sends a message to the hidden addon channel, the messages are logged server side.

Communities

Communities were added in Patch 8.0.1

C_Club.AcceptInvitation(clubId)
C_Club.AddClubStreamChatChannel(clubId, streamId)
C_Club.AdvanceStreamViewMarker(clubId, streamId)
C_Club.AssignMemberRole(clubId, memberId, roleId)
C_Club.CanResolvePlayerLocationFromClubMessageData(clubId, streamId, epoch, position) : canResolve
C_Club.ClearAutoAdvanceStreamViewMarker()
C_Club.ClearClubPresenceSubscription()
C_Club.CompareBattleNetDisplayName(clubId, lhsMemberId, rhsMemberId) : comparison
C_Club.CreateClub(name, [shortName], description, clubType, avatarId)
C_Club.CreateStream(clubId, name, subject, leadersAndModeratorsOnly)
C_Club.CreateTicket(clubId [, allowedRedeemCount, duration, defaultStreamId])
C_Club.DeclineInvitation(clubId)
C_Club.DestroyClub(clubId)
C_Club.DestroyMessage(clubId, streamId, messageId)
C_Club.DestroyStream(clubId, streamId)
C_Club.DestroyTicket(clubId, ticketId)
C_Club.EditClub(clubId [, name, shortName, description, avatarId, broadcast])
C_Club.EditMessage(clubId, streamId, messageId, message)
C_Club.EditStream(clubId, streamId [, name, subject, leadersAndModeratorsOnly])
C_Club.Flush()
C_Club.FocusCommunityStreams()
C_Club.FocusStream(clubId, streamId) : focused
C_Club.GetAssignableRoles(clubId, memberId) : assignableRoles
C_Club.GetAvatarIdList(clubType) : avatarIds
C_Club.GetClubCapacity() : capacity
C_Club.GetClubInfo(clubId) : info
C_Club.GetClubLimits(clubType) : clubLimits
C_Club.GetClubMembers(clubId [, streamId]) : members
C_Club.GetClubPrivileges(clubId) : privilegeInfo
C_Club.GetClubStreamNotificationSettings(clubId) : settings
C_Club.GetCommunityNameResultText(result) : errorCode
C_Club.GetGuildClubId() : guildClubId
C_Club.GetInfoFromLastCommunityChatLine() : messageInfo, clubId, streamId, clubType
C_Club.GetInvitationCandidates([filter], [maxResults], [cursorPosition], [allowFullMatch], clubId) : candidates
C_Club.GetInvitationInfo(clubId) : invitation
C_Club.GetInvitationsForClub(clubId) : invitations
C_Club.GetInvitationsForSelf() : invitations
C_Club.GetLastTicketResponse(ticket) : error, info, showError
C_Club.GetMemberInfo(clubId, memberId) : info
C_Club.GetMemberInfoForSelf(clubId) : info
C_Club.GetMessageInfo(clubId, streamId, messageId) : message
C_Club.GetMessageRanges(clubId, streamId) : ranges
C_Club.GetMessagesBefore(clubId, streamId, newest, count) : messages
C_Club.GetMessagesInRange(clubId, streamId, oldest, newest) : messages
C_Club.GetStreamInfo(clubId, streamId) : streamInfo
C_Club.GetStreams(clubId) : streams
C_Club.GetStreamViewMarker(clubId, streamId) : lastReadTime
C_Club.GetSubscribedClubs() : clubs
C_Club.GetTickets(clubId) : tickets
C_Club.IsAccountMuted(clubId) : accountMuted
C_Club.IsBeginningOfStream(clubId, streamId, messageId) : isBeginningOfStream
C_Club.IsEnabled() : clubsEnabled
C_Club.IsRestricted() : restrictionReason
C_Club.IsSubscribedToStream(clubId, streamId) : subscribed
C_Club.KickMember(clubId, memberId)
C_Club.LeaveClub(clubId)
C_Club.RedeemTicket(ticketId)
C_Club.RequestInvitationsForClub(clubId)
C_Club.RequestMoreMessagesBefore(clubId, streamId [, messageId, count]) : alreadyHasMessages
C_Club.RequestTicket(ticketId)
C_Club.RequestTickets(clubId)
C_Club.RevokeInvitation(clubId, memberId)
C_Club.SendBattleTagFriendRequest(guildClubId, memberId)
C_Club.SendCharacterInvitation(clubId, character)
C_Club.SendInvitation(clubId, memberId)
C_Club.SendMessage(clubId, streamId, message)
C_Club.SetAutoAdvanceStreamViewMarker(clubId, streamId)
C_Club.SetAvatarTexture(texture, avatarId, clubType)
C_Club.SetClubMemberNote(clubId, memberId, note)
C_Club.SetClubPresenceSubscription(clubId)
C_Club.SetClubStreamNotificationSettings(clubId, settings)
C_Club.SetFavorite(clubId, isFavorite)
C_Club.SetSocialQueueingEnabled(clubId, enabled)
C_Club.ShouldAllowClubType(clubType) : clubTypeIsAllowed
C_Club.UnfocusAllStreams(unsubscribe)
C_Club.UnfocusStream(clubId, streamId)
C_Club.ValidateText(clubType, text, clubFieldType) : result
C_Cursor.DropCursorCommunitiesStream()
C_Cursor.GetCursorCommunitiesStream() : clubId, streamId
C_Cursor.GetCursorItem() : item
C_Cursor.SetCursorCommunitiesStream(clubId, streamId)

The Club Finder was added in Patch 8.2.0 and enabled in Patch 8.2.5

C_ClubFinder.ApplicantAcceptClubInvite(clubFinderGUID)
C_ClubFinder.ApplicantDeclineClubInvite(clubFinderGUID)
C_ClubFinder.CancelMembershipRequest(clubFinderGUID)
C_ClubFinder.CheckAllPlayerApplicantSettings()
C_ClubFinder.ClearAllFinderCache()
C_ClubFinder.ClearClubApplicantsCache()
C_ClubFinder.ClearClubFinderPostingsCache()
C_ClubFinder.DoesPlayerBelongToClubFromClubGUID(clubFinderGUID) : belongsToClub
C_ClubFinder.GetClubFinderDisableReason() : disableReason
C_ClubFinder.GetClubRecruitmentSettings() : settings
C_ClubFinder.GetClubTypeFromFinderGUID(clubFinderGUID) : clubType
C_ClubFinder.GetFocusIndexFromFlag(flags) : index
C_ClubFinder.GetPlayerApplicantLocaleFlags() : localeFlags
C_ClubFinder.GetPlayerApplicantSettings() : settings
C_ClubFinder.GetPlayerClubApplicationStatus(clubFinderGUID) : clubStatus
C_ClubFinder.GetPlayerSettingsFocusFlagsSelectedCount() : focusCount
C_ClubFinder.GetPostingIDFromClubFinderGUID(clubFinderGUID) : postingID
C_ClubFinder.GetRecruitingClubInfoFromClubID(clubId) : clubInfo
C_ClubFinder.GetRecruitingClubInfoFromFinderGUID(clubFinderGUID) : clubInfo
C_ClubFinder.GetStatusOfPostingFromClubId(postingID) : postingFlags
C_ClubFinder.GetTotalMatchingCommunityListSize() : totalSize
C_ClubFinder.GetTotalMatchingGuildListSize() : totalSize
C_ClubFinder.HasAlreadyAppliedToLinkedPosting(clubFinderGUID) : hasAlreadyApplied
C_ClubFinder.HasPostingBeenDelisted(postingID) : postingDelisted
C_ClubFinder.IsEnabled() : isEnabled
C_ClubFinder.IsListingEnabledFromFlags(flags) : isListed
C_ClubFinder.IsPostingBanned(postingID) : postingBanned
C_ClubFinder.LookupClubPostingFromClubFinderGUID(clubFinderGUID, isLinkedPosting)
C_ClubFinder.PlayerGetClubInvitationList() : inviteList
C_ClubFinder.PlayerRequestPendingClubsList(type)
C_ClubFinder.PlayerReturnPendingCommunitiesList() : info
C_ClubFinder.PlayerReturnPendingGuildsList() : info
C_ClubFinder.PostClub(clubId, itemLevelRequirement, name, description, avatarId, specs, type) : succesful
C_ClubFinder.ReportPosting(reportType, clubFinderGUID, playerGUID, complaintNote)
C_ClubFinder.RequestApplicantList(type)
C_ClubFinder.RequestClubsList(guildListRequested, searchString, specIDs)
C_ClubFinder.RequestMembershipToClub(clubFinderGUID, comment, specIDs)
C_ClubFinder.RequestNextCommunityPage(startingIndex, pageSize)
C_ClubFinder.RequestNextGuildPage(startingIndex, pageSize)
C_ClubFinder.RequestPostingInformationFromClubId(clubId) : success
C_ClubFinder.RequestSubscribedClubPostingIDs()
C_ClubFinder.ResetClubPostingMapCache()
C_ClubFinder.RespondToApplicant(clubFinderGUID, playerGUID, shouldAccept, requestType, playerName, forceAccept [, reported])
C_ClubFinder.ReturnClubApplicantList(clubId) : info
C_ClubFinder.ReturnMatchingCommunityList() : recruitingClubs
C_ClubFinder.ReturnMatchingGuildList() : recruitingClubs
C_ClubFinder.ReturnPendingClubApplicantList(clubId) : info
C_ClubFinder.SetAllRecruitmentSettings(value)
C_ClubFinder.SetPlayerApplicantLocaleFlags(localeFlags)
C_ClubFinder.SetPlayerApplicantSettings(index, checked)
C_ClubFinder.SetRecruitmentLocale(locale)
C_ClubFinder.SetRecruitmentSettings(index, checked)
C_ClubFinder.ShouldShowClubFinder() : shouldShow

Reporting

C_BehavioralMessaging.SendNotificationReceipt(dbId, openTimeSeconds, readTimeSeconds)
C_ReportSystem.CanReportPlayer(playerLocation) : canReport - Returns if a player can be reported.
C_ReportSystem.CanReportPlayerForLanguage(playerLocation) : canReport
PROTECTED C_ReportSystem.InitiateReportPlayer(complaintType [, playerLocation]) : token - Initiates a report against a player.
C_ReportSystem.OpenReportPlayerDialog(reportType, playerName [, playerLocation]) - Opens a dialog for reporting a player.
C_ReportSystem.ReportServerLag()
C_ReportSystem.ReportStuckInCombat()
PROTECTED C_ReportSystem.SendReportPlayer(token [, comment]) - Sends an initiated report against a player.
C_ReportSystem.SetPendingReportPetTarget([target]) : set - Report a pet for an inappropriate name.
C_ReportSystem.SetPendingReportTarget([target]) : set
C_ReportSystem.SetPendingReportTargetByGuid([guid]) : set

Restrictions

C_SocialRestrictions.AcknowledgeRegionalChatDisabled()
C_SocialRestrictions.IsChatDisabled() : disabled
C_SocialRestrictions.IsMuted() : isMuted
C_SocialRestrictions.IsSilenced() : isSilenced
C_SocialRestrictions.IsSquelched() : isSquelched
C_SocialRestrictions.SetChatDisabled(disabled)

Voice Chat

Voice Chat was added in Patch 2.2 and reworked in Patch 8.0.1

C_VoiceChat.ActivateChannel(channelID)
C_VoiceChat.BeginLocalCapture(listenToLocalUser)
C_VoiceChat.CanPlayerUseVoiceChat() : canUseVoiceChat
C_VoiceChat.CreateChannel(channelDisplayName) : status
C_VoiceChat.DeactivateChannel(channelID)
C_VoiceChat.EndLocalCapture()
C_VoiceChat.GetActiveChannelID() : channelID
C_VoiceChat.GetActiveChannelType() : channelType
C_VoiceChat.GetAvailableInputDevices() : inputDevices
C_VoiceChat.GetAvailableOutputDevices() : outputDevices
C_VoiceChat.GetChannel(channelID) : channel
C_VoiceChat.GetChannelForChannelType(channelType) : channel
C_VoiceChat.GetChannelForCommunityStream(clubId, streamId) : channel
C_VoiceChat.GetCommunicationMode() : communicationMode
C_VoiceChat.GetCurrentVoiceChatConnectionStatusCode() : statusCode
C_VoiceChat.GetInputVolume() : volume
C_VoiceChat.GetJoinClubVoiceChannelError(clubId) : errorReason
C_VoiceChat.GetLocalPlayerActiveChannelMemberInfo() : memberInfo
C_VoiceChat.GetLocalPlayerMemberID(channelID) : memberID
C_VoiceChat.GetMasterVolumeScale() : scale
C_VoiceChat.GetMemberGUID(memberID, channelID) : memberGUID
C_VoiceChat.GetMemberID(channelID, memberGUID) : memberID
C_VoiceChat.GetMemberInfo(memberID, channelID) : memberInfo
C_VoiceChat.GetMemberName(memberID, channelID) : memberName
C_VoiceChat.GetMemberVolume(playerLocation) : volume
C_VoiceChat.GetOutputVolume() : volume
C_VoiceChat.GetProcesses() : processes
C_VoiceChat.GetPTTButtonPressedState() : isPressed
C_VoiceChat.GetPushToTalkBinding() : keys
C_VoiceChat.GetVADSensitivity() : sensitivity
C_VoiceChat.IsChannelJoinPending(channelType [, clubId, streamId]) : isPending
C_VoiceChat.IsDeafened() : isDeafened
C_VoiceChat.IsEnabled() : isEnabled
C_VoiceChat.IsLoggedIn() : isLoggedIn
C_VoiceChat.IsMemberLocalPlayer(memberID, channelID) : isLocalPlayer
C_VoiceChat.IsMemberMuted(playerLocation) : mutedForMe
C_VoiceChat.IsMemberMutedForAll(memberID, channelID) : mutedForAll
C_VoiceChat.IsMemberSilenced(memberID, channelID) : silenced
C_VoiceChat.IsMuted() : isMuted
C_VoiceChat.IsParentalDisabled() : isParentalDisabled
C_VoiceChat.IsParentalMuted() : isParentalMuted
C_VoiceChat.IsPlayerUsingVoice(playerLocation) : isUsingVoice
C_VoiceChat.IsSilenced() : isSilenced
C_VoiceChat.LeaveChannel(channelID)
C_VoiceChat.Login() : status
C_VoiceChat.Logout() : status
C_VoiceChat.MarkChannelsDiscovered()
C_VoiceChat.RequestJoinAndActivateCommunityStreamChannel(clubId, streamId)
C_VoiceChat.RequestJoinChannelByChannelType(channelType [, autoActivate])
C_VoiceChat.SetCommunicationMode(communicationMode)
C_VoiceChat.SetDeafened(isDeafened)
C_VoiceChat.SetInputDevice(deviceID)
C_VoiceChat.SetInputVolume(volume)
C_VoiceChat.SetMasterVolumeScale(scale)
C_VoiceChat.SetMemberMuted(playerLocation, muted)
C_VoiceChat.SetMemberVolume(playerLocation, volume)
C_VoiceChat.SetMuted(isMuted)
C_VoiceChat.SetOutputDevice(deviceID)
C_VoiceChat.SetOutputVolume(volume)
C_VoiceChat.SetPortraitTexture(textureObject, memberID, channelID)
C_VoiceChat.SetPushToTalkBinding(keys)
C_VoiceChat.SetVADSensitivity(sensitivity)
C_VoiceChat.ShouldDiscoverChannels() : shouldDiscoverChannels
C_VoiceChat.ToggleDeafened()
C_VoiceChat.ToggleMemberMuted(playerLocation)
C_VoiceChat.ToggleMuted()
ChannelSetAllSilent([channelNumber | channelName], memberName, silenceOn)
ChannelSetPartyMemberSilent(partyMemberName, silenceOn)
IsChatChannelRaid()

Text-to-Speech

Text-to-Speech was added in Patch 9.1.0

C_VoiceChat.ActivateChannelTranscription(channelID)
C_VoiceChat.DeactivateChannelTranscription(channelID)
C_VoiceChat.GetRemoteTtsVoices() : ttsVoices
C_VoiceChat.GetTtsVoices() : ttsVoices
C_VoiceChat.IsSpeakForMeActive() : isActive
C_VoiceChat.IsSpeakForMeAllowed() : isAllowed
C_VoiceChat.IsTranscriptionAllowed() : isAllowed
C_VoiceChat.SpeakRemoteTextSample(text)
C_VoiceChat.SpeakText(voiceID, text, destination, rate, volume)
C_VoiceChat.StopSpeakingText()
C_TTSSettings.GetChannelEnabled(channelInfo) : enabled
C_TTSSettings.GetCharacterSettingsSaved() : settingsBeenSaved
C_TTSSettings.GetChatTypeEnabled(chatName) : enabled
C_TTSSettings.GetSetting(setting) : enabled
C_TTSSettings.GetSpeechRate() : rate
C_TTSSettings.GetSpeechVolume() : volume
C_TTSSettings.GetVoiceOptionID(voiceType) : voiceID
C_TTSSettings.GetVoiceOptionName(voiceType) : voiceName
C_TTSSettings.MarkCharacterSettingsSaved()
C_TTSSettings.SetChannelEnabled(channelInfo [, newVal])
C_TTSSettings.SetChannelKeyEnabled(channelKey [, newVal])
C_TTSSettings.SetChatTypeEnabled(chatName [, newVal])
C_TTSSettings.SetDefaultSettings()
C_TTSSettings.SetSetting(setting [, newVal])
C_TTSSettings.SetSpeechRate(newVal)
C_TTSSettings.SetSpeechVolume(newVal)
C_TTSSettings.SetVoiceOption(voiceType, voiceID)
C_TTSSettings.SetVoiceOptionName(voiceType, voiceName)

Twitter

Twitter integration was added in Patch 6.1.0

C_Social.GetLastAchievement() : achievementID, achievementName, achievementDesc, iconFileID
C_Social.GetLastItem() : itemID, itemName, iconFileID, itemQuality, itemLevel, ...
C_Social.GetLastScreenshotIndex() : screenShotIndex - Returns the index of the last screenshot.
C_Social.GetMaxTweetLength() : maxTweetLength - Returns the max character length of a tweet.
C_Social.GetScreenshotInfoByIndex(index) : screenWidth, screenHeight - Returns the display resolution of a screenshot.
C_Social.GetTweetLength(tweetText) : tweetLength
C_Social.IsSocialEnabled() : isEnabled
PROTECTED C_Social.RegisterSocialBrowser()
C_Social.SetTextureToScreenshot(texture, index)
PROTECTED C_Social.TwitterCheckStatus()
PROTECTED C_Social.TwitterConnect()
PROTECTED C_Social.TwitterDisconnect()
C_Social.TwitterGetMSTillCanPost() : msTimeLeft
PROTECTED C_Social.TwitterPostAchievement(text, width, height, snapshotId, offScreenFrame, lastAchievementID, usedCustomText)
PROTECTED C_Social.TwitterPostItem(text, width, height, snapshotId, offScreenFrame, lastItemID, usedCustomText)
PROTECTED C_Social.TwitterPostMessage(message)
PROTECTED C_Social.TwitterPostScreenshot(text, screenshotIndex, texture, usedCustomText)

Character

CheckBinderDist() - Check whether the player is close enough to interact with the Hearthstone binder.
ConfirmBinder() - Confirm the request to set the binding of the player's Hearthstone.
Dismount() - The player dismounts the current mount.
GetBindLocation() - Get the name of the location for your Hearthstone.
GetComboPoints() - Get the current number of combo points.
GetCurrentLevelFeatures(level) - For Level Up Display
GetCurrentTitle() - Returns the player's current titleId.
GetMirrorTimerInfo(id) - Returns information about a mirror timer (exhaustion, breath and feign death timers)
GetMirrorTimerProgress(id) - Returns the current value of a mirror timer (exhaustion, breath and feign death timers)
GetMoney() - Returns an integer value of your held money in copper.
GetNumTitles() - Returns the maximum titleId.
GetRestState() - Returns information about a player's rest state. (saved up experience bonus)
GetRuneCooldown(id) - Returns cooldown information about a given rune.
GetRuneCount(slot) - Returns the number of Runes in the given slot. (Death Knight)
GetSheathState() - Returns the sheath state of the player's weapons.
GetSpellsForCharacterUpgradeTier(tierIndex) - For Level Up Display
GetTimeToWellRested()
GetTitleName(titleId) - Returns the player's current title name.
GetXPExhaustion() - Returns your character's current rested XP, nil if character is not rested.
HasFullControl()
IsChatAFK()
IsChatDND()
IsEncounterInProgress()
IsFalling() - Returns 1 if your character is currently plummeting to their doom.
IsFlyableArea() - Returns 1 if it is possible to fly here, nil otherwise.
IsFlying() - Returns 1 if flying, otherwise nil.
IsIndoors() - Returns 1 if you are indoors, otherwise nil. Returns nil for indoor areas where you can still mount.
IsInsane() - Used for the Insanity bar
IsMounted() - Returns 1 if mounted, otherwise nil.
IsOutOfBounds() - Returns 1 if you fell off the map.
IsOutdoors() - Returns 1 if you are outdoors, otherwise nil. Returns 1 for indoor areas where you can still mount.
IsPlayerInWorld()
IsPlayerNeutral()
IsResting() - Returns 1 if your character is currently resting.
IsStealthed() - Returns 1 if stealthed or shadowmeld, otherwise nil.
IsSubmerged()
IsSwimming() - Returns 1 if your character is currently swimming.
IsThreatWarningEnabled() - Returns whether threat warnings should currently be displayed.
IsTitleKnown(index) - Returns 1 if the title is valid for the player, otherwise 0.
IsXPUserDisabled() - Returns 1 if the character has disabled experience gain.
PlayerHasHearthstone() - Returns the hearthstone ID
RandomRoll(min, max) - Does a random roll between the two values.
HW SetCurrentTitle(titleId) - Sets the player's current title by id.
ToggleSheath() - Toggles sheathed or unsheathed weapons.
PROTECTED UseHearthstone()
DEPRECATED HasAlternateForm()

Paper Doll

Relates to the Paper doll (also known as Character sheet).

C_PaperDollInfo.GetArmorEffectiveness(armor, attackerLevel) : effectiveness
C_PaperDollInfo.GetArmorEffectivenessAgainstTarget(armor) : effectiveness
C_PaperDollInfo.GetInspectItemLevel(unit) : equippedItemLevel - Returns the average item level for the unit being inspected.
C_PaperDollInfo.GetMinItemLevel() : minItemLevel
C_PaperDollInfo.GetStaggerPercentage(unit) : stagger, staggerAgainstTarget
C_PaperDollInfo.OffhandHasShield() : offhandHasShield
C_PaperDollInfo.OffhandHasWeapon() : offhandHasWeapon
CanDualWield()
GetAttackPowerForStat(stat, value) - Returns the amount of attack power contributed by a specified amount of a particular stat.
GetAvoidance()
GetBlockChance() - Returns the player's percentage block chance.
GetCombatRating(ratingID) - Returns the player's combat rating for a particular combat rating.
GetCombatRatingBonus(ratingID) - Returns the player's combat rating bonus for a particular combat rating.
GetCombatRatingBonusForCombatRatingValue(ratingIndex, value)
GetCritChance() - Returns the player's melee critical hit chance.
GetCritChanceProvidesParryEffect()
GetDodgeChance() - Returns the player's percentage dodge chance.
GetDodgeChanceFromAttribute()
GetExpertise() - Returns the player's expertise percentage for main hand, offhand and ranged attacks.
GetHaste() - Returns the player's haste percentage.
GetHitModifier()
GetLifesteal()
GetManaRegen() - Returns the player's mana regeneration rates.
GetMastery() - Returns the player's mastery before mastery rating.
GetMasteryEffect() - Returns the player's buffed mastery in percentage and (unknown number value).
GetMaxCombatRatingBonus(ratingIndex)
GetMeleeHaste() - Returns player's Melee attack haste.
GetModResilienceDamageReduction()
GetOverrideAPBySpellPower()
GetOverrideSpellPowerByAP()
GetParryChance() - Returns the player's percentage parry chance.
GetParryChanceFromAttribute()
GetPetMeleeHaste()
GetPetSpellBonusDamage()
GetPowerRegen() - Returns normal and combat power regeneration rates.
GetPowerRegenForPowerType(POWER_TYPE)
GetPVPGearStatRules()
GetPvpPowerDamage()
GetPvpPowerHealing()
GetRangedCritChance() - Returns the players ranged critical strike chance.
GetRangedHaste()
GetShieldBlock()
GetSpeed()
GetSpellBonusDamage(spellTreeID) - Returns the raw spell damage of the player for a given spell tree.
GetSpellBonusHealing() - Returns the raw bonus healing of the player.
GetSpellCritChance(school) - Returns the players critical hit chance with a particular spell school.
GetSpellHitModifier()
GetSpellPenetration()
GetSturdiness()
GetUnitHealthModifier(unit)
GetUnitMaxHealthModifier(unit)
GetUnitPowerModifier(unit)
GetVersatilityBonus(COMBAT_RATING)
HasAPEffectsSpellPower()
HasDualWieldPenalty()
HasIgnoreDualWieldWeapon()
HasSPEffectsAttackPower()
IsDualWielding()
IsRangedWeapon()
PlayerEffectiveAttackPower()
ResistancePercent(resistance, casterLevel)

Equipment Manager

The Equipment Manager was added in Patch 3.1.2

C_EquipmentSet.AssignSpecToEquipmentSet(equipmentSetID, specIndex) - Assigns an equipment set to a specialization.
C_EquipmentSet.CanUseEquipmentSets() : canUseEquipmentSets - Returns whether any equipment sets can be used.
C_EquipmentSet.ClearIgnoredSlotsForSave() - Clears ignored slots for saving.
C_EquipmentSet.CreateEquipmentSet(equipmentSetName [, icon]) - Creates an equipment set.
C_EquipmentSet.DeleteEquipmentSet(equipmentSetID) - Deletes an equipment set.
C_EquipmentSet.EquipmentSetContainsLockedItems(equipmentSetID) : hasLockedItems - Returns whether an equipment set has locked items
C_EquipmentSet.GetEquipmentSetAssignedSpec(equipmentSetID) : specIndex - Returns the specialization assigned to an equipment set.
C_EquipmentSet.GetEquipmentSetForSpec(specIndex) : equipmentSetID - Returns the equipment set currently assigned to a specific specialization.
C_EquipmentSet.GetEquipmentSetID(equipmentSetName) : equipmentSetID - Returns the set ID of an equipment set with the specified name.
C_EquipmentSet.GetEquipmentSetIDs() : equipmentSetIDs - Returns an array containing all currently saved equipment set IDs.
C_EquipmentSet.GetEquipmentSetInfo(equipmentSetID) : name, iconFileID, setID, isEquipped, numItems, numEquipped, numInInventory, ... - Returns information about a saved equipment set.
C_EquipmentSet.GetIgnoredSlots(equipmentSetID) : slotIgnored - Returns ignored slots of an equipment set.
C_EquipmentSet.GetItemIDs(equipmentSetID) : itemIDs - Returns the item IDs of an equipment set.
C_EquipmentSet.GetItemLocations(equipmentSetID) : locations - Returns the location of all items in an equipment set.
C_EquipmentSet.GetNumEquipmentSets() : numEquipmentSets - Returns the number of saved equipment sets.
C_EquipmentSet.IgnoreSlotForSave(slot) - Ignores an equipment slot for saving.
C_EquipmentSet.IsSlotIgnoredForSave(slot) : isSlotIgnored - Returns whether a slot is ignored for saving.
C_EquipmentSet.ModifyEquipmentSet(equipmentSetID, newName [, newIcon]) - Modifies an equipment set.
C_EquipmentSet.PickupEquipmentSet(equipmentSetID) - Picks up an equipment set, placing it on the cursor.
C_EquipmentSet.SaveEquipmentSet(equipmentSetID [, icon]) - Saves your currently equipped items into an equipment set.
C_EquipmentSet.UnassignEquipmentSetSpec(equipmentSetID) - Unassigns an equipment set from a specialization.
C_EquipmentSet.UnignoreSlotForSave(slot) - Unignores a slot for saving.
NOCOMBAT C_EquipmentSet.UseEquipmentSet(equipmentSetID) : setWasEquipped - Equips items from a specified equipment set.
GetInventoryItemEquippedUnusable(unit, slot)
GetInventoryItemsForSlot(slot, returnTable [, transmogrify])
IsInventoryItemAnUpgrade(unit, slot)
UI EquipmentManager_UnpackLocation() - Unpacks a location integer to determine the actual inventory location.

Dressing Room

The Dressing room was added in Patch 1.7.0

UI DressUpItemLink(itemLink) - Shows the Dressing Room with the given item equipped.
UI DressUpMountLink(itemLink | spellLink) - Shows the Dressing Room for the mount.
UI DressUpTransmogLink(transmogLink) - Shows the Dressing Room for transmog appearance or illusion.
UI SetDressUpBackground(frame, fileName, atlasPostfix)

Transmogrification

Transmogrification was added in Patch 4.3.0. See also Appearances functions.

C_Transmog.ApplyAllPending([currentSpecOnly]) : requestSent - Applies all pending transmogrifications, and pays for the cost.
C_Transmog.CanHaveSecondaryAppearanceForSlotID(slotID) : canHaveSecondaryAppearance
C_Transmog.CanTransmogItem(itemInfo) : canBeTransmogged, selfFailureReason, canTransmogOthers, ...
C_Transmog.CanTransmogItemWithItem(targetItemInfo, sourceItemInfo) : canTransmog, failureReason - Returns whether an item can be transmogrified to look like another item.
C_Transmog.ClearAllPending()
C_Transmog.ClearPending(transmogLocation) - Clears the specified transmogrify slot.
C_Transmog.Close()
C_Transmog.ExtractTransmogIDList(input) : transmogIDList
C_Transmog.GetApplyCost() : cost
C_Transmog.GetApplyWarnings() : warnings
C_Transmog.GetBaseCategory(transmogID) : categoryID
C_Transmog.GetCreatureDisplayIDForSource(itemModifiedAppearanceID) : creatureDisplayID
C_Transmog.GetItemIDForSource(itemModifiedAppearanceID) : itemID
C_Transmog.GetPending(transmogLocation) : pendingInfo
C_Transmog.GetSlotEffectiveCategory(transmogLocation) : categoryID
C_Transmog.GetSlotForInventoryType(inventoryType) : slot - Returns the equipment slot for an inventory type.
C_Transmog.GetSlotInfo(transmogLocation) : isTransmogrified, hasPending, isPendingCollected, canTransmogrify, ...
C_Transmog.GetSlotUseError(transmogLocation) : errorCode, errorString
C_Transmog.GetSlotVisualInfo(transmogLocation) : baseSourceID, baseVisualID, appliedSourceID, appliedVisualID, ...
C_Transmog.IsAtTransmogNPC() : isAtNPC
C_Transmog.IsSlotBeingCollapsed(transmogLocation) : isBeingCollapsed
C_Transmog.LoadOutfit(outfitID)
C_Transmog.SetPending(transmogLocation, pendingInfo)
C_Item.CanItemTransmogAppearance(itemLoc) : canTransmog, errorCode
C_Item.GetAppliedItemTransmogInfo(itemLoc) : info
C_Item.GetBaseItemTransmogInfo(itemLoc) : info
C_Item.GetCurrentItemTransmogInfo(itemLoc) : info
C_Item.IsDressableItemByID(itemInfo) : isDressableItem
IsCosmeticItem()
DEPRECATED C_Transmog.GetCost()

Barber Shop

The Barbershop was added in Patch 3.0.2 and reworked in patch Patch 9.0.1

C_BarberShop.ApplyCustomizationChoices() : success
C_BarberShop.Cancel()
C_BarberShop.ClearPreviewChoices([clearSavedChoices])
C_BarberShop.GetAvailableCustomizations() : categories
C_BarberShop.GetCurrentCameraZoom() : zoomLevel
C_BarberShop.GetCurrentCharacterData() : characterData
C_BarberShop.GetCurrentCost() : cost
C_BarberShop.HasAnyChanges() : hasChanges
C_BarberShop.IsViewingAlteredForm() : isViewingAlteredForm
C_BarberShop.MarkCustomizationChoiceAsSeen(choiceID)
C_BarberShop.MarkCustomizationOptionAsSeen(optionID)
C_BarberShop.PreviewCustomizationChoice(optionID, choiceID)
C_BarberShop.RandomizeCustomizationChoices()
C_BarberShop.ResetCameraRotation()
C_BarberShop.ResetCustomizationChoices()
C_BarberShop.RotateCamera(diffDegrees)
C_BarberShop.SaveSeenChoices()
C_BarberShop.SetCameraDistanceOffset(offset)
C_BarberShop.SetCameraZoomLevel(zoomLevel [, keepCustomZoom])
C_BarberShop.SetCustomizationChoice(optionID, choiceID)
C_BarberShop.SetModelDressState(dressedState)
C_BarberShop.SetSelectedSex(sex)
C_BarberShop.SetViewingAlteredForm(isViewingAlteredForm)
C_BarberShop.SetViewingShapeshiftForm([shapeshiftFormID])
C_BarberShop.ZoomCamera(zoomAmount)

Cinematics

Relates to in-game cinematics/cutscenes.

CanCancelScene()
CancelScene()
InCinematic()
IsInCinematicScene()
MouseOverrideCinematicDisable()
OpeningCinematic() - Shows the opening cinematic for a player's race. Only works as long as the player has earned zero exp.
StopCinematic()

Relates to pre-rendered movies.

CancelPreloadingMovie(movieId)
GetMovieDownloadProgress(movieId)
GameMovieFinished() - Ends the movie.
IsMovieLocal(movieId)
IsMoviePlayable(movieId) - Returns if a movie can be played.
PreloadMovie(movieId)
UI MovieFrame_PlayMovie(MovieFrame, movieID) - Plays a movie.

Class

C_ClassColor.GetClassColor(className) : classColor - Returns information about a class' color.
C_CreatureInfo.GetClassInfo(classID) : classInfo - Returns both localized and locale-independent class names.
FillLocalizedClassList(classTable [, isFemale]) - Fills table with localized class names.
GetClassInfo(index) - Returns information about a class.
GetNumClasses() - Returns the amount of classes in the game.
IsDemonHunterAvailable()
UI GetClassColor(classFilename) - Returns a class color from RAID_CLASS_COLORS.

Shaman totems

PROTECTED DestroyTotem(slot) - Destroys a totem/minion.
GetMultiCastTotemSpells(totemslot) - Returns a list of spellIDs that are applicable for the specified totem slot (1-4)
GetTotemCannotDismiss(slot)
GetTotemInfo(slot) - Returns information about a totem.
GetTotemTimeLeft(slot)
TargetTotem(slot)
PROTECTED SetMultiCastSpell(actionID, spellID) - Assigns a spellID to a multicast (totem bar) actionID.

Druid shapeshift forms

PROTECTED CancelShapeshiftForm() - Cancels a druid's shapeshift form buff.
PROTECTED CastShapeshiftForm(index)
GetNumShapeshiftForms()
GetShapeshiftForm(unknown) - Returns zero-based index of current form/stance.
GetShapeshiftFormCooldown(index)
GetShapeshiftFormID() - Returns the current shapeshift form as a constant. If the player is not shapeshifted it returns nil.
GetShapeshiftFormInfo(index) - Retrieves information about an available ShapeshiftForm or Stance.

Talents

Relates to Specializations.

C_SpecializationInfo.CanPlayerUsePVPTalentUI() : canUse, failureReason
C_SpecializationInfo.CanPlayerUseTalentSpecUI() : canUse, failureReason
C_SpecializationInfo.CanPlayerUseTalentUI() : canUse, failureReason
C_SpecializationInfo.GetAllSelectedPvpTalentIDs() : selectedPvpTalentIDs
C_SpecializationInfo.GetInspectSelectedPvpTalent(inspectedUnit, talentIndex) : selectedTalentID
C_SpecializationInfo.GetPvpTalentAlertStatus() : hasUnspentSlot, hasNewTalent
C_SpecializationInfo.GetPvpTalentSlotInfo(talentIndex) : slotInfo
C_SpecializationInfo.GetPvpTalentSlotUnlockLevel(talentIndex) : requiredLevel
C_SpecializationInfo.GetPvpTalentUnlockLevel(talentID) : requiredLevel
C_SpecializationInfo.GetSpecIDs(specSetID) : specIDs
C_SpecializationInfo.GetSpellsDisplay(specializationID) : spellID
C_SpecializationInfo.IsInitialized() : isSpecializationDataInitialized
C_SpecializationInfo.IsPvpTalentLocked(talentID) : locked
C_SpecializationInfo.MatchesCurrentSpecSet(specSetID) : matches
C_SpecializationInfo.SetPvpTalentLocked(talentID, locked)
AreTalentsLocked()
CheckTalentMasterDist() - Returns nil if the player is too far away from the talent master to use the talent methods.
ClearFailedPVPTalentIDs()
ClearFailedTalentIDs()
ConfirmTalentWipe() - Confirms freeing all talent points.
GetActiveSpecGroup([isInspect]) - Returns the index of the current active specialization/talent/glyph group.
GetFailedPVPTalentIDs()
GetFailedTalentIDs()
GetMaxTalentTier() - Returns the number of available talent tiers.
GetNumSpecGroups([isInspect]) - Returns the number of specialization group (dual specs) the player has.
GetNumSpecializations([isInspect, isPet]) - Returns the number of available specializations.
GetNumSpecializationsForClassID(classID) - Returns the number of specializations available to a particular class.
GetNumUnspentPvpTalents()
GetNumUnspentTalents() - Returns the number of unspent talents.
GetPetTalentTree()
GetPrimarySpecialization()
GetPvpTalentInfoByID(talentID [, specGroupIndex, isInspect, inspectUnit])
GetPvpTalentInfoBySpecialization()
GetPvpTalentLink()
GetSetBonusesForSpecializationByItemID(specID, itemID)
GetSpecChangeCost()
GetSpecialization([isInspect, isPet, specGroup]) - Returns the index of the player's current specialization.
GetSpecializationInfo(specIndex [, isInspect, isPet, inspectTarget, sex]) - Returns information about the player's specializations.
GetSpecializationInfoByID(specID) - Returns information about the specified specialization.
GetSpecializationInfoForClassID(classID, specIndex) - Returns information about the specified specialization.
GetSpecializationInfoForSpecID(specID [, sex])
GetSpecializationMasterySpells(specIndex [, isInspect, isPet]) - Returns the mastery spellID of the current player's specialization.
GetSpecializationNameForSpecID(specID [, sex])
GetSpecializationRole(specIndex [, isInspect, isPet]) - Returns the role a specialization is intended to perform.
GetSpecializationRoleByID(specID) - Returns the role a specialization is intended to perform.
GetSpecializationSpells(specIndex [, isInspect, isPet]) - Returns the spellID of key abilities used by the specified specialization.
GetSpecsForSpell(spellName or spellIndex, bookType) - Returns the specs for which the specified spell can be used.
GetTalentInfo(tier, column, specGroupIndex [, isInspect, inspectUnit]) - Returns information about a talent.
GetTalentInfoByID(talentID, specGroupIndex [, isInspect, inspectUnit]) - Returns information about a talent.
GetTalentInfoBySpecialization(specGroupIndex, tier, column)
GetTalentLink(talentID [, isInspect, specGroup, inspectID, classID]) - Returns the talent link.
GetTalentTierInfo(tier)
IsPvpTalentSpell()
IsSpellClassOrSpec(spellName or spellIndex, bookType) - Returns whether a given spell is specific to a specialization and/or class.
IsTalentSpell(slot, bookType) - Returns whether or not the specified spell is learned from a talent.
LearnPvpTalent()
LearnPvpTalents()
LearnTalent(talentID)
NOCOMBAT LearnTalents(talentID1, talentID2, ...) - Learns the talents listed.
RemovePvpTalent()
NOCOMBAT RemoveTalent(talentID) - Removes the specified talent.
NOCOMBAT SetSpecialization(specIndex [, isPet]) - Selects a specialization.
NOCOMBAT UnlearnSpecialization(specIndex [, isPet])

Collections

The Collections window was added in Patch 5.0.4

Mount Journal

The Mount Journal was added in Patch 6.0.2

C_MountJournal.ClearFanfare(mountID)
C_MountJournal.ClearRecentFanfares()
C_MountJournal.Dismiss() - Dismisses the currently summoned mount.
C_MountJournal.GetCollectedFilterSetting(filterIndex) : isChecked - Indicates whether the specified mount journal filter is enabled.
C_MountJournal.GetDisplayedMountAllCreatureDisplayInfo(mountIndex) : allDisplayInfo - Returns all display IDs for a mount by index.
C_MountJournal.GetDisplayedMountInfo(displayIndex) : name, spellID, icon, isActive, isUsable, sourceType, isFavorite, ... - Returns information about the specified mount.
C_MountJournal.GetDisplayedMountInfoExtra(mountIndex) : creatureDisplayInfoID, description, source, isSelfMount, mountTypeID, ... - Returns extra information about the specified mount.
C_MountJournal.GetIsFavorite(mountIndex) : isFavorite, canSetFavorite - Indicates whether the specified mount is marked as a favorite.
C_MountJournal.GetMountAllCreatureDisplayInfoByID(mountID) : allDisplayInfo - Returns all display IDs for a mount by ID.
C_MountJournal.GetMountFromItem(itemID) : mountID - Returns the mount for an item ID.
C_MountJournal.GetMountFromSpell(spellID) : mountID - Returns the mount for a spell ID.
C_MountJournal.GetMountIDs() : mountIDs - Returns the IDs of mounts listed in the mount journal.
C_MountJournal.GetMountInfoByID(mountID) : name, spellID, icon, isActive, isUsable, sourceType, isFavorite, ... - Returns information about the specified mount.
C_MountJournal.GetMountInfoExtraByID(mountID) : creatureDisplayInfoID, description, source, isSelfMount, mountTypeID, ... - Returns extra information about the specified mount.
C_MountJournal.GetMountUsabilityByID(mountID, checkIndoors) : isUsable, useError - Returns if a mount is currently usable by the player.
C_MountJournal.GetNumDisplayedMounts() : numMounts - Returns the number of mounts shown in the mount journal.
C_MountJournal.GetNumMounts() : numMounts - Returns the number of mounts listed in the mount journal.
C_MountJournal.GetNumMountsNeedingFanfare() : numMountsNeedingFanfare
C_MountJournal.IsSourceChecked(filterIndex) : isChecked
C_MountJournal.IsTypeChecked(filterIndex) : isChecked
C_MountJournal.IsValidSourceFilter(filterIndex) : isValid
C_MountJournal.IsValidTypeFilter(filterIndex) : isValid
C_MountJournal.NeedsFanfare(mountID) : needsFanfare
C_MountJournal.Pickup(displayIndex) - Picks up the specified mount onto the cursor, usually in preparation for placing it on an action button.
C_MountJournal.SetAllSourceFilters(isChecked)
C_MountJournal.SetAllTypeFilters(isChecked)
C_MountJournal.SetCollectedFilterSetting(filterIndex, isChecked) - Enables or disables the specified mount journal filter.
C_MountJournal.SetIsFavorite(mountIndex, isFavorite) - Marks or unmarks the specified mount as a favorite.
C_MountJournal.SetSearch(searchValue)
C_MountJournal.SetSourceFilter(filterIndex, isChecked)
C_MountJournal.SetTypeFilter(filterIndex, isChecked)
C_MountJournal.SummonByID(mountID) - Summons the specified mount.

Mount equipment was added in Patch 8.2.0

PROTECTED C_MountJournal.ApplyMountEquipment(itemLocation) : canContinue
C_MountJournal.AreMountEquipmentEffectsSuppressed() : areEffectsSuppressed
C_MountJournal.GetAppliedMountEquipmentID() : itemID
C_MountJournal.GetMountEquipmentUnlockLevel() : level
C_MountJournal.IsItemMountEquipment(itemLocation) : isMountEquipment
C_MountJournal.IsMountEquipmentApplied() : isApplied
C_PlayerInfo.CanPlayerUseMountEquipment() : canUseMountEquipment, failureReason - Returns true if the player can use mount equipment.

The old companion API (non-combat pets and mounts) was added in Patch 3.0.2

CallCompanion(type, slotid) - Summons a companion.
DismissCompanion(type) - Dismisses an active companion.
GetCompanionInfo(type, slotid) - Returns info about a selected companion.
GetNumCompanions(type) - Get the number of companions of the specified type.
SummonRandomCritter() - Summons a random critter companion.

Pet Journal

The Pet Journal was added in Patch 5.0.4. See also Pet Battle functions.

C_PetInfo.GetPetTamersForMap(uiMapID) : petTamers - Returns the pet tamers on a map.
C_PetJournal.CagePetByID(petID) - Puts the pet into a cage.
C_PetJournal.ClearFanfare()
C_PetJournal.ClearRecentFanfares()
C_PetJournal.ClearSearchFilter() - Clears the search box in the pet journal.
C_PetJournal.FindPetIDByName()
C_PetJournal.GetBattlePetLink(petID) - Returns a battle pet hyperlink for the given petID.
C_PetJournal.GetDisplayIDByIndex(speciesID, index) : displayID
C_PetJournal.GetDisplayProbabilityByIndex(speciesID, index) : displayProbability
C_PetJournal.GetNumCollectedInfo()
C_PetJournal.GetNumDisplays(speciesID) : numDisplays
C_PetJournal.GetNumPets() - Returns information about the number of battle pets.
C_PetJournal.GetNumPetsNeedingFanfare()
C_PetJournal.GetNumPetSources() - Returns information about the number of pet sources.
C_PetJournal.GetNumPetTypes() - Returns information about the number of pet types.
C_PetJournal.GetOwnedBattlePetString(speciesID) - Returns string about numbers of battle pets in journal.
C_PetJournal.GetPetAbilityInfo(abilityID) : name, icon, petType
C_PetJournal.GetPetAbilityList(speciesID [, idTable, levelTable])
C_PetJournal.GetPetAbilityListTable(speciesID) : info
C_PetJournal.GetPetCooldownByGUID()
C_PetJournal.GetPetInfoByIndex(index) - Returns information about a battle pet.
C_PetJournal.GetPetInfoByItemID(itemID)
C_PetJournal.GetPetInfoByPetID(petID) - Returns information about a battle pet.
C_PetJournal.GetPetInfoBySpeciesID(speciesID) - Returns information about a pet species.
C_PetJournal.GetPetInfoTableByPetID(petID) : info
C_PetJournal.GetPetLoadOutInfo(slot) : petID, ability1ID, ability2ID, ability3ID, locked
C_PetJournal.GetPetModelSceneInfoBySpeciesID(speciesID)
C_PetJournal.GetPetSortParameter()
C_PetJournal.GetPetStats(petID) - Returns a pet's stats from the Pet Journal.
C_PetJournal.GetPetSummonInfo(battlePetGUID) : isSummonable, error, errorText
C_PetJournal.GetPetTeamAverageLevel()
C_PetJournal.GetSummonBattlePetCooldown()
C_PetJournal.GetSummonedPetGUID() - Returns information about a battle pet.
C_PetJournal.GetSummonRandomFavoritePetGUID()
C_PetJournal.IsFilterChecked()
C_PetJournal.IsFindBattleEnabled()
C_PetJournal.IsJournalReadOnly()
C_PetJournal.IsJournalUnlocked()
C_PetJournal.IsPetSourceChecked()
C_PetJournal.IsPetTypeChecked()
C_PetJournal.PetCanBeReleased(petID) - Returns true if you can release the pet.
C_PetJournal.PetIsCapturable(petID)
C_PetJournal.PetIsFavorite(petID) - Returns true if this pet is marked as a favorite.
C_PetJournal.PetIsHurt(petID)
C_PetJournal.PetIsLockedForConvert(petID)
C_PetJournal.PetIsRevoked(petID)
C_PetJournal.PetIsSlotted(petID)
C_PetJournal.PetIsSummonable(battlePetGUID) : isSummonable - Returns true if you can summon this pet.
C_PetJournal.PetIsTradable(petID) - Returns whether or not a pet from the Pet Journal is tradable.
C_PetJournal.PetIsUsable(petID)
C_PetJournal.PetNeedsFanfare()
C_PetJournal.PetUsesRandomDisplay(speciesID) : usesRandomDisplay
C_PetJournal.PickupPet(petID)
C_PetJournal.PickupSummonRandomPet()
C_PetJournal.ReleasePetByID(petID) - Releases the pet.
C_PetJournal.SetAbility(slotIndex, spellIndex, petSpellID)
C_PetJournal.SetAllPetSourcesChecked()
C_PetJournal.SetAllPetTypesChecked()
C_PetJournal.SetCustomName(petID, customName) - Sets a custom name for the pet.
C_PetJournal.SetFavorite(petID, value) - Sets (or clears) the pet as a favorite.
C_PetJournal.SetFilterChecked()
C_PetJournal.SetPetLoadOutInfo(slotIndex, petID)
C_PetJournal.SetPetSortParameter()
C_PetJournal.SetPetSourceChecked()
C_PetJournal.SetPetTypeFilter(index, value) - Sets the pet type in the filter menu.
C_PetJournal.SetSearchFilter(text) - Sets the search filter in the pet journal.
NOCOMBAT C_PetJournal.SummonPetByGUID(petID) - Summons (or dismisses) a pet.
NOCOMBAT C_PetJournal.SummonRandomPet(allPets) - Summons a random battle pet companion.

Toy Box

The Toy Box was added in Patch 6.0.2

C_ToyBox.ForceToyRefilter()
C_ToyBox.GetCollectedShown()
C_ToyBox.GetIsFavorite(itemID)
C_ToyBox.GetNumFilteredToys()
C_ToyBox.GetNumLearnedDisplayedToys()
C_ToyBox.GetNumTotalDisplayedToys()
C_ToyBox.GetNumToys()
C_ToyBox.GetToyFromIndex(itemIndex)
C_ToyBox.GetToyInfo(itemID) - Returns toy info.
C_ToyBox.GetToyLink(itemID) - Returns item link.
C_ToyBox.GetUncollectedShown()
C_ToyBox.GetUnusableShown()
C_ToyBox.HasFavorites()
C_ToyBox.IsExpansionTypeFilterChecked(expansionIndex)
C_ToyBox.IsSourceTypeFilterChecked(sourceIndex)
C_ToyBox.IsToyUsable(itemID)
C_ToyBox.PickupToyBoxItem(itemID)
C_ToyBox.SetAllExpansionTypeFilters([checked])
C_ToyBox.SetAllSourceTypeFilters(checked)
C_ToyBox.SetCollectedShown(checked)
C_ToyBox.SetExpansionTypeFilter(expansionIndex, checked)
C_ToyBox.SetFilterString(searchString)
C_ToyBox.SetIsFavorite(itemID, value)
C_ToyBox.SetSourceTypeFilter(sourceIndex, checked)
C_ToyBox.SetUncollectedShown(checked)
C_ToyBox.SetUnusableShown(checked)
C_ToyBoxInfo.ClearFanfare(itemID)
C_ToyBoxInfo.NeedsFanfare(itemID) : needsFanfare
PlayerHasToy(itemID)
UseToy(itemID)
UseToyByName(toyName)

Heirlooms

Heirlooms were added in Patch 3.0.3 and added to the Collections window in Patch 6.1.0

C_Heirloom.CanHeirloomUpgradeFromPending(itemID)
C_Heirloom.CreateHeirloom(itemID)
C_Heirloom.GetClassAndSpecFilters()
C_Heirloom.GetCollectedHeirloomFilter()
C_Heirloom.GetHeirloomInfo(itemID)
C_Heirloom.GetHeirloomItemIDFromDisplayedIndex(heirloomIndex)
C_Heirloom.GetHeirloomItemIDs()
C_Heirloom.GetHeirloomLink(itemID)
C_Heirloom.GetHeirloomMaxUpgradeLevel(itemID)
C_Heirloom.GetHeirloomSourceFilter(source)
C_Heirloom.GetNumDisplayedHeirlooms()
C_Heirloom.GetNumHeirlooms()
C_Heirloom.GetNumKnownHeirlooms()
C_Heirloom.GetUncollectedHeirloomFilter()
C_Heirloom.IsHeirloomSourceValid(source)
C_Heirloom.IsItemHeirloom(itemID)
C_Heirloom.IsPendingHeirloomUpgrade()
C_Heirloom.PlayerHasHeirloom(itemID)
C_Heirloom.SetClassAndSpecFilters(classID, specID)
C_Heirloom.SetCollectedHeirloomFilter(boolean)
C_Heirloom.SetHeirloomSourceFilter(source, filtered)
C_Heirloom.SetSearch(searchValue)
C_Heirloom.SetUncollectedHeirloomFilter(boolean)
C_Heirloom.ShouldShowHeirloomHelp()
C_Heirloom.UpgradeHeirloom(itemID)
DoesItemContainSpec(item, classID [, specializationID])

Appearances

The Appearances tab (also known as the Wardrobe) was added in Patch 7.0.3. See also Transmogrification functions.

C_TransmogCollection.AccountCanCollectSource(sourceID) : hasItemData, canCollect
C_TransmogCollection.CanAppearanceHaveIllusion(appearanceID) : canHaveIllusion
C_TransmogCollection.ClearNewAppearance(visualID)
C_TransmogCollection.ClearSearch(searchType) : completed
C_TransmogCollection.DeleteOutfit(outfitID)
C_TransmogCollection.EndSearch()
C_TransmogCollection.GetAllAppearanceSources(itemAppearanceID) : itemModifiedAppearanceIDs
C_TransmogCollection.GetAppearanceCameraID(itemAppearanceID [, variation]) : cameraID
C_TransmogCollection.GetAppearanceCameraIDBySource(itemModifiedAppearanceID [, variation]) : cameraID
C_TransmogCollection.GetAppearanceInfoBySource(itemModifiedAppearanceID) : info
C_TransmogCollection.GetAppearanceSourceDrops(itemModifiedAppearanceID) : encounterInfo
C_TransmogCollection.GetAppearanceSourceInfo(itemModifiedAppearanceID) : category, itemAppearanceID, canHaveIllusion, icon, isCollected, ...
C_TransmogCollection.GetAppearanceSources(appearanceID [, categoryType]) : sources
C_TransmogCollection.GetArtifactAppearanceStrings(appearanceID) : name, hyperlink
C_TransmogCollection.GetCategoryAppearances(category) : appearances
C_TransmogCollection.GetCategoryCollectedCount(category) : count
C_TransmogCollection.GetCategoryInfo(category) : name, isWeapon, canHaveIllusions, canMainHand, canOffHand
C_TransmogCollection.GetCategoryTotal(category) : total
C_TransmogCollection.GetCollectedShown() : shown
C_TransmogCollection.GetFallbackWeaponAppearance() : appearanceID
C_TransmogCollection.GetIllusionInfo(illusionID) : info
C_TransmogCollection.GetIllusions() : illusions
C_TransmogCollection.GetIllusionStrings(illusionID) : name, hyperlink, sourceText
C_TransmogCollection.GetInspectItemTransmogInfoList() : list
C_TransmogCollection.GetIsAppearanceFavorite(itemAppearanceID) : isFavorite
C_TransmogCollection.GetItemInfo(itemInfo) : itemAppearanceID, itemModifiedAppearanceID
C_TransmogCollection.GetItemTransmogInfoListFromOutfitHyperlink(hyperlink) : list
C_TransmogCollection.GetLatestAppearance() : visualID, category
C_TransmogCollection.GetNumMaxOutfits() : maxOutfits
C_TransmogCollection.GetNumTransmogSources() : count
C_TransmogCollection.GetOutfitHyperlinkFromItemTransmogInfoList(itemTransmogInfoList) : hyperlink
C_TransmogCollection.GetOutfitInfo(outfitID) : name, icon
C_TransmogCollection.GetOutfitItemTransmogInfoList(outfitID) : list
C_TransmogCollection.GetOutfits() : outfitID
C_TransmogCollection.GetPairedArtifactAppearance(itemModifiedAppearanceID) : pairedItemModifiedAppearanceID
C_TransmogCollection.GetSourceIcon(itemModifiedAppearanceID) : icon
C_TransmogCollection.GetSourceInfo(sourceID) : sourceInfo
C_TransmogCollection.GetSourceItemID(itemModifiedAppearanceID) : itemID
C_TransmogCollection.GetSourceRequiredHoliday(itemModifiedAppearanceID) : holidayName
C_TransmogCollection.GetUncollectedShown() : shown
C_TransmogCollection.HasFavorites() : hasFavorites
C_TransmogCollection.IsAppearanceHiddenVisual(appearanceID) : isHiddenVisual
C_TransmogCollection.IsCategoryValidForItem(category, itemInfo) : isValid
C_TransmogCollection.IsNewAppearance(visualID) : isNew
C_TransmogCollection.IsSearchDBLoading() : isLoading
C_TransmogCollection.IsSearchInProgress(searchType) : inProgress
C_TransmogCollection.IsSourceTypeFilterChecked(index) : checked
C_TransmogCollection.ModifyOutfit(outfitID, itemTransmogInfoList)
C_TransmogCollection.NewOutfit(name, icon, itemTransmogInfoList) : outfitID
C_TransmogCollection.PlayerCanCollectSource(sourceID) : hasItemData, canCollect
C_TransmogCollection.PlayerHasTransmog(itemID [, itemAppearanceModID]) : hasTransmog
C_TransmogCollection.PlayerHasTransmogByItemInfo(itemInfo) : hasTransmog
C_TransmogCollection.PlayerHasTransmogItemModifiedAppearance(itemModifiedAppearanceID) : hasTransmog
C_TransmogCollection.PlayerKnowsSource(sourceID) : isKnown
C_TransmogCollection.RenameOutfit(outfitID, name)
C_TransmogCollection.SearchProgress(searchType) : progress
C_TransmogCollection.SearchSize(searchType) : size
C_TransmogCollection.SetAllSourceTypeFilters(checked)
C_TransmogCollection.SetCollectedShown(shown)
C_TransmogCollection.SetIsAppearanceFavorite(itemAppearanceID, isFavorite)
C_TransmogCollection.SetSearch(searchType, searchText) : completed
C_TransmogCollection.SetSearchAndFilterCategory(category)
C_TransmogCollection.SetSourceTypeFilter(index, checked)
C_TransmogCollection.SetUncollectedShown(shown)
C_TransmogCollection.UpdateUsableAppearances()
DEPRECATED C_TransmogCollection.CanSetFavoriteInCategory(categoryID)
DEPRECATED C_TransmogCollection.GetIllusionFallbackWeaponSource()
DEPRECATED C_TransmogCollection.GetIllusionSourceInfo(sourceID) : visualID, name, hyperlink, icon
DEPRECATED C_TransmogCollection.GetShowMissingSourceInItemTooltips()
DEPRECATED C_TransmogCollection.SetShowMissingSourceInItemTooltips(bool)
C_TransmogSets.ClearLatestSource()
C_TransmogSets.ClearNewSource(sourceID)
C_TransmogSets.ClearSetNewSourcesForSlot(transmogSetID, slot)
C_TransmogSets.GetAllSets() : sets
C_TransmogSets.GetAllSourceIDs(transmogSetID) : sources
C_TransmogSets.GetBaseSetID(transmogSetID) : baseTransmogSetID
C_TransmogSets.GetBaseSets() : sets
C_TransmogSets.GetBaseSetsCounts() : numCollected, numTotal
C_TransmogSets.GetBaseSetsFilter(index) : isChecked
C_TransmogSets.GetCameraIDs() : detailsCameraID, vendorCameraID
C_TransmogSets.GetIsFavorite(transmogSetID) : isFavorite, isGroupFavorite
C_TransmogSets.GetLatestSource() : sourceID
C_TransmogSets.GetSetInfo(transmogSetID) : set
C_TransmogSets.GetSetNewSources(transmogSetID) : sourceIDs
C_TransmogSets.GetSetPrimaryAppearances(transmogSetID) : apppearances
C_TransmogSets.GetSetsContainingSourceID(sourceID) : setIDs
C_TransmogSets.GetSourceIDsForSlot(transmogSetID, slot) : sources
C_TransmogSets.GetSourcesForSlot(transmogSetID, slot) : sources
C_TransmogSets.GetUsableSets() : sets
C_TransmogSets.GetVariantSets(transmogSetID) : sets
C_TransmogSets.HasUsableSets() : hasUsableSets
C_TransmogSets.IsBaseSetCollected(transmogSetID) : isCollected
C_TransmogSets.IsNewSource(sourceID) : isNew
C_TransmogSets.IsSetVisible(transmogSetID) : isVisible
C_TransmogSets.SetBaseSetsFilter(index, isChecked)
C_TransmogSets.SetHasNewSources(transmogSetID) : hasNewSources
C_TransmogSets.SetHasNewSourcesForSlot(transmogSetID, slot) : hasNewSources
C_TransmogSets.SetIsFavorite(transmogSetID, isFavorite)
DEPRECATED C_TransmogSets.GetSetSources(setID)
IsUnitModelReadyForUI(unitToken) : isReady

Combat Log

Relates to the Combat Log.

CombatLogAddFilter([eList, sourceFlags, destFlags])
CombatLogAdvanceEntry(count [, ignoreFilter])
CombatLogClearEntries()
CombatLogGetCurrentEntry()
CombatLogGetCurrentEventInfo() - Returns the current COMBAT_LOG_EVENT values.
CombatLogGetNumEntries()
CombatLogGetRetentionTime()
CombatLogResetFilter()
CombatLogSetCurrentEntry(index [, ignoreFilter])
CombatLogSetRetentionTime(seconds)
CombatLog_Object_IsA()
CombatTextSetActiveUnit(unit) - Changes the entity for which COMBAT_TEXT_UPDATE events fire.
GetCurrentCombatTextEventInfo()

Combat Pets

Relates to Combat Pets.

CancelPetPossess()
PROTECTED CastPetAction(index) - Cast the corresponding pet skill.
DisableSpellAutocast() - Disables autocasting for a pet spell.
EnableSpellAutocast() - Enables autocasting for a pet spell.
GetCallPetSpellInfo(spellID)
GetPetActionCooldown(index) - Returns cooldown information for the pet action at the specificed pet action bar slot.
GetPetActionInfo(index) - Returns information on the pet action at the specified pet action bar slot.
GetPetActionSlotUsable(slot)
GetPetActionsUsable() - Returns a value indicating if the player's pet's actions can be used at this time.
GetPetExperience() - Returns the pet's current xp, and total xp required for next level.
GetPetFoodTypes() - Returns a list of the food types the player's pet can eat.
GetPetIcon() - Returns the path to the texture to use as the icon for the player's pet.
GetPetTimeRemaining() - Returns in milliseconds about some timeout for the player's pet.
HasPetSpells() - Returns true if the player has pet spells.
HasPetUI() - Returns 1 if the player has a pet User Interface.
IsPetActive()
IsPetAttackActive() - Returns true if the pet is currently attacking.
PetAbandon() - Permanently abandons your pet.
PROTECTED PetAggressiveMode()
PROTECTED PetAssistMode() - Set your pet to Assist mode.
PROTECTED PetAttack() - Instruct your pet to attack your target.
PetCanBeAbandoned() - Returns true if the pet is abandonable.
PROTECTED PetMoveTo(target)
PetCanBeDismissed()
PetCanBeRenamed() - Returns true if the pet can be renamed.
PROTECTED PetDefensiveMode() - Set your pet in defensive mode.
PetDefensiveAssistMode()
PetDismiss() - Dismiss your pet.
PROTECTED PetFollow() - Instruct your pet to follow you.
PetHasSpellbook()
PROTECTED PetPassiveMode() - Set your pet into passive mode.
PetRename(name) - Renames the pet.
PetStopAttack() - Stop the attack of the pet.
PetUsesPetFrame()
PROTECTED PetWait() - Instruct your pet to remain still.
PROTECTED TogglePetAutocast(index) - Toggles whether the specified pet ability should autocast or not.
PROTECTED ToggleSpellAutocast(spellName | spellId, bookType) - Toggles whether the specified Pet spell should autocast or not.

Relates to the Stable Master.

ClosePetStables() - Close the pet stables user interface.
GetStablePetFoodTypes(index) - Returns a list of the food types a specific stabled pet can eat.
GetStablePetInfo(index) - Returns information about a specific stabled pet.
IsAtStableMaster()
SetPetSlot(index, slot)
SetPetStablePaperdoll(modelObject)

Controls

Action Bars

C_ActionBar.GetBonusBarIndexForSlot(slotID) : bonusBarIndex
C_ActionBar.IsHarmfulAction(actionID, useNeutral) : isHarmful
C_ActionBar.IsHelpfulAction(actionID, useNeutral) : isHelpful
C_ActionBar.IsOnBarOrSpecialBar(spellID) : isOnBarOrSpecialBar
C_ActionBar.PutActionInSlot(slotID)
C_ActionBar.ShouldOverrideBarShowHealthBar() : showHealthBar
C_ActionBar.ShouldOverrideBarShowManaBar() : showManaBar
NOCOMBAT ChangeActionBarPage(page) - Changes the current action bar page.
GetActionBarPage() - Returns the current action bar page. CURRENT_ACTIONBAR_PAGE is obsolete.
GetActionBarToggles() - Returns the toggles for each action bar.
GetBonusBarIndex()
GetBonusBarOffset() - Determine which page of bonus actions to show.
GetExtraBarIndex()
GetMultiCastBarIndex()
GetOverrideBarIndex()
GetOverrideBarSkin()
GetTempShapeshiftBarIndex()
GetVehicleBarIndex()
HasBonusActionBar()
HasExtraActionBar()
HasOverrideActionBar()
HasTempShapeshiftActionBar()
HasVehicleActionBar()
IsPossessBarVisible()
PetHasActionBar() - Determine if player has a pet with an action bar.
SetActionBarToggles(show1, show2, show3, show4 [, alwaysShow]) - Set show toggle for each action bar.

Action Buttons

C_ActionBar.FindPetActionButtons(petActionID) : slots
C_ActionBar.FindSpellActionButtons(spellID) : slots
C_ActionBar.GetPetActionPetBarIndices(petActionID) : slots
C_ActionBar.HasPetActionButtons(petActionID) : hasPetActionButtons
C_ActionBar.HasPetActionPetBarIndices(petActionID) : hasPetActionPetBarIndices
C_ActionBar.HasSpellActionButtons(spellID) : hasSpellActionButtons
C_ActionBar.IsAutoCastPetAction(slotID) : isAutoCastPetAction
C_ActionBar.IsEnabledAutoCastPetAction(slotID) : isEnabledAutoCastPetAction
C_ActionBar.ToggleAutoCastPetAction(slotID)
ActionHasRange(slot) - Determine if the specified action is a range restriction (1 if yes, nil if no)
ClickWorldMapActionButton()
GetActionAutocast(slot)
GetActionCharges(slot) - Returns information about the charges of a charge-accumulating player ability.
GetActionCooldown(slot) - This returns the cooldown values of the specified action.
GetActionCount(slot) - Get the count (bandage/potion/etc) for an action, returns 0 if none or not applicable.
GetActionInfo(slot) - Returns type, id, subtype.
GetActionTexture(slot) - Gets the texture path for the specified action.
GetActionText(slot) - Get the text label (macros, etc) for an action, returns nil if none.
GetPossessInfo(index) - Returns texture, name, enabled.
GetWorldMapActionButtonSpellInfo()
HasAction(slot) - Returns 1 if the player has an action in the specified slot, nil otherwise.
IsActionInRange(slot) - Test if an action is in range (1=yes, 0=no, nil=not applicable).
IsAttackAction(slot) - Returns 1 if an action is an 'attack' action (flashes during combat), nil otherwise.
IsAutoRepeatAction(slot) - Returns 1 if an action is auto-repeating, nil otherwise.
IsConsumableAction(slot) - Returns 1 if an action is consumable (i.e. has a count), nil otherwise.
IsCurrentAction(slot) - Returns 1 if an action is the one currently underway, nil otherwise.
IsEquippedAction(slot) - Returns 1 if an action is equipped (i.e. connected to an item that must be equipped), nil otherwise.
IsItemAction(slot)
IsPetAttackAction(index)
IsStackableAction(slot)
IsUsableAction(slot) - Returns 1 if an action can be used at present, nil otherwise.
SetActionUIButton(checkboxFrame, actionSlot, cooldownFrame)
SetSpellbookPetAction(slot, target)
PROTECTED UseAction(slot [, checkCursor, onSelf]) - This instructs the interface to use the action associated with the specified ID, optionally on the player (regardless of target).
UseWorldMapActionButtonSpellOnQuest()

Flyout Buttons

C_ActionBar.FindFlyoutActionButtons(flyoutID) : slots
C_ActionBar.HasFlyoutActionButtons(flyoutID) : hasFlyoutActionButtons
FindFlyoutSlotBySpellID(spellID)
FlyoutHasSpell(flyoutID, spellID)
GetFlyoutID(index)
GetFlyoutInfo(flyoutID)
GetFlyoutSlotInfo(flyoutID, slot)
GetNumFlyouts()

Key Bindings

Relates to Key Bindings.

C_KeyBindings.GetCustomBindingType(bindingIndex) : customBindingType - Returns the type of a custom binding.
GetBinding(index) - Get action and key bindings for that index.
GetBindingAction(key [, checkOverride]) - Get the action bound to that key.
GetBindingByKey(action [, mode])
GetBindingKey(command) - Get the key(s) bound to that action.
GetBindingText([key, prefix, abbreviate]) - Gets the string value for the key.
GetCurrentBindingSet() - Queries if current set of key bindings is character or account specific.
GetNumBindings() - Get total number key bindings and headers.
LoadBindings(which) - Loads default, account or character specific key binding set into memory from disk.
RunBinding(command [, up]) - Executes the key binding named "command".
SaveBindings(which) - Saves account or character specific key bindings from memory to disk.
NOCOMBAT SetBinding(key [, command, mode]) - Sets or unsets key bindings. (Can not be used in combat.)
NOCOMBAT SetBindingSpell(key, spellName) - Set a key binding directly to a spell, uses the same spell name syntax as /cast.
NOCOMBAT SetBindingClick(key, ButtonName [, mouseButton]) - Set a key binding directly to a Button object. The click sends a mouse down when the key is pressed, and a mouse up when it is released.
NOCOMBAT SetBindingItem(key, itemname)
NOCOMBAT SetBindingMacro(key, macroname or macroId)
NOCOMBAT SetOverrideBinding(owner, isPriority, key [, command]) - Set (or clear) an override key binding.
NOCOMBAT SetOverrideBindingSpell(owner, isPriority, key, spellname)
NOCOMBAT SetOverrideBindingClick(owner, isPriority, key, buttonName [, mouseClick]) - Sets an override binding that acts like a mouse click on a button.
NOCOMBAT SetOverrideBindingItem(owner, isPriority, key, itemname)
NOCOMBAT SetOverrideBindingMacro(owner, isPriority, key, macroname or macroId)
NOCOMBAT ClearOverrideBindings(owner) - Reset all overrides belonging to an owner.
SetMouselookOverrideBinding(key [, command])

Key Modifiers

GetModifiedClick(action)
GetModifiedClickAction(index)
GetMouseButtonClicked() - Returns the name of the button that triggered a mouse down/up/click/doubleclick event.
GetNumModifiedClickActions()
IsAltKeyDown() - Returns true if the alt key is currently depressed.
IsControlKeyDown() - Returns true if the control key is currently depressed.
IsKeyDown(keyOrMouseName [, excludeCurrentBindingState])
IsLeftAltKeyDown() - Returns true if the left alt key is currently depressed.
IsLeftControlKeyDown() - Returns true if the left control key is currently depressed.
IsLeftMetaKeyDown()
IsLeftShiftKeyDown() - Returns true if the left shift key is currently depressed.
IsMetaKeyDown()
IsModifiedClick(action) - Returns 1 if the keys for the specified action are down, nil otherwise.
IsModifierKeyDown() - Equivalent to (IsShiftKeyDown() or IsControlKeyDown() or IsAltKeyDown()).
IsMouseButtonDown([button])
IsRightAltKeyDown() - Returns true if the right alt key is currently depressed.
IsRightControlKeyDown() - Returns true if the right control key is currently depressed.
IsRightMetaKeyDown()
IsRightShiftKeyDown() - Returns true if the right shift key is currently depressed.
IsShiftKeyDown() - Returns true if the shift key is currently depressed.
SetModifiedClick(action, binding)

Cursor

Relates to the Cursor.

C_CurrencyInfo.PickupCurrency(type)
AutoEquipCursorItem() - Causes the equipment on the cursor to be equipped.
ClearCursor() - Clears whatever item the cursor is dragging from the cursor.
ClickSocketButton(id) - If the cursor is currently holding a gem, tentatively insert it into the socket.
CursorCanGoInSlot(invSlot) - Returns true if the item currently held by the cursor can go into the given inventory (equipment) slot.
CursorHasItem() - Returns true if the cursor currently holds an item.
CursorHasMacro() - Returns 1 if the cursor is currently dragging a macro.
CursorHasMoney() - Returns true if the cursor currently holds money.
CursorHasSpell() - Returns true if the cursor currently holds a spell.
HW, SCRIPT DeleteCursorItem() - Destroys the item on the cursor.
DropCursorMoney() - Drops the amount of money held by the cursor.
DropItemOnUnit(unit) - Drops an item from the cursor onto a unit.
EquipCursorItem(invSlot) - Equips the currently picked up item to a specific inventory slot.
GetCursorDelta()
GetCursorInfo() - Returns information about what the cursor is holding.
GetCursorMoney() - Returns the amount of money held by the cursor.
GetCursorPosition() - Returns the cursor's position on the screen.
HideRepairCursor() - Hides the repair cursor.
InRepairMode() - Returns true if your cursor is in repair mode.
PickupAction(slot) - Drags an action out of the specified quickbar slot and holds it on the cursor.
PickupBagFromSlot(slot) - Picks up the bag from the specified slot, placing it in the cursor.
PickupCompanion(type, index) - Picks up the indexed companion onto the mouse cursor.
PickupContainerItem(bagID, slot)
PickupGuildBankItem(tab, slot) - Picks up an item from the guild bank.
PickupGuildBankMoney(money) - Picks up "money" copper from the guild bank.
PickupInventoryItem(invSlot) - Picks up an item from the player's worn inventory.
PickupItem(item)
PickupMacro(macroName or index) - Places the specified macro onto the cursor.
PickupMerchantItem(index) - Places the item onto the cursor. If the cursor already has an item, the item in the cursor will be sold.
PickupPetAction(slot) - Drags an action from the specified pet action bar slot into the cursor.
PickupPetSpell(spellID)
PickupPlayerMoney(copper) - Picks up an amount of money from the player.
PickupPvpTalent()
PickupSpell(spellID) - Places the specified spell onto the cursor.
PickupSpellBookItem(spellSlot)
PickupStablePet(index)
PickupTalent(talentID) - Grabs the selected talent spell for placement on an action bar.
PickupTradeMoney(copper) - Picks up an amount of money from the player's trade offer.
PlaceAction(slot) - Drops an action from the cursor into the specified quickbar slot.
ResetCursor()
SellCursorItem()
SetCursor(cursor) - Path to a texture to use as the cursor image (must be 32x32 pixels) or one of the built-in cursor tokens or nil.
ShowBuybackSellCursor(index)
ShowContainerSellCursor(index, slot)
ShowInventorySellCursor()
ShowRepairCursor()

Camera

PROTECTED CameraOrSelectOrMoveStart() - Begin "Left click" in the 3D world.
PROTECTED CameraOrSelectOrMoveStop([stickyFlag]) - End "Left click" in the 3D world.
CameraZoomIn(increment) - Zooms the camera into the viewplane by increment.
CameraZoomOut(increment) - Zooms the camera out of the viewplane by increment.
CenterCamera()
FlipCameraYaw(degrees) - Rotates the camera about the Z-axis by the angle amount specified in degrees.
GetCameraZoom() - Returns the current zoom level, ignoring camera collisions.
IsMouselooking() - Returns 1 if mouselook is currently active, nil otherwise.
MouselookStart() - Enters mouse look mode; mouse movement is used to adjust movement/facing direction.
MouselookStop() - Exits mouse look mode; mouse movement is used to move the mouse cursor.
MoveViewDownStart() - Begins rotating the camera downward.
MoveViewDownStop() - Stops rotating the camera after MoveViewDownStart() is called.
MoveViewInStart() - Begins zooming the camera in.
MoveViewInStop() - Stops zooming the camera in after MoveViewInStart() is called.
MoveViewLeftStart() - Begins rotating the camera to the Left.
MoveViewLeftStop() - Stops rotating the camera after MoveViewLeftStart() is called.
MoveViewOutStart() - Begins zooming the camera out.
MoveViewOutStop() - Stops zooming the camera out after MoveViewOutStart() is called.
MoveViewRightStart() - Begins rotating the camera to the Right.
MoveViewRightStop() - Stops rotating the camera after MoveViewRightStart() is called.
MoveViewUpStart() - Begins rotating the camera upward.
MoveViewUpStop() - Stops rotating the camera after MoveViewUpStart() is called.
PROTECTED PitchDownStart() - Begins pitching the camera Downward.
PROTECTED PitchDownStop() - Stops pitching the camera after PitchDownStart() is called.
PROTECTED PitchUpStart() - Begins pitching the camera Upward.
PROTECTED PitchUpStop() - Stops pitching the camera after PitchUpStart() is called.
NextView() - Cycles forward through the five predefined camera positions.
PrevView() - Cycles backward through the five predefined camera positions.
ResetView(index) - Resets the specified (1-5) predefined camera position to it's default if it was changed using SaveView(index).
SaveView(index) - Replaces the specified (1-5) predefined camera positions with the current camera position.
SetView(index) - Sets camera position to a specified (1-5) predefined camera position.

Targeting

Relates to Targets.

PROTECTED AssistUnit(unit) - Instructs your character to assist the specified unit.
PROTECTED ClearFocus() - Removes any focus you may have set.
PROTECTED ClearTarget() - Clears the selected target.
PROTECTED FocusUnit(unit) - Sets your unit for focus.
IsReplacingUnit()
PROTECTED TargetDirectionEnemy(facing)
PROTECTED TargetDirectionFinished()
PROTECTED TargetDirectionFriend(facing)
PROTECTED TargetLastEnemy() - Selects the last targetted enemy as the current target.
PROTECTED TargetLastFriend()
PROTECTED TargetLastTarget() - Selects the last target as the current target.
PROTECTED TargetNearestEnemy([reverseFlag]) - Selects the nearest enemy as the current target.
PROTECTED TargetNearestEnemyPlayer([reverseFlag]) - Selects the nearest enemy player as the current target.
PROTECTED TargetNearestFriend([reverseFlag]) - Selects the nearest friendly unit as the current target.
PROTECTED TargetNearestFriendPlayer([reverseFlag]) - Selects the nearest friendly player as the current target.
PROTECTED TargetNearest()
PROTECTED TargetNearestPartyMember() - Selects the nearest Party member as the current target.
PROTECTED TargetNearestRaidMember() - Selects the nearest Raid member as the current target.
PROTECTED TargetPriorityHighlightEnd()
PROTECTED TargetPriorityHighlightStart()
PROTECTED TargetUnit(unit [, exactMatch]) - Selects the specified unit as the current target.

Movement

Most of these functions may only be called on a hardware event from secure code.

PROTECTED AscendStop() - Called when you release the jump key.
PROTECTED AttackTarget() - Attacks the targetted unit.
PROTECTED DescendStop() - The player stops descending (while swimming or flying)
PROTECTED InteractUnit(unitToken [, exactMatch])
FollowUnit(unit) - Follow an ally with the specified UnitID.
IsPlayerMoving()
PROTECTED JumpOrAscendStart() - Makes the player jump.
PROTECTED MoveAndSteerStart()
PROTECTED MoveAndSteerStop()
PROTECTED MoveBackwardStart() - The player begins moving backward at the specified time.
PROTECTED MoveBackwardStop() - The player stops moving backward at the specified time.
PROTECTED MoveForwardStart() - The player begins moving forward at the specified time.
PROTECTED MoveForwardStop() - The player stops moving forward at the specified time.
PROTECTED SetMoveEnabled()
PROTECTED SetTurnEnabled()
PROTECTED SitStandOrDescendStart() - The player sits, stands, or descends.
PROTECTED StartAttack()
StopAttack() - Turns off auto-attack, if currently active.
PROTECTED StartAutoRun()
PROTECTED StopAutoRun()
PROTECTED StrafeLeftStart() - The player begins strafing left at the specified time.
PROTECTED StrafeLeftStop() - The player stops strafing left at the specified time.
PROTECTED StrafeRightStart() - The player begins strafing right at the specified time.
PROTECTED StrafeRightStop() - The player stops strafing right at the specified time.
PROTECTED ToggleAutoRun() - Turns auto-run on or off.
PROTECTED ToggleRun() - Toggle between running and walking.
PROTECTED TurnLeftStart() - The player starts turning left at the specified time.
PROTECTED TurnLeftStop() - The player stops turning left at the specified time.
PROTECTED TurnOrActionStart() - Begin "Right Click" in the 3D world.
PROTECTED TurnOrActionStop() - End "Right Click" in the 3D world.
PROTECTED TurnRightStart() - The player starts turning right at the specified time.
PROTECTED TurnRightStop() - The player stops turning right at the specified time.

Gamepad

Native gamepad support was added in Patch 9.0.1, where previously WoWmapper was needed.

C_GamePad.ApplyConfigs()
C_GamePad.AxisIndexToConfigName(axisIndex) : configName
C_GamePad.ButtonBindingToIndex(bindingName) : buttonIndex
C_GamePad.ButtonIndexToBinding(buttonIndex) : bindingName
C_GamePad.ButtonIndexToConfigName(buttonIndex) : configName
C_GamePad.DeleteConfig(configID)
C_GamePad.GetActiveDeviceID() : deviceID
C_GamePad.GetAllConfigIDs() : configIDs
C_GamePad.GetAllDeviceIDs() : deviceIDs
C_GamePad.GetCombinedDeviceID() : deviceID
C_GamePad.GetConfig(configID) : config
C_GamePad.GetDeviceMappedState([deviceID]) : state
C_GamePad.GetDeviceRawState(deviceID) : rawState
C_GamePad.IsEnabled() : enabled
C_GamePad.SetConfig(config)
C_GamePad.SetVibration(vibrationType, intensity)
C_GamePad.StickIndexToConfigName(stickIndex) : configName
C_GamePad.StopVibration()
CanAutoSetGamePadCursorControl()
CanGamePadControlCursor()
IsBindingForGamePad(KEY)
IsGamePadCursorControlEnabled()
IsGamePadFreelookEnabled()
SetGamePadCursorControl()
SetGamePadFreeLook()

Currency

Currencies were added in Patch 3.0.2.

C_CurrencyInfo.DoesWarModeBonusApply(currencyID) : warModeApplies, limitOncePerTooltip
C_CurrencyInfo.ExpandCurrencyList(index, expand) - Sets the expanded/collapsed state of a currency list header.
C_CurrencyInfo.GetAzeriteCurrencyID() : azeriteCurrencyID
C_CurrencyInfo.GetBackpackCurrencyInfo(index) : info - Returns information about a watched currency.
C_CurrencyInfo.GetBasicCurrencyInfo(currencyType [, quantity]) : info
C_CurrencyInfo.GetCurrencyContainerInfo(currencyType, quantity) : info
C_CurrencyInfo.GetCurrencyIDFromLink(currencyLink) : currencyID
C_CurrencyInfo.GetCurrencyInfo(type) : info - Returns information about currencies.
C_CurrencyInfo.GetCurrencyInfoFromLink(link) : info - Returns information about currencies from a link.
C_CurrencyInfo.GetCurrencyLink(type [, amount]) : link - Returns the currencyLink for the specified currencyID.
C_CurrencyInfo.GetCurrencyListInfo(index) : info - Returns information about an element in the currency list.
C_CurrencyInfo.GetCurrencyListLink(index) : link
C_CurrencyInfo.GetCurrencyListSize() : currencyListSize - Returns the number of elements (both headers and currencies) in the currency list.
C_CurrencyInfo.GetFactionGrantedByCurrency(currencyID) : factionID - Gets the faction ID for currency that is immediately converted into reputation with that faction instead.
C_CurrencyInfo.GetWarResourcesCurrencyID() : warResourceCurrencyID
C_CurrencyInfo.IsCurrencyContainer(currencyID, quantity) : isCurrencyContainer
C_CurrencyInfo.SetCurrencyBackpack(index, backpack) - Alters whether a currency is tracked.
C_CurrencyInfo.SetCurrencyUnused(index, unused) - Alters whether a currency is marked as unused.
GetCoinText(amount, separator) - Breaks down money and inserts separator strings.
GetCoinTextureString(amount [, fontHeight]) - Breaks down money and inserts texture strings.
GetPlayerTradeCurrency()
GetTargetTradeCurrency()
SetTradeCurrency(type, amount)
UI GetNumWatchedTokens() - Returns the number of currently watched currencies.

Customer Support

Relates to Customer Support.

AcknowledgeSurvey(caseIndex)
PROTECTED DeleteGMTicket()
GetWebTicket()
GMEuropaBugsEnabled()
GMEuropaComplaintsEnabled()
GMEuropaSuggestionsEnabled()
GMEuropaTicketsEnabled()
GMItemRestorationButtonEnabled()
GMQuickTicketSystemEnabled()
GMQuickTicketSystemThrottled()
GMReportLag()
GMRequestPlayerInfo()
GMResponseResolve()
C_UserFeedback.SubmitBug(bugInfo [, suppressNotification]) : success
C_UserFeedback.SubmitSuggestion(suggestion) : success
GMSurveyAnswerSubmit(question, rank, comment)
GMSurveyAnswer()
GMSurveyCommentSubmit(comment)
GMSurveyNumAnswers()
GMSurveyQuestion()
GMSurveySubmit()
GetGMStatus()
GetGMTicket()
RegisterStaticConstants(table) - Populates the STATIC_CONSTANTS table for GetGMTicketCategories.
ReportBug(description)
ReportSuggestion(description)

Knowledge Base

KBArticle_BeginLoading(articleId, searchType) - Starts the article loading process.
KBArticle_GetData() - Returns information about the current article.
KBArticle_IsLoaded() - Returns true if an article is loaded.
KBQuery_BeginLoading(searchText, categoryIndex, subcategoryIndex, articlesPerPage, curPage) - Starts a query for articles.
KBQuery_GetArticleHeaderCount() - Returns the number of article headers in the current query.
KBQuery_GetArticleHeaderData(index) - Returns information about an article header of the current query.
KBQuery_GetTotalArticleCount() - Returns the total number of articles that matches the current query.
KBQuery_IsLoaded() - Returns true if a query loaded successfuly.
KBSetup_BeginLoading(articlesPerPage, curPage) - Starts the loading process for the KB start page.
KBSetup_GetArticleHeaderCount() - Returns the number of articles for the current page.
KBSetup_GetArticleHeaderData(index) - Returns information for an article header.
KBSetup_GetCategoryCount() - Returns the number of categories in the knowledge base.
KBSetup_GetCategoryData(index) - Returns information about a category.
KBSetup_GetLanguageCount() - Returns the number of languages in the knowledge base.
KBSetup_GetLanguageData(index) - Returns information about a language.
KBSetup_GetSubCategoryCount(category) - Returns the number of subcategories for a category.
KBSetup_GetSubCategoryData(category, index) - Returns information about a subcategory.
KBSetup_GetTotalArticleCount() - Returns the total number of articles in the knowlege base.
KBSetup_IsLoaded() - Returns true if the knowledge base is loaded successfuly.
KBSystem_GetMOTD() - Returns the server message of the day.
KBSystem_GetServerNotice() - Returns the server notice.
KBSystem_GetServerStatus() - Returns the server status text.

Expansions

Relates to Expansions.

CanUpgradeExpansion() : canUpgradeExpansion
DoesCurrentLocaleSellExpansionLevels() : regionSellsExpansions
GetAccountExpansionLevel() : expansionLevel - Returns the expansion level the account has been flagged for.
GetClientDisplayExpansionLevel() : expansionLevel - Returns the expansion level of the game client.
GetExpansionDisplayInfo(expansionLevel) : info
GetExpansionForLevel(playerLevel) : expansionLevel
GetExpansionLevel() : expansionLevel - Returns the expansion level currently accessible by the player.
GetExpansionTrialInfo() : isExpansionTrialAccount, expansionTrialRemainingSeconds
GetMaximumExpansionLevel() : expansionLevel
GetMaxLevelForExpansionLevel(expansionLevel) : maxLevel
GetMaxLevelForLatestExpansion() : maxLevel
GetMaxLevelForPlayerExpansion() : maxLevel
GetMaxPlayerLevel()
GetMinimumExpansionLevel() : expansionLevel
GetNumExpansions() : numExpansions
GetServerExpansionLevel() : serverExpansionLevel - Returns the expansion level currently active on the server.
IsExpansionTrial() : isExpansionTrialAccount
C_LevelSquish.ConvertFollowerLevel(level, maxFollowerLevel) : squishedLevel
C_LevelSquish.ConvertPlayerLevel(level) : squishedLevel

Chromie Time

Timewalking Campaigns scale older expansion zones up to level 50.

C_ChromieTime.CloseUI()
C_ChromieTime.GetChromieTimeExpansionOption(expansionRecID) : info
C_ChromieTime.GetChromieTimeExpansionOptions() : expansionOptions
C_ChromieTime.SelectChromieTimeOption(chromieTimeExpansionInfoId)
C_PlayerInfo.CanPlayerEnterChromieTime() : canEnter
C_PlayerInfo.IsPlayerInChromieTime() : inChromieTime
UnitChromieTimeID(unit) : ID

Friends

Relates to the Friends list.

NOSCRIPT C_FriendList.AddFriend(name [, notes]) - Adds a friend to your friend list.
C_FriendList.AddIgnore(name) : added - Adds a player to your ignore list.
C_FriendList.AddOrDelIgnore(name) - Adds or removes a player to/from the ignore list.
C_FriendList.AddOrRemoveFriend(name, notes) - Adds or removes a player to or from the friends list.
C_FriendList.DelIgnore(name) : removed - Removes a player from your ignore list.
C_FriendList.DelIgnoreByIndex(index) - Removes a player from your ignore list.
C_FriendList.GetFriendInfo(name) : info - Retrieves information about a person on your friends list.
C_FriendList.GetFriendInfoByIndex(index) : info - Retrieves information about a person on your friends list.
C_FriendList.GetIgnoreName(index) : name - Returns the name of a currently ignored player.
C_FriendList.GetNumFriends() : numFriends - Returns how many friends you have.
C_FriendList.GetNumIgnores() : numIgnores - Returns the number of entries on your ignore list.
C_FriendList.GetNumOnlineFriends() : numOnline - Returns the number of online friends.
C_FriendList.GetSelectedFriend() : index - Returns the index of the currently selected friend.
C_FriendList.GetSelectedIgnore() : index - Returns the currently selected index in the ignore listing.
C_FriendList.IsFriend(guid) : isFriend - Returns whether a character is your friend.
C_FriendList.IsIgnored(token) : isIgnored - Returns whether a character is being ignored by you.
C_FriendList.IsIgnoredByGuid(guid) : isIgnored - Returns whether a character is being ignored by you.
C_FriendList.RemoveFriend(name) : removed - Removes a friend from the friends list.
C_FriendList.RemoveFriendByIndex(index) - Removes a friend from the friends list.
C_FriendList.SetFriendNotes(name, notes) : found - Sets the note text for a friend.
C_FriendList.SetFriendNotesByIndex(index, notes) - Sets the note text for a friend.
C_FriendList.SetSelectedFriend(index) - Updates the current selected friend.
C_FriendList.SetSelectedIgnore(index) - Sets the currently selected ignore entry.
C_FriendList.ShowFriends() - Requests updated friends information from server.

Who List

Relates to the Who List.

C_FriendList.GetNumWhoResults() : numWhos, totalNumWhos - Get the number of entries resulting from your most recent /who query.
C_FriendList.GetWhoInfo(index) : info - Retrieves info about a character on your current /who list.
HW C_FriendList.SendWho(filter) - Sends a Who request, much like using the slash command /who or entering a query in the entry field of the Who List.
C_FriendList.SetWhoToUi(whoToUi) - Sets how the result of a /who request will be handled.
C_FriendList.SortWho(sorting) - Sorts the last /who reply received by the client.

Battle.net

Real ID friends were added in Patch 3.3.5

C_BattleNet.GetAccountInfoByID(id [, wowAccountGUID]) : accountInfo - Returns information about a Battle.net friend account.
C_BattleNet.GetAccountInfoByGUID(guid) : accountInfo
C_BattleNet.GetFriendAccountInfo(friendIndex [, wowAccountGUID]) : accountInfo
C_BattleNet.GetGameAccountInfoByID(id) : gameAccountInfo - Returns information on the game the Battle.net friend is playing.
C_BattleNet.GetGameAccountInfoByGUID(guid) : gameAccountInfo
C_BattleNet.GetFriendGameAccountInfo(friendIndex, accountIndex) : gameAccountInfo
C_BattleNet.GetFriendNumGameAccounts(friendIndex) : numGameAccounts - Returns the Battle.net friend's number of game accounts.
C_AccountInfo.GetIDFromBattleNetAccountGUID(battleNetAccountGUID) : battleNetAccountID
C_AccountInfo.IsGUIDBattleNetAccountType(guid) : isBNet
C_AccountInfo.IsGUIDRelatedToLocalAccount(guid) : isLocalUser
BNAcceptFriendInvite(ID)
BNCheckBattleTagInviteToGuildMember(fullname)
BNCheckBattleTagInviteToUnit(unit)
BNConnected() - Returns whether your battle.net state is connected.
BNDeclineFriendInvite(ID)
BNFeaturesEnabledAndConnected()
BNFeaturesEnabled()
BNGetBlockedInfo(index)
BNGetDisplayName(bnetIdAccount)
BNGetFOFInfo(mutual, nonMutual, index) - Returns presenceID, givenName, surname, isFriend.
BNGetFriendIndex(presenceID)
BNGetFriendInviteInfo(menuValue) - Returns presenceID, givenName, surname.
BNGetInfo() - Returns own battle.net data like battleTag.
BNGetNumBlocked()
BNGetNumFOF(ID, mutual, non)
BNGetNumFriendInvites()
BNGetNumFriends() - Returns numBNetTotal, numBNetOnline, numBNetFavorite, numBNetFavoriteOnline.
BNGetSelectedBlock()
BNGetSelectedFriend()
BNInviteFriend(bnetIDGameAccount)
BNIsBlocked(ID)
BNIsFriend(presenceID)
BNIsSelf(presenceID) - Returns true if the specified presenceID is your own, false otherwise.
BNRemoveFriend(ID)
BNRequestFOFInfo(bnetIDAccount)
BNRequestInviteFriend(presenceID [, tank, heal, dps])
BNSendFriendInviteByID(ID, noteText)
BNSendFriendInvite(text, noteText)
BNSendGameData(id, addonPrefix, text) - BNet equivalent of SendAddonMessage.
BNSendSoR(target, comment)
BNSendVerifiedBattleTagInvite() - Unit should have been set with BNCheckBattleTagInviteToUnit or BNCheckBattleTagInviteToGuildMember.
BNSendWhisper(id, text)
BNSetAFK(bool) - Set or unset afk status.
BNSetBlocked(ID, bool)
BNSetCustomMessage(text)
BNSetDND(bool) - Set or unset dnd status.
BNSetFriendFavoriteFlag(id, isFavorite) - Set a battle.net friend as favorite.
BNSetFriendNote(ID, noteText)
BNSetSelectedBlock(index)
BNSetSelectedFriend(index)
BNSummonFriendByIndex(id)
BNTokenFindName(target)
GetAutoCompletePresenceID(name)
IsBNLogin()

Recruit-a-Friend

Recruit-A-Friend was reworked in Patch 8.2.5

C_RecruitAFriend.ClaimActivityReward(activityID, acceptanceID) : success
C_RecruitAFriend.ClaimNextReward() : success
C_RecruitAFriend.GenerateRecruitmentLink() : success
C_RecruitAFriend.GetRAFInfo() : info
C_RecruitAFriend.GetRAFSystemInfo() : systemInfo
C_RecruitAFriend.GetRecruitActivityRequirementsText(activityID, acceptanceID) : requirementsText
C_RecruitAFriend.GetRecruitInfo() : active, faction
C_RecruitAFriend.IsEnabled() : enabled
C_RecruitAFriend.IsRecruitingEnabled() : enabled
C_RecruitAFriend.RemoveRAFRecruit(wowAccountGUID) : success
C_RecruitAFriend.RequestUpdatedRecruitmentInfo() : success
CanSummonFriend(unit) - Returns whether you can RaF summon a particular unit.
GetSummonFriendCooldown() - Returns the cooldown (start, duration) of the RaF Summon Friend ability.
IsRecruitAFriendLinked()
SelectedRealmName() - Returns the realm name that will be used in Recruit-a-Friend invitations.
SummonFriend(unit) - Summons a player using the RaF system.

Mentor System

Newcomer Guides were added in Patch 9.0.1

C_PlayerMentorship.GetMentorLevelRequirement() : level
C_PlayerMentorship.GetMentorRequirements() : achievementIDs, optionalAchievementIDs, ...
C_PlayerMentorship.GetMentorshipStatus(playerLocation) : status
C_PlayerMentorship.IsActivePlayerConsideredNewcomer() : isConsideredNewcomer
C_PlayerMentorship.IsMentorRestricted() : isRestricted

Groups

C_PartyInfo.AllowedToDoPartyConversion(toRaid) : allowed
C_PartyInfo.CanInvite() : allowedToInvite
C_PartyInfo.ConfirmConvertToRaid()
C_PartyInfo.ConfirmInviteTravelPass(targetName, targetGUID)
C_PartyInfo.ConfirmInviteUnit(targetName)
C_PartyInfo.ConfirmLeaveParty([category])
C_PartyInfo.ConvertToParty() - Converts a raid group with 5 or less members to a party.
C_PartyInfo.ConvertToRaid() - Converts a party to a raid.
C_PartyInfo.DoCountdown(seconds)
C_PartyInfo.GetMinLevel([category]) : minLevel
C_PartyInfo.InviteUnit(targetName) - Invites the specified player to the group you are currently in.
C_PartyInfo.IsPartyFull([category]) : isFull
C_PartyInfo.LeaveParty([category]) - Quit the party, often useful to troubleshoot "phantom party" bugs which may list you in a party when you are in fact not.
AcceptGroup() - Accept the invitation to party.
ConfirmReadyCheck(isReady) - Indicate if you are ready or not.
DeclineGroup() - Decline the invitation to a party.
DoReadyCheck() - Initiate a ready check.
GetHomePartyInfo()
GetInviteConfirmationInfo(guid)
GetNextPendingInviteConfirmation()
GetNumGroupMembers([groupType]) - Returns the total number of players in your group/raid.
GetNumSubgroupMembers([groupType]) - Returns the number of other players in your party (or raid subgroup).
GetPendingInviteConfirmations()
GetReadyCheckStatus(unit) - Returns a group member's response to the current ready check.
GetReadyCheckTimeLeft()
InGuildParty()
IsGUIDInGroup(guid [, groupType])
IsInGroup([groupType]) - Returns true if in a group.
IsInGuildGroup()
IsInRaid([groupType]) - Returns true if in a raid.
PromoteToLeader(unit) - Promote a unit to party leader.
RespondToInviteConfirmation(guid, accept)
HW UninviteUnit(name [, reason]) - Kick a unit from the party if player is group leader; or initiate a kick vote in an LFD group.
UnitInAnyGroup()
UnitInParty(unit) - Returns true if the unit is a member of your party.
UnitIsGroupLeader(unit [, partyCategory]) - Returns whether the unit is the leader of a party or raid.

Raid Groups

ClearPartyAssignment()
DemoteAssistant(unit) - Demotes player from assistant status. Requires raid leadership.
GetAllowLowLevelRaid() - Returns whether joining low-level raids is enabled for the current character.
GetPartyAssignment(assignment [, unit, exactMatch]) - Returns a value based on whether the unit is assigned to given role.
GetRaidRosterInfo(index) - Returns information about the members of your raid.
InitiateRolePoll()
IsEveryoneAssistant()
PromoteToAssistant(unit) - Promotes player to assistant status. Requires raid leadership.
SetAllowLowLevelRaid(allowed) - Controls whether the current character can join low-level raids.
SetEveryoneIsAssistant()
PROTECTED SetPartyAssignment(assignment, player)
NOCOMBAT SetRaidSubgroup(index, subgroup) - Move a raid member from his current subgroup into a different (non-full) subgroup.
NOCOMBAT SwapRaidSubgroup(index1, index2) - Swaps raid members into different groups.
UnitInRaid(unit) - Returns 1 if unit is in your raid, nil if not.
UnitInSubgroup()

Relates to Raid Targets and World Markers.

CanBeRaidTarget(unit) - Returns if a unit can be marked with a raid target symbol.
ClearRaidMarker(index) - Removes a raid marker from the world.
GetRaidTargetIndex(unit) - Get the raid target index assigned to a unit.
IsRaidMarkerActive(index) - Returns whether or not the raid marker specified by index is active.
PROTECTED PlaceRaidMarker(index) - Brings up a targeting circle to place a raid marker in the world.
SetRaidTarget(unit, index) - Sets a raid icon on a unit.
SetRaidTargetProtected(unit, index)
UI SetRaidTargetIcon(unit, index) - Sets or resets a raid icon on a unit.

Raid Profiles

CreateNewRaidProfile(name [, baseOnProfile])
DeleteRaidProfile(profile)
GetMaxNumCUFProfiles()
GetNumRaidProfiles()
GetRaidProfileFlattenedOptions(profile)
GetRaidProfileName(index)
GetRaidProfileOption(profile, optionName)
GetRaidProfileSavedPosition(profile)
HasLoadedCUFProfiles()
RaidProfileExists(profile)
RaidProfileHasUnsavedChanges()
RestoreRaidProfileFromCopy()
SaveRaidProfileCopy(profile)
SetRaidProfileOption(profile, optionName, value)
SetRaidProfileSavedPosition(profile, isDynamic, topPoint, topOffset, bottomPoint, bottomOffset, leftPoint, leftOffset)

Party Sync

Party Sync was added in Patch 8.2.5

C_LevelLink.IsActionLocked(actionID) : isLocked
C_LevelLink.IsSpellLocked(spellID) : isLocked
C_QuestLog.IsQuestDisabledForSession(questID) : isDisabled
C_QuestLog.IsQuestReplayable(questID) : isReplayable
C_QuestLog.IsQuestReplayedRecently(questID) : recentlyReplayed
C_QuestLog.QuestHasQuestSessionBonus(questID) : hasBonus
C_QuestSession.CanStart() : allowed
C_QuestSession.CanStop() : allowed
C_QuestSession.Exists() : exists
C_QuestSession.GetAvailableSessionCommand() : command
C_QuestSession.GetPendingCommand() : command
C_QuestSession.GetProposedMaxLevelForSession() : proposedMaxLevel
C_QuestSession.GetSessionBeginDetails() : details
C_QuestSession.GetSuperTrackedQuest() : questID
C_QuestSession.HasJoined() : hasJoined
C_QuestSession.HasPendingCommand() : hasPendingCommand
C_QuestSession.RequestSessionStart()
C_QuestSession.RequestSessionStop()
C_QuestSession.SendSessionBeginResponse(beginSession)
C_QuestSession.SetQuestIsSuperTracked(questID, superTrack)
ConfirmBNRequestInviteFriend(presenceID [, tank, heal, dps])

Group Finder

The Looking For Group tool was added in Patch 2.0.1. It was renamed to the Dungeon Finder in Patch 3.3.0 and raid queuing moved to a separate Raid Browser. The Raid Finder was added in Patch 4.3.0 and merged into the Dungeon Finder in Patch 5.0.4. The Dungeon Finder was reworked in Patch 6.0.2 into the Group Finder.

C_LFGInfo.CanPlayerUseGroupFinder() : canUse, failureReason
C_LFGInfo.CanPlayerUseLFD() : canUse, failureReason
C_LFGInfo.CanPlayerUseLFR() : canUse, failureReason
C_LFGInfo.CanPlayerUsePremadeGroup() : canUse, failureReason
C_LFGInfo.CanPlayerUsePVP() : canUse, failureReason
C_LFGInfo.ConfirmLfgExpandSearch()
C_LFGInfo.GetAllEntriesForCategory(category) : lfgDungeonIDs
C_LFGInfo.GetDungeonInfo(lfgDungeonID) : dungeonInfo
C_LFGInfo.GetLFDLockStates() : lockInfo
C_LFGInfo.GetRoleCheckDifficultyDetails() : maxLevel, isLevelReduced
C_LFGInfo.HideNameFromUI(dungeonID) : shouldHide
AcceptProposal() - Accept an LFD group invite and enter the dungeon.
GetDungeonForRandomSlot(randomID, index)
GetGroupMemberCounts()
GetNumDungeonForRandomSlot(randomID)
GetNumRandomDungeons() - Returns the number of specific dungeons that can be queued for.
GetRandomDungeonBestChoice() - Returns the suggested random dungeon ID.
GroupHasOfflineMember()
IsAllowedToUserTeleport()
IsServerControlledBackfill()
RejectProposal() - Rejects an LFG group invite and exits the queue.
RequestBattlegroundInstanceInfo(index) - Requests data about the available instances of a battleground.

LFGList

C_LFGList.AcceptInvite(resultID)
C_LFGList.ApplyToGroup(resultID, comment, tank, healer, dps)
C_LFGList.CanActiveEntryUseAutoAccept() : canUseAutoAccept
C_LFGList.CancelApplication(resultID)
C_LFGList.CanCreateQuestGroup(questID) : canCreate
C_LFGList.ClearApplicationTextFields()
C_LFGList.ClearCreationTextFields()
C_LFGList.ClearSearchResults()
C_LFGList.ClearSearchTextFields()
C_LFGList.CopyActiveEntryInfoToCreationFields()
HW C_LFGList.CreateListing(activityID, itemLevel, honorLevel [, autoAccept, privateGroup, questID]) - Creates a group finder listing.
C_LFGList.DeclineApplicant(applicantID)
C_LFGList.DeclineInvite(searchResultID)
C_LFGList.GetActiveEntryInfo() : entryData - Returns information about your currently listed group.
C_LFGList.GetActivityFullName(activityID [, questID, showWarmode]) : fullName
C_LFGList.GetActivityGroupInfo(groupID) : name, orderIndex - Returns information about an activity group.
C_LFGList.GetActivityIDForQuestID(questID)
C_LFGList.GetActivityInfoExpensive(activityID) - Checks if you are in the zone associated with an activity.
C_LFGList.GetActivityInfoTable(activityID [, questID, showWarmode]) : activityInfo
C_LFGList.GetApplicantDungeonScoreForListing(localID, applicantIndex, activityID) : bestDungeonScoreForListing
C_LFGList.GetApplicantInfo(applicantID) : applicantData - Returns status informations and custom message of an applicant.
C_LFGList.GetApplicantMemberInfo(applicantID) - Returns name, class, level and more about an applicant group member.
C_LFGList.GetApplicantMemberStats(applicantID) - Returns stats about an applicant group member.
C_LFGList.GetApplicantPvpRatingInfoForListing(localID, applicantIndex, activityID) : pvpRatingInfo
C_LFGList.GetApplicants() - Returns a table with applicantIDs.
C_LFGList.GetApplicationInfo(searchResultID)
C_LFGList.GetApplications()
C_LFGList.GetAvailableActivities([categoryID, groupID, filter]) - Returns a list of available activityIDs.
C_LFGList.GetAvailableActivityGroups(categoryID [, filter]) - Returns a list of available groupIDs.
C_LFGList.GetAvailableCategories([filter]) - Returns a list of available categoryIDs.
C_LFGList.GetAvailableLanguageSearchFilter()
C_LFGList.GetAvailableRoles()
C_LFGList.GetDefaultLanguageSearchFilter()
C_LFGList.GetFilteredSearchResults() : totalResultsFound, filteredResults
C_LFGList.GetKeystoneForActivity(activityID) : level
C_LFGList.GetLanguageSearchFilter()
C_LFGList.GetLfgCategoryInfo(categoryID) : categoryData
C_LFGList.GetNumApplicants()
C_LFGList.GetNumApplications()
C_LFGList.GetNumInvitedApplicantMembers()
C_LFGList.GetNumPendingApplicantMembers()
C_LFGList.GetOwnedKeystoneActivityAndGroupAndLevel([getTimewalking]) : activityID, groupID, keystoneLevel
C_LFGList.GetPlaystyleString(playstyle, activityInfo) : playstyleString
C_LFGList.GetRoleCheckInfo()
C_LFGList.GetSearchResultEncounterInfo(searchResultID)
C_LFGList.GetSearchResultFriends(searchResultID)
C_LFGList.GetSearchResultInfo(searchResultID) : searchResultData
C_LFGList.GetSearchResultMemberCounts(searchResultID)
C_LFGList.GetSearchResultMemberInfo(searchResultID, memberIndex)
C_LFGList.GetSearchResults() : totalResultsFound, results
C_LFGList.HasActiveEntryInfo() : hasActiveEntryInfo
C_LFGList.HasActivityList()
C_LFGList.HasSearchResultInfo(searchResultID) : hasSearchResultInfo
C_LFGList.InviteApplicant(applicantID)
C_LFGList.IsCurrentlyApplying()
C_LFGList.IsPlayerAuthenticatedForLFG([activityID]) : isAuthenticated
C_LFGList.RefreshApplicants()
C_LFGList.RemoveApplicant(applicantID)
C_LFGList.RemoveListing()
C_LFGList.ReportApplicant(applicantID)
C_LFGList.ReportSearchResult(resultID, complaintType)
C_LFGList.RequestAvailableActivities()
C_LFGList.SaveLanguageSearchFilter(enabled)
C_LFGList.Search(categoryID [, filter, preferredFilters, languageFilter])
C_LFGList.SetApplicantMemberRole(applicantID, memberIndex, role)
C_LFGList.SetEntryTitle(activityID, groupID [, playstyle])
C_LFGList.SetSearchToActivity(activityID)
C_LFGList.SetSearchToQuestID(questID)
C_LFGList.UpdateListing(lfgID, itemLevel, honorLevel, autoAccept, private [, questID])
C_LFGList.ValidateRequiredDungeonScore(dungeonScore) : passes
C_LFGList.ValidateRequiredPvpRatingForActivity(activityID, rating) : passes
DEPRECATED C_LFGList.GetActivityInfo(activityID) - Returns information about an activity for premade groups.
DEPRECATED C_LFGList.GetCategoryInfo(categoryID) - Returns information about a specific category.

LFG

LFG is used for for generic functions/values that may be used for LFD, LFR, and any other LF_ system we may implement in the future.[1]

CanPartyLFGBackfill() - Returns whether the party is eligible to recruit additional members from the LFG pool.
ClearAllLFGDungeons(category)
CompleteLFGReadyCheck(isReady)
CompleteLFGRoleCheck(isReady) - Returns true if the role check was successful.
GetLFGBootProposal() - Returns info about a LFG Kick vote in progress.
GetLFGCategoryForID(partySlot)
GetLFGCompletionReward()
GetLFGCompletionRewardItem(rewardIndex)
GetLFGCompletionRewardItemLink(rewardIndex)
GetLFGDeserterExpiration() - Returns the time at which you may once again use the dungeon finder after prematurely leaving a group.
GetLFGDungeonEncounterInfo(dungeonID, encounterIndex)
GetLFGDungeonInfo(dungeonID) - Returns dungeon information.
GetLFGDungeonNumEncounters(dungeonID)
GetLFGDungeonRewardCapBarInfo(dungeonID) - Returns information on the weekly point limits.
GetLFGDungeonRewardCapInfo(dungeonID)
GetLFGDungeonRewardInfo(dungeonID, rewardIndex)
GetLFGDungeonRewardLink(dungeonID, rewardIndex)
GetLFGDungeonRewards(dungeonID)
GetLFGDungeonShortageRewardInfo(dungeonID, shortageIndex, rewardIndex)
GetLFGDungeonShortageRewardLink(dungeonID, shortageIndex, rewardIndex)
GetLFGInfoServer(category [, lfgID])
GetLFGInviteRoleAvailability(roleID)
GetLFGInviteRoleRestrictions(roleID)
GetLFGProposal()
GetLFGProposalEncounter(encounterIndex)
GetLFGProposalMember(memberIndex) - Returns info about the players in the LFG proposal.
GetLFGQueuedList(category [, table])
GetLFGQueueStats(category [, lfgID]) - Returns current state and wait times for being in queue.
GetLFGRandomCooldownExpiration() - Returns the time at which you may once again queue for a random dungeon.
GetLFGRandomDungeonInfo(index) - Returns information about a random dungeon queue.
GetLFGReadyCheckUpdate()
GetLFGReadyCheckUpdateBattlegroundInfo()
GetLFGRoles() - Returns the roles you signed up as, not the role you were assigned.
GetLFGRoleShortageRewards(dungeonID, shortageIndex) - Returns information about the LFG Call to Arms rewards.
GetLFGRoleUpdate()
GetLFGRoleUpdateBattlegroundInfo()
GetLFGRoleUpdateMember(memberIndex)
GetLFGRoleUpdateSlot(slotIndex)
GetLFGSuspendedPlayers(category)
GetPartyLFGBackfillInfo() - Returns information about the dungeon for which you may currently recruit additional members from the LFG pool.
GetPartyLFGID()
HasLFGRestrictions() - Returns whether the player is in a random party formed by the dungeon finder system.
IsInLFGDungeon()
IsLFGComplete() - Returns whether you have currently finished a Dungeon Finder instance.
IsLFGDungeonJoinable() - Returns whether you can queue for a particular dungeon
IsPartyLFG()
JoinLFG(category)
JoinSingleLFG(category, lfgID)
LeaveLFG(category)
LeaveSingleLFG(category, lfgID)
LFGTeleport([toSafety]) - Teleports the player to or from a dungeon.
PartyLFGStartBackfill()
RefreshLFGList()
SearchLFGGetEncounterResults(index, encounterIndex)
SearchLFGGetJoinedID() - Returns the currently selected raid ID.
SearchLFGGetNumResults()
SearchLFGGetPartyResults([index, memberIndex])
SearchLFGGetResults([index])
SearchLFGLeave() - Removes yourself from looking through the Raid Browser. Equivalent to selecting "none" in the Raid Browser.
HW SearchLFGJoin(typeID, lfgID)
SearchLFGSort(type)
SetLFGBootVote(shouldKick) - Responds to a vote-kick.
SetLFGComment([comment]) - Sets the comment in the raid browser.
SetLFGDungeon(LE_LFG_CATEGORY, type)
SetLFGDungeonEnabled(dungeonID, isEnabled)
SetLFGHeaderCollapsed(headerID, isCollapsed)
SetLFGRoles([leader, tank, healer, dps]) - Changes the selected roles.

LFD

LFD is used for Dungeon-specific functions and values

DungeonAppearsInRandomLFD(dungeonID)
GetLFDChoiceCollapseState([LFGCollapseList])
GetLFDChoiceEnabledState([LFGEnabledList])
GetLFDChoiceOrder([LFDDungeonList])
GetLFDLockInfo(dungeonID, playerIndex)
GetLFDLockPlayerCount()
GetLFDRoleLockInfo(dungeonID, roleID)
GetLFDRoleRestrictions(dungeonID)
RequestLFDPartyLockInfo()
RequestLFDPlayerLockInfo()

Flex Raid

GetBestFlexRaidChoice()
GetFlexRaidDungeonInfo(index)
GetNumFlexRaidDungeons()

Raid Finder

GetBestRFChoice() - Returns the suggested/default dungeonId for the Raid Finder.
GetLFRChoiceOrder([LFRRaidList])
GetNumRFDungeons()
GetRFDungeonInfo(index)

Quick Join

Quick Join was added in Patch 7.1.0

C_PartyInfo.ConfirmRequestInviteFromUnit(targetName [, tank, healer, dps])
C_PartyInfo.GetActiveCategories() : categories
C_PartyInfo.GetInviteConfirmationInvalidQueues(inviteGUID) : invalidQueues
C_PartyInfo.GetInviteReferralInfo(inviteGUID) : outReferredByGuid, outReferredByName, outRelationType, outIsQuickJoin, ... - Returns info for Quick join invites.
C_PartyInfo.RequestInviteFromUnit(targetName [, tank, healer, dps])
C_SocialQueue.GetAllGroups([allowNonJoinable, allowNonQueuedGroups]) : groupGUIDs
C_SocialQueue.GetConfig() : config
C_SocialQueue.GetGroupForPlayer(playerGUID) : groupGUID, isSoloQueueParty
C_SocialQueue.GetGroupInfo(groupGUID) : canJoin, numQueues, needTank, needHealer, needDamage, isSoloQueueParty, ...
C_SocialQueue.GetGroupMembers(groupGUID) : groupMembers
C_SocialQueue.GetGroupQueues(groupGUID) : queues
C_SocialQueue.RequestToJoin(groupGUID [, applyAsTank, applyAsHealer, applyAsDamage]) : requestSuccessful
C_SocialQueue.SignalToastDisplayed(groupGUID, priority)

Guild

C_GuildInfo.CanEditOfficerNote() : canEditOfficerNote - Returns if the player is allowed to edit guild officer notes.
C_GuildInfo.CanSpeakInGuildChat() : canSpeakInGuildChat - Returns if the player is allowed to use guild chat.
C_GuildInfo.CanViewOfficerNote() : canViewOfficerNote - Returns if the player is allowed to view guild officer notes.
C_GuildInfo.GetGuildNewsInfo(index) : newsInfo
C_GuildInfo.GetGuildRankOrder(guid) : rankOrder - Returns the current rank of a guild member.
C_GuildInfo.GetGuildTabardInfo([unit]) : tabardInfo
C_GuildInfo.GuildControlGetRankFlags(rankOrder) : permissions - Returns the permission flags for a rank index.
C_GuildInfo.GuildRoster() - Requests updated guild roster information from the server.
C_GuildInfo.IsGuildOfficer() : isOfficer
C_GuildInfo.IsGuildRankAssignmentAllowed(guid, rankOrder) : isGuildRankAssignmentAllowed
C_GuildInfo.QueryGuildMemberRecipes(guildMemberGUID, skillLineID) - Shows the guild member recipes for a profession.
C_GuildInfo.QueryGuildMembersForRecipe(skillLineID, recipeSpellID [, recipeLevel]) : updatedRecipeSpellID
C_GuildInfo.RemoveFromGuild(guid) - Removes a member from the guild.
C_GuildInfo.SetGuildRankOrder(guid, rankOrder) - Sets the guild rank for a member.
C_GuildInfo.SetNote(guid, note, isPublic) - Sets the guild note for a member.
AcceptGuild() - The player accepts the invitation to join a guild.
BuyGuildCharter(guildName) - Purchases a guild charter for guildName.
CanEditGuildEvent() - Returns true if you are allowed to edit guild events (in the calendar).
CanEditGuildInfo() - Returns true if you are allowed to edit the guild info.
CanEditGuildTabInfo(tab)
CanEditMOTD() - Returns true if you are allowed to edit the guild motd.
CanEditPublicNote() - Returns true if you are allowed to edit a guild member's public note.
CanGuildDemote() - Returns true if you are allowed to demote a guild member.
CanGuildInvite() - Returns true if you are allowed to invite a new member to the guild.
CanGuildPromote() - Returns true if you are allowed to demote a guild member.
CanGuildRemove() - Returns true if you are allowed to remove a guild member.
CanReplaceGuildMaster() - Returns whether you can impeach the Guild Master due to inactivity.
CanViewGuildRecipes(skillLineID)
CloseGuildRegistrar()
CloseGuildRoster()
CloseTabardCreation()
CollapseGuildTradeSkillHeader(tradeSkillID)
DeclineGuild() - The player declines the invitation to join a guild.
ExpandGuildTradeSkillHeader(tradeSkillID)
GetAutoDeclineGuildInvites() - Returns if guild invites are blocked.
GetDemotionRank(index)
GetGuildCategoryList()
GetGuildChallengeInfo(index)
GetGuildCharterCost() - Returns the cost of purchasing a guild charter.
GetGuildEventInfo(index) - Returns the event information.
GetGuildExpirationTime()
GetGuildFactionGroup()
GetGuildFactionInfo() - Returns the guild name and faction standing of the player.
GetGuildInfoText() - Returns the persistant Guild Information data.
GetGuildInfo(unit) - This function returns the name of the guild unit belongs to.
GetGuildLogoInfo()
GetGuildMemberRecipes(name, skillLineID)
GetGuildNewsFilters()
GetGuildNewsMemberName(index, nameIndex)
GetGuildNewsSort()
GetGuildPerkInfo()
GetGuildRecipeInfoPostQuery()
GetGuildRecipeMember(index)
GetGuildRenameRequired()
GetGuildRewardInfo(index)
GetGuildRosterInfo(index) - This function is used to get info on members in the guild.
GetGuildRosterLargestAchievementPoints() - Returns max achievements points.
GetGuildRosterLastOnline(index) - Returns time since last online for indexth member in current sort order.
GetGuildRosterMOTD() - Returns guild's MOTD.
GetGuildRosterSelection() - Returns the index of the current selected guild member.
GetGuildRosterShowOffline() - Returns true if showing offline members of the guild.
GetGuildTabardFiles() - Returns File IDs of tabard textures used in guild bank logo.
GetGuildTradeSkillInfo(index) - Returns the tradeskill index for a guild tradeskill using the index from GetNumGuildTradeSkill.
GetNumGuildChallenges()
GetNumGuildEvents() - Returns the number of guild events.
GetNumGuildMembers() - Returns the number of total and online guild members.
GetNumGuildNews()
GetNumGuildPerks()
GetNumGuildRewards()
GetNumGuildTradeSkill() - Returns the number of tradeskills available to the guild UI.
GetNumMembersInRank(index)
GetPromotionRank(index)
GetTabardCreationCost() - Returns cost in coppers.
GetTabardInfo()
GuildControlAddRank(name) - Add another rank called "name". Only Guildmaster.
GuildControlDelRank(name) - Delete rank "name". Only Guildmaster.
GuildControlGetAllowedShifts(rankOrder)
GuildControlGetNumRanks() - Returns number of ranks after guild frame open. Any guild member can use this.
GuildControlGetRankName(index) - Returns name of the rank at index. Any guild member can use this.
GuildControlSaveRank(name) - Saves the permissions for rank "name". Only Guildmaster.
PROTECTED GuildControlSetRank(rank) - Sets the currently selected rank to view.
PROTECTED GuildControlSetRankFlag(index, enabled) - Enable/disable permission for an action at index. Only Guildmaster.
GuildControlShiftRankDown(rankOrder)
GuildControlShiftRankUp(rankOrder)
PROTECTED GuildDemote(name) - Demotes a player "name".
GuildDisband() - Disbands at once your guild. You must be the guild's leader to do so. Be careful, no warning is given prior disbanding.
GuildInfo() - Displays information about the guild you are a member of.
GuildInvite(name) - Invites a player to your guild.
GuildLeave() - Removes you from your current guild.
GuildMasterAbsent()
GuildNewsSetSticky(index, bool)
GuildNewsSort(byDate)
PROTECTED GuildPromote(name) - Promotes a player "name".
GuildRosterSetOfficerNote(index, note) - Sets the officer note at index to "note".
GuildRosterSetPublicNote(index, note) - Sets the public note at index to "note".
GuildSetLeader(name) - Transfers guild leadership to another character.
GuildSetMOTD(note) - Set Guild Message of the Day to "note".
PROTECTED GuildUninvite(name) - Removes the member "name".
IsGuildLeader(name) - Determine if player "name" is a guild master.
IsGuildMember(guid or unitToken)
IsGuildRankAssignmentAllowed(playerIndex, rankIndex)
IsInAuthenticatedRank()
IsInGuild() - Lets you know whether you are in a guild.
QueryGuildEventLog() - Fetches the guild event list and fires a GUILD_EVENT_LOG_UPDATE event.
QueryGuildNews()
QueryGuildRecipes()
ReplaceGuildMaster() - Impeaches the current Guild Master.
RequestGuildChallengeInfo()
RequestGuildPartyState()
RequestGuildRewards()
SetAutoDeclineGuildInvites(checked) - Blocks guild invites automatically.
SetGuildInfoText() - Sets the persistant Guild Information data. Limit is 500 letters (GuildInfoEditBox is limited to this number). Longer texts are possible, but will be reseted during the day.
SetGuildMemberRank(playerIndex, rankIndex)
SetGuildNewsFilter(index, bool)
SetGuildRosterSelection(index) - Selects/deselects a guild member according current sorting order.
SetGuildRosterShowOffline(enabled) - Sets/Resets the show offline members flag.
SetGuildTradeSkillCategoryFilter(tradeSkillID)
SetGuildTradeSkillItemNameFilter(itemName)
SortGuildRoster(sort) - Sorts guildroster according "sort". Any unknown values sort on "name".
SortGuildTradeSkill(type)
SubmitRequiredGuildRename()
ViewGuildRecipes(skillLineID)

Petitions

Petitions are signup documents for guilds and arena teams. Some functions below only apply to a particular petition type

CanSignPetition() - Returns nil if the player cannot sign the current petition.
ClosePetition() - Closes the current petition.
GetNumPetitionNames() - Gets the number of signatures on the current petition.
GetPetitionInfo() - Retrieves information about the current petition.
GetPetitionNameInfo(index) - Retrieves information about a signature on the petition.
OfferPetition() - Offers a petition to your target, inviting them to join your would-be guild/arena team.
RenamePetition(name) - Renames the current petition.
SignPetition() - Signs the current petition.
TurnInGuildCharter() - Founds a guild.

Instances

C_PlayerInfo.GetInstancesUnlockedAtLevel(level, isRaid) : dungeonID
CanChangePlayerDifficulty()
CanMapChangeDifficulty()
CanShowResetInstances() - Determine if player can reset instances at the moment.
GetDifficultyInfo() - Returns information about a difficulty.
GetDungeonDifficultyID() - Returns the player's current Dungeon Difficulty setting (1, 2, 8).
GetInstanceBootTimeRemaining() - Gets the time in seconds after which the player will be ejected from an instance.
GetInstanceInfo() - Gets informations about the current Instance.
GetLegacyRaidDifficultyID()
GetRaidDifficultyID() - Returns the player's current Raid Difficulty setting (1-14).
IsInInstance() - Returns 1 if the player is in an instance, as well as the type of instance (pvp, raid, etc.).
IsLegacyDifficulty(difficultyID)
ResetInstances() - Reset instances.
SetDungeonDifficultyID(difficultyID) - Sets the player's Dungeon Difficulty setting (for the 5-man instances). See difficultyID.
SetLegacyRaidDifficultyID(difficultyID [, force])
SetRaidDifficultyID(difficultyID) - Sets the players Raid Difficulty settings (for 10-man, 25-man instances). See difficultyID.
ShowBossFrameWhenUninteractable(unit)

Relates to Instance Locks

GetInstanceLockTimeRemainingEncounter(id) - Returns information about bosses in the instance the player is about to be saved to.
GetInstanceLockTimeRemaining() - Returns information about the instance lock timer for the instance the player is currently entering.
GetNumSavedInstances() - Gets the number of instances for which the player currently has lockout data saved.
GetNumSavedWorldBosses()
GetSavedInstanceChatLink(index)
GetSavedInstanceEncounterInfo(instanceIndex, encounterIndex)
GetSavedInstanceInfo(index) - Gets information about an instance for which the player has saved lockout data.
GetSavedWorldBossInfo(index)
RequestRaidInfo() - Returns information about which instances you are saved to.
RespondInstanceLock()
SetSavedInstanceExtend(index, extend)

Scenarios

Scenarios were added in Patch 5.0.4

C_Scenario.GetBonusStepRewardQuestID(stepIndex)
C_Scenario.GetBonusSteps()
C_Scenario.GetCriteriaInfo(criteriaIndex)
C_Scenario.GetCriteriaInfoByStep(stepID, criteriaIndex)
C_Scenario.GetInfo()
C_Scenario.GetProvingGroundsInfo() - Returns information about the current Proving Grounds trial.
C_Scenario.GetScenarioIconInfo(uiMapID)
C_Scenario.GetStepInfo([bonusStepIndex])
C_Scenario.GetSupersededObjectives()
C_Scenario.IsInScenario()
C_Scenario.ShouldShowCriteria()
C_Scenario.TreatScenarioAsDungeon()
C_ScenarioInfo.GetScenarioInfo() : scenarioInfo
C_ScenarioInfo.GetScenarioStepInfo([scenarioStepID]) : scenarioStepInfo
GetNumRandomScenarios()
GetNumScenarios()
GetRandomScenarioBestChoice()
GetRandomScenarioInfo(index)
GetScenariosChoiceOrder()
GetWorldElapsedTimers()
GetWorldElapsedTime(timerID)
IsInScenarioGroup()

Mythic+

Mythic+ mode was added in Patch 7.0.3

C_MythicPlus.GetCurrentAffixes() : affixIDs
C_MythicPlus.GetCurrentSeason() : seasonID
C_MythicPlus.GetCurrentSeasonValues() : displaySeasonID, milestoneSeasonID, rewardSeasonID
C_MythicPlus.GetLastWeeklyBestInformation() : challengeMapId, level
C_MythicPlus.GetOwnedKeystoneChallengeMapID() : challengeMapID
C_MythicPlus.GetOwnedKeystoneLevel() : keyStoneLevel
C_MythicPlus.GetOwnedKeystoneMapID() : mapID
C_MythicPlus.GetRewardLevelForDifficultyLevel(difficultyLevel) : weeklyRewardLevel, endOfRunRewardLevel
C_MythicPlus.GetRewardLevelFromKeystoneLevel(keystoneLevel) : rewardLevel
C_MythicPlus.GetRunHistory([includePreviousWeeks, includeIncompleteRuns]) : runs
C_MythicPlus.GetSeasonBestAffixScoreInfoForMap(mapChallengeModeID) : affixScores, bestOverAllScore
C_MythicPlus.GetSeasonBestForMap(mapChallengeModeID) : intimeInfo, overtimeInfo
C_MythicPlus.GetWeeklyBestForMap(mapChallengeModeID) : durationSec, level, completionDate, affixIDs, members, ...
C_MythicPlus.GetWeeklyChestRewardLevel() : currentWeekBestLevel, weeklyRewardLevel, nextDifficultyWeeklyRewardLevel, ...
C_MythicPlus.IsMythicPlusActive() : isMythicPlusActive
C_MythicPlus.IsWeeklyRewardAvailable() : weeklyRewardAvailable
C_MythicPlus.RequestCurrentAffixes()
C_MythicPlus.RequestMapInfo()
C_MythicPlus.RequestRewards()
C_PlayerInfo.GetPlayerMythicPlusRatingSummary(playerToken) : ratingSummary

Challenge Mode was added in Patch 5.0.4

C_ChallengeMode.CanUseKeystoneInCurrentMap(itemLocation) : canUse
C_ChallengeMode.ClearKeystone()
C_ChallengeMode.CloseKeystoneFrame()
C_ChallengeMode.GetActiveChallengeMapID() : mapChallengeModeID
C_ChallengeMode.GetActiveKeystoneInfo() : activeKeystoneLevel, activeAffixIDs, ...
C_ChallengeMode.GetAffixInfo(affixID) : name, description, filedataid
C_ChallengeMode.GetCompletionInfo() : mapChallengeModeID, level, time, onTime, keystoneUpgradeLevels, ...
C_ChallengeMode.GetDeathCount() : numDeaths, timeLost
C_ChallengeMode.GetDungeonScoreRarityColor(dungeonScore) : scoreColor
C_ChallengeMode.GetGuildLeaders() : topAttempt
C_ChallengeMode.GetKeystoneLevelRarityColor(level) : levelScore
C_ChallengeMode.GetMapScoreInfo() : displayScores
C_ChallengeMode.GetMapTable() : mapChallengeModeIDs
C_ChallengeMode.GetMapUIInfo(mapChallengeModeID) : name, id, timeLimit, texture, backgroundTexture
C_ChallengeMode.GetOverallDungeonScore() : overallDungeonScore
C_ChallengeMode.GetPowerLevelDamageHealthMod(powerLevel) : damageMod, healthMod
C_ChallengeMode.GetSlottedKeystoneInfo() : mapChallengeModeID, affixIDs, keystoneLevel
C_ChallengeMode.GetSpecificDungeonOverallScoreRarityColor(specificDungeonOverallScore) : specificDungeonOverallScoreColor
C_ChallengeMode.GetSpecificDungeonScoreRarityColor(specificDungeonScore) : specificDungeonScoreColor
C_ChallengeMode.HasSlottedKeystone() : hasSlottedKeystone
C_ChallengeMode.IsChallengeModeActive() : challengeModeActive
C_ChallengeMode.RemoveKeystone() : removalSuccessful
C_ChallengeMode.RequestLeaders(mapChallengeModeID)
C_ChallengeMode.Reset()
C_ChallengeMode.SetKeystoneTooltip()
C_ChallengeMode.SlotKeystone()
C_ChallengeMode.StartChallengeMode() : success

Weekly Rewards

C_WeeklyRewards.AreRewardsForCurrentRewardPeriod() : isCurrentPeriod
C_WeeklyRewards.CanClaimRewards() : canClaimRewards
C_WeeklyRewards.ClaimReward(id)
C_WeeklyRewards.CloseInteraction()
C_WeeklyRewards.GetActivities([type]) : activities
C_WeeklyRewards.GetActivityEncounterInfo(type, index) : info
C_WeeklyRewards.GetConquestWeeklyProgress() : weeklyProgress
C_WeeklyRewards.GetExampleRewardItemHyperlinks(id) : hyperlink, upgradeHyperlink
C_WeeklyRewards.GetItemHyperlink(itemDBID) : hyperlink
C_WeeklyRewards.GetNextMythicPlusIncrease(mythicPlusLevel) : hasSeasonData, nextMythicPlusLevel, itemLevel
C_WeeklyRewards.HasAvailableRewards() : hasAvailableRewards
C_WeeklyRewards.HasGeneratedRewards() : hasGeneratedRewards
C_WeeklyRewards.HasInteraction() : isInteracting

Items

These functions operate on item links or item information directly. See also Bag functions.

C_Item.CanViewItemPowers(itemLoc) : isItemViewable
C_Item.DoesItemExist(emptiableItemLocation) : itemExists
C_Item.DoesItemExistByID(itemInfo) : itemExists
C_Item.DoesItemMatchBonusTreeReplacement(itemLoc) : matchesBonusTree
C_Item.GetCurrentItemLevel(itemLocation) : currentItemLevel
C_Item.GetItemGUID(itemLocation) : itemGuid
C_Item.GetItemIcon(itemLocation) : icon
C_Item.GetItemIconByID(itemInfo) : icon
C_Item.GetItemID(itemLocation) : itemID
C_Item.GetItemInventoryType(itemLocation) : inventoryType
C_Item.GetItemInventoryTypeByID(itemInfo) : inventoryType
C_Item.GetItemLink(itemLocation) : itemLink
C_Item.GetItemName(itemLocation) : itemName
C_Item.GetItemNameByID(itemInfo) : itemName
C_Item.GetItemQuality(itemLocation) : itemQuality
C_Item.GetItemQualityByID(itemInfo) : itemQuality
C_Item.GetStackCount(itemLocation) : stackCount
C_Item.IsBound(itemLocation) : isBound
C_Item.IsItemDataCached(itemLocation) : isCached
C_Item.IsItemDataCachedByID(itemInfo) : isCached
C_Item.IsItemKeystoneByID(itemInfo) : isKeystone
C_Item.IsLocked(itemLocation) : isLocked
C_Item.LockItem(itemLocation)
C_Item.LockItemByGUID(itemGUID)
C_Item.RequestLoadItemData(itemLocation)
C_Item.RequestLoadItemDataByID(itemInfo)
C_Item.UnlockItem(itemLocation)
C_Item.UnlockItemByGUID(itemGUID)
C_ItemInteraction.ClearPendingItem()
C_ItemInteraction.CloseUI()
C_ItemInteraction.GetItemInteractionInfo() : info
C_ItemInteraction.GetItemInteractionSpellId() : spellId
C_ItemInteraction.InitializeFrame()
C_ItemInteraction.PerformItemInteraction()
C_ItemInteraction.Reset()
C_ItemInteraction.SetPendingItem([item]) : success
C_NewItems.ClearAll() - Clears the new item flag on all items in the player's inventory.
C_NewItems.IsNewItem(bag, slot) - Returns whether the item in the specified container slot is flagged as new.
C_NewItems.RemoveNewItem(bag, slot) - Clears the "new item" flag.
ActionBindsItem() - Confirms this will bind this item to you.
ConfirmOnUse() - Confirms you want to use the item.
EndBoundTradeable(type) - Confirms this will make this item non-tradeable.
EndRefund() - Confirms this will make this item non-refundable.
EquipItemByName(item [, invSlot]) - Equips an item, optionally into a specified slot.
GetDetailedItemLevelInfo(item) - Returns an item's item level.
GetItemChildInfo(item [, slotID])
GetItemClassInfo(itemClassID) - Returns the name of the item type.
GetItemCooldown(itemId) - Returns startTime, duration, enable.
GetItemCount(item [, includeBank, includeCharges]) - Returns number of such items in inventory, or charges instead if it has charges.
GetItemCreationContext(itemlink)
GetItemFamily(item) - Returns the bag type that an item can go into, or for bags the type of items that it can contain.
GetItemGem(item, index)
GetItemIcon(itemId) - Returns the icon for the item. Works for any valid item even if it's not in the cache.
GetItemInfo(item) - Returns information about an item.
GetItemInfoInstant(item) - Returns basic information about an item.
GetItemInventorySlotInfo(inventorySlot)
GetItemLevelColor()
GetItemQualityColor(quality) - Returns the RGB color codes for a quality.
GetItemSetInfo(setID)
GetItemSpecInfo(item [, specTable])
GetItemSpell(item) - Returns name, rank.
GetItemStatDelta(itemLink1, itemLink2 [, statTable])
GetItemStats(itemLink, statTable) - Returns a table of stats for an item.
GetItemSubClassInfo(itemClassID, itemSubClassID) - Returns the name of the item subtype.
GetItemUniqueness(item)
IsBattlePayItem(bag, slot)
IsConsumableItem(item)
IsCurrentItem(item)
IsEquippableItem(item) - Returns whether an item can be equipped.
IsEquippedItem(item)
IsEquippedItemType(type) - Where "type" is any valid inventory type, item class, or item subclass.
IsHarmfulItem(item) - Returns whether an item can be used against hostile units
IsHelpfulItem(item) - Returns whether an item can be used on the player or friendly units
IsItemInRange(item [, unit]) - Returns whether the item is in usable range of the unit.
IsUsableItem(item) - Returns usable, noMana.
ItemHasRange(item)
TargetSpellReplacesBonusTree()
PROTECTED UseItemByName(itemName, unit) - Use an item on the unit specified.

Item Enchants

BindEnchant() - Confirm the binding of the item when enchanting it.
ReplaceEnchant() - Confirm the replacement of an enchantment.
ReplaceTradeEnchant() - Confirm the replacement of an enchantment via trade.
DEPRECATED GetItemUpdateLevel()
DEPRECATED GetItemUpgradeItemInfo()
DEPRECATED GetItemUpgradeStats(upgraded)
DEPRECATED IsDressableItem(item) - Returns if the item can be shown in the Dressing room.

Item Upgrade

C_ItemUpgrade.CanUpgradeItem(baseItem) : isValid
C_ItemUpgrade.ClearItemUpgrade()
C_ItemUpgrade.CloseItemUpgrade()
C_ItemUpgrade.GetItemHyperlink() : link
C_ItemUpgrade.GetItemUpgradeCurrentLevel() : itemLevel, isPvpItemLevel
C_ItemUpgrade.GetItemUpgradeEffect(effectIndex [, numUpgradeLevels]) : outBaseEffect, outUpgradedEffect
C_ItemUpgrade.GetItemUpgradeItemInfo() : itemInfo
C_ItemUpgrade.GetItemUpgradePvpItemLevelDeltaValues(numUpgradeLevels) : currentPvPItemLevel, upgradedPvPItemLevel
C_ItemUpgrade.GetNumItemUpgradeEffects() : numItemUpgradeEffects
C_ItemUpgrade.SetItemUpgradeFromCursorItem()
C_ItemUpgrade.SetItemUpgradeFromLocation(itemToSet)
C_ItemUpgrade.UpgradeItem([numUpgrades])
DEPRECATED C_ItemUpgrade.GetItemLevelIncrement([numUpgradeLevels]) : itemLevelIncrement

Looting

Relates to Loot.

C_Loot.IsLegacyLootModeEnabled() : isLegacyLootModeEnabled
C_LootHistory.CanMasterLoot(itemIndex, playerIndex)
C_LootHistory.GetExpiration()
C_LootHistory.GetItem(itemIndex)
C_LootHistory.GetNumItems()
C_LootHistory.GetPlayerInfo(itemIndex, playerIndex)
C_LootHistory.GiveMasterLoot(itemIndex, playerIndex)
C_LootHistory.SetExpiration(numItemsToSave, secondsToSave)
C_PlayerInfo.CanPlayerUseAreaLoot() : canUseAreaLoot
CanLootUnit(unitGUID)
CancelMasterLootRoll(slot)
CloseLoot([uiFailedFlag])
ConfirmLootRoll(rollId [, roll]) - Confirm a loot roll.
ConfirmLootSlot(slot) - Confirm looting of a BoP item.
DoMasterLootRoll(slot)
GetActiveLootRollIDs()
GetLootInfo()
GetLootMethod() - Returns the currently active lootMethod.
GetLootRollItemInfo(rollId)
GetLootRollItemLink(id)
GetLootRollTimeLeft(rollid)
GetLootSlotInfo(slot) - Returns icon path, item name, and item quantity for the item in the given loot window slot.
GetLootSlotLink(slot) - Returns an itemLink for the item in the given loot window slot.
GetLootSlotType(slot)
GetLootSourceInfo(slot) - Returns information about the source of the objects in a loot slot.
GetLootSpecialization()
GetLootThreshold() - Returns the current loot threshold (for group/master loot)
GetMasterLootCandidate(index) - Returns the name of a player who is eligible to receive loot in master mode.
GetNumLootItems() - Returns amount of objects to loot (number)
GetOptOutOfLoot() - Returns whether the character is currently automatically passing on all loot.
GiveMasterLoot(slot, index)
IsFishingLoot()
IsMasterLooter()
LootMoneyNotify(money, soleLooter)
LootSlotHasItem(slot)
LootSlot(slot) - Used to loot the specified slot.
RollOnLoot(rollId [, roll]) - Roll or pass on a loot event started by the game engine.
SetLootMethod(lootMethod [, masterPlayer or threshold]) - Set the current loot method.
SetLootPortrait()
SetLootSpecialization(specilizationID)
SetLootThreshold(itemQuality) - Set the threshold for group/master loot.
SetOptOutOfLoot(optOut) - Enables or disables automatic passing on all loot.

Macros

Relates to Macros.

NOCOMBAT CreateMacro(name, icon, body, perCharacter, isLocal) - Create a new macro.
DeleteMacro(id or name) - Deletes a macro.
NOCOMBAT EditMacro(index, name, iconIndex, body, isLocal, perCharacter) - Saves a macro.
GetLooseMacroIcons()
GetLooseMacroItemIcons()
GetMacroBody(id or name) - Returns the body (macro text) of a macro.
GetMacroIcons(table) - Returns an array of available macro texture paths (but not icons of items).
GetMacroIndexByName(name) - Returns macro index.
GetMacroInfo(id or name) - Returns "name", "iconTexture", "body", isLocal.
GetMacroItemIcons(table) - Returns an array of available macro texture paths (icons of items).
GetMacroItem()
GetMacroSpell()
GetNumMacros() - Returns the number of macros the user has.
GetRunningMacroButton()
GetRunningMacro()
PROTECTED RunMacro(id or name) - Runs a macro.
PROTECTED RunMacroText(macro) - Interpret the given string as a macro and run it.
SecureCmdOptionParse(command) - Used for evaluating conditionals in macros, returning the appropriate choice.
SetMacroItem(macro, item [, target])
SetMacroSpell(macro, spell [, target])
PROTECTED StopMacro() - Stops the currently executing macro.

Mail

Relates to Mail.

C_Mail.CanCheckInbox() : canCheckInbox, secondsUntilAllowed
C_Mail.HasInboxMoney(inboxIndex) : inboxItemHasMoneyAttached - Returns true if a mail has money attached.
C_Mail.IsCommandPending() : isCommandPending - Returns true if the current mail command is still processing.
AutoLootMailItem(index) - Loot all items from mail message.
CanComplainInboxItem(index) - Determines if we should show the “report spam” button on a mail item.
CheckInbox() - Populate client's inbox with mail from server.
ClearSendMail() - This clears the text in the send mail tab and places the COD item in the inventory.
ClickSendMailItemButton([itemIndex, clearItem]) - Places or picks up an item from the send mail frame.
CloseMail() - Closes the mail window.
ComplainInboxItem(index) - Complains about a particular mail item.
DeleteInboxItem(index) - Deletes the inbox item at index. It returns immediately, it does not seem to wait for the deletion to go through, giving the normal problems with rapid mail removal attempts.
GetCoinIcon(amount)
GetInboxHeaderInfo(index) - Returns information about a message in the inbox.
GetInboxItem(index, itemIndex) - Returns description of the attachment attached to message at (index).
GetInboxItemLink(index, itemIndex) - Returns link of the attachment attached to message at (index).
GetInboxNumItems() - Returns the number of messages in your inbox.
GetInboxText(index) - Returns the message text of message at (index).
GetInboxInvoiceInfo(index) - Returns informations about an auction house invoice.
GetLatestThreeSenders() - Returns the senders of the most recent unread mail.
GetSendMailCOD() - Determine amount of gold entered in COD box in mail frame when mail is sent.
GetSendMailItem(index) - Get information about an item attached on the send mail frame.
GetSendMailItemLink(index) - Get link for an item attached on the send mail frame.
GetSendMailMoney()
GetSendMailPrice() - Gets the cost for sending mail.
HasInboxItem()
HasNewMail() - Returns nil if there is no new mail.
HasSendMailItem(index) - Returns boolean if item is attached to send mail frame in specified slot.
InboxItemCanDelete(index) - Boolean check for whether a message is returnable to the sender.
RespondMailLockSendItem(slot, keepItem) - Confirm item wont be refunded, keepItem boolean.
ReturnInboxItem(index) - Returns to the sender the attached item in the mail message at the specified index.
SCRIPT SendMail(target, subject, body) - If the mailbox is open, this sends mail.
PROTECTED SetSendMailCOD(amount) - Make next mail sent using SendMail() COD target for amount.
PROTECTED SetSendMailMoney(amount) - Add money to next mail sent using SendMail().
SetSendMailShowing()
TakeInboxItem(index, itemIndex) - Take the attached item from the mailbox message at index.
TakeInboxMoney(index) - Take the attached money from the mailbox message at index.
TakeInboxTextItem(index) - Creates a permanent copy of letter (readable "Plain Letter").

Maps

The Map API was reworked in Patch 8.0.1. See also MapUtil functions.

C_Map.CloseWorldMapInteraction()
C_Map.GetAreaInfo(areaID) : name - Returns a map subzone name.
C_Map.GetBestMapForUnit(unitToken) : uiMapID - Returns the current UI map for the given unit. Only works for the player and party members.
C_Map.GetBountySetMaps(bountySetID) : mapIDs - Returns the maps for a bounty.
C_Map.GetFallbackWorldMapID() : uiMapID - Returns the world map id.
C_Map.GetMapArtBackgroundAtlas(uiMapID) : atlasName - Returns the background atlas for a map.
C_Map.GetMapArtHelpTextPosition(uiMapID) : position - Returns the position for the "Click to Zoom In" hint text on flight maps.
C_Map.GetMapArtID(uiMapID) : uiMapArtID - Returns the art for a (phased) map.
C_Map.GetMapArtLayers(uiMapID) : layerInfo - Returns the art layers for a map.
C_Map.GetMapArtLayerTextures(uiMapID, layerIndex) : textures - Returns the art layer textures for a map.
C_Map.GetMapBannersForMap(uiMapID) : mapBanners - Returns the poi banners for a map.
C_Map.GetMapChildrenInfo(uiMapID [, mapType, allDescendants]) : info - Returns information on the sub-maps of the given uiMapID, optionally restricted to a specific "map type", and/or recursive.
C_Map.GetMapDisplayInfo(uiMapID) : hideIcons - Returns whether group member pins should be hidden.
C_Map.GetMapGroupID(uiMapID) : uiMapGroupID - Returns the map group for a map.
C_Map.GetMapGroupMembersInfo(uiMapGroupID) : info - Returns the floors for a map group.
C_Map.GetMapHighlightInfoAtPosition(uiMapID, x, y) : fileDataID, atlasID, texturePercentageX, texturePercentageY, ... - Returns a map highlight pin for a location.
C_Map.GetMapInfo(uiMapID) : info - Returns map information.
C_Map.GetMapInfoAtPosition(uiMapID, x, y) : info - Returns map info for a location on the map.
C_Map.GetMapLevels(uiMapID) : playerMinLevel, playerMaxLevel, petMinLevel, petMaxLevel - Returns the suggested player and battle pet levels for a map.
C_Map.GetMapLinksForMap(uiMapID) : mapLinks - Returns the map pins that link to another map.
C_Map.GetMapPosFromWorldPos(continentID, worldPosition [, overrideUiMapID]) : uiMapID, mapPosition - Translates a world map position to a map position.
C_Map.GetMapRectOnMap(uiMapID, topUiMapID) : minX, maxX, minY, maxY - Returns the map rectangle location for a map on its parent map.
C_Map.GetMapWorldSize(uiMapID) : width, height
C_Map.GetPlayerMapPosition(uiMapID, unitToken) : position - Returns the location of the given unit. Only works for the player and party members.
C_Map.GetWorldPosFromMapPos(uiMapID, mapPosition) : continentID, worldPosition - Translates a world map position to a map position.
C_Map.IsMapValidForNavBarDropDown(uiMapID) : isValid
C_Map.MapHasArt(uiMapID) : hasArt - Returns true if the map has art and can be displayed by the FrameXML.
C_Map.RequestPreloadMap(uiMapID) - Preloads textures for a map.
C_MapExplorationInfo.GetExploredAreaIDsAtPosition(uiMapID, normalizedPosition) : areaID - Returns the explored areas for the location on a map.
C_MapExplorationInfo.GetExploredMapTextures(uiMapID) : overlayInfo - Returns explored map textures for a map.
C_FogOfWar.GetFogOfWarForMap(uiMapID) : fogOfWarID - Returns the fog of war ID for an (Island Expedition) map.
C_FogOfWar.GetFogOfWarInfo(fogOfWarID) : fogOfWarInfo - Returns fog of war info for an (Island Expedition) map.
GetAreaText()
GetMinimapZoneText() - Returns the zone text, that is displayed over the minimap.
GetPlayerFacing() - Returns the direction the player is facing.
GetRealZoneText([mapID]) - Returns either instance name or zone name.
GetSubZoneText() - Returns the subzone text (e.g. "The Canals").
GetZonePVPInfo() - Returns PVP info for the current zone.
GetZoneText() - Returns the zone text (e.g. "Stormwind City").
UnitPosition(unit) - Returns the position of a unit within the current world area.
UI WorldMapFrame:AddDataProvider(dataProvider) - Adds a map data provider.
UI WorldMapFrame:GetMapID() - Returns the currently viewed world map.
UI WorldMapFrame:SetMapID(uiMapID) - Sets the world map.
UI WorldMapFrame:EnumerateAllPins() - Enumerates through all map pins.

Minimap

The Minimap was reworked in Patch 9.0.1

C_Minimap.GetDrawGroundTextures() : draw
C_Minimap.GetUiMapID() : uiMapID
C_Minimap.GetViewRadius() : yards
C_Minimap.IsRotateMinimapIgnored() : isIgnored
C_Minimap.SetDrawGroundTextures(draw)
C_Minimap.SetIgnoreRotateMinimap(ignore)
C_Minimap.ShouldUseHybridMinimap() : shouldUse

Tracking

Relates to Tracking on the minimap.

ClearAllTracking()
GetNumTrackingTypes() - Returns number of available tracking methods.
GetTrackingInfo(id) - Retrieves tracking information from specified id.
SetTracking(id, enabled) - Enables or disables a tracking method.

Points of Interest

C_AreaPoiInfo.GetAreaPOIForMap(uiMapID) : areaPoiIDs - Returns area points of interest for a map.
C_AreaPoiInfo.GetAreaPOIInfo(uiMapID, areaPoiID) : poiInfo - Returns area point of interest info.
C_AreaPoiInfo.GetAreaPOISecondsLeft(areaPoiID) : secondsLeft - Returns the time left for an area poi.
C_AreaPoiInfo.IsAreaPOITimed(areaPoiID) : isTimed - Returns whether an area poi is timed.
GetPOITextureCoords(textureIndex)
SetPOIIconOverlapDistance(index)
SetPOIIconOverlapPushDistance(index)

Vignettes are used for one-time rare mobs and treasure chests.

C_VignetteInfo.FindBestUniqueVignette(vignetteGUIDs) : bestUniqueVignetteIndex
C_VignetteInfo.GetVignetteInfo(vignetteGUID) : vignetteInfo
C_VignetteInfo.GetVignettePosition(vignetteGUID, uiMapID) : vignettePosition
C_VignetteInfo.GetVignettes() : vignetteGUIDs

Waypoints

Tracked waypoints were added in Patch 9.0.1

C_Map.CanSetUserWaypointOnMap(uiMapID) : canSet
C_Map.ClearUserWaypoint()
C_Map.GetUserWaypoint() : point
C_Map.GetUserWaypointFromHyperlink(hyperlink) : point
C_Map.GetUserWaypointHyperlink() : hyperlink
C_Map.GetUserWaypointPositionForMap(uiMapID) : mapPosition
C_Map.HasUserWaypoint() : hasUserWaypoint
C_Map.SetUserWaypoint(point)
C_Navigation.GetDistance() : distance
C_Navigation.GetFrame() : frame
C_Navigation.GetTargetState() : state
C_Navigation.HasValidScreenPosition() : hasValidScreenPosition
C_Navigation.WasClampedToScreen() : wasClamped

Controls what's actively being tracked.

C_SuperTrack.GetHighestPrioritySuperTrackingType() : type
C_SuperTrack.GetSuperTrackedQuestID() : questID
C_SuperTrack.IsSuperTrackingAnything() : isSuperTracking
C_SuperTrack.IsSuperTrackingCorpse() : isSuperTracking
C_SuperTrack.IsSuperTrackingQuest() : isSuperTracking
C_SuperTrack.IsSuperTrackingUserWaypoint() : isSuperTracking
C_SuperTrack.SetSuperTrackedQuestID(questID)
C_SuperTrack.SetSuperTrackedUserWaypoint(superTracked)
C_QuestLog.GetNextWaypoint(questID) : mapID, x, y
C_QuestLog.GetNextWaypointForMap(questID, uiMapID) : x, y
C_QuestLog.GetNextWaypointText(questID) : waypointText

Flight Master

Relates to Flight master taxi services.

C_TaxiMap.GetAllTaxiNodes(uiMapID) : taxiNodes
C_TaxiMap.GetTaxiNodesForMap(uiMapID) : mapTaxiNodes
C_TaxiMap.ShouldMapShowTaxiNodes(uiMapID) : shouldShowNodes
CloseTaxiMap() - Closes the Flightpath Map.
GetNumRoutes(slot) - Gets the number of hops between current-slot and slot.
GetTaxiBenchmarkMode()
GetTaxiMapID()
NumTaxiNodes() - Returns the number of nodes (flight paths) on an open taxi map.
SetTaxiBenchmarkMode()
SetTaxiMap(frame)
TakeTaxiNode(slot) - Takes the named taxi node.
TaxiGetDestX(slot, hop)
TaxiGetDestY(slot, hop)
TaxiGetNodeSlot()
TaxiGetSrcX(slot, hop)
TaxiGetSrcY(slot, hop)
TaxiIsDirectFlight()
TaxiNodeCost(slot) - Returns the cost in copper of a node.
TaxiNodeGetType(slot) - Returns the status of a node.
TaxiNodeName(slot) - Returns the name of a node.
TaxiNodePosition(slot) - Returns position (x,y) of node on the map.
TaxiRequestEarlyLanding()
UnitOnTaxi(unit) - Returns 1 if unit is on a taxi.

Merchants

Vendor

Relates to Vendors.

C_MerchantFrame.GetBuybackItemID(buybackSlotIndex) : buybackItemID
C_MerchantFrame.IsMerchantItemRefundable(index) : refundable
BuyMerchantItem(index [, qty]) - Buys an item from a merchant.
BuybackItem(index) - Buys back a sold item.
CanAffordMerchantItem(index)
CanMerchantRepair() - Returns true if the merchant can repair items.
CloseMerchant() - Closes the merchant window.
ContainerRefundItemPurchase(index, slot [, isEquipped])
GetBuybackItemInfo(index) - Returns information about the buyback item.
GetBuybackItemLink(index) - Returns an itemLink for the buyback item.
GetMerchantCurrencies()
GetMerchantFilter()
GetMerchantItemCostInfo(index) - Returns "alternative currency" information about an item.
GetMerchantItemCostItem(index, itemIndex) - Returns information about an "alternative currency" component of the price for a purchasable item.
GetMerchantItemID(index)
GetMerchantItemInfo(index) - Returns information about the given purchasable item.
GetMerchantItemLink(index) - Returns an itemLink for the given purchasable item.
GetMerchantItemMaxStack(index) - Returns the maximum number of items in a stack.
GetMerchantNumItems() - Returns the number of items the merchant sells.
GetNumBuybackItems() - Returns number of items available for buyback.
GetRepairAllCost()
RepairAllItems([guildBankRepair]) - Repairs all equipped and inventory items.
ResetSetMerchantFilter()
SetMerchantFilter()

Trainer

Relates to Trainers.

BuyTrainerService(index) - Used for buying new/upgrading professions, profession items and class skills.
CloseTrainer() - Closes the trainer window.
GetNumTrainerServices() - Get the number of the trainer services.
GetTrainerGreetingText() - Get the trainer's greeting text.
GetTrainerSelectionIndex() - Get the index of the selected trainer service.
GetTrainerServiceAbilityReq(trainerIndex, reqIndex) - Used for displaying the requirements to learn a new profession, profession skill or class skill.
GetTrainerServiceCost(index) - Returns the cost of a specific trainer service.
GetTrainerServiceDescription(index) - Returns the description of a specific trainer service.
GetTrainerServiceIcon(index) - Returns icon texture for a trainer service.
GetTrainerServiceInfo(index) - Returns information about a trainer service.
GetTrainerServiceItemLink(index) - Returns an item link for a trainer service.
GetTrainerServiceLevelReq(index) - Get the required level to learn the skill.
GetTrainerServiceNumAbilityReq() - Get the maximum number of requirements that GetTrainerServiceAbilityReq has.
GetTrainerServiceSkillLine(index)
GetTrainerServiceSkillReq(index) - Returns a String and Variable for the requirements of a specific trainer service.
GetTrainerServiceStepIndex()
GetTrainerServiceTypeFilter(filter) - Returns the status of a skill filter in the trainer window.
GetTrainerTradeskillRankValues()
IsTradeskillTrainer() - Returns 1 if trainer is for a tradeskill.
OpenTrainer()
SelectTrainerService()
SetTrainerServiceTypeFilter(filter, state) - Sets the status of a skill filter in the trainer window.

Pet Battles

The Pet Battle System was added in Patch 5.0.4. See also Pet Journal functions.

C_PetBattles.AcceptPVPDuel()
C_PetBattles.AcceptQueuedPVPMatch()
C_PetBattles.CanAcceptQueuedPVPMatch()
C_PetBattles.CanActivePetSwapOut()
C_PetBattles.CanPetSwapIn(petIndex)
C_PetBattles.CancelPVPDuel()
C_PetBattles.ChangePet(petIndex)
C_PetBattles.DeclineQueuedPVPMatch()
C_PetBattles.ForfeitGame()
C_PetBattles.GetAbilityEffectInfo(abilityID, turnIndex, effectIndex, effectName)
C_PetBattles.GetAbilityInfoByID(abilityID)
C_PetBattles.GetAbilityInfo(petOwner, petIndex, abilityIndex)
C_PetBattles.GetAbilityProcTurnIndex(abilityID, procType)
C_PetBattles.GetAbilityStateModification(abilityID, stateID)
C_PetBattles.GetAbilityState(petOwner, petIndex, actionIndex)
C_PetBattles.GetActivePet(petOwner)
C_PetBattles.GetAllEffectNames()
C_PetBattles.GetAllStates()
C_PetBattles.GetAttackModifier(petType, enemyPetType)
C_PetBattles.GetAuraInfo(petOwner, petIndex, auraIndex)
C_PetBattles.GetBattleState()
C_PetBattles.GetBreedQuality(petOwner, slot) : quality
C_PetBattles.GetDisplayID(petOwner, petIndex)
C_PetBattles.GetForfeitPenalty()
C_PetBattles.GetHealth(petOwner, petIndex)
C_PetBattles.GetIcon(petOwner, slot) : iconFileID
C_PetBattles.GetLevel(petOwner, petIndex)
C_PetBattles.GetMaxHealth(petOwner, petIndex)
C_PetBattles.GetName(petOwner, slot) : customName, speciesName
C_PetBattles.GetNumAuras(petOwner, petIndex)
C_PetBattles.GetNumPets(petOwner)
C_PetBattles.GetPVPMatchmakingInfo()
C_PetBattles.GetPetSpeciesID(petOwner, petIndex)
C_PetBattles.GetPetType(petOwner, petIndex)
C_PetBattles.GetPlayerTrapAbility()
C_PetBattles.GetPower(petOwner, petIndex)
C_PetBattles.GetSelectedAction()
C_PetBattles.GetSpeed(petOwner, petIndex)
C_PetBattles.GetStateValue(petOwner, petIndex, stateID)
C_PetBattles.GetTurnTimeInfo()
C_PetBattles.GetXP(petOwner, petIndex)
C_PetBattles.IsInBattle()
C_PetBattles.IsPlayerNPC() : isPlayerNPC
C_PetBattles.IsSkipAvailable()
C_PetBattles.IsTrapAvailable()
C_PetBattles.IsWaitingOnOpponent()
C_PetBattles.IsWildBattle() : isWildBattle
C_PetBattles.SetPendingReportBattlePetTarget(petIndex)
C_PetBattles.SetPendingReportTargetFromUnit(unit)
C_PetBattles.ShouldShowPetSelect()
HW C_PetBattles.SkipTurn()
C_PetBattles.StartPVPDuel()
C_PetBattles.StartPVPMatchmaking()
C_PetBattles.StopPVPMatchmaking()
HW C_PetBattles.UseAbility(actionIndex)
HW C_PetBattles.UseTrap()
CanTrackBattlePets() - Returns whether the player can track battle pets.
IsTrackingBattlePets() - Returns whether the player is currently tracking battle pets.
UnitBattlePetLevel()
UnitBattlePetSpeciesID()
UnitBattlePetType()
UnitIsBattlePet(unit)
UnitIsBattlePetCompanion(unit)
UnitIsOtherPlayersBattlePet(unit)
UnitIsWildBattlePet(unit)

Players

C_PlayerInfo.GetAlternateFormInfo() : hasAlternateForm, inAlternateForm
C_PlayerInfo.GetClass(playerLocation) : className, classFilename, classID - Returns the class of a player.
C_PlayerInfo.GetName(playerLocation) : name - Returns the name of a player.
C_PlayerInfo.GetRace(playerLocation) : raceID - Returns the race of a player.
C_PlayerInfo.GetSex(playerLocation) : sex - Returns the sex of a player.
C_PlayerInfo.GUIDIsPlayer(guid) : isPlayer - Returns true if the guid belongs to a player.
C_PlayerInfo.IsConnected([playerLocation]) : isConnected - Returns true if a player is connected.
C_PlayerInfo.UnitIsSameServer(playerLocation) : unitIsSameServer - Returns true if another player is from your own or connected realm.
Ambiguate(fullName, context) - Returns a version of a character-realm string suitable for use in a given context.
GetAutoCompleteResults(text, include, exclude, maxResults [, cursorPosition]) - Returns possible player names matching a given prefix string and specified requirements.
GetPlayerInfoByGUID(guid) - Returns race, class, sex about the guid (client must have seen the guid)
IsRecognizedName(text, includeBitField, excludeBitField) - Returns true if a given character name is recognized by the client.

Inspection

CanInspect(unit [, showError]) - Returns whether you can inspect the specified unit.
CheckInteractDistance(unit, interaction) - Returns whether you're in range to perform various interactions with the specified unit.
ClearInspectPlayer() - Reset inspect data once finished with it.
GetInspectArenaData(bracketIndex)
GetInspectGuildInfo(unit)
GetInspectHonorData() - Returns honor information about the inspected player.
GetInspectRatedBGData()
GetInspectSpecialization(unit) - Returns a number representing the current active specialization of a given unit.
GetInspectTalent()
NotifyInspect(unit) - Requests information about a unit's inventory and talents from the server.
UI InspectUnit(unit) - Instructs FrameXML to inspect a particular unit (query server; show UI).

Trading

Relates to Trading.

HW AcceptTrade() - A pending trade will be accepted.
AddTradeMoney() - Adds the money dropped into the player's trade frame.
BeginTrade()
CancelTrade() - Declines the offer to trade with the other player.
CancelTradeAccept() - Cancels the trade attempt which required an accept.
ClickTargetTradeButton(index)
ClickTradeButton(index) - Equivalent of a mouseclick on the trade window buttons [1-7].
CloseTrade() - Closes the trade.
GetPlayerTradeMoney() - Returns the amount of money the player has in the trade window.
GetTargetTradeMoney() - Returns the amount of money in the trade frame of the target player.
GetTradePlayerItemInfo(id) - Returns information about a trade item.
GetTradePlayerItemLink(id) - Returns an itemLink for the given item in your side of the trade window (if open)
GetTradeTargetItemInfo(id) - Returns information about a trade item.
GetTradeTargetItemLink(id) - Returns an itemLink for the given item in the other player's side of the trade window (if open)
InitiateTrade(UnitId) - Asks the specified unit to trade.
SetTradeMoney(copper) - Sets the amount of money offered as part of the player's trade offer.

Summoning

C_IncomingSummon.HasIncomingSummon(unit) : summon - Returns whether a group member has an incoming summon.
C_IncomingSummon.IncomingSummonStatus(unit) : status - Returns the status of an group member's incoming summon.
C_SummonInfo.CancelSummon() - Rejects a summon request.
C_SummonInfo.ConfirmSummon() - Accepts a summon request.
C_SummonInfo.GetSummonConfirmAreaName() : areaName - Returns the name of the area you're being summoned to.
C_SummonInfo.GetSummonConfirmSummoner() : summoner - Returns the name of the player summoning you.
C_SummonInfo.GetSummonConfirmTimeLeft() : timeLeft - Returns the amount of time left before the pending summon expires.
C_SummonInfo.GetSummonReason() : summonReason
C_SummonInfo.IsSummonSkippingStartExperience() : isSummonSkippingStartExperience
PlayerCanTeleport()

Death

C_DeathInfo.GetCorpseMapPosition(uiMapID) : position - Returns the location of the player's corpse on the map.
C_DeathInfo.GetDeathReleasePosition(uiMapID) : position - Returns the death release location.
C_DeathInfo.GetGraveyardsForMap(uiMapID) : graveyards - Returns graveyard info and location for a map.
C_DeathInfo.GetSelfResurrectOptions() : options - Returns self resurrect options for your character, including from soulstones.
C_DeathInfo.UseSelfResurrectOption(optionType, id) - Uses a soulstone or similar means of self resurrection.
AcceptResurrect() - The player accepts the request from another player to resurrect him/herself.
AcceptXPLoss() - Accept the durability loss to be reborn by a spirit healer. (The name is a remnant from when sprit res was an XP loss instead.)
CannotBeResurrected()
DeathRecap_GetEvents()
DeathRecap_HasEvents()
DeclineResurrect() - Decline the request from another player to resurrect him/herself.
GetCemeteryPreference()
GetCorpseRecoveryDelay() - Time left before a player can accept a resurrection.
GetDeathRecapLink(recapID)
GetReleaseTimeRemaining() - Returns the amount of time left before your ghost is pulled from your body.
GetResSicknessDuration()
HasNoReleaseAura()
IsCemeterySelectionAvailable()
IsEncounterLimitingResurrections()
IsEncounterSuppressingRelease()
NotWhileDeadError() - Generates an error message saying you cannot do that while dead.
PortGraveyard()
RepopMe() - The "Release Spirit" button. Sends you to the graveyard when dead.
ResurrectGetOfferer() - Returns the name of the person offering to resurrect you.
ResurrectHasSickness() - Appears to be used when accepting a resurrection will give you resurrection sickessness.
ResurrectHasTimer() - Does the player have to wait before accepting a resurrection.
RetrieveCorpse() - Resurrects when near corpse. e.g., The "Accept" button one sees after running back to your body.
SetCemeteryPreference(cemeteryID)
TimeoutResurrect()

Professions

Relates to Professions.

C_TradeSkillUI.AnyRecipeCategoriesFiltered()
C_TradeSkillUI.AreAnyInventorySlotsFiltered()
C_TradeSkillUI.CanObliterateCursorItem()
C_TradeSkillUI.CanTradeSkillListLink()
C_TradeSkillUI.ClearInventorySlotFilter()
C_TradeSkillUI.ClearPendingObliterateItem()
C_TradeSkillUI.ClearRecipeCategoryFilter()
C_TradeSkillUI.ClearRecipeSourceTypeFilter()
C_TradeSkillUI.CloseObliterumForge()
C_TradeSkillUI.CloseTradeSkill() - Closes an open trade skill window.
C_TradeSkillUI.CraftRecipe(recipeSpellID [, numCasts, optionalReagents, recipeLevel]) - Performs the tradeskill a specified number of times.
C_TradeSkillUI.DropPendingObliterateItemFromCursor()
C_TradeSkillUI.GetAllFilterableInventorySlots()
C_TradeSkillUI.GetAllProfessionTradeSkillLines() : skillLineID
C_TradeSkillUI.GetAllRecipeIDs() - Returns a table containing all the recipe IDs for the current trade skill.
C_TradeSkillUI.GetCategories()
C_TradeSkillUI.GetCategoryInfo(categoryID [, returnTable])
C_TradeSkillUI.GetFilterableInventorySlots()
C_TradeSkillUI.GetFilteredRecipeIDs()
C_TradeSkillUI.GetObliterateSpellID()
C_TradeSkillUI.GetOnlyShowLearnedRecipes()
C_TradeSkillUI.GetOnlyShowMakeableRecipes()
C_TradeSkillUI.GetOnlyShowSkillUpRecipes()
C_TradeSkillUI.GetOnlyShowUnlearnedRecipes()
C_TradeSkillUI.GetOptionalReagentBonusText(recipeSpellID, optionalReagentIndex, optionalReagents) : bonusText
C_TradeSkillUI.GetOptionalReagentInfo(recipeSpellID) : slots
C_TradeSkillUI.GetPendingObliterateItemID()
C_TradeSkillUI.GetPendingObliterateItemLink()
C_TradeSkillUI.GetRecipeCooldown(recipeID) - Returns the number of seconds left for a skill to cooldown.
C_TradeSkillUI.GetRecipeDescription(recipeID) - Returns the description text of the indicated trade skill.
C_TradeSkillUI.GetRecipeInfo(recipeSpellID [, recipeLevel]) : recipeInfo - Returns information for a recipe.
C_TradeSkillUI.GetRecipeItemLevelFilter()
C_TradeSkillUI.GetRecipeItemLink(recipeID) - Returns the itemLink for a trade skill item.
C_TradeSkillUI.GetRecipeItemNameFilter()
C_TradeSkillUI.GetRecipeLink(recipeID)
C_TradeSkillUI.GetRecipeNumItemsProduced(recipeID) - Gets the number of items made in a single use of a skill.
C_TradeSkillUI.GetRecipeNumReagents(recipeSpellID [, recipeLevel]) : numReagents - Returns the number of distinct reagents needed for the specified recipe.
C_TradeSkillUI.GetRecipeReagentInfo(recipeSpellID, reagentIndex [, recipeLevel]) : reagentName, reagentFileID, reagentCount, playerReagentCount - Returns the information for a reagent needed by a recipe.
C_TradeSkillUI.GetRecipeReagentItemLink(recipeID, reagentIndex) - Returns a link for a reagent needed by a recipe.
C_TradeSkillUI.GetRecipeRepeatCount() : recastTimes - Returns the number of times the current item is being crafted.
C_TradeSkillUI.GetRecipeSourceText(recipeID)
C_TradeSkillUI.GetRecipeTools(recipeID) - Returns information about the tools needed for a tradeskill.
C_TradeSkillUI.GetSubCategories(categoryID)
C_TradeSkillUI.GetTradeSkillDisplayName(skillLineID) : professionDisplayName
C_TradeSkillUI.GetTradeSkillLine() : skillLineID, skillLineDisplayName, skillLineRank, skillLineMaxRank, ... - Returns information about the selected skill line.
C_TradeSkillUI.GetTradeSkillLineForRecipe(recipeID)
C_TradeSkillUI.GetTradeSkillLineInfoByID(skillLineID) : skillLineDisplayName, skillLineRank, skillLineMaxRank, skillLineModifier, ...
C_TradeSkillUI.GetTradeSkillListLink() - Returns the TradeSkillLink for a trade skill.
C_TradeSkillUI.GetTradeSkillTexture(tradeSkillID)
C_TradeSkillUI.IsAnyRecipeFromSource(sourceType)
C_TradeSkillUI.IsDataSourceChanging()
C_TradeSkillUI.IsEmptySkillLineCategory(categoryID) : effectivelyKnown
C_TradeSkillUI.IsInventorySlotFiltered(index)
C_TradeSkillUI.IsNPCCrafting() - Checks if the Trade Skill UI is open for crafting by an NPC.
C_TradeSkillUI.IsRecipeCategoryFiltered(categoryID [, subCategoryID])
C_TradeSkillUI.IsRecipeFavorite(recipeID)
C_TradeSkillUI.IsRecipeRepeating()
C_TradeSkillUI.IsRecipeSearchInProgress()
C_TradeSkillUI.IsRecipeSourceTypeFiltered(sourceType)
C_TradeSkillUI.IsTradeSkillGuild() - Checks if the Trade Skill UI is open for a profession in the guild.
C_TradeSkillUI.IsTradeSkillGuildMember()
C_TradeSkillUI.IsTradeSkillLinked() - Checks if the Trade Skill UI is open for a profession linked by another character.
C_TradeSkillUI.IsTradeSkillReady()
C_TradeSkillUI.ObliterateItem()
C_TradeSkillUI.OpenTradeSkill(tradeSkillID)
C_TradeSkillUI.SetInventorySlotFilter(index [, enable, exclusive])
C_TradeSkillUI.SetOnlyShowLearnedRecipes()
C_TradeSkillUI.SetOnlyShowMakeableRecipes(onlyMakable) - Controls whether only recipes you have the reagents to craft are shown.
C_TradeSkillUI.SetOnlyShowSkillUpRecipes()
C_TradeSkillUI.SetOnlyShowUnlearnedRecipes()
C_TradeSkillUI.SetRecipeCategoryFilter(categoryID [, subCategoryID])
C_TradeSkillUI.SetRecipeFavorite(recipeID, favorite)
C_TradeSkillUI.SetRecipeItemLevelFilter(minLevel, maxLevel)
C_TradeSkillUI.SetRecipeItemNameFilter()
C_TradeSkillUI.SetRecipeRepeatCount(recipeSpellID [, numCasts, optionalReagents])
C_TradeSkillUI.SetRecipeSourceTypeFilter(sourceType, filtered)
C_TradeSkillUI.StopRecipeRepeat() - Stops creating additional queued items.
AbandonSkill(index) - The player abandons a skill.
GetProfessionInfo(index) - Gets details on a profession from its index including name, icon, and skill level.
GetProfessions() - Gives all of the current character's professions.
GetSpellRank(recipeID) - Returns recipe rank.

Archaeology

Archaeology was added in Patch 4.0.1

C_ResearchInfo.GetDigSitesForMap(uiMapID) : digSites - Returns the dig sites on a map.
ArchaeologyMapUpdateAll() - Updates the digsites and returns the number of digsites in the current map-zone.
ArchaeologyGetIconInfo(index)
ArcheologyGetVisibleBlobID(index) - Returns BlobID of a digsite in the current map-zone.
CanItemBeSocketedToArtifact(itemID) - Returns 1 if item could be added to the selected artifact.
CanScanResearchSite() - Returns whether the player is currently on a digsite.
CanSolveArtifact() - Returns true if artifact can be solved.
CloseResearch()
GetActiveArtifactByRace(raceIndex) - Returns the information for the active artifact of raceIndex.
GetArchaeologyInfo() - Returns localized name of Archaeology skill.
GetArchaeologyRaceInfo(raceIndex) - Returns the information for a specific race used in Archaeology.
GetArchaeologyRaceInfoByID(researchBranchID) - Returns Racename and texture.
GetArtifactInfoByRace(raceIndex, artifactIndex) - Returns the information for a specific race's artifact.
GetNumArchaeologyRaces() - Returns the amount of Archaeology races in the game.
GetNumArtifactsByRace(raceIndex) - Returns the amount of artifacts the player has acquired from the provided race.
GetSelectedArtifactInfo() - Returns the information for the selected race.
GetArtifactProgress() - Returns fragment-information about the selected artifact.
IsArtifactCompletionHistoryAvailable()
ItemAddedToArtifact(keystoneindex) - Returns if there is a keystone in the artifact.
SetSelectedArtifact(raceIndex) - Sets the selected artifact to raceIndex.
RemoveItemFromArtifact() - Remove a keystone from the selected artifact.
RequestArtifactCompletionHistory()
SocketItemToArtifact() - Add a keystone to the selected artifact.
SolveArtifact() - Solve the selected artifact.

Glyphs

Glyphs were added in Patch 3.0.2. After the Glyph interface was removed in Patch 7.0.3 they were streamlined into the Spellbook.

AttachGlyphToSpell(spellID)
GetCurrentGlyphNameForSpell(spellID)
GetPendingGlyphName()
HasAttachedGlyph(spellID)
HasPendingGlyphCast()
IsCastingGlyph()
IsPendingGlyphRemoval()
IsSpellValidForPendingGlyph(spellID)

Item Socketing

The following were added along with socketed items and gems in Patch 2.0. ID refers to a 1-based index of the sockets in the item being considered for socketing.

C_ItemSocketInfo.CompleteSocketing() - Completes socketing an item, binding it to the player.
AcceptSockets() - Sockets tentative gems into the sockets, replacing existing gems if necessary.
CloseSocketInfo() - Stops considering the item for socketing, without applying changes.
GetExistingSocketInfo(id) - Returns information about the existing gem in the socket.
GetExistingSocketLink(id) - Returns an item link for the existing gem in the socket.
GetNewSocketInfo(id) - Returns information about the new (tentative) gem in the socket.
GetNewSocketLink(id) - Returns an item link for the new (tentative) gem in the socket.
GetNumSockets() - Returns the number of sockets in the item currently being socketed.
GetSocketItemBoundTradeable() - Returns whether the item currently being socketed is temporarily tradable (BoP boss loot).
GetSocketItemInfo() - Returns information about the item currently being socketed.
GetSocketItemRefundable() - Returns whether the item currently being socketed is refundable.
GetSocketTypes(id) - Returns the type (color) of a socket in the item.
HasBoundGemProposed()
SocketContainerItem(bag, slot) - Consider an item in a container slot for socketing.
SocketInventoryItem(slot) - Considers the item in the inventory slot for socketing.

PvP

Relates to Player vs. Player.

C_PvP.CanDisplayDeaths() : canDisplay
C_PvP.CanDisplayHonorableKills() : canDisplay
C_PvP.CanPlayerUseRatedPVPUI() : canUse, failureReason
C_PvP.DoesMatchOutcomeAffectRating() : doesAffect
C_PvP.GetActiveMatchBracket() : bracket
C_PvP.GetActiveMatchDuration() : seconds
C_PvP.GetActiveMatchState() : state
C_PvP.GetActiveMatchWinner() : winner
C_PvP.GetGlobalPvpScalingInfoForSpecID(specializationID) : pvpScalingData
C_PvP.GetHonorRewardInfo(honorLevel) : info
C_PvP.GetMatchPVPStatColumn(pvpStatID) : info
C_PvP.GetMatchPVPStatColumns() : columns
C_PvP.GetNextHonorLevelForReward(honorLevel) : nextHonorLevelWithReward
C_PvP.GetOutdoorPvPWaitTime(uiMapID) : pvpWaitTime - Returns the number of seconds until the next battle in a given world PvP zone.
C_PvP.GetPostMatchCurrencyRewards() : rewards
C_PvP.GetPostMatchItemRewards() : rewards
C_PvP.GetPVPActiveMatchPersonalRatedInfo() : info
C_PvP.GetPvpTierID(tierEnum, bracketEnum) : id
C_PvP.GetPvpTierInfo(tierID) : pvpTierInfo
C_PvP.GetRewardItemLevelsByTierEnum(pvpTierEnum) : activityItemLevel, weeklyItemLevel
C_PvP.GetScoreInfo(offsetIndex) : info
C_PvP.GetScoreInfoByPlayerGuid(guid) : info
C_PvP.GetSeasonBestInfo() : tierID, nextTierID
C_PvP.GetSkirmishInfo(pvpBracket) : battlemasterListInfo
C_PvP.GetSpecialEventDetails() : info
C_PvP.GetSpecialEventInfo() : info
C_PvP.GetTeamInfo(factionIndex) : info
C_PvP.GetWeeklyChestInfo() : rewardAchieved, lastWeekRewardAchieved, lastWeekRewardClaimed, ...
C_PvP.IsActiveMatchRegistered() : registered
C_PvP.IsMatchFactional() : isFactional
C_PvP.IsPVPMap() : isPVPMap
C_PvP.IsRatedMap() : isRatedMap
C_PvP.RequestCrowdControlSpell(playerToken)
AcceptDuel() - The player accepts the challenge to duel.
CancelDuel() - Refuse the invitation to fight a duel.
ClearBattlemaster()
ForfeitDuel()
GetPVPDesired() - Returns whether the player has permanently turned on their PvP flag.
GetPVPLifetimeStats() - Get your PvP/Honor statistics for your lifetime.
GetPVPRoles()
GetPVPSessionStats() - Get your PvP/Honor statistics for this session.
GetPVPTimer() - Returns the amount of time until your PvP flag fades.
GetPVPYesterdayStats() - Get your PvP/Honor statistics for yesterday.
GetRewardPackArtifactPower(rewardPackID)
GetRewardPackCurrencies(rewardPackID)
GetRewardPackItems(rewardPackID)
GetRewardPackMoney(rewardPackID)
GetRewardPackTitleName(titleID)
GetRewardPackTitle(rewardPackID)
IsCompetitiveModeEnabled()
IsInActiveWorldPVP()
IsPartyWorldPVP()
IsSubZonePVPPOI()
PlayerIsPVPInactive(unit)
RequestPVPOptionsEnabled()
RequestPVPRewards()
SetPVP(enable) - Sets the players PVP mode (1 to enable, nil to toggle off eventually).
SetPVPRoles()
SortBGList()
StartDuel(name) - Challenge someone to a duel (by name)
TogglePVP() - Toggles PVP status.
UnitHonor(unit) - Returns the amount of honor the unit has for the current rank.
UnitHonorLevel(unit) - Returns the current honor rank for the unit.
UnitHonorMax(unit) - Returns the maximum amount of honor for the current rank.
UnitIsMercenary()
UnitIsPVPFreeForAll(unit) - Returns true if the specified unit is flagged for free-for-all PVP, false otherwise.
UnitIsPVPSanctuary(unit) - Returns whether the unit is in a PvP sanctuary, and therefore cannot be attacked by other players.
UnitIsPVP(unit) - Returns true if the specified unit is flagged for PVP, false otherwise.
UnitPVPName(unit) - Returns unit's name with PvP rank prefix (e.g., "Corporal Allianceguy").
UnitPvpClassification(unit) : classification - Returns whether the unit is a flag/orb carrier or cart runner.

Arena

C_PvP.GetArenaCrowdControlInfo(playerToken) : spellID, startTime, duration
C_PvP.GetArenaRewards(teamSize) : honor, experience, itemRewards, currencyRewards
C_PvP.GetArenaSkirmishRewards() : honor, experience, itemRewards, currencyRewards
C_PvP.HasArenaSkirmishWinToday() : hasArenaSkirmishWinToday
C_PvP.IsArena() : isArena
C_PvP.IsMatchConsideredArena() : asArena
C_PvP.IsRatedArena() : isRatedArena
CanSurrenderArena()
GetArenaOpponentSpec()
GetBattlefieldArenaFaction()
GetBattlefieldTeamInfo(index) - Gets info about a registered Arena Team at the end of an arena match.
GetCurrentArenaSeason() - Gets the current Arena season.
GetMaxArenaCurrency()
GetNumArenaOpponents()
GetNumArenaOpponentSpecs()
GetPreviousArenaSeason() - Gets the previous Arena season.
IsActiveBattlefieldArena() - Returns true if in an Arena Match, also Returns true for the second argument if it's a registered match.
IsArenaSkirmish()
IsArenaTeamCaptain(teamIndex) - Returns a value based on whether the player is the arena team captain.
IsInArenaTeam() - Returns true if you are a member of an arena team.
JoinArena()
JoinSkirmish(arenaID, joinAsGroup) - Queue for a arena either solo or as a group.
RequeueSkirmish() - Requeues for an arena skirmish.
SurrenderArena()

Battlegrounds

C_PvP.GetLevelUpBattlegrounds(level) : battlefields
C_PvP.GetRandomBGInfo() : info
C_PvP.GetRandomBGRewards() : honor, experience, itemRewards, currencyRewards
C_PvP.GetRandomEpicBGInfo() : info
C_PvP.GetRandomEpicBGRewards() : honor, experience, itemRewards, currencyRewards
C_PvP.GetRatedBGRewards() : honor, experience, itemRewards, currencyRewards
C_PvP.IsBattleground() : isBattleground
C_PvP.IsBattlegroundEnlistmentBonusActive() : battlegroundActive, brawlActive
C_PvP.IsRatedBattleground() : isRatedBattleground
AcceptAreaSpiritHeal() - Accept a spirit heal.
AcceptBattlefieldPort(index [, acceptFlag]) - Accept or reject an offered battlefield port.
BattlefieldSetPendingReportTarget(index)
CanJoinBattlefieldAsGroup() - Returns nil if the player can not do a group join for a battlefield.
CancelAreaSpiritHeal() - Cancel a spirit heal.
CheckSpiritHealerDist() - Returns true if you are in range with spirit healer while dead.
GetAreaSpiritHealerTime() - Returns the time left until the next resurrection by the Sprit Guide.
GetBattlefieldEstimatedWaitTime(index) - Get the estimated wait for entry into the battlefield.
GetBattlefieldFlagPosition(index) - Get the map position and texture of the flag.
GetBattlefieldInstanceExpiration() - Get shutdown timer for the battlefield instance.
GetBattlefieldInstanceRunTime() - In milliseconds, the time since battleground started (seems to be queried from server because it is not in sync with time()).
GetBattlefieldMapIconScale() - Scale of the landmark icons on the battlefield minimap.
GetBattlefieldPortExpiration(index) - Get the remaining seconds before the battlefield port expires.
GetBattlefieldScore(index) - Get score information about a player.
GetBattlefieldStatData(playerIndex, slotIndex) - Get information for a player from a column thats specific to a battleground (like Warsong Gulch flag captures).
GetBattlefieldStatus(index) - Get the battlefield's current status.
GetBattlefieldTimeWaited(index) - Get time waited in queue in milliseconds.
GetBattlefieldWinner() - Get the battlefields winner.
GetBattlegroundInfo(index) - Returns information about a battleground type.
GetBattlegroundPoints()
GetMaxBattlefieldID() - Returns the max number of battlefields you can queue for.
GetNumBattlefieldFlagPositions() - Get the number of flag positions available from GetBattlefieldFlagPosition().
GetNumBattlefieldScores() - Returns the number of scores(players) listed in the battlefield scoreboard.
GetNumBattlegroundTypes()
GetPersonalRatedInfo(bracketIndex)
GetRatedBattleGroundInfo()
IsPVPTimerRunning()
PROTECTED JoinBattlefield(index [, joinAs]) - Queue for a battleground either solo or as a group.
PROTECTED JoinRatedBattlefield()
LeaveBattlefield() - Leave the current battlefield.
ReportPlayerIsPVPAFK(unit) - Reports the specified player as AFK in a battleground.
RequestBattlefieldScoreData() - Request new data for GetBattlefieldScore().
RequestRandomBattlegroundInstanceInfo()
RequestRatedInfo()
SetBattlefieldScoreFaction([faction]) - Set the faction to show on the battlefield scoreboard.
SortBattlefieldScoreData(type)
UnitInBattleground(unit) - Returns the unit index if the unit is in your battleground, nil otherwise.

World Battlefields

The following functions are used for population-limited world PvP zones, like Lake Wintergrasp or Tol Barad.

C_PvP.IsActiveBattlefield() : isActiveBattlefield
BattlefieldMgrEntryInviteResponse(queueId, accept)
BattlefieldMgrExitRequest(queueId)
BattlefieldMgrQueueInviteResponse(queueId, accept)
BattlefieldMgrQueueRequest()
CanHearthAndResurrectFromArea() - Returns whether you can currently be resurrected and teleported out of the world PvP zone.
HearthAndResurrectFromArea() - Resurrects the player, and ports them out of the world PvP zone.
GetNumWorldPVPAreas() - Returns the number of world PvP zones available.
GetWorldPVPAreaInfo(index) - Returns information about a world PvP zone.
GetWorldPVPQueueStatus(queueId)

Brawl

C_PvP.GetActiveBrawlInfo() : brawlInfo
C_PvP.GetAvailableBrawlInfo() : brawlInfo
C_PvP.GetBrawlRewards(brawlType) : honor, experience, itemRewards, currencyRewards, hasWon
C_PvP.IsInBrawl() : isInBrawl
C_PvP.JoinBrawl()

War Games

War Games were added in Patch 4.0.1

CanInitiateWarGame()
CollapseWarGameHeader(index)
ExpandWarGameHeader(index)
GetNumWarGameTypes()
GetSelectedWarGameType()
GetWarGameQueueStatus()
GetWarGameTypeInfo(index)
IsWargame()
SetSelectedWarGameType(index)
StartSpectatorWarGame(target1, target2, size, area, isTournamentMode)
StartWarGameByName(msg) - Starts a War Game. Parameters are playername, area, isTournamentMode but passed as a whitespace delimited string.
StartWarGame(target, name [, isTournament])
UpdateWarGamesList()
WarGameRespond(accept)

War Mode

War Mode was added in Patch 8.0.1

C_PvP.CanToggleWarMode(toggle) : canTogglePvP
C_PvP.CanToggleWarModeInArea() : canTogglePvPInArea
C_PvP.GetWarModeRewardBonus() : rewardBonus
C_PvP.GetWarModeRewardBonusDefault() : defaultBonus
C_PvP.IsWarModeActive() : warModeActive
C_PvP.IsWarModeDesired() : warModeDesired
C_PvP.IsWarModeFeatureEnabled() : warModeEnabled
C_PvP.SetWarModeDesired(warModeDesired)
C_PvP.ToggleWarMode()

Quests

Relates to Quests.

C_QuestLine.GetAvailableQuestLines(uiMapID) : questLines
C_QuestLine.GetQuestLineInfo(questID, uiMapID) : questLineInfo
C_QuestLine.GetQuestLineQuests(questLineID) : questIDs
C_QuestLine.IsComplete(questLineID) : isComplete
C_QuestLine.RequestQuestLinesForMap(uiMapID)
AcknowledgeAutoAcceptQuest()
AddAutoQuestPopUp(QuestID, Type) - Adds quest to an internal list of quests for offer/completion popup notification.
ClearAutoAcceptQuestSound()
CollapseQuestHeader() - Collapses a quest header.
ConfirmAcceptQuest() - Accepts an offered quest that has been started by a party member; usually escort quests. (Might only be available after QUEST_ACCEPT_CONFIRM event.)
ExpandQuestHeader() - Expands a quest header.
GetAutoQuestPopUp(Index) - Retrieves quest info by index that added using AddAutoQuestPopUp.
GetCriteriaSpell()
GetDailyQuestsCompleted() - Returns the current number of daily quests completed today.
GetMaxRewardCurrencies()
GetNumAutoQuestPopUps() - Retrieves number of quests added via AddAutoQuestPopUp.
GetNumQuestCurrencies()
GetNumQuestItemDrops()
GetNumQuestItems() - Returns the number of items necessary to complete a particular quest.
GetNumQuestLeaderBoards([questIndex]) - Returns the number of available quest objectives.
GetNumQuestPOIWorldEffects()
GetQuestBackgroundMaterial() - Returns the material string associated with the particular quest.
GetQuestCurrencyID(type, index)
GetQuestCurrencyInfo(type, index)
GetQuestExpansion(questID)
GetQuestFactionGroup(questID)
GetQuestLink(index) - Returns a QuestLink for a quest.
GetQuestObjectiveInfo(questID, index, displayComplete)
GetQuestPOIBlobCount(questID)
GetQuestPOILeaderBoard(index)
GetQuestPOIs()
GetQuestProgressBarPercent(questID)
GetQuestResetTime() - Returns number of seconds until quest reset.
GetQuestReward(rewardIndex) - Completes the quest with the specified quest reward.
GetQuestSortIndex(questIndex)
GetQuestSpellLink(rewardSpellIndex)
GetQuestUiMapID(questID)
GetSuggestedGroupSize()
HaveQuestData(questID)
HaveQuestRewardData(questID)
IsBreadcrumbQuest(questID)
IsCurrentQuestFailed()
IsQuestCompletable() - Returns true if a quest is possible to complete.
IsQuestIDValidSpellTarget(questID)
IsQuestItemHidden(index)
IsQuestSequenced(questID)
IsStoryQuest(questID)
IsTrackingHiddenQuests()
PlayAutoAcceptQuestSound()
QuestChooseRewardError() - Throws an error when the quest choose reward method doesn't work.
QuestFlagsPVP() - Determine if the quest will flag you you for PvP when accepted.
QuestGetAutoAccept() - Returns whether the last-offered quest was automatically accepted.
QuestGetAutoLaunched()
QuestHasPOIInfo(questID)
QuestIsDaily() - Returns whether the offered quest is a daily quest.
QuestIsFromAreaTrigger()
QuestIsWeekly() - Returns whether the offered quest is a weekly quest.
QuestMapUpdateAllQuests()
QuestPOIGetIconInfo(questID)
QuestPOIGetSecondaryLocations(questID [, table])
QuestPOIUpdateIcons()
RemoveAutoQuestPopUp()
ShowQuestComplete(index)
ShowQuestOffer(index)
SortQuests()
SortQuestSortTypes()
UnitQuestTrivialLevelRangeScaling(unit) : levelRange
UI PVPGetConquestLevelInfo()
UI QuestUtils_GetQuestName() - Returns the name for a quest ID.

Quest Log

C_QuestLog.AbandonQuest() - Abandon the specified quest.
C_QuestLog.AddQuestWatch(questID [, watchType]) : wasWatched - Add a quest to the watch list.
C_QuestLog.AddWorldQuestWatch(questID [, watchType]) : wasWatched - Adds a world quest to the watch list.
C_QuestLog.CanAbandonQuest(questID) : canAbandon
C_QuestLog.GetAbandonQuest() : questID - Returns the ID of the quest being abandoned.
C_QuestLog.GetAbandonQuestItems() : itemIDs
C_QuestLog.GetActiveThreatMaps() : uiMapIDs
C_QuestLog.GetAllCompletedQuestIDs() : quests - Returns all completed quests for a character.
C_QuestLog.GetBountiesForMapID(uiMapID) : bounties
C_QuestLog.GetBountySetInfoForMapID(uiMapID) : displayLocation, lockQuestID, bountySetID
C_QuestLog.GetDistanceSqToQuest(questID) : distanceSq, onContinent
C_QuestLog.GetInfo(questLogIndex) : info - Returns information about a quest in the player's quest log.
C_QuestLog.GetLogIndexForQuestID(questID) : questLogIndex - Returns the index of the specified questID in the quest log.
C_QuestLog.GetMapForQuestPOIs() : uiMapID
C_QuestLog.GetMaxNumQuests() : maxNumQuests - This is the maximum number of quests a player can be on, including hidden quests, world quests, emissaries etc
C_QuestLog.GetMaxNumQuestsCanAccept() : maxNumQuestsCanAccept - This is the maximum number of standard quests a player can accept. These are quests that are normally visible in the quest log.
C_QuestLog.GetNumQuestLogEntries() : numShownEntries, numQuests - Returns the number of entries in the quest log.
C_QuestLog.GetNumQuestObjectives(questID) : leaderboardCount
C_QuestLog.GetNumQuestWatches() : numQuestWatches - Returns the number of quest watches active.
C_QuestLog.GetNumWorldQuestWatches() : numQuestWatches
C_QuestLog.GetQuestAdditionalHighlights(questID) : uiMapID, worldQuests, worldQuestsElite, dungeons, treasures
C_QuestLog.GetQuestDetailsTheme(questID) : theme
C_QuestLog.GetQuestDifficultyLevel(questID) : level
C_QuestLog.GetQuestIDForLogIndex(questLogIndex) : questID
C_QuestLog.GetQuestIDForQuestWatchIndex(questWatchIndex) : questID
C_QuestLog.GetQuestIDForWorldQuestWatchIndex(questWatchIndex) : questID
C_QuestLog.GetQuestLogPortraitGiver([questLogIndex]) : portraitGiver, portraitGiverText, portraitGiverName, portraitGiverMount, ...
C_QuestLog.GetQuestObjectives(questID) : objectives - Returns information about objective status for a quest.
C_QuestLog.GetQuestsOnMap(uiMapID) : quests
C_QuestLog.GetQuestTagInfo(questID) : info - Returns tag information about the specified quest.
C_QuestLog.GetQuestType(questID) : questType
C_QuestLog.GetQuestWatchType(questID) : watchType
C_QuestLog.GetRequiredMoney([questID]) : requiredMoney - Returns amount of money required for quest completion from quest log.
C_QuestLog.GetSelectedQuest() : questID - Returns a number associated with the QuestLogSelection index.
C_QuestLog.GetSuggestedGroupSize(questID) : suggestedGroupSize - Returns suggested number of players for quest selected currently in log or 0 if there's no suggestion.
C_QuestLog.GetTimeAllowed(questID) : totalTime, elapsedTime - Returns the time available to complete a quest.
C_QuestLog.GetTitleForLogIndex(questLogIndex) : title
C_QuestLog.GetTitleForQuestID(questID) : title - Returns the name for a Quest ID.
C_QuestLog.GetZoneStoryInfo(uiMapID) : achievementID, storyMapID
C_QuestLog.HasActiveThreats() : hasActiveThreats
C_QuestLog.IsAccountQuest(questID) : isAccountQuest
C_QuestLog.IsComplete(questID) : isComplete
C_QuestLog.IsFailed(questID) : isFailed
C_QuestLog.IsLegendaryQuest(questID) : isLegendaryQuest
C_QuestLog.IsOnMap(questID) : onMap, hasLocalPOI
C_QuestLog.IsOnQuest(questID) : isOnQuest
C_QuestLog.IsPushableQuest(questID) : isPushable - Returns true if the currently loaded quest in the quest window can be shared.
C_QuestLog.IsQuestBounty(questID) : isBounty
C_QuestLog.IsQuestCalling(questID) : isCalling
C_QuestLog.IsQuestCriteriaForBounty(questID, bountyQuestID) : isCriteriaForBounty
C_QuestLog.IsQuestFlaggedCompleted(questID) : isCompleted - Returns if a quest has been completed.
C_QuestLog.IsQuestInvasion(questID) : isInvasion
C_QuestLog.IsQuestTrivial(questID) : isTrivial
C_QuestLog.IsRepeatableQuest(questID) : isRepeatable
C_QuestLog.IsThreatQuest(questID) : isThreat
C_QuestLog.IsUnitOnQuest(unit, questID) : isOnQuest - Determine if the specified unit is on the given quest.
C_QuestLog.QuestCanHaveWarModeBonus(questID) : hasBonus
C_QuestLog.QuestHasWarModeBonus(questID) : hasBonus
C_QuestLog.ReadyForTurnIn(questID) : readyForTurnIn
C_QuestLog.RemoveQuestWatch(questID) : wasRemoved - Removes a quest watch.
C_QuestLog.RemoveWorldQuestWatch(questID) : wasRemoved - Removes a world quest from the watch.
C_QuestLog.RequestLoadQuestByID(questID)
C_QuestLog.SetAbandonQuest() - Called before AbandonQuest.
C_QuestLog.SetMapForQuestPOIs(uiMapID)
C_QuestLog.SetSelectedQuest(questID) - Sets the selected quest, required for most GetQuest functions.
C_QuestLog.ShouldDisplayTimeRemaining(questID) : displayTimeRemaining
C_QuestLog.ShouldShowQuestRewards(questID) : shouldShow
C_QuestLog.SortQuestWatches() - Sorts watched quests by proximity to the player character.
C_PlayerInfo.GetContentDifficultyQuestForPlayer(questID) : difficulty
GetNumQuestLogChoices() - Returns the number of options someone has when getting a quest item.
GetNumQuestLogRewardCurrencies()
GetNumQuestLogRewardFactions()
GetNumQuestLogRewards() - Returns the count of the rewards for a particular quest. (7.0.3)
GetNumQuestLogRewardSpells() - Returns the number of spell rewards for the current selected quest.
GetNumTreasurePickerItems()
GetQuestLogChoiceInfoLootType(index)
GetQuestLogCompletionText()
GetQuestLogCriteriaSpell()
GetQuestLogItemDrop(index)
GetQuestLogItemLink(type, index) - Returns item link for selected quest reward/choice/required item from quest log.
GetQuestLogLeaderBoard(ldrIndex [, questIndex]) - Gets information about the objectives for a quest.
GetQuestLogPortraitTurnIn()
GetQuestLogQuestText() - Returns the description and objectives required for the specified quest.
GetQuestLogQuestType()
GetQuestLogRewardArtifactXP()
GetQuestLogRewardCurrencyInfo(index [, questID])
GetQuestLogRewardFactionInfo(questIndex)
GetQuestLogRewardHonor()
GetQuestLogRewardInfo() - Returns a pile of reward item info from the quest log.
GetQuestLogRewardMoney() - Returns a number representing the amount of copper returned by a particular quest.
GetQuestLogRewardSkillPoints()
GetQuestLogRewardSpell() - Returns name and texture of spell awarded for quest completion from quest log.
GetQuestLogRewardTitle()
GetQuestLogRewardXP()
GetQuestLogSpecialItemCooldown(index)
GetQuestLogSpecialItemInfo(index)
GetQuestLogSpellLink(rewardSpellIndex)
GetQuestLogTimeLeft() - Returns the seconds remaining on the current quest timer.
GetTreasurePickerItemInfo(index [, questID])
IsQuestLogSpecialItemInRange(index [, target])
ProcessQuestLogRewardFactions()
QuestLogPushQuest() - Initiates the sharing of the currently viewed quest in the quest log.
QuestLogRewardHasTreasurePicker()
QuestLogShouldShowPortrait()
UseQuestLogSpecialItem(index)

Gossip

Gossip refers to interaction with an NPC.

C_GossipInfo.CloseGossip() - Dismiss the gossip window.
C_GossipInfo.ForceGossip() : forceGossip - Returns whether the gossip text must be displayed.
C_GossipInfo.GetActiveQuests() : info - Retrieves a list of quests which can be turned in on the NPC you are talking to.
C_GossipInfo.GetAvailableQuests() : info - Retrieves a list of the available quests on the NPC you are talking to.
C_GossipInfo.GetCustomGossipDescriptionString() : description
C_GossipInfo.GetNumActiveQuests() : numQuests - Returns the number of active quests that you should eventually turn in to this NPC.
C_GossipInfo.GetNumAvailableQuests() : numQuests - Returns the number of quests (that you are not already on) offered by this NPC.
C_GossipInfo.GetNumOptions() : numOptions - Returns the number of conversation options available with this NPC.
C_GossipInfo.GetOptions() : info - Retrieves a list of the available gossip items on the NPC you are talking to.
C_GossipInfo.GetPoiForUiMapID(uiMapID) : gossipPoiID - Returns gossip poi for a map.
C_GossipInfo.GetPoiInfo(uiMapID, gossipPoiID) : gossipPoiInfo - Returns gossip poi info.
C_GossipInfo.GetText() : gossipText - Retrieves the gossip text.
C_GossipInfo.RefreshOptions()
C_GossipInfo.SelectActiveQuest(index) - Selects an active quest.
C_GossipInfo.SelectAvailableQuest(index) - Selects an available quest.
C_GossipInfo.SelectOption(index [, text, confirmed]) - Selects a gossip (conversation) option.
AcceptQuest() - Accept the specified quest.
CloseQuest() - Closes the shown quest.
CompleteQuest() - Complete the specified quest.
DeclineQuest() - Declines the currently offered quest.
GetActiveLevel(index) - Gets the level of an active quest (only available after QUEST_GREETING event).
GetActiveQuestID(index)
GetActiveTitle(index) - Gets the title of an active quest (only available after QUEST_GREETING event).
GetAvailableLevel(index) - Gets the level of an available quest (only available after QUEST_GREETING event).
GetAvailableQuestInfo(index) - Returns metadata (quest type) about an available quest.
GetAvailableTitle(index) - Gets the title of an available quest (only available after QUEST_GREETING event).
GetGreetingText()
GetNumActiveQuests() - Gets the number of currently active quests from this NPC (only available after QUEST_GREETING event).
GetNumAvailableQuests() - Gets the number of currently available quests from this NPC (only available after QUEST_GREETING event).
GetNumQuestRewards() - Returns number of reward items (those that you always get) for quest currently in gossip window.
GetNumRewardCurrencies()
GetNumRewardSpells()
GetObjectiveText() - Gets the objective of the current quest.
GetProgressText() - Returns quest progress text, displayed by the NPC before the player pressed "Continue".
GetQuestID() - Returns the ID of the quest most recently displayed in a gossip frame, even after that frame is closed.
GetQuestItemInfo() - Returns basic information about the reward/choice/required item for quest currently in gossip window.
GetQuestItemInfoLootType(type, index)
GetQuestItemLink(type, index) - Returns an itemLink for a selected quest reward/choice/required item for quest currently in gossip window.
GetQuestMoneyToGet() - Returns amount of money required for quest currently displayed in gossip.
GetQuestPortraitGiver()
GetQuestPortraitTurnIn()
GetQuestText() - Gets the description of the current quest.
GetRewardArtifactXP()
GetRewardHonor()
GetRewardMoney() - Returns a amount of copper rewarded for completion of quest displayed in gossip.
GetRewardNumSkillUps()
GetRewardSkillLineID()
GetRewardSkillPoints()
GetRewardSpell() - Returns name and texture of spell awarded for quest completion for quest currently in gossip window.
GetRewardText() - Returns quest reward text, displayed by the NPC before the player hits "Complete Quest".
GetRewardTitle() - Returns the title awarded by the currently displayed quest.
GetRewardXP() - Returns the amount of experience awarded by the currently displayed text.
GetTitleText() - Retrieves the title of the quest while talking to the NPC about it.
IsActiveQuestLegendary(index)
IsActiveQuestTrivial(index)
IsAvailableQuestTrivial(index)
SelectActiveQuest() - Selects an active quest from the NPC (only available after QUEST_GREETING event).
SelectAvailableQuest() - Selects an available quest from the NPC (only available after QUEST_GREETING event).

Quest Choices

Relates to multiple quest choices, for instance at the Hero's Call Board and Warchief's Command Board.

C_PlayerChoice.GetCurrentPlayerChoiceInfo() : choiceInfo
C_PlayerChoice.GetNumRerolls() : numRerolls
C_PlayerChoice.IsWaitingForPlayerChoiceResponse() : isWaitingForResponse
C_PlayerChoice.OnUIClosed()
C_PlayerChoice.RequestRerollPlayerChoice()
C_PlayerChoice.SendPlayerChoiceResponse(responseID)
GetNumQuestChoices() - Returns the number of rewards available for choice for quest currently in gossip window.
GetQuestLogChoiceInfo() - Returns a bunch of data about a quest reward choice from the quest log.
DEPRECATED ClosePlayerChoice()
DEPRECATED C_PlayerChoice.GetPlayerChoiceInfo() : choiceInfo - Returns information about a quest choice fork.
DEPRECATED C_PlayerChoice.GetPlayerChoiceOptionInfo(optionIndex) : info - Returns information about an offered quest choice option.
DEPRECATED C_PlayerChoice.GetPlayerChoiceRewardInfo(rewardIndex) : rewardInfo - Returns reward info on a quest option.

World Quests

Task Quests refer to World Quests or Bonus Objective quests.

C_TaskQuest.DoesMapShowTaskQuestObjectives(uiMapID) : showsTaskQuestObjectives
C_TaskQuest.GetQuestInfoByQuestID(questID) : questTitle, factionID, capped, displayAsObjective
C_TaskQuest.GetQuestLocation(questID, uiMapID) : locationX, locationY
C_TaskQuest.GetQuestProgressBarInfo(questID) : progress
C_TaskQuest.GetQuestTimeLeftMinutes(questID) : minutesLeft
C_TaskQuest.GetQuestTimeLeftSeconds(questID) : secondsLeft
C_TaskQuest.GetQuestZoneID(questID) : uiMapID
C_TaskQuest.GetQuestsForPlayerByMapID(uiMapID) : taskPOIs
C_TaskQuest.GetThreatQuests() : quests
C_TaskQuest.IsActive(questID) : active
C_TaskQuest.RequestPreloadRewardData(questID)
C_QuestLog.IsQuestTask(questID) : isTask
C_QuestLog.IsWorldQuest(questID) : isWorldQuest
GetNumQuestLogTasks()
GetTaskInfo(questID)
GetTaskPOIs()
GetTasksTable()

Adventure Map

The Scouting Map was added in Patch 7.0.3

C_AdventureMap.Close()
C_AdventureMap.GetMapID()
C_AdventureMap.GetMapInsetDetailTileInfo(insetIndex, tileIndex)
C_AdventureMap.GetMapInsetInfo(insetIndex)
C_AdventureMap.GetNumMapInsets()
C_AdventureMap.GetNumQuestOffers()
C_AdventureMap.GetNumZoneChoices()
C_AdventureMap.GetQuestInfo(questID)
C_AdventureMap.GetQuestOfferInfo(offerIndex)
C_AdventureMap.GetZoneChoiceInfo(choiceIndex)
C_AdventureMap.StartQuest(questID)
QuestIsFromAdventureMap()

War Campaigns

War Campaigns were added in Patch 8.0.1

C_CampaignInfo.GetAvailableCampaigns() : campaignIDs
C_CampaignInfo.GetCampaignChapterInfo(campaignChapterID) : campaignChapterInfo
C_CampaignInfo.GetCampaignID(questID) : campaignID
C_CampaignInfo.GetCampaignInfo(campaignID) : campaignInfo
C_CampaignInfo.GetChapterIDs(campaignID) : chapterIDs
C_CampaignInfo.GetCurrentChapterID(campaignID) : currentChapterID
C_CampaignInfo.GetFailureReason(campaignID) : failureReason
C_CampaignInfo.GetState(campaignID) : state
C_CampaignInfo.IsCampaignQuest(questID) : isCampaignQuest
C_CampaignInfo.UsesNormalQuestIcons(campaignID) : useNormalQuestIcons
C_LoreText.RequestLoreTextForCampaignID(campaignID)

Talking Head

These functions were added in Patch 7.0.3

C_TalkingHead.GetConversationsDeferred()
C_TalkingHead.GetCurrentLineAnimationInfo()
C_TalkingHead.GetCurrentLineInfo()
C_TalkingHead.IgnoreCurrentTalkingHead()
C_TalkingHead.IsCurrentTalkingHeadIgnored()
C_TalkingHead.SetConversationsDeferred(deferred)

Races

C_CreatureInfo.GetFactionInfo(raceID) : factionInfo - Returns the faction name for a race.
C_CreatureInfo.GetRaceInfo(raceID) : raceInfo - Returns both localized and locale-independent race names.
NeutralPlayerSelectFaction() - Allows Pandaren to choose a faction.

Allied Races were added in Patch 7.3.5

C_AlliedRaces.ClearAlliedRaceDetailsGiver()
C_AlliedRaces.GetAllRacialAbilitiesFromID(raceID) : allDisplayInfo - Returns the racial spells from an allied race.
C_AlliedRaces.GetRaceInfoByID(raceID) : info - Returns allied race info.
UnitAlliedRaceInfo(unit) : isAlliedRace, hasHeritageArmorUnlocked

Realms

Relates to Realms.

GetAutoCompleteRealms()
GetCurrentRegion()
GetCurrentRegionName() : regionName
GetNormalizedRealmName() - Returns the name of the server, but omitting spaces and hyphens.
GetRealmID()
GetRealmName() - Returns the name of the server a user is logged in to.
IsOnTournamentRealm() - Returns true if currently on a tournament realm, nil otherwise.

Reputation

Relates to Reputation.

C_Reputation.GetFactionParagonInfo(factionID) : currentValue, threshold, rewardQuestID, hasRewardPending, ... - Gets Paragon information.
C_Reputation.IsFactionParagon(factionID) : hasParagon - Returns true/false if a factionID is a Paragon.
C_Reputation.RequestFactionParagonPreloadRewardData(factionID) - Queries the server to pre-load Paragon reward data.
CollapseFactionHeader(index) - Collapse a faction header row.
CollapseAllFactionHeaders() - Collapse all faction header rows.
ExpandFactionHeader(index) - Expand a faction header row.
ExpandAllFactionHeaders() - Expand all faction header rows.
FactionToggleAtWar(index) - Toggle the At War flag for a faction.
GetFactionInfo(index) - Gets details for a specific faction/faction header.
GetFactionInfoByID(factionID) - Gets details for a specific faction by factionID.
GetFriendshipReputation(factionID) - Gets details about an NPC friend.
GetFriendshipReputationRanks(factionID) - Gets rank data about an NPC friend.
GetNumFactions() - Returns the number of lines in the faction display.
GetSelectedFaction() - Returns the row index of the currently selected faction in reputation window.
GetWatchedFactionInfo() - Returns information about the currently watched faction.
IsFactionInactive(index) - Returns true if the faction is marked inactive.
SetFactionActive(index) - Remove a faction from inactive group.
SetFactionInactive(index) - Move a faction to inactive group.
SetSelectedFaction(index) - Sets the currently selected faction in reputation window.
SetWatchedFactionIndex(index) - Sets which faction should be watched in Blizzard reputation bar.

Spells

C_Spell.DoesSpellExist(spellID) : spellExists
C_Spell.IsSpellDataCached(spellID) : isCached
C_Spell.RequestLoadSpellData(spellID)
C_ZoneAbility.GetActiveAbilities() : zoneAbilities
AcceptSpellConfirmationPrompt(spellID)
NOCOMBAT CancelSpellByName(name)
PROTECTED CastSpellByID(spellID [, target])
PROTECTED CastSpellByName(name [, target]) - Cast the specified spell by display name.
PROTECTED CastSpell(spellIndex, bookType) - Cast the spell in the specified spell book slot.
DeclineSpellConfirmationPrompt(spellID)
DoesSpellExist(spellName)
FindBaseSpellByID(spellID)
FindSpellOverrideByID(spellID)
GetMaxSpellStartRecoveryOffset()
GetSchoolString(schoolMask)
GetSpellAutocast(spellName | spellId, bookType) - Check whether the specified spell autocasts or not.
GetSpellBaseCooldown(spellID)
GetSpellCharges(spellId | spellName) - Returns information about the charges of a charge-accumulating player ability.
GetSpellConfirmationPromptsInfo()
GetSpellCooldown(spellName | spellID, bookType) - Retrieves data on the cooldown of a specific spell.
GetSpellCount()
GetSpellDescription(spellId) - Returns the spell description.
GetSpellInfo(spellId) : name, rank, icon, castTime, minRange, maxRange, spellID - Returns spell info.
GetSpellLink(spellName, spellRank) - Returns the spell's link.
GetSpellPowerCost(spellId | spellName) - Returns information about a spell's resource cost.
GetSpellQueueWindow()
GetSpellSubtext()
GetSpellTexture(spellId | spellName) - Returns the fileId used for the spell's icon.
GetSpellTradeSkillLink()
IsAttackSpell(spell) - Returns 1 if the spell is the "Attack" spell.
IsAutoRepeatSpell(spell)
IsConsumableSpell()
IsCurrentSpell(spellID) - Returns true if the spell is currently being casted by the player or is placed in the queue to be casted next. False otherwise.
IsHarmfulSpell(spellSlot) - Returns whether a spell can be used against hostile units
IsHelpfulSpell(spellSlot) - Returns whether an item can be used on the player or friendly units
IsPassiveSpell(spellID, bookType) - Returns whether the icon in your spellbook is a Passive ability. Formerly IsSpellPassive(spell).
IsPlayerSpell(spellID)
IsSpellInRange(spellName [, unit]) - Is nil for no valid target, 0 for out of range, 1 for in range.
IsSpellKnown(spellID, isPetSpell) - Returns whether the player (or pet) knows the given spell.
IsSpellKnownOrOverridesKnown(spellID [, isPet])
IsSpellOverlayed(spellID) - Returns whether the spell is currently affected by a proc (glow highlighting).
IsUsableSpell(spellName | spellID | spellIndex, bookType) - Determines whether a spell can be used by the player character.
SpellCancelQueuedSpell()
SpellCanTargetItem()
SpellCanTargetItemID()
SpellCanTargetQuest()
SpellCanTargetUnit(unit) - Returns true if the spell awaiting target selection can be cast on the specified unit.
SpellGetVisibilityInfo(spellID, visType)
SpellHasRange(spell) - Returns true if the specified spell has a ranged effect (i.e. requires a target).
SpellIsAlwaysShown(spellID)
SpellIsPriorityAura(spellID)
SpellIsSelfBuff(spellID)
SpellIsTargeting() - Returns true if a spell has been cast and is awaiting target selection.
PROTECTED SpellStopCasting() - Stops the current spellcast.
PROTECTED SpellStopTargeting() - Cancels the spell awaiting target selection.
PROTECTED SpellTargetUnit(unit) - Casts the spell awaiting target selection on the specified unit.
PROTECTED SpellTargetItem(item)
UI QueryCastSequence(sequence) - Returns index, item, spell for the spell/item that will be used next if the cast sequence is executed.

Spell Book

C_SpellBook.ContainsAnyDisenchantSpell() : contains
C_SpellBook.GetCurrentLevelSpells(level) : spellIDs
C_SpellBook.GetSkillLineIndexByID(skillLineID) : skillIndex
C_SpellBook.GetSpellInfo(spellID) : spellInfo
C_SpellBook.GetSpellLinkFromSpellID(spellID) : spellLink
C_SpellBook.IsSpellDisabled(spellID) : disabled
FindSpellBookSlotBySpellID(spellID [, isPet])
GetNumSpellTabs() - Returns the total number of tabs in the user's spellbook.
GetSpellAvailableLevel(spellSlot)
GetSpellBookItemInfo(spellName or index, bookType) - Returns the spell's type and spellID for a spell in the player's spellbook.
GetSpellBookItemName(spellName or index, bookType) - Returns the spell name and spell rank for a spell in the player's spellbook.
GetSpellBookItemTexture(spellName or index, bookType) - Returns the spell icon fileId for a spell in the player's spellbook.
GetSpellLevelLearned()
GetSpellTabInfo(spellbookTabNum) - Returns information about the specified spellbook tab.
IsSelectedSpellBookItem(spellSlot)

Store

The In-Game Store was added in Patch 5.4.0

C_StorePublic.DoesGroupHavePurchaseableProducts(groupID) : hasPurchaseableProducts
C_StorePublic.IsDisabledByParentalControls() : disabled - Returns whether access to the in-game shop is disabled by parental controls.
C_StorePublic.IsEnabled() : enabled - Returns whether the In-Game Store is available for the player.

Character Boosts were added in Patch 5.4.7

PROTECTED C_CharacterServices.AssignUpgradeDistribution()
PROTECTED C_CharacterServices.GetActiveCharacterUpgradeBoostType()
PROTECTED C_CharacterServices.GetActiveClassTrialBoostType()
PROTECTED C_CharacterServices.GetAutomaticBoost()
PROTECTED C_CharacterServices.GetAutomaticBoostCharacter()
PROTECTED C_CharacterServices.GetCharacterServiceDisplayData()
PROTECTED C_CharacterServices.GetCharacterServiceDisplayOrder()
PROTECTED C_CharacterServices.HasRequiredBoostForClassTrial()
PROTECTED C_CharacterServices.HasRequiredBoostForUnrevoke()
PROTECTED C_CharacterServices.SetAutomaticBoost()
PROTECTED C_CharacterServices.SetAutomaticBoostCharacter()
IsCharacterNewlyBoosted()

Class Trials were added in Patch 6.0.2

C_ClassTrial.GetClassTrialLogoutTimeSeconds()
C_ClassTrial.IsClassTrialCharacter()
C_CharacterServicesPublic.ShouldSeeControlPopup()
C_SharedCharacterServices.GetLastSeenCharacterUpgradePopup()
C_SharedCharacterServices.GetLastSeenExpansionTrialPopup()
C_SharedCharacterServices.GetUpgradeDistributions()
C_SharedCharacterServices.HasFreePromotionalUpgrade()
C_SharedCharacterServices.HasSeenFreePromotionalUpgradePopup()
C_SharedCharacterServices.IsPurchaseIDPendingUpgrade()
C_SharedCharacterServices.QueryClassTrialBoostResult()
C_SharedCharacterServices.SetCharacterUpgradePopupSeen(expansion_id)
C_SharedCharacterServices.SetExpansionTrialPopupSeen(expansion_id)
C_SharedCharacterServices.SetPromotionalPopupSeen(seen)

System

HW C_UI.Reload() - Reloads the UI from source files.
C_System.GetFrameStack() : objects
CancelLogout() - Cancels the logout timer (from camping or quitting).
PROTECTED CopyToClipboard(text) - Copies text to the clipboard.
DetectWowMouse() - Attempts to detect the world of warcraft MMO mouse.
FlashClientIcon() - Flashes the game client icon in the Operating System.
PROTECTED ForceLogout()
PROTECTED ForceQuit() - Instantly quits the game, bypassing the timer.
GetBuildInfo() - Returns information about current client build.
GetFramerate() - Returns the current framerate (full precision)
GetTickTime() - Returns the time in seconds since the end of the previous frame and the start of the current frame.
Is64BitClient()
IsDebugBuild()
IsGMClient()
IsLinuxClient() - Boolean - Returns true if WoW is being run on Linux.
IsLoggedIn() - Returns nil before the PLAYER_LOGIN event has fired, 1 afterwards.
IsMacClient() - Returns true if WoW is being run on Mac.
IsOnGlueScreen()
IsPublicBuild()
IsTestBuild()
IsUsingFixedTimeStep() - Whether the UI is updating at a fixed rate independent of the framerate.
IsWindowsClient() - Returns true if WoW is being run on Windows.
LoadURLIndex(index)
PROTECTED Logout() - Logs the user out of the game.
ProcessExceptionClient()
PROTECTED Quit() - Quits the game.
Screenshot() - Takes a screenshot.
SendSystemMessage(message) - Fires a CHAT_MSG_SYSTEM event for yourself.
PROTECTED Stuck() - Informs the game engine that the player is Stuck.
UI ToggleFramerate() - Show/Hide the FPS.

Network

GetAvailableBandwidth()
GetBackgroundLoadingStatus()
GetDownloadedPercentage()
GetFileStreamingStatus()
GetNetIpTypes()
GetNetStats() - Get bandwidth and latency network information.

Console

Relates to Console variables and commands.

C_CVar.GetCVar(name) : value - Returns the current value of a console variable.
C_CVar.GetCVarBitfield(name, index) : value - Returns the bitfield of a console variable.
C_CVar.GetCVarBool(name) : value - Returns the boolean value of a console variable.
C_CVar.GetCVarDefault(name) : defaultValue - Returns the default value of a console variable.
C_CVar.RegisterCVar(name [, value]) - Registers a custom cvar (temporarily).
C_CVar.ResetTestCVars() - Resets the ActionCam cvars.
C_CVar.SetCVar(name [, value, scriptCVar]) : success - Sets a console variable.
C_CVar.SetCVarBitfield(name, index, value [, scriptCVar]) : success - Sets the bitfield of a console variable.
C_Console.GetAllCommands() : commands - Returns all console variables and commands.
C_Console.GetColorFromType(colorType) : color - Returns color info for a color type.
C_Console.GetFontHeight() : fontHeightInPixels - Returns the console's currently used font height.
C_Console.PrintAllMatchingCommands(partialCommandText) - Prints all matching console commands.
C_Console.SetFontHeight(fontHeightInPixels) - Sets the console's font height.
ConsoleAddMessage(message) - Prints a message to the console window.
ConsoleExec(command) - Execute a console command.
GetCVarInfo(name) - Returns information on a console variable.
SetConsoleKey(key) - Sets the console key (normally ~ ).

Date & Time

C_DateAndTime.AdjustTimeByDays(date, days) : newDate - Returns the date after a given amount of days.
C_DateAndTime.AdjustTimeByMinutes(date, minutes) : newDate - Returns the date after a given amount of minutes.
C_DateAndTime.CompareCalendarTime(lhsCalendarTime, rhsCalendarTime) : comparison - Compares two dates with eachother.
C_DateAndTime.GetCalendarTimeFromEpoch(epoch) : date - Returns the date of a given amount of time since the UNIX epoch.
C_DateAndTime.GetCurrentCalendarTime() : date - Returns the realm's current date and time.
C_DateAndTime.GetSecondsUntilDailyReset() : seconds
C_DateAndTime.GetSecondsUntilWeeklyReset() : seconds
C_DateAndTime.GetServerTimeLocal() : serverTimeLocal - Returns the server's Unix time offset by the server's UTC timezone.
GetGameTime() - Returns the realm's current time in hours and minutes.
GetLocalGameTime()
GetServerTime() - Returns the server's Unix time.
GetSessionTime() - Returns the time since you opened the game client.
GetTime() - Returns the system uptime in seconds (millisecond precision).
GetTimePreciseSec() - Returns a monotonic timestamp in seconds, with millisecond precision.
RequestTimePlayed() - Request a summary of time played from the server.
Lua date(format, time) - Returns the current date according to the user's machine.
Lua time(table) - Returns a timestamp for the specified time or the current Unix time.

Timers

C_Timer.After(duration, callback) - Runs callback after given duration.
UI C_Timer.NewTimer(duration, callback) - Runs callback after given duration. (Cancelable)
UI C_Timer.NewTicker(duration, callback [, iterations]) - Runs callback multiple times iterating every given duration. (Cancelable)

Debugging

AreDangerousScriptsAllowed()
DumpMovementCapture() - Used in the protected Commentator UI.
FrameXML_Debug(flag) - Sets FrameXML logging state which is output to "/WoW Folder/Logs/FrameXML.log".
GetCurrentEventID()
GetEventTime(eventProfileIndex)
GetGameMessageInfo(gameMessageType) - Returns the error message for an id.
HandleAtlasMemberCommand()
RunScript(script) - Execute "script" as a block of Lua code.
ScriptsDisallowedForBeta()
SetAllowDangerousScripts()
ToggleAnimKitDisplay()
ToggleDebugAIDisplay()
addframetext(text)
debuglocals()
debugprofilestart() - Starts a timer for profiling during debugging.
debugprofilestop() - Returns the time in milliseconds since the last call to debugprofilestart()
debugstack(start, count1, count2) - Returns a string representation of the current calling stack.
geterrorhandler() - Returns the currently set error handler.
seterrorhandler(errFunc) - Set the error handler to the given parameter.
UI DevTools_Dump(value [, startKey]) - Pretty prints a variable or value. Equivalent to the /dump macro.
UI print(...) - Calls the current print output handler with the provided values; by default printing the values to the default chat frame.
UI getprinthandler() - Returns the function currently handling print() output.
UI setprinthandler(func) - Changes the function handling print() output.
UI message(text) - Displays a message box with your text message and an "Okay" button.
PROTECTED C_Debug.DashboardIsEnabled()
PROTECTED C_Debug.GetAllPortLocsForMap(uiMapID)
PROTECTED C_Debug.GetMapDebugObjects(uiMapID)
PROTECTED C_Debug.TeleportToMapDebugObject(pinIndex)
PROTECTED C_Debug.TeleportToMapLocation(uiMapID, mapX, mapY)

Graphics

C_ScriptedAnimations.GetAllScriptedAnimationEffects() : scriptedAnimationEffects
C_VideoOptions.GetGxAdapterInfo() : adapters - Returns info about the system's graphics adapter.
AntiAliasingSupported()
AutoChooseCurrentGraphicsSetting()
GetCurrentGraphicsSetting()
GetCurrentResolution() - Get the index of the current screen resolution.
GetCurrentScaledResolution()
GetCVarSettingValidity(cvar, settingsCount [, isRaid])
GetDefaultGraphicsQuality()
GetDefaultVideoOption()
GetDefaultVideoOptions()
GetDefaultVideoQualityOption()
GetGraphicsAPIs() - Returns the supported graphics APIs for the system, D3D11_LEGACY, D3D11, D3D12, etc.
GetGraphicsDropdownIndexByMasterIndex()
GetMaxRenderScale()
GetMinRenderScale()
GetMonitorAspectRatio()
GetMonitorCount()
GetMonitorName()
GetPhysicalScreenSize()
GetScreenDPIScale()
GetScreenHeight() - Returns the height of the window in pixels.
GetScreenResolutions()
GetScreenWidth() - Returns the width of the window in pixels.
GetToolTipInfo(1, size-1, cvar, validValue1, ...) - Returns validity info for a graphics cvar.
GetVideoCaps()
GetVideoOptions()
IsDesaturateSupported()
IsOutlineModeSupported()
MultiSampleAntiAliasingSupported()
RestartGx() - Restarts the graphical engine. Needed for things such as resolution changes to take effect.
SetCurrentGraphicsSetting(setting{0=normal, 1=raid/BG})
SetDefaultVideoOptions(value)
SetScreenResolution(width, height, fullscreen)
SetSelectedScreenResolutionIndex(integerIndex)
SupportsClipCursor()
ToggleSelfHighlight()
ToggleWindowed()
UpdateWindow() - When in windowed mode, updates the window. This also aligns it to the top of the screen and increases the size to max widowed size.

Locales

BreakUpLargeNumbers(number [, natural]) - Converts a number into a localized string, grouping digits as required.
DeclineName(name, gender, declensionSet) - Returns suggested declensions for a German or Russian name.
GetAvailableLocaleInfo(ignoreLocaleRestrictions)
GetAvailableLocales()
GetLocale() - Returns client locale, example 'enUS'.
GetNumDeclensionSets(name, gender) - Returns the number of suggested declension sets for a German or Russian name.
GetOSLocale()
GetText() - Used to localize some client text.
IsEuropeanNumbers()
SetEuropeanNumbers(flag) - Sets the decimal separator to a comma instead of a dot.

Script Profiling

Note: CPU profiling is disabled by default since it has some overhead. CPU profiling is controlled by the scriptProfile cvar, which persists across sessions, and takes effect after a UI reload. Memory profiling is always available. These functions have been added in Patch 2.1.

GetAddOnCPUUsage(index or name) - Returns the total time used by the specified AddOn. This returns a cached value calculated by UpdateAddOnCPUUsage().
GetAddOnMemoryUsage(index or name) - Query an addon's memory use (in K, precision to 1 byte) - This returns a cached value calculated by UpdateAddOnMemoryUsage().
GetEventCPUUsage([event]) - Returns the time used and number of times the specified event has been triggered. If 'event' is omitted, the time and count will be totals across all events.
GetFrameCPUUsage(frame [, includeChildren]) - Returns the time used and number of function calls of any of the frame's script handlers. If 'includeChildren' is true or omitted, the time and call count will include the handlers for all of the frame's children as well.
GetFunctionCPUUsage(func [, includeSubroutines]) - Returns the time used and number of times the specified function was called. If 'includeSubroutines' is true or omitted, the time includes both the time spent in the function and subroutines called by the function. If it is false, then time is only the time actually spent by the code in the function itself.
GetScriptCPUUsage() - Returns the total time used by the scripting system.
ResetCPUUsage() - Reset all CPU profiling statistics to zero.
UpdateAddOnCPUUsage() - Scan through the profiling data and update the per-addon statistics.
UpdateAddOnMemoryUsage() - Scan through memory profiling data and update the per-addon statistics.

Secure Execution

Relates to Secure Execution and Tainting.

forceinsecure() - Taint the current execution path.
hooksecurefunc([table,] funcName, hookfunc) - Creates a secure 'post hook' for the named function. The hookfunc is invoked after the original function, and receives the same parameters. Return values from hookfunc are discarded. This is the only safe way to hook functions that execute protected functionality.
InCombatLockdown() - Returns true if the in-combat AddOn restrictions are active.
issecure() - Determine if the current environment is secure.
issecurevariable([table,] name) - Determine if the specified variable is secure.
scrub(...) - Returns the argument list with non-number/boolean/string values changed to nil.
securecall(function or functionName, ...) - Call a function from a secure environment without risking secure status.
securecallfunction()
secureexecuterange()
StoreSecureReference(name, obj)
UI CanAccessObject(obj) - Returns true if an object is secure and not forbidden.

Sound

MuteSoundFile(soundFile or fileDataID) - Mutes a sound file.
PlayMusic(musicfile or fileDataID) - Plays the specified sound file on loop to the "Music" sound channel.
PlaySound(soundKitID [, channel, forceNoDuplicates, runFinishCallback]) - Plays the specified sound by SoundKitID.
PlaySoundFile(soundFile or soundFileID [, channel]) - Plays the specified sound by FileDataID or by addon file path.
PlayVocalErrorSoundID(vocalErrorSoundID)
StopMusic() - Stops the currently playing music.
StopSound(soundHandleID [, fadeoutTime])
UnmuteSoundFile(soundFile or fileDataID) - Unmutes a sound file.

Sound Drivers

Sound_ChatSystem_GetInputDriverNameByIndex(InputDriverIndex)
Sound_ChatSystem_GetNumInputDrivers()
Sound_ChatSystem_GetNumOutputDrivers()
Sound_ChatSystem_GetOutputDriverNameByIndex(OutputDriverIndex)
Sound_GameSystem_GetInputDriverNameByIndex(InputDriverIndex)
Sound_GameSystem_GetNumInputDrivers()
Sound_GameSystem_GetNumOutputDrivers()
Sound_GameSystem_GetOutputDriverNameByIndex(OutputDriverIndex)
Sound_GameSystem_RestartSoundSystem()

Util

CalculateStringEditDistance(firstString, secondString) - Returns Levenshtein distance.
CaseAccentInsensitiveParse(string)

Spectator Mode

C_Commentator.AddPlayerOverrideName(playerName, overrideName)
C_Commentator.AddTrackedDefensiveAuras(spellIDs)
C_Commentator.AddTrackedOffensiveAuras(spellIDs)
C_Commentator.AreTeamsSwapped() : teamsAreSwapped
C_Commentator.AssignPlayersToTeam(playerName, teamName)
C_Commentator.AssignPlayersToTeamInCurrentInstance(teamIndex, teamName)
C_Commentator.AssignPlayerToTeam(playerName, teamName)
C_Commentator.CanUseCommentatorCheats() : canUseCommentatorCheats
C_Commentator.ClearCameraTarget()
C_Commentator.ClearFollowTarget()
C_Commentator.ClearLookAtTarget([lookAtIndex])
C_Commentator.EnterInstance()
C_Commentator.ExitInstance()
C_Commentator.FindSpectatedUnit(unitToken) : playerIndex, teamIndex, isPet
C_Commentator.FindTeamNameInCurrentInstance(teamIndex) : teamName
C_Commentator.FindTeamNameInDirectory(playerNames) : teamName
C_Commentator.FlushCommentatorHistory()
C_Commentator.FollowPlayer(factionIndex, playerIndex [, forceInstantTransition])
C_Commentator.FollowUnit(token)
C_Commentator.ForceFollowTransition()
C_Commentator.GetAdditionalCameraWeight() : teamIndex, playerIndex
C_Commentator.GetAdditionalCameraWeightByToken(unitToken) : weight
C_Commentator.GetAllPlayerOverrideNames() : nameEntries
C_Commentator.GetCamera() : xPos, yPos, zPos, yaw, pitch, roll, fov
C_Commentator.GetCameraCollision() : isColliding
C_Commentator.GetCameraPosition() : xPos, yPos, zPos
C_Commentator.GetCommentatorHistory() : history
C_Commentator.GetCurrentMapID() : mapID
C_Commentator.GetDampeningPercent() : percentage
C_Commentator.GetDistanceBeforeForcedHorizontalConvergence() : distance
C_Commentator.GetDurationToForceHorizontalConvergence() : ms
C_Commentator.GetExcludeDistance() : excludeDistance
C_Commentator.GetHardlockWeight() : weight
C_Commentator.GetHorizontalAngleThresholdToSmooth() : angle
C_Commentator.GetIndirectSpellID(trackedSpellID) : indirectSpellID
C_Commentator.GetInstanceInfo(mapIndex, instanceIndex) : mapID, mapName, status, instanceIDLow, instanceIDHigh
C_Commentator.GetLookAtLerpAmount() : amount
C_Commentator.GetMapInfo(mapIndex) : teamSize, minLevel, maxLevel, numInstances
C_Commentator.GetMatchDuration() : seconds
C_Commentator.GetMaxNumPlayersPerTeam() : maxNumPlayersPerTeam
C_Commentator.GetMaxNumTeams() : maxNumTeams
C_Commentator.GetMode() : commentatorMode
C_Commentator.GetMsToHoldForHorizontalMovement() : ms
C_Commentator.GetMsToHoldForVerticalMovement() : ms
C_Commentator.GetMsToSmoothHorizontalChange() : ms
C_Commentator.GetMsToSmoothVerticalChange() : ms
C_Commentator.GetNumMaps() : numMaps
C_Commentator.GetNumPlayers(factionIndex) : numPlayers
C_Commentator.GetOrCreateSeries(teamName1, teamName2) : data
C_Commentator.GetPlayerAuraInfo(teamIndex, playerIndex, spellID) : startTime, duration, enable
C_Commentator.GetPlayerAuraInfoByUnit(token, spellID) : startTime, duration, enable
C_Commentator.GetPlayerCooldownInfo(teamIndex, playerIndex, spellID) : startTime, duration, enable
C_Commentator.GetPlayerCooldownInfoByUnit(unitToken, spellID) : startTime, duration, enable
C_Commentator.GetPlayerCrowdControlInfo(teamIndex, playerIndex) : spellID, expiration, duration
C_Commentator.GetPlayerCrowdControlInfoByUnit(token) : spellID, expiration, duration
C_Commentator.GetPlayerData(teamIndex, playerIndex) : info
C_Commentator.GetPlayerFlagInfo(teamIndex, playerIndex) : hasFlag
C_Commentator.GetPlayerFlagInfoByUnit(unitToken) : hasFlag
C_Commentator.GetPlayerOverrideName(originalName) : overrideName
C_Commentator.GetPlayerSpellCharges(teamIndex, playerIndex, spellID) : charges, maxCharges, startTime, duration
C_Commentator.GetPlayerSpellChargesByUnit(unitToken, spellID) : charges, maxCharges, startTime, duration
C_Commentator.GetPositionLerpAmount() : amount
C_Commentator.GetSmoothFollowTransitioning() : enabled
C_Commentator.GetSoftlockWeight() : weight
C_Commentator.GetSpeedFactor() : factor
C_Commentator.GetStartLocation(mapID) : pos
C_Commentator.GetTeamColor(teamIndex) : color
C_Commentator.GetTeamColorByUnit(unitToken) : color
C_Commentator.GetTimeLeftInMatch() : timeLeft
C_Commentator.GetTrackedSpellID(indirectSpellID) : trackedSpellID
C_Commentator.GetTrackedSpells(teamIndex, playerIndex, category) : spells
C_Commentator.GetTrackedSpellsByUnit(unitToken, category) : spells
C_Commentator.GetUnitData(unitToken) : data
C_Commentator.GetWargameInfo(listID) : name, minPlayers, maxPlayers, isArena
C_Commentator.HasTrackedAuras(token) : hasOffensiveAura, hasDefensiveAura
C_Commentator.IsSmartCameraLocked() : isSmartCameraLocked
C_Commentator.IsSpectating() : isSpectating
C_Commentator.IsTrackedDefensiveAura(spellID) : isDefensiveTrigger
C_Commentator.IsTrackedOffensiveAura(spellID) : isOffensiveTrigger
C_Commentator.IsTrackedSpell(teamIndex, playerIndex, spellID, category) : isTracked
C_Commentator.IsTrackedSpellByUnit(unitToken, spellID, category) : isTracked
C_Commentator.IsUsingSmartCamera() : isUsingSmartCamera
C_Commentator.LookAtPlayer(factionIndex, playerIndex [, lookAtIndex])
C_Commentator.RemoveAllOverrideNames()
C_Commentator.RemovePlayerOverrideName(originalPlayerName)
C_Commentator.RequestPlayerCooldownInfo(teamIndex, playerIndex)
C_Commentator.ResetFoVTarget()
C_Commentator.ResetSeriesScores(teamName1, teamName2)
C_Commentator.ResetSettings()
C_Commentator.ResetTrackedAuras()
C_Commentator.SetAdditionalCameraWeight(teamIndex, playerIndex, weight)
C_Commentator.SetAdditionalCameraWeightByToken(unitToken, weight)
C_Commentator.SetBlocklistedAuras(spellIDs)
C_Commentator.SetBlocklistedCooldowns(specID, spellIDs)
C_Commentator.SetCamera(xPos, yPos, zPos, yaw, pitch, roll, fov)
C_Commentator.SetCameraCollision(collide)
C_Commentator.SetCameraPosition(xPos, yPos, zPos, snapToLocation)
C_Commentator.SetCheatsEnabled(enableCheats)
C_Commentator.SetCommentatorHistory(history)
C_Commentator.SetDistanceBeforeForcedHorizontalConvergence(distance)
C_Commentator.SetDurationToForceHorizontalConvergence(ms)
C_Commentator.SetExcludeDistance(excludeDistance)
C_Commentator.SetFollowCameraSpeeds(elasticSpeed, minSpeed)
C_Commentator.SetHardlockWeight(weight)
C_Commentator.SetHorizontalAngleThresholdToSmooth(angle)
C_Commentator.SetLookAtLerpAmount(amount)
C_Commentator.SetMapAndInstanceIndex(mapIndex, instanceIndex)
C_Commentator.SetMouseDisabled(disabled)
C_Commentator.SetMoveSpeed(newSpeed)
C_Commentator.SetMsToHoldForHorizontalMovement(ms)
C_Commentator.SetMsToHoldForVerticalMovement(ms)
C_Commentator.SetMsToSmoothHorizontalChange(ms)
C_Commentator.SetMsToSmoothVerticalChange(ms)
C_Commentator.SetPositionLerpAmount(amount)
C_Commentator.SetRequestedDebuffCooldowns(specID, spellIDs)
C_Commentator.SetRequestedDefensiveCooldowns(specID, spellIDs)
C_Commentator.SetRequestedOffensiveCooldowns(specID, spellIDs)
C_Commentator.SetSeriesScore(teamName1, teamName2, scoringTeamName, score)
C_Commentator.SetSeriesScores(teamName1, teamName2, score1, score2)
C_Commentator.SetSmartCameraLocked(locked)
C_Commentator.SetSmoothFollowTransitioning(enabled)
C_Commentator.SetSoftlockWeight(weight)
C_Commentator.SetSpeedFactor(factor)
C_Commentator.SetTargetHeightOffset(offset)
C_Commentator.SetUseSmartCamera(useSmartCamera)
C_Commentator.SnapCameraLookAtPoint()
C_Commentator.StartWargame(listID, teamSize, tournamentRules, teamOneCaptain, teamTwoCaptain)
C_Commentator.SwapTeamSides()
C_Commentator.ToggleCheats()
C_Commentator.UpdateMapInfo([targetPlayer])
C_Commentator.UpdatePlayerInfo()
C_Commentator.ZoomIn()
C_Commentator.ZoomOut()

Tutorials

C_PlayerInfo.IsPlayerEligibleForNPE() : isEligible, failureReason
C_PlayerInfo.IsPlayerEligibleForNPEv2() : isEligible, failureReason
C_PlayerInfo.IsPlayerNPERestricted() : isRestricted
C_SplashScreen.AcknowledgeSplash()
C_SplashScreen.CanViewSplashScreen() : canView
C_SplashScreen.RequestLatestSplashScreen(fromGameMenu)
C_StableInfo.GetNumActivePets() : numActivePets
C_StableInfo.GetNumStablePets() : numStablePets
C_Tutorial.AbandonTutorialArea()
C_Tutorial.ReturnToTutorialArea()
CanResetTutorials()
ClearTutorials()
ClosestGameObjectPosition(gameObjectID)
ClosestUnitPosition(creatureID) - Returns the unit position of the closest creature by ID. Only works for mobs in the starting zones.
FlagTutorial(tutorial)
GetNextCompleatedTutorial(tutorial)
GetPrevCompleatedTutorial(tutorial)
GetTutorialsEnabled()
IsSplashFramePrimaryFeatureUnlocked()
IsTutorialFlagged(tutorial)
RequestBottomLeftActionBar()
ResetTutorials()
ShouldShowSpecialSplashScreen()
SplashFrameCanBeShown()
TriggerTutorial(tutorial)

UI Objects

GetFileIDFromPath(filePath) - Returns the fileID corresponding to the given game file path (texture, sound, model, etc.).
SetUIVisibility(visible) - Hides or shows the entire UI.
UI EasyMenu(menuList, menuFrame, anchor, x, y, displayMode, autoHideDelay)
UI ToggleDropDownMenu(level, value, dropDownFrame, anchorName, xOffset, yOffset)

Frame

C_FrameManager.GetFrameVisibilityState(frameType) : shouldShow
CreateFrame(frameType [, frameName, parentFrame, inheritsFrame, id]) - Create a new frame of the specified type.
DoesTemplateExist(template) - Returns if a virtual frame template exists.
EnumerateFrames(currentFrame) - Get the Frame which follows currentFrame.
GetClickFrame(name)
GetCurrentKeyBoardFocus() - Returns the [editbox] widget currently handling keyboard events.
GetDefaultScale()
GetFramesRegisteredForEvent(event) - Returns a list of frames that are registered for the given event.
GetMouseButtonName()
GetMouseClickFocus()
GetMouseFocus() - Returns the frame that currently has the mouse focus.
GetMouseMotionFocus()
GetNumFrames() - Get the current number of Frame (and derivative) objects.
SetupFullscreenScale(frame) - Configures scale of full-screen views, such as the world map, to best fill screen.
UI MouseIsOver(region, topOffset, bottomOffset, leftOffset, rightOffset) - Checks whether the mouse is over the frame (or within specified offsets).
UI UIFrameFadeIn(frame, timeToFade, startAlpha, endAlpha) - Fades a frame in.
UI UIFrameFadeOut(frame, timeToFade, startAlpha, endAlpha) - Fades a frame out.

Font

CreateFont(name) - Dynamically creates a font object.
GetFontInfo(font or name)
GetFonts() - Returns all available fonts.

Texture

C_Texture.GetAtlasInfo(atlas) : info - Returns atlas info.
GetObjectIconTextureCoords(textureIndex)
SetPortraitTexture(textureObject, unitToken) - Sets a texture to a unit's 2D portrait.
SetPortraitToTexture(textureObject, texturePath) - Applies a circular mask to a texture, making it resemble a portrait.
UI CreateAtlasMarkup(atlasName [, height, width, offsetX, offsetY]) - Returns a texture fontstring for an atlas.
UI CreateTextureMarkup(file, fileWidth, fileHeight, width, height, left, right, top, bottom [, xOffset, yOffset]) - Returns a texture fontstring.
UI GetTextureInfo(obj) - Returns the type and info of a texture.

ModelScene

C_ModelInfo.AddActiveModelScene(modelSceneFrame, modelSceneID)
C_ModelInfo.AddActiveModelSceneActor(modelSceneFrameActor, modelSceneActorID)
C_ModelInfo.ClearActiveModelScene(modelSceneFrame)
C_ModelInfo.ClearActiveModelSceneActor(modelSceneFrameActor)
C_ModelInfo.GetModelSceneActorDisplayInfoByID(modelActorDisplayID) : actorDisplayInfo
C_ModelInfo.GetModelSceneActorInfoByID(modelActorID) : actorInfo
C_ModelInfo.GetModelSceneCameraInfoByID(modelSceneCameraID) : modelSceneCameraInfo
C_ModelInfo.GetModelSceneInfoByID(modelSceneID) : modelSceneType, modelCameraIDs, modelActorsIDs
GetUICameraInfo(uiCameraID)

Blizzard

Used internally for the Blizzard_PrototypeDialog addon.

C_PrototypeDialog.EnsureRemoved(instanceID)
C_PrototypeDialog.SelectOption(instanceID, optionIndex)

Toasts

C_EventToastManager.GetLevelUpDisplayToastsFromLevel(level) : toastInfo
C_EventToastManager.GetNextToastToDisplay() : toastInfo
C_EventToastManager.RemoveCurrentToast()

UI Widget Manager

The UI widget system was added in Patch 8.0.1 to replace the WorldStateFrame. It renders the UI elements used for e.g. PvP objectives.

Position

C_UIWidgetManager.GetAllWidgetsBySetID(setID) : widgets - Returns all widgets for a widget set ID.
C_UIWidgetManager.GetBelowMinimapWidgetSetID() : setID
C_UIWidgetManager.GetObjectiveTrackerWidgetSetID() : setID
C_UIWidgetManager.GetPowerBarWidgetSetID() : setID
C_UIWidgetManager.GetTopCenterWidgetSetID() : setID - Returns the widget set ID for the top center part of the screen.
C_UIWidgetManager.GetWidgetSetInfo(widgetSetID) : widgetSetInfo

Visualization

C_UIWidgetManager.GetBulletTextListWidgetVisualizationInfo(widgetID) : widgetInfo
C_UIWidgetManager.GetCaptureBarWidgetVisualizationInfo(widgetID) : widgetInfo
C_UIWidgetManager.GetCaptureZoneVisualizationInfo(widgetID) : widgetInfo
C_UIWidgetManager.GetDiscreteProgressStepsVisualizationInfo(widgetID) : widgetInfo
C_UIWidgetManager.GetDoubleIconAndTextWidgetVisualizationInfo(widgetID) : widgetInfo
C_UIWidgetManager.GetDoubleStateIconRowVisualizationInfo(widgetID) : widgetInfo
C_UIWidgetManager.GetDoubleStatusBarWidgetVisualizationInfo(widgetID) : widgetInfo
C_UIWidgetManager.GetHorizontalCurrenciesWidgetVisualizationInfo(widgetID) : widgetInfo
C_UIWidgetManager.GetIconAndTextWidgetVisualizationInfo(widgetID) : widgetInfo
C_UIWidgetManager.GetIconTextAndBackgroundWidgetVisualizationInfo(widgetID) : widgetInfo
C_UIWidgetManager.GetIconTextAndCurrenciesWidgetVisualizationInfo(widgetID) : widgetInfo
C_UIWidgetManager.GetScenarioHeaderCurrenciesAndBackgroundWidgetVisualizationInfo(widgetID) : widgetInfo
C_UIWidgetManager.GetScenarioHeaderTimerWidgetVisualizationInfo(widgetID) : widgetInfo
C_UIWidgetManager.GetSpacerVisualizationInfo(widgetID) : widgetInfo
C_UIWidgetManager.GetSpellDisplayVisualizationInfo(widgetID) : widgetInfo
C_UIWidgetManager.GetStackedResourceTrackerWidgetVisualizationInfo(widgetID) : widgetInfo
C_UIWidgetManager.GetStatusBarWidgetVisualizationInfo(widgetID) : widgetInfo
C_UIWidgetManager.GetTextColumnRowVisualizationInfo(widgetID) : widgetInfo
C_UIWidgetManager.GetTextureAndTextRowVisualizationInfo(widgetID) : widgetInfo
C_UIWidgetManager.GetTextureAndTextVisualizationInfo(widgetID) : widgetInfo
C_UIWidgetManager.GetTextureWithAnimationVisualizationInfo(widgetID) : widgetInfo
C_UIWidgetManager.GetTextWithStateWidgetVisualizationInfo(widgetID) : widgetInfo
C_UIWidgetManager.GetZoneControlVisualizationInfo(widgetID) : widgetInfo
C_UIWidgetManager.RegisterUnitForWidgetUpdates(unitToken [, isGuid])
C_UIWidgetManager.SetProcessingUnit([unit])
C_UIWidgetManager.SetProcessingUnitGuid([unit])
C_UIWidgetManager.UnregisterUnitForWidgetUpdates(unitToken [, isGuid])
C_TaskQuest.GetUIWidgetSetIDFromQuestID(questID) : UiWidgetSetID
C_Widget.IsFrameWidget()
C_Widget.IsRenderableWidget()
C_Widget.IsWidget(object)
UnitWidgetSet(unit) : uiWidgetSet

Units

These are functions which act on one or more units. Units are identified by UnitIds.

C_PlayerInfo.GetContentDifficultyCreatureForPlayer(unitToken) : difficulty
GetThreatStatusColor(status) - Returns RGB values for a given UnitThreatSituation return value.
GetUnitChargedPowerPoints(unit) : pointIndices
GetUnitSpeed(unit) - Returns the moving speed of the unit.
UnitAffectingCombat(unit) - Determine if the unit is in combat or has aggro. (returns nil if "false" and 1 if "true")
UnitArmor(unit) - Returns the armor statistics relevant to the specified unit.
UnitAttackPower(unit) - Returns the unit's melee attack power and modifiers.
UnitAttackSpeed(unit) - Returns the unit's melee attack speed for each hand.
UnitCanAssist(unit, otherUnit) - Indicates whether the first unit can assist the second unit.
UnitCanAttack(unit, otherUnit) - Returns true if the first unit can attack the second, false otherwise.
UnitCanCooperate(unit, otherUnit) - Returns true if the first unit can cooperate with the second, false otherwise.
UnitCanPetBattle()
UnitCastingInfo(unit) - Returns information about the spell currently being cast by the specified unit.
UnitChannelInfo(unit) - Returns information about the spell currently being channeled by the specified unit.
UnitClass(unit) : className, classFilename, classID - Returns the class name of the specified unit (e.g., "Warrior" or "Shaman").
UnitClassBase(unit) : classFilename, classID
UnitClassification(unit) - Returns the classification of the specified unit (e.g., "elite" or "worldboss").
UnitCreatureFamily(unit) - Returns the type of creature of the specified unit (e.g., "Crab").
UnitCreatureType(unit) - Returns the classification type of creature of the specified unit (e.g., "Beast").
UnitDamage(unit) - Returns the damage statistics relevant to the specified unit.
UnitDetailedThreatSituation(unit, unitMob) - Returns detailed information about the specified unit's threat on a mob.
UnitDistanceSquared(unit) - Returns the squared distance to a unit in your group.
UnitEffectiveLevel(unit) - Returns the unit's effective (scaled) level.
UnitExists(unit) - Returns 1 if the specified unit exists, nil otherwise.
UnitFactionGroup(unit) - Returns the faction group id and name of the specified unit. (eg. "Alliance") - string returned is localization-independent (used in filepath)
UnitFullName(unit) - Returns the player's (unit's) name and server.
UnitGetAvailableRoles()
UnitGetIncomingHeals(unit [, healer]) - Returns the predicted heals cast on the specified unit.
UnitGetTotalAbsorbs(unit) - Returns the total amount of damage the unit can absorb before losing health.
UnitGetTotalHealAbsorbs(unit) - Returns the total amount of healing the unit can absorb without gaining health.
UnitGroupRolesAssigned(unit) - Returns the assigned role in a group formed via the Dungeon Finder Tool.
UnitGUID(unit) - Returns the GUID as a string for the specified unit matching the GUIDs used by the new combat logs.
UnitHasIncomingResurrection(unit) - Returns whether the unit is currently being resurrected.
UnitHasLFGDeserter(unit) - Returns whether the unit is currently unable to use the dungeon finder due to leaving a group prematurely.
UnitHasLFGRandomCooldown(unit) - Returns whether the unit is currently under the effects of the random dungeon cooldown.
UnitHasRelicSlot(unit)
UnitHealth(unit) - Returns the current health, in points, of the specified unit.
UnitHealthMax(unit) - Returns the maximum health, in points, of the specified unit.
UnitHPPerStamina()
UnitInOtherParty()
UnitInRange(unit) - Returns true if the unit (party or raid only) is in range of a typical spell such as flash heal.
UnitIsAFK(unit) - Only works for friendly units.
UnitIsCharmed(unit) - Returns true if the specified unit is charmed, false otherwise.
UnitIsConnected(unit) : isConnected - Returns 1 if the specified unit is connected or npc, nil if offline or not a valid unit.
UnitIsControlling(unit) - Returns true if the local player is directly controlling the specified unit.
UnitIsCorpse(unit) - Returns true if the specified unit is a corpse, false otherwise.
UnitIsDead(unit) - Returns true if the specified unit is dead, nil otherwise.
UnitIsDeadOrGhost(unit) - Returns true if the specified unit is dead or a ghost, nil otherwise.
UnitIsDND(unit) - Only works for friendly units.
UnitIsEnemy(unit, otherUnit) - Returns true if the specified units are enemies, false otherwise.
UnitIsFeignDeath(unit) - Returns true if the specified unit (must be a member of your group) is feigning death.
UnitIsFriend(unit, otherUnit) - Returns true if the specified units are friends (PC of same faction or friendly NPC), false otherwise.
UnitIsGhost(unit) - Returns true if the specified unit is a ghost, false otherwise.
UnitIsGroupAssistant()
UnitIsInMyGuild(unit) - Returns whether the specified unit is in the same guild as the player's character.
UnitIsOtherPlayersPet()
UnitIsOwnerOrControllerOfUnit(controllingUnit, controlledUnit) : unitIsOwnerOrControllerOfUnit
UnitIsPlayer(unit) - Returns true if the specified unit is a player character, false otherwise.
UnitIsPossessed(unit) - Returns whether the specified unit is currently under control of another (i.e. "pet" when casting Mind Control).
UnitIsQuestBoss(unit) - Returns true if the specified unit is the "boss" (objective) of a kill quest. If true, then the default UI displays a shield with a yellow "!" on it on the unit's unitframe.
UnitIsRaidOfficer(unit) - Returns whether the specified unit is an officer in your raid.
UnitIsSameServer(unit) - Returns whether the specified unit is from the same server as the player's character.
UnitIsTapDenied()
UnitIsTrivial(unit) - Returns true if the specified unit is trivial (Trivial means the unit is "grey" to the player. false otherwise.
UnitIsUnconscious()
UnitIsUnit(unit, otherUnit) - Determine if two units are the same unit.
UnitIsVisible(unit) - 1 if visible, nil if not.
UnitLeadsAnyGroup()
UnitLevel(unit) - Returns the level of a unit.
UnitName(unit) - Returns the name (and realm name) of a unit.
UnitNameUnmodified()
UnitPlayerControlled(unit) - Returns true if the specified unit is controlled by a player, false otherwise.
UnitPlayerOrPetInParty(unit) - Returns 1 if the specified unit/pet is a member of the player's party, nil otherwise (returns nil for "player" and "pet")
UnitPlayerOrPetInRaid(unit) - Returns 1 if the specified unit/pet is a member of the player's raid, nil otherwise (returns nil for "player" and "pet")
UnitPower(unitToken [, powerType, unmodified]) : power - Returns current power of the specified unit (Replaces UnitMana)
UnitPowerDisplayMod(powerType) : displayMod
UnitPowerMax(unitToken [, powerType, unmodified]) : maxPower - Returns max power of the specified unit (Replaces UnitManaMax)
UnitPowerType(unit) - Returns a number corresponding to the power type (e.g., mana, rage or energy) of the specified unit.
UnitQuestTrivialLevelRange(unit) : levelRange - Returns the difference between the units' current level and the level at which fixed-level quests are of trivial difficulty.
UnitRace(unit) - Returns the race name of the specified unit (e.g., "Human" or "Troll").
UnitRangedAttackPower(unit) - Returns the ranged attack power of the unit.
UnitRangedDamage(unit) - Returns the ranged attack speed and damage of the unit.
UnitReaction(unit, otherUnit) - Returns a number corresponding to the reaction (aggressive, neutral or friendly) of the first unit towards the second unit.
UnitRealmRelationship()
UnitSelectionColor(unit [, useExtendedColors]) - Returns RGBA values for the color of a unit's selection (the outline around and the circle underneath a player character or an NPC).
UnitSelectionType(unit [, useExtendedColors]) - Returns a number corresponding to the type of a unit's selection (the outline around and the circle underneath a player character or an NPC).
UnitSetRole()
UnitSex(unit) : sex - Returns a code indicating the gender of the specified unit, if known. (1=unknown, 2=male, 3=female)
UnitShouldDisplayName()
UnitSpellHaste(unit) - Returns the current spell haste percentage for a unit.
UnitStagger()
UnitStat(unit, statIndex) - Returns the statistics relevant to the specified unit and basic attribute (e.g., strength or intellect).
UnitThreatPercentageOfLead()
UnitThreatSituation(unit, mobUnit) - Returns the specified unit's threat status on a mob.
UnitTreatAsPlayerForDisplay(unit) : treatAsPlayer - Whether a unit should be treated as if it was an actual player.
UnitTrialBankedLevels(unit)
UnitTrialXP(unit)
UnitWeaponAttackPower(unit)
UnitXP(unit) - Returns the number of experience points the specified unit has in their current level. (only works on your player)
UnitXPMax(unit) - Returns the number of experience points the specified unit needs to reach their next level. (only works on your player)
UI GetUnitName(unit, showServerName) - Returns the name and optionally the realm of the unit.

Buffs

NOCOMBAT CancelUnitBuff(unit, index or spell [, filter or rank]) - Removes a specific buff from the player.
GetPlayerAuraBySpellID(spellID) - Returns an active buff/debuff by spell ID on the player character.
UnitAura(unit, index [, filter]) - Returns info about buffs and debuffs of a unit.
UnitAuraBySlot(unit, slot)
UnitAuraSlots(unit [, filter, maxSlots, continuationToken])
UnitBuff(unit, index [, raidFilter]) - Shorthand for UnitAura(unit, index, "HELPFUL")
UnitDebuff(unit, index [, raidFilter]) - Shorthand for UnitAura(unit, index, "HARMFUL")
UI AuraUtil.FindAura(predicate, unit, filter, predicateArg1, predicateArg2, predicateArg3)
UI AuraUtil.FindAuraByName(auraName, unit, filter) - Finds the first aura that matches the name.
UI AuraUtil.ForEachAura(unit, filter, maxCount, func)

Weapon Enchants

PROTECTED CancelItemTempEnchantment(weaponHand) - Cancels a temporary weapon enchant on weaponHand (1 for Main hand, 2 for Off hand).
GetWeaponEnchantInfo() - Returns information about main and offhand weapon enchantments.

Nameplates

Nameplates were reworked in Patch 7.0.3

C_NamePlate.GetNamePlateEnemyClickThrough()
C_NamePlate.GetNamePlateEnemyPreferredClickInsets()
C_NamePlate.GetNamePlateEnemySize()
C_NamePlate.GetNamePlateForUnit(unitToken [, includeForbidden])
C_NamePlate.GetNamePlateFriendlyClickThrough()
C_NamePlate.GetNamePlateFriendlyPreferredClickInsets()
C_NamePlate.GetNamePlateFriendlySize()
C_NamePlate.GetNamePlates([includeForbidden])
C_NamePlate.GetNamePlateSelfClickThrough()
C_NamePlate.GetNamePlateSelfPreferredClickInsets()
C_NamePlate.GetNamePlateSelfSize()
C_NamePlate.GetNumNamePlateMotionTypes()
C_NamePlate.GetTargetClampingInsets()
C_NamePlate.SetNamePlateEnemyClickThrough(clickthrough)
C_NamePlate.SetNamePlateEnemyPreferredClickInsets()
C_NamePlate.SetNamePlateEnemySize(width, height)
C_NamePlate.SetNamePlateFriendlyClickThrough()
C_NamePlate.SetNamePlateFriendlyPreferredClickInsets(left, right, top, bottom)
C_NamePlate.SetNamePlateFriendlySize(width, height)
C_NamePlate.SetNamePlateSelfClickThrough(clickthrough)
C_NamePlate.SetNamePlateSelfPreferredClickInsets(left, right, top, bottom)
C_NamePlate.SetNamePlateSelfSize(width, height)
C_NamePlate.SetTargetClampingInsets(clickthrough)
SetInWorldUIVisibility(visible) - Allows nameplates to be shown even while the UI is hidden (with Alt-Z)
UnitNameplateShowsWidgetsOnly(unit) : nameplateShowsWidgetsOnly

Loss of Control

C_LossOfControl.GetActiveLossOfControlData(index) : event - Returns info about an active loss-of-control effect.
C_LossOfControl.GetActiveLossOfControlDataByUnit(unitToken, index) : event
C_LossOfControl.GetActiveLossOfControlDataCount() : count - Returns the number of active loss-of-control effects.
C_LossOfControl.GetActiveLossOfControlDataCountByUnit(unitToken) : count
GetActionLossOfControlCooldown(slot)
GetSpellLossOfControlCooldown(spellSlot)

Phasing

Players in different Phases cannot see eachother.

UnitInPartyShard(unit) : inPartyShard
UnitPhaseReason(unit) : reason - Returns the reason if a unit is NOT in the same phase.

Power Bar

GetUnitPowerBarInfo(unitToken) : info
GetUnitPowerBarInfoByID(barID) : info
GetUnitPowerBarStrings(unitToken) : name, tooltip, cost
GetUnitPowerBarStringsByID(barID) : name, tooltip, cost
GetUnitPowerBarTextureInfo(unitToken, textureIndex [, timerIndex]) : texture, colorR, colorG, colorB, colorA
GetUnitPowerBarTextureInfoByID(barID, textureIndex) : texture, colorR, colorG, colorB, colorA
UnitNumPowerBarTimers()
UnitPowerBarID(unitToken) : barID
UnitPowerBarTimerInfo()

Vehicles

These functions were added in Patch 3.0.2

C_PvP.GetBattlefieldVehicleInfo(vehicleIndex, uiMapID) : info
C_PvP.GetBattlefieldVehicles(uiMapID) : vehicles
CanEjectPassengerFromSeat(seat) - Returns 1 if the player can eject a passenger from a seat.
CanExitVehicle() - Returns 1 if the player can be exit the Vehicle.
CanSwitchVehicleSeat()
CanSwitchVehicleSeats() - Returns 1 if the player can Switch Seats in the Vehicle.
EjectPassengerFromSeat(seat) - Ejects a passenger from a seat.
GetNumBattlefieldVehicles(index)
GetVehicleUIIndicator(indicatorID)
GetVehicleUIIndicatorSeat(indicatorID, indicatorSeatIndex)
IsUsingVehicleControls()
IsVehicleAimAngleAdjustable() - Returns 1 if the player can adjust the Aim Angle of the Vehicle.
IsVehicleAimPowerAdjustable() - Returns 1 if the player can adjust the Aim Power of the Vehicle.
PlayerVehicleHasComboPoints() : vehicleHasComboPoints
UnitControllingVehicle(unit)
UnitHasVehiclePlayerFrameUI()
UnitHasVehicleUI(unit)
UnitInVehicle(unit)
UnitInVehicleControlSeat(unit)
UnitInVehicleHidesPetFrame()
UnitSwitchToVehicleSeat(unit, seatId)
UnitTargetsVehicleInRaidUI(unit)
UnitUsingVehicle(unit) - Returns whether the specified unit is currently using a vehicle (including transitioning between seats).
UnitVehicleSeatCount(unit)
UnitVehicleSeatInfo(unit, seatId)
UnitVehicleSkin(unit)
VehicleAimDecrement()
VehicleAimDownStart()
VehicleAimDownStop()
VehicleAimGetAngle()
VehicleAimGetNormAngle()
VehicleAimGetNormPower()
VehicleAimIncrement()
VehicleAimRequestAngle()
VehicleAimRequestNormAngle()
VehicleAimSetNormPower()
VehicleAimUpStart()
VehicleAimUpStop()
VehicleExit() - Exit the current Vehicle.
VehicleNextSeat()
VehiclePrevSeat()

Warlords of Draenor

Garrison Tech

Garrisons were added in Patch 6.0.2 and also utilized in later expanions.

C_Garrison.CanUpgradeGarrison()
C_Garrison.ClearCompleteTalent(garrisonType)
C_Garrison.CloseArchitect()
C_Garrison.CloseGarrisonTradeskillNPC()
C_Garrison.CloseTalentNPC()
C_Garrison.CloseTradeskillCrafter()
C_Garrison.GetAllBonusAbilityEffects()
C_Garrison.GetCompleteTalent(garrisonType)
C_Garrison.GetCurrencyTypes(garrType)
C_Garrison.GetCurrentGarrTalentTreeFriendshipFactionID() : currentGarrTalentTreeFriendshipFactionID
C_Garrison.GetCurrentGarrTalentTreeID() : currentGarrTalentTreeID
C_Garrison.GetGarrisonInfo(garrisonType)
C_Garrison.GetGarrisonTalentTreeCurrencyTypes(garrTalentTreeID) : garrTalentTreeCurrencyType
C_Garrison.GetGarrisonTalentTreeType(garrTalentTreeID) : garrTalentTreeType
C_Garrison.GetGarrisonUpgradeCost(followerType)
C_Garrison.GetLandingPageGarrisonType()
C_Garrison.GetLandingPageItems(garrTypeID [, noSort])
C_Garrison.GetLandingPageShipmentCount()
C_Garrison.GetLandingPageShipmentInfoByContainerID(shipmentContainerID)
C_Garrison.GetLooseShipments(garrTypeID)
C_Garrison.GetNumPendingShipments()
C_Garrison.GetNumShipmentCurrencies()
C_Garrison.GetNumShipmentReagents()
C_Garrison.GetPendingShipmentInfo(index)
C_Garrison.GetShipmentContainerInfo()
C_Garrison.GetShipmentItemInfo()
C_Garrison.GetShipmentReagentCurrencyInfo(currencyIndex)
C_Garrison.GetShipmentReagentInfo(reagentIndex)
C_Garrison.GetShipmentReagentItemLink(reagentIndex)
C_Garrison.GetSpecChangeCost()
C_Garrison.GetTalentInfo(talentID) : info
C_Garrison.GetTalentPointsSpentInTalentTree(garrTalentTreeID) : talentPoints
C_Garrison.GetTalentTreeIDsByClassID(garrType, classID) : treeIDs
C_Garrison.GetTalentTreeInfo(treeID) : info
C_Garrison.GetTalentTreeResetInfo(garrTalentTreeID) : goldCost, currencyCosts
C_Garrison.GetTalentTreeTalentPointResearchInfo(garrTalentTreeID, talentPointIndex, isRespec) : goldCost, currencyCosts, durationSecs
C_Garrison.GetTalentUnlockWorldQuest(talentID) : worldQuestID
C_Garrison.HasAdventures() : hasAdventures
C_Garrison.HasGarrison(garrisonType)
C_Garrison.IsFollowerOnCompletedMission(followerID) : followerOnCompletedMission
C_Garrison.IsInvasionAvailable()
C_Garrison.IsOnGarrisonMap()
C_Garrison.IsOnShipmentQuestForNPC()
C_Garrison.IsPlayerInGarrison(garrType)
C_Garrison.IsTalentConditionMet(talentID) : isMet, failureString
C_Garrison.IsUsingPartyGarrison()
C_Garrison.IsVisitGarrisonAvailable()
C_Garrison.RequestGarrisonUpgradeable(followerType)
C_Garrison.RequestLandingPageShipmentInfo()
C_Garrison.RequestShipmentCreation()
C_Garrison.RequestShipmentInfo()
C_Garrison.ResearchTalent(garrTalentID)
C_Garrison.SetUsingPartyGarrison(enabled)
C_Garrison.ShouldShowMapTab(garrType)
C_Garrison.UpgradeGarrison(followerType)
GetEquipmentNameFromSpell() - returns a garrison equipment for a spell.
GetFollowerTypeIDFromSpell() - Returns the Garrison expansion type.
ReopenInteraction() - Reopens the order hall talents interaction.

Buildings

C_Garrison.CancelConstruction(plotInstanceID)
C_Garrison.GetBuildingInfo(buildingID)
C_Garrison.GetBuildingLockInfo()
C_Garrison.GetBuildingSizes()
C_Garrison.GetBuildingSpecInfo()
C_Garrison.GetBuildingTimeRemaining(plotInstanceID)
C_Garrison.GetBuildingTooltip(buildingID)
C_Garrison.GetBuildingUpgradeInfo(buildingID)
C_Garrison.GetBuildingsForPlot(plotInstanceID)
C_Garrison.GetBuildingsForSize(garrisonType, uiCategoryID)
C_Garrison.GetBuildings(garrisonType)
C_Garrison.GetGarrisonPlotsInstancesForMap(uiMapID) : garrisonPlotInstances
C_Garrison.GetLandingPageShipmentInfo(buildingID)
C_Garrison.GetOwnedBuildingInfoAbbrev(plotInstanceID)
C_Garrison.GetOwnedBuildingInfo(plotInstanceID)
C_Garrison.GetPlotsForBuilding(buildingID)
C_Garrison.GetPlots(followerType)
C_Garrison.GetShipDeathAnimInfo()
C_Garrison.GetTabForPlot(plotInstanceID)
C_Garrison.HasShipyard()
C_Garrison.IsOnShipyardMap()
C_Garrison.PlaceBuilding(plotInstanceID, buildingID)
C_Garrison.SetBuildingActive(plotInstanceID)
C_Garrison.SetBuildingSpecialization()
C_Garrison.SwapBuildings(plotInstanceID1, plotInstanceID2)
C_Garrison.UpgradeBuilding(plotInstanceID)

Trophies

C_Trophy.MonumentChangeAppearanceToTrophyID(trophyID)
C_Trophy.MonumentCloseMonumentUI()
C_Trophy.MonumentGetCount()
C_Trophy.MonumentGetSelectedTrophyID()
C_Trophy.MonumentGetTrophyInfoByIndex(index)
C_Trophy.MonumentLoadList()
C_Trophy.MonumentLoadSelectedTrophyID()
C_Trophy.MonumentRevertAppearanceToSaved()
C_Trophy.MonumentSaveSelection(trophyID)

Missions

Relates to Followers and Missions.

C_Garrison.AddFollowerToMission(missionID, followerID [, boardIndex]) : followerAdded
C_Garrison.AllowMissionStartAboveSoftCap(garrFollowerTypeID)
C_Garrison.AreMissionFollowerRequirementsMet(missionRecID)
C_Garrison.AssignFollowerToBuilding(plotInstanceID, followerID)
C_Garrison.CanGenerateRecruits()
C_Garrison.CanOpenMissionChest(missionID)
C_Garrison.CanSetRecruitmentPreference()
C_Garrison.CanSpellTargetFollowerIDWithAddAbility(followerID)
C_Garrison.CastItemSpellOnFollowerAbility(followerID, abilityID)
C_Garrison.CastSpellOnFollower(followerID)
C_Garrison.CastSpellOnFollowerAbility(followerID, abilityID)
C_Garrison.CastSpellOnMission(missionID)
C_Garrison.CloseMissionNPC()
C_Garrison.CloseRecruitmentNPC()
C_Garrison.GenerateRecruits(mechanicTypeID, traitID)
C_Garrison.GetAllEncounterThreats(garrFollowerTypeID)
C_Garrison.GetAvailableMissions([missionList,] garrFollowerTypeID)
C_Garrison.GetAvailableRecruits()
C_Garrison.GetBasicMissionInfo(missionID)
C_Garrison.GetBuffedFollowersForMission(missionID, displayingAbilities)
C_Garrison.GetClassSpecCategoryInfo(garrFollowerType)
C_Garrison.GetCombatAllyMission(garrFollowerTypeID)
C_Garrison.GetCompleteMissions([missionList,] garrFollowerTypeID)
C_Garrison.GetFollowerAbilities(guid|id)
C_Garrison.GetFollowerAbilityAtIndex(followerID, index)
C_Garrison.GetFollowerAbilityAtIndexByID(garrFollowerID, index)
C_Garrison.GetFollowerAbilityCounterMechanicInfo(garrAbilityID)
C_Garrison.GetFollowerAbilityCountersForMechanicTypes(garrFollowerTypeID)
C_Garrison.GetFollowerAbilityDescription(garrAbilityID)
C_Garrison.GetFollowerAbilityIcon(garrAbilityID)
C_Garrison.GetFollowerAbilityInfo(garrAbilityID)
C_Garrison.GetFollowerAbilityIsTrait(garrAbilityID)
C_Garrison.GetFollowerAbilityLink(abilityID)
C_Garrison.GetFollowerAbilityName(garrAbilityID)
C_Garrison.GetFollowerActivationCost()
C_Garrison.GetFollowerBiasForMission(missionID, followerID)
C_Garrison.GetFollowerClassSpec(followerID)
C_Garrison.GetFollowerClassSpecAtlas(garrSpecID)
C_Garrison.GetFollowerClassSpecByID(garrFollowerID)
C_Garrison.GetFollowerClassSpecName(garrFollowerID)
C_Garrison.GetFollowerDisplayID(followerID)
C_Garrison.GetFollowerInfo(guid|id)
C_Garrison.GetFollowerInfoForBuilding()
C_Garrison.GetFollowerIsTroop(guid|id)
C_Garrison.GetFollowerItemLevelAverage(followerID)
C_Garrison.GetFollowerItems(followerID)
C_Garrison.GetFollowerLevel(followerID)
C_Garrison.GetFollowerLevelXP(followerID)
C_Garrison.GetFollowerLink(followerID)
C_Garrison.GetFollowerLinkByID(garrFollowerID)
C_Garrison.GetFollowerMissionCompleteInfo(followerID) : followerMissionCompleteInfo
C_Garrison.GetFollowerMissionTimeLeft(followerID)
C_Garrison.GetFollowerMissionTimeLeftSeconds(followerID)
C_Garrison.GetFollowerModelItems(followerID)
C_Garrison.GetFollowerName(followerID)
C_Garrison.GetFollowerNameByID(garrFollowerID)
C_Garrison.GetFollowerPortraitIconID(followerID)
C_Garrison.GetFollowerPortraitIconIDByID(garrFollowerID)
C_Garrison.GetFollowerQuality(followerID)
C_Garrison.GetFollowerQualityTable(garrFollowerTypeID)
C_Garrison.GetFollowerRecentlyGainedAbilityIDs(followerID)
C_Garrison.GetFollowerRecentlyGainedTraitIDs(followerID)
C_Garrison.GetFollowers() - Returns a table of followers and their attributes.
C_Garrison.GetFollowerShipments(garrTypeID)
C_Garrison.GetFollowerSoftCap(garrFollowerTypeID)
C_Garrison.GetFollowerSourceTextByID(garrFollowerID)
C_Garrison.GetFollowerSpecializationAtIndex(followerID, index)
C_Garrison.GetFollowersSpellsForMission(missionID)
C_Garrison.GetFollowerStatus(followerID)
C_Garrison.GetFollowersTraitsForMission(missionID)
C_Garrison.GetFollowerTraitAtIndex(followerID, index)
C_Garrison.GetFollowerTraitAtIndexByID(garrFollowerID, index)
C_Garrison.GetFollowerTypeByID(garrFollowerID)
C_Garrison.GetFollowerTypeByMissionID(missionID)
C_Garrison.GetFollowerUnderBiasReason(missionID, followerID)
C_Garrison.GetFollowerXP(followerID)
C_Garrison.GetFollowerXPTable(garrFollowerTypeID)
C_Garrison.GetFollowerZoneSupportAbilities(guid|id)
C_Garrison.GetInProgressMissions([missionList,] garrFollowerTypeID)
C_Garrison.GetMissionBonusAbilityEffects(missionID)
C_Garrison.GetMissionCompleteEncounters(missionID) : encounters
C_Garrison.GetMissionCost(missionID)
C_Garrison.GetMissionDeploymentInfo(missionID) : missionDeploymentInfo
C_Garrison.GetMissionDisplayIDs(missionID)
C_Garrison.GetMissionEncounterIconInfo(missionID) : missionEncounterIconInfo
C_Garrison.GetMissionLink(missionID)
C_Garrison.GetMissionMaxFollowers(garrMissionID)
C_Garrison.GetMissionName(garrMissionID)
C_Garrison.GetMissionRewardInfo(garrMissionID [, missionDBID])
C_Garrison.GetMissionSuccessChance(missionID)
C_Garrison.GetMissionTexture(offeredGarrMissionTextureID)
C_Garrison.GetMissionTimes(missionID)
C_Garrison.GetMissionUncounteredMechanics(missionID)
C_Garrison.GetNumActiveFollowers()
C_Garrison.GetNumFollowerActivationsRemaining(garrTypeID)
C_Garrison.GetNumFollowerDailyActivations()
C_Garrison.GetNumFollowers()
C_Garrison.GetNumFollowersForMechanic(followerType, mechanicID)
C_Garrison.GetNumFollowersOnMission(missionID)
C_Garrison.GetPartyBuffs(missionID)
C_Garrison.GetPartyMentorLevels(missionID)
C_Garrison.GetPartyMissionInfo(missionID)
C_Garrison.GetPossibleFollowersForBuilding(followerType, plotInstanceID)
C_Garrison.GetRecruitAbilities(index)
C_Garrison.GetRecruiterAbilityCategories()
C_Garrison.GetRecruiterAbilityList(traits)
C_Garrison.GetRecruitmentPreferences()
C_Garrison.IsAboveFollowerSoftCap(garrFollowerTypeID)
C_Garrison.IsAtGarrisonMissionNPC() : atGarrisonMissionNPC
C_Garrison.IsEnvironmentCountered(missionID) : environmentCountered
C_Garrison.IsFollowerCollected(garrFollowerID)
C_Garrison.IsMechanicFullyCountered(missionID, followerID, mechanicID)
C_Garrison.MarkMissionComplete(missionID)
C_Garrison.MissionBonusRoll(missionID)
C_Garrison.RecruitFollower(followerIndex)
C_Garrison.RemoveFollower(dbID)
C_Garrison.RemoveFollowerFromBuilding()
C_Garrison.RemoveFollowerFromMission(missionID, followerID [, boardIndex])
C_Garrison.RenameFollower(followerID, name)
C_Garrison.RequestClassSpecCategoryInfo(garrFollowerTypeID)
C_Garrison.RushHealAllFollowers(followerType)
C_Garrison.RushHealFollower(garrFollowerID)
C_Garrison.SearchForFollower(guid|id, searchString)
C_Garrison.SetFollowerFavorite()
C_Garrison.SetFollowerInactive(followerID, inactive)
C_Garrison.SetRecruitmentPreferences(mechanicTypeID, traitID)
C_Garrison.ShowFollowerNameInErrorMessage(missionRecID)
C_Garrison.StartMission(missionID)
C_Garrison.TargetSpellHasFollowerItemLevelUpgrade()
C_Garrison.TargetSpellHasFollowerReroll()
C_Garrison.TargetSpellHasFollowerTemporaryAbility()
ItemCanTargetGarrisonFollowerAbility()
SpellCanTargetGarrisonFollowerAbility()
SpellCanTargetGarrisonFollower()
SpellCanTargetGarrisonMission()

Auto Missions

C_Garrison.GetAutoCombatDamageClassValues() : damageClassStrings
C_Garrison.GetAutoMissionBoardState(missionID) : targetInfo
C_Garrison.GetAutoMissionEnvironmentEffect(missionID) : autoMissionEnvEffect
C_Garrison.GetAutoMissionTargetingInfo(missionID, followerID, casterBoardIndex) : targetInfo
C_Garrison.GetAutoMissionTargetingInfoForSpell(missionID, autoCombatSpellID, casterBoardIndex) : targetInfo
C_Garrison.GetAutoTroops(followerType) : autoTroopInfo
C_Garrison.GetCombatLogSpellInfo(autoCombatSpellID) : spellInfo
C_Garrison.GetFollowerAutoCombatSpells(garrFollowerID, followerLevel) : autoCombatSpells, autoCombatAutoAttack
C_Garrison.GetFollowerAutoCombatStats(garrFollowerID) : autoCombatInfo
C_Garrison.RegenerateCombatLog(missionID) : success
C_Garrison.SetAutoCombatSpellFastForward(state)

Legion

Artifacts

Artifacts were added in Patch 7.0.3

C_ArtifactUI.AddPower(powerID) : success
C_ArtifactUI.ApplyCursorRelicToSlot(relicSlotIndex)
C_ArtifactUI.CanApplyArtifactRelic(relicItemID, onlyUnlocked) : canApply
C_ArtifactUI.CanApplyCursorRelicToSlot(relicSlotIndex) : canApply
C_ArtifactUI.CanApplyRelicItemIDToEquippedArtifactSlot(relicItemID, relicSlotIndex) : canApply
C_ArtifactUI.CanApplyRelicItemIDToSlot(relicItemID, relicSlotIndex) : canApply
C_ArtifactUI.CheckRespecNPC() : canRespec
C_ArtifactUI.Clear() - Clear artifact data of last opened artifact weapon.
C_ArtifactUI.ClearForgeCamera()
C_ArtifactUI.ConfirmRespec()
C_ArtifactUI.DoesEquippedArtifactHaveAnyRelicsSlotted() : hasAnyRelicsSlotted
C_ArtifactUI.GetAppearanceInfo(appearanceSetIndex, appearanceIndex) : artifactAppearanceID, appearanceName, displayIndex, unlocked, ... - Returns information about a selected artifact appearance.
C_ArtifactUI.GetAppearanceInfoByID(artifactAppearanceID) : artifactAppearanceSetID, artifactAppearanceID, appearanceName, ... - Returns information about a selected artifact appearance.
C_ArtifactUI.GetAppearanceSetInfo(appearanceSetIndex) : artifactAppearanceSetID, appearanceSetName, appearanceSetDescription, ...
C_ArtifactUI.GetArtifactArtInfo() : artifactArtInfo - Returns information about the currently equipped artifact weapon.
C_ArtifactUI.GetArtifactInfo() : itemID, altItemID, name, icon, xp, pointsSpent, quality, artifactAppearanceID, ...
C_ArtifactUI.GetArtifactItemID() : itemID
C_ArtifactUI.GetArtifactTier() : tier
C_ArtifactUI.GetArtifactXPRewardTargetInfo(artifactCategoryID) : name, icon
C_ArtifactUI.GetCostForPointAtRank(rank, tier) : cost
C_ArtifactUI.GetEquippedArtifactArtInfo() : artifactArtInfo
C_ArtifactUI.GetEquippedArtifactInfo() : itemID, altItemID, name, icon, xp, pointsSpent, quality, artifactAppearanceID, ...
C_ArtifactUI.GetEquippedArtifactItemID() : itemID
C_ArtifactUI.GetEquippedArtifactNumRelicSlots([onlyUnlocked]) : numRelicSlots
C_ArtifactUI.GetEquippedArtifactRelicInfo(relicSlotIndex) : name, icon, slotTypeName, link
C_ArtifactUI.GetEquippedRelicLockedReason(relicSlotIndex) : lockedReason
C_ArtifactUI.GetForgeRotation() : forgeRotationX, forgeRotationY, forgeRotationZ
C_ArtifactUI.GetItemLevelIncreaseProvidedByRelic(itemLinkOrID) : itemIevelIncrease
C_ArtifactUI.GetMetaPowerInfo() : spellID, powerCost, currentRank
C_ArtifactUI.GetNumAppearanceSets() : numAppearanceSets
C_ArtifactUI.GetNumObtainedArtifacts() : numObtainedArtifacts
C_ArtifactUI.GetNumRelicSlots([onlyUnlocked]) : numRelicSlots
C_ArtifactUI.GetPointsRemaining() : pointsRemaining
C_ArtifactUI.GetPowerHyperlink(powerID) : link
C_ArtifactUI.GetPowerInfo(powerID) : powerInfo
C_ArtifactUI.GetPowerLinks(powerID) : linkingPowerID
C_ArtifactUI.GetPowers() : powerID
C_ArtifactUI.GetPowersAffectedByRelic(relicSlotIndex) : powerIDs
C_ArtifactUI.GetPowersAffectedByRelicItemLink(relicItemInfo) : powerIDs
C_ArtifactUI.GetPreviewAppearance() : artifactAppearanceID
C_ArtifactUI.GetRelicInfo(relicSlotIndex) : name, icon, slotTypeName, link
C_ArtifactUI.GetRelicInfoByItemID(itemID) : name, icon, slotTypeName, link
C_ArtifactUI.GetRelicLockedReason(relicSlotIndex) : lockedReason
C_ArtifactUI.GetRelicSlotType(relicSlotIndex) : slotTypeName
C_ArtifactUI.GetRespecArtifactArtInfo() : artifactArtInfo
C_ArtifactUI.GetRespecArtifactInfo() : itemID, altItemID, name, icon, xp, pointsSpent, quality, artifactAppearanceID, ...
C_ArtifactUI.GetRespecCost() : cost
C_ArtifactUI.GetTotalPowerCost(startingTrait, numTraits, artifactTier) : totalArtifactPowerCost
C_ArtifactUI.GetTotalPurchasedRanks() : totalPurchasedRanks
C_ArtifactUI.IsArtifactDisabled() : artifactDisabled
C_ArtifactUI.IsAtForge() : isAtForge
C_ArtifactUI.IsEquippedArtifactDisabled() : artifactDisabled
C_ArtifactUI.IsEquippedArtifactMaxed() : artifactMaxed
C_ArtifactUI.IsMaxedByRulesOrEffect() : isEffectivelyMaxed
C_ArtifactUI.IsPowerKnown(powerID) : known
C_ArtifactUI.IsViewedArtifactEquipped() : isViewedArtifactEquipped
C_ArtifactUI.SetAppearance(artifactAppearanceID)
C_ArtifactUI.SetForgeCamera()
C_ArtifactUI.SetForgeRotation(forgeRotationX, forgeRotationY, forgeRotationZ)
C_ArtifactUI.SetPreviewAppearance([artifactAppearanceID])
C_ArtifactUI.ShouldSuppressForgeRotation() : shouldSuppressForgeRotation
HasArtifactEquipped()
IsArtifactPowerItem()
IsArtifactRelicItem(item)

Invasions

Invasions were added in Patch 7.0.3

C_InvasionInfo.AreInvasionsAvailable() : areInvasionsAvailable - Returns true if invasions are active in the same physical area as the player.
C_InvasionInfo.GetInvasionForUiMapID(uiMapID) : invasionID - Returns any invasion for a map.
C_InvasionInfo.GetInvasionInfo(invasionID) : invasionInfo - Returns invasion info.
C_InvasionInfo.GetInvasionTimeLeft(invasionID) : timeLeftMinutes - Returns the time left for an invasion.

Contribution

Relates to buildings on the Broken Shore or Warfronts; added in Patch 7.2.0.

C_ContributionCollector.Close() - Closes the contribution collector API state.
C_ContributionCollector.Contribute(contributionID) - Contributes resources to a building.
C_ContributionCollector.GetActive() : contributionID - Returns the currently active buildings.
C_ContributionCollector.GetAtlases(contributionID) : atlasName - Returns a table listing the possible states for a building.
C_ContributionCollector.GetBuffs(contributionID) : spellID - Returns the buffs provided when a building is active.
C_ContributionCollector.GetContributionAppearance(contributionID, contributionState) : appearance - Returns contribution appearance info.
C_ContributionCollector.GetContributionCollectorsForMap(uiMapID) : contributionCollectors - Returns contribution buildings on a map.
C_ContributionCollector.GetContributionResult(contributionID) : result - Returns a value indicating the result of a contribution.
C_ContributionCollector.GetDescription(contributionID) : description - Returns the description of a building.
C_ContributionCollector.GetManagedContributionsForCreatureID(creatureID) : contributionID - Returns contributions for a creature.
C_ContributionCollector.GetName(contributionID) : name - Returns the name of a building.
C_ContributionCollector.GetOrderIndex(contributionID) : orderIndex - Returns the order in which buildings are displayed.
C_ContributionCollector.GetRequiredContributionCurrency(contributionID) : currencyID, currencyAmount - Returns the currencyID and amount needed to contribute to a building.
C_ContributionCollector.GetRequiredContributionItem(contributionID) : itemID, itemCount - Returns the itemID and amount needed to contribute to a building.
C_ContributionCollector.GetRewardQuestID(contributionID) : questID - Returns the hidden quest that is flagged completed when a contribution is made.
C_ContributionCollector.GetState(contributionID) : contributionState, contributionPercentageComplete, timeOfNextStateChange, ... - Returns the current state of a building, its completion percentage, and time until next state change.
C_ContributionCollector.HasPendingContribution(contributionID) : hasPending - Returns whether there is a pending contribution.
C_ContributionCollector.IsAwaitingRewardQuestData(contributionID) : awaitingData - Returns whether the contribution API is waiting for quest data.

Battle for Azeroth

Azerite

Azerite was added in Patch 8.0.1

C_AzeriteItem.FindActiveAzeriteItem() : activeAzeriteItemLocation
C_AzeriteItem.GetAzeriteItemXPInfo(azeriteItemLocation) : xp, totalLevelXP
C_AzeriteItem.GetPowerLevel(azeriteItemLocation) : powerLevel
C_AzeriteItem.GetUnlimitedPowerLevel(azeriteItemLocation) : powerLevel
C_AzeriteItem.HasActiveAzeriteItem() : hasActiveAzeriteItem
C_AzeriteItem.IsAzeriteItem(itemLocation) : isAzeriteItem
C_AzeriteItem.IsAzeriteItemAtMaxLevel() : isAtMax
C_AzeriteItem.IsAzeriteItemByID(itemInfo) : isAzeriteItem
C_AzeriteItem.IsAzeriteItemEnabled(azeriteItemLocation) : isEnabled
C_AzeriteEmpoweredItem.CanSelectPower(azeriteEmpoweredItemLocation, powerID) : canSelect
C_AzeriteEmpoweredItem.CloseAzeriteEmpoweredItemRespec()
C_AzeriteEmpoweredItem.ConfirmAzeriteEmpoweredItemRespec(azeriteEmpoweredItemLocation)
C_AzeriteEmpoweredItem.GetAllTierInfo(azeriteEmpoweredItemLocation) : tierInfo
C_AzeriteEmpoweredItem.GetAllTierInfoByItemID(itemInfo [, classID]) : tierInfo
C_AzeriteEmpoweredItem.GetAzeriteEmpoweredItemRespecCost() : cost
C_AzeriteEmpoweredItem.GetPowerInfo(powerID) : powerInfo
C_AzeriteEmpoweredItem.GetPowerText(azeriteEmpoweredItemLocation, powerID, level) : powerText
C_AzeriteEmpoweredItem.GetSpecsForPower(powerID) : specInfo
C_AzeriteEmpoweredItem.HasAnyUnselectedPowers(azeriteEmpoweredItemLocation) : hasAnyUnselectedPowers
C_AzeriteEmpoweredItem.HasBeenViewed(azeriteEmpoweredItemLocation) : hasBeenViewed
C_AzeriteEmpoweredItem.IsAzeriteEmpoweredItem(itemLocation) : isAzeriteEmpoweredItem
C_AzeriteEmpoweredItem.IsAzeriteEmpoweredItemByID(itemInfo) : isAzeriteEmpoweredItem
C_AzeriteEmpoweredItem.IsAzeritePreviewSourceDisplayable(itemInfo [, classID]) : isAzeritePreviewSourceDisplayable
C_AzeriteEmpoweredItem.IsHeartOfAzerothEquipped() : isHeartOfAzerothEquipped
C_AzeriteEmpoweredItem.IsPowerAvailableForSpec(powerID, specID) : isPowerAvailableForSpec
C_AzeriteEmpoweredItem.IsPowerSelected(azeriteEmpoweredItemLocation, powerID) : isSelected
C_AzeriteEmpoweredItem.SelectPower(azeriteEmpoweredItemLocation, powerID) : success
C_AzeriteEmpoweredItem.SetHasBeenViewed(azeriteEmpoweredItemLocation)
C_PaperDollInfo.GetInspectAzeriteItemEmpoweredChoices(unit, equipmentSlotIndex) : azeritePowerIDs

Azerite Essences were added in Patch 8.2.0

C_AzeriteEssence.ActivateEssence(essenceID, milestoneID)
C_AzeriteEssence.CanActivateEssence(essenceID, milestoneID) : canActivate
C_AzeriteEssence.CanDeactivateEssence(milestoneID) : canDeactivate
C_AzeriteEssence.CanOpenUI() : canOpen
C_AzeriteEssence.ClearPendingActivationEssence()
C_AzeriteEssence.CloseForge()
C_AzeriteEssence.GetEssenceHyperlink(essenceID, rank) : link
C_AzeriteEssence.GetEssenceInfo(essenceID) : info
C_AzeriteEssence.GetEssences() : essences
C_AzeriteEssence.GetMilestoneEssence(milestoneID) : essenceID
C_AzeriteEssence.GetMilestoneInfo(milestoneID) : info
C_AzeriteEssence.GetMilestones() : milestones
C_AzeriteEssence.GetMilestoneSpell(milestoneID) : spellID
C_AzeriteEssence.GetNumUnlockedEssences() : numUnlockedEssences
C_AzeriteEssence.GetNumUsableEssences() : numUsableEssences
C_AzeriteEssence.GetPendingActivationEssence() : essenceID
C_AzeriteEssence.HasNeverActivatedAnyEssences() : hasNeverActivatedAnyEssences
C_AzeriteEssence.HasPendingActivationEssence() : hasEssence
C_AzeriteEssence.IsAtForge() : isAtForge
C_AzeriteEssence.SetPendingActivationEssence(essenceID)
C_AzeriteEssence.UnlockMilestone(milestoneID)

Corruption

Corrupted items were added in Patch 8.3.0

C_Item.IsItemCorrupted(itemLoc) : isCorrupted
C_Item.IsItemCorruptionRelated(itemLoc) : isCorruptionRelated
C_Item.IsItemCorruptionResistant(itemLoc) : isCorruptionResistant
C_ItemInteraction.SetCorruptionReforgerItemTooltip()
GetCorruption()
GetCorruptionResistance()
GetNegativeCorruptionEffectInfo() : corruptionEffects
IsCorruptedItem(item)

Island Expeditions

Island Expeditions were added in Patch 8.0.1

C_IslandsQueue.CloseIslandsQueueScreen() - Closes the islands queue screen.
C_IslandsQueue.GetIslandDifficultyInfo() : islandDifficultyInfo - Returns the island expedition modes.
C_IslandsQueue.GetIslandsMaxGroupSize() : maxGroupSize - Returns the max group size for expeditions.
C_IslandsQueue.GetIslandsWeeklyQuestID() : questID - Returns the weekly island quest.
C_IslandsQueue.QueueForIsland(difficultyID) - Queues for an island expedition.
C_IslandsQueue.RequestPreloadRewardData(questId) - Preloads reward data for a quest id.
C_PartyPose.GetPartyPoseInfoByMapID(mapID) : info - Returns party pose info for a map.
ShouldShowIslandsWeeklyPOI()

Scrapping Machine

The Scrapper was added in Patch 8.0.1

C_Item.CanScrapItem(itemLoc) : canBeScrapped
C_ScrappingMachineUI.CloseScrappingMachine()
C_ScrappingMachineUI.DropPendingScrapItemFromCursor(index)
C_ScrappingMachineUI.GetCurrentPendingScrapItemLocationByIndex(index) : itemLoc
C_ScrappingMachineUI.GetScrapSpellID() : spellID
C_ScrappingMachineUI.GetScrappingMachineName() : name
C_ScrappingMachineUI.HasScrappableItems() : hasScrappableItems
C_ScrappingMachineUI.RemoveAllScrapItems()
C_ScrappingMachineUI.RemoveCurrentScrappingItem()
C_ScrappingMachineUI.RemoveItemToScrap(index)
C_ScrappingMachineUI.ScrapItems()
C_ScrappingMachineUI.SetScrappingMachine(gameObject)
C_ScrappingMachineUI.ValidateScrappingList()

Shadowlands

Ardenweald

C_ArdenwealdGardening.GetGardenData() : data
C_ArdenwealdGardening.IsGardenAccessible() : accessible

The Maw

C_Spell.GetMawPowerBorderAtlasBySpellID(spellID) : rarityBorderAtlas
GetMawPowerLinkBySpellID(spellID)

Torghast

C_PartyInfo.IsPartyInJailersTower() : isPartyInJailersTower
C_ScenarioInfo.GetJailersTowerTypeString(runType) : typeString
GetJailersTowerLevel()
IsInJailersTower()
IsJailersTowerLayerTimeLocked()
IsOnGroundFloorInJailersTower()

Anima

Anima was added in Patch 9.0.1

C_AnimaDiversion.CloseUI()
C_AnimaDiversion.GetAnimaDiversionNodes() : animaNodes
C_AnimaDiversion.GetOriginPosition() : normalizedPosition
C_AnimaDiversion.GetReinforceProgress() : progress
C_AnimaDiversion.GetTextureKit() : textureKit
C_AnimaDiversion.OpenAnimaDiversionUI()
C_AnimaDiversion.SelectAnimaNode(talentID, temporary)
C_Item.IsAnimaItemByID(itemInfo) : isAnimaItem

Covenants

Covenants were added in Patch 9.0.1

C_Covenants.GetActiveCovenantID() : covenantID
C_Covenants.GetCovenantData(covenantID) : data
C_Covenants.GetCovenantIDs() : covenantID
C_CovenantCallings.AreCallingsUnlocked() : unlocked
C_CovenantCallings.RequestCallings()
C_CovenantPreview.CloseFromUI()
C_CovenantPreview.GetCovenantInfoForPlayerChoiceResponseID(playerChoiceResponseID) : previewInfo
C_CovenantSanctumUI.CanAccessReservoir() : canAccess
C_CovenantSanctumUI.CanDepositAnima() : canDeposit
C_CovenantSanctumUI.DepositAnima()
C_CovenantSanctumUI.EndInteraction()
C_CovenantSanctumUI.GetAnimaInfo() : currencyID, maxDisplayableValue
C_CovenantSanctumUI.GetCurrentTalentTreeID() : currentTalentTreeID
C_CovenantSanctumUI.GetFeatures() : features
C_CovenantSanctumUI.GetRenownLevel() : level
C_CovenantSanctumUI.GetRenownLevels(covenantID) : levels
C_CovenantSanctumUI.GetRenownRewardsForLevel(covenantID, renownLevel) : rewards
C_CovenantSanctumUI.GetSanctumType() : sanctumType
C_CovenantSanctumUI.GetSoulCurrencies() : currencyIDs
C_CovenantSanctumUI.HasMaximumRenown() : hasMaxRenown
C_CovenantSanctumUI.IsPlayerInRenownCatchUpMode() : isInCatchUpMode
C_CovenantSanctumUI.IsWeeklyRenownCapped() : isWeeklyCapped
C_CovenantSanctumUI.RequestCatchUpState()

Legendary Crafting

Shadowlands legendaries can be crafted in the Forge of Domination.

C_LegendaryCrafting.CloseRuneforgeInteraction()
C_LegendaryCrafting.CraftRuneforgeLegendary(description)
C_LegendaryCrafting.GetRuneforgeItemPreviewInfo(baseItem [, runeforgePowerID, modifiers]) : info
C_LegendaryCrafting.GetRuneforgeLegendaryComponentInfo(runeforgeLegendary) : componentInfo
C_LegendaryCrafting.GetRuneforgeLegendaryCost(baseItem) : cost
C_LegendaryCrafting.GetRuneforgeLegendaryCraftSpellID() : spellID
C_LegendaryCrafting.GetRuneforgeLegendaryCurrencies() : currencies
C_LegendaryCrafting.GetRuneforgeLegendaryUpgradeCost(runeforgeLegendary, upgradeItem) : cost
C_LegendaryCrafting.GetRuneforgeModifierInfo(baseItem, [powerID], addedModifierIndex, modifiers) : name, description
C_LegendaryCrafting.GetRuneforgeModifiers() : modifiedReagentItemIDs
C_LegendaryCrafting.GetRuneforgePowerInfo(runeforgePowerID) : power
C_LegendaryCrafting.GetRuneforgePowers([baseItem, filter]) : primaryRuneforgePowerIDs, otherRuneforgePowerIDs
C_LegendaryCrafting.GetRuneforgePowersByClassSpecAndCovenant([classID, specID, covenantID, filter]) : runeforgePowerIDs
C_LegendaryCrafting.GetRuneforgePowerSlots(runeforgePowerID) : slotNames
C_LegendaryCrafting.IsRuneforgeLegendary(item) : isRuneforgeLegendary
C_LegendaryCrafting.IsRuneforgeLegendaryMaxLevel(runeforgeLegendary) : isMaxLevel
C_LegendaryCrafting.IsUpgradeItemValidForRuneforgeLegendary(runeforgeLegendary, upgradeItem) : isValid
C_LegendaryCrafting.IsValidRuneforgeBaseItem(baseItem) : isValid
C_LegendaryCrafting.MakeRuneforgeCraftDescription(baseItem, runeforgePowerID, modifiers) : description
C_LegendaryCrafting.UpgradeRuneforgeLegendary(runeforgeLegendary, upgradeItem)
DEPRECATED C_LegendaryCrafting.GetRuneforgePowersByClassAndSpec([classID, specID, filter]) : runeforgePowerIDs

Soulbinds

Relates to Soulbinding and Conduits.

C_Soulbinds.ActivateSoulbind(soulbindID)
C_Soulbinds.CanActivateSoulbind(soulbindID) : result, errorDescription
C_Soulbinds.CanModifySoulbind() : result
C_Soulbinds.CanResetConduitsInSoulbind(soulbindID) : result, errorDescription
C_Soulbinds.CanSwitchActiveSoulbindTreeBranch() : result
C_Soulbinds.CloseUI()
C_Soulbinds.CommitPendingConduitsInSoulbind(soulbindID)
C_Soulbinds.FindNodeIDActuallyInstalled(soulbindID, conduitID) : nodeID
C_Soulbinds.FindNodeIDAppearingInstalled(soulbindID, conduitID) : nodeID
C_Soulbinds.FindNodeIDPendingInstall(soulbindID, conduitID) : nodeID
C_Soulbinds.FindNodeIDPendingUninstall(soulbindID, conduitID) : nodeID
C_Soulbinds.GetActiveSoulbindID() : soulbindID
C_Soulbinds.GetConduitCollection(conduitType) : collectionData
C_Soulbinds.GetConduitCollectionCount() : count
C_Soulbinds.GetConduitCollectionData(conduitID) : collectionData
C_Soulbinds.GetConduitCollectionDataAtCursor() : collectionData
C_Soulbinds.GetConduitCollectionDataByVirtualID(virtualID) : collectionData
C_Soulbinds.GetConduitDisplayed(nodeID) : conduitID
C_Soulbinds.GetConduitHyperlink(conduitID, rank) : link
C_Soulbinds.GetConduitIDPendingInstall(nodeID) : conduitID
C_Soulbinds.GetConduitQuality(conduitID, rank) : quality
C_Soulbinds.GetConduitRank(conduitID) : conduitRank
C_Soulbinds.GetConduitSpellID(conduitID, conduitRank) : spellID
C_Soulbinds.GetInstalledConduitID(nodeID) : conduitID
C_Soulbinds.GetNode(nodeID) : node
C_Soulbinds.GetSoulbindData(soulbindID) : data
C_Soulbinds.GetSpecsAssignedToSoulbind(soulbindID) : specIDs
C_Soulbinds.GetTree(treeID) : tree
C_Soulbinds.HasAnyInstalledConduitInSoulbind(soulbindID) : result
C_Soulbinds.HasAnyPendingConduits() : result
C_Soulbinds.HasPendingConduitsInSoulbind(soulbindID) : result
C_Soulbinds.IsConduitInstalled(nodeID) : result
C_Soulbinds.IsConduitInstalledInSoulbind(soulbindID, conduitID) : result
C_Soulbinds.IsItemConduitByItemInfo(itemInfo) : result
C_Soulbinds.IsNodePendingModify(nodeID) : result
C_Soulbinds.IsUnselectedConduitPendingInSoulbind(soulbindID) : result
C_Soulbinds.ModifyNode(nodeID, conduitID, type)
C_Soulbinds.SelectNode(nodeID)
C_Soulbinds.UnmodifyNode(nodeID)
C_Item.IsItemConduit(itemLoc) : isConduit
SetCursorVirtualItem()
DEPRECATED C_Soulbinds.GetConduitItemLevel(conduitID, rank) : itemLevel

Classic

WoW Icon update See Global functions/Classic for a complete list.

Note
Note: This list is up to date as of Patch 1.13.6 (36714) Nov 20 2020
C_StorePublic.HasPurchaseableProducts()
AttemptToSaveBindings(which) - Writes the current in-memory key bindings to disk.
CastingInfo() - Returns the player's currently casting spell.
ChannelInfo() - Returns the player's currently channeling spell.
GetFirstBagBankSlotIndex() - Returns the index of the first bag slot within the bank container.
IsPlayerAttacking(unit) - Returns if the player is melee attacking the specified unit.
ShowCloak(flag) - Enables or disables display of your cloak.
ShowHelm(flag) - Enables or disables display of your helm.
ShowingCloak() - Returns if the player is showing his cloak.
ShowingHelm() - Returns if the player is showing his helm.
UnitResistance(unit [, resistanceIndex]) - Returns information about a unit's resistance.

Auction House

CalculateAuctionDeposit(runTime, stackSize, numStacks) - Returns the required deposit for the current selling item given the specified duration (1=12h, 2=24h, 3=48h).
CanCancelAuction(index) - Returns 1 if auction can be canceled.
CanSendAuctionQuery() - Returns 1 if auction search button would be active, nil otherwise.
CancelAuction(index) - Cancel the specified auction (on the "owner" list).
CancelSell() - Clears the auction house listing queue, not creating any additional auctions.
ClickAuctionSellItemButton() - Puts the currently 'picked up' item into the 'create auction' slot.
CloseAuctionHouse() - Will close the AuctionFrame if opened.
GetAuctionDeposit(runTime, minBid, buyoutPrice [, itemCount, numStacks])
GetAuctionHouseDepositRate() - Returns the deposit rate (percentage) for the currently open auction house (Possibly out-dated by CalculateAuctionDeposit).
GetAuctionItemBattlePetInfo(type, index) - Returns model details about the specified Battle Pet auction item.
GetAuctionItemInfo(type, index) - Returns details about the specified auction item.
GetAuctionItemLink(type, index) - Returns an itemLink for the specified auction item.
GetAuctionItemSubClasses(classID) - Returns subcategories for the item category.
GetAuctionItemTimeLeft(type, index) - Returns the time left status of the specified auction item.
GetAuctionSellItemInfo() - Returns information about the current selling item (or nil if none selected).
GetAuctionSort()
GetBidderAuctionItems([page]) - Returns details about an auction item on which the user is bidding (possibly out-dated by GetAuctionItemInfo)
GetNumAuctionItems(type) - Returns the size of the specified auction item list.
GetOwnerAuctionItems([page]) - Returns details about an auction item of which the user is the owner (possibly out-dated by GetAuctionItemInfo)
GetSelectedAuctionItem(type) - Returns the index (1-50) of the selected auction item or 0 if none is selected.
IsAuctionSortReversed(type, sort) - Returns 1 if the specified auction list and sort is reversed, nil otherwise.
PlaceAuctionBid(type, index, bid) - Place a bid on the selected auction item.
PostAuction(minBid, buyoutPrice, runTime, count)
QueryAuctionItems(text, minLevel, maxLevel, page, usable, rarity, getAll, exactMatch, filterData) - Performs a search of the auction house with the specified characteristics.
SetAuctionsTabShowing(showing) - Enables the right-click to select an item for posting from your bags shortcut.
SetSelectedAuctionItem(type, index) - Selects a specific item in the auction house.
SortAuctionApplySort(type)
SortAuctionClearSort(type)
SortAuctionItems(type, sort) - Toggles sorting the specific auction list by a specific column.
SortAuctionSetSort(type, sort [, reverse]) - Sorts the specific auction list by a specific column, optionally in reverse order. Requires SortAuctionApplySort() or another search query afterwards to update.
DEPRECATED StartAuction(minBid, buyoutPrice, runTime, stackSize, numStacks) - Starts the auction you have created in the Create Auction panel.

Hunter Pets

ConfirmPetUnlearn() - Confirms unlearning the current pet's skills.
GetPetHappiness() - Returns the pet's happiness, damage percentage, and loyalty gain rate.
GetPetLoyalty() - Returns pet loyalty flavor text.
GetPetTrainingPoints() - Gets the training point information about the current pet.

Stables

BuyStableSlot() - Buys the next stable slot if the stable window is open and you can afford it.
ClickStablePet(index) - Selects a stable pet.
GetNextStableSlotCost() - Returns the next stable slot's cost in copper.
GetNumStablePets() - Returns the amount of stable pets.
GetNumStableSlots() - Returns the amount of stable slots.
GetSelectedStablePet() - Gets the index of the currently selected pet in the stable.
StablePet() - Puts your current pet in the stable if there is room.
UnstablePet(index) - Unstables a pet.

Keyring

The Keyring was added again in Patch 1.13.3

HasKey() - Returns whether or not the player has a key ring.
KeyRingButtonIDToInvSlotID(buttonID) - Map a keyring button to an inventory slot button for use in inventory functions.

Professions

CloseTradeSkill()
CollapseTradeSkillSubClass(index)
DoTradeSkill(index [, repeat])
ExpandTradeSkillSubClass(index)
GetFirstTradeSkill()
GetNumPrimaryProfessions()
GetNumTradeSkills()
GetTradeSkillCooldown(index)
GetTradeSkillIcon(index)
GetTradeSkillInfo(index)
GetTradeSkillInvSlotFilter(index)
GetTradeSkillInvSlots()
GetTradeSkillItemLink(index)
GetTradeSkillItemStats()
GetTradeSkillLine()
GetTradeSkillNumMade(index)
GetTradeSkillNumReagents(index)
GetTradeSkillReagentInfo(index, reagentIndex)
GetTradeSkillReagentItemLink(index, reagentIndex)
GetTradeSkillSelectionIndex()
GetTradeSkillSubClassFilter(index)
GetTradeSkillSubClasses()
GetTradeSkillTools(index)
GetTradeskillRepeatCount()
SelectTradeSkill(index)
SetTradeSkillInvSlotFilter(index [, on\off, exclusive])
SetTradeSkillSubClassFilter(index [, on\off, exclusive])

Crafting

The Craft UI is used for Enchanting and Beast Training.

CloseCraft()
CollapseCraftSkillLine(index)
DoCraft(index)
ExpandCraftSkillLine(index)
GetCraftButtonToken()
GetCraftDescription(index)
GetCraftDisplaySkillLine()
GetCraftIcon(index)
GetCraftInfo(index)
GetCraftItemLink(index)
GetCraftName()
GetCraftNumReagents(index)
GetCraftReagentInfo(index, reagentIndex)
GetCraftReagentItemLink(index, reagentIndex)
GetCraftSelectionIndex()
GetCraftSkillLine(index)
GetCraftSpellFocus(index)
GetNumCrafts()
SelectCraft(index)

PvP

GetInspectPVPRankProgress() - Gets the inspected unit's progress towards the next PvP rank.
GetPVPLastWeekStats() - Gets the player's PVP contribution statistics for the previous week.
GetPVPRankInfo(rank [, unit]) - Returns information about a specific PvP rank.
GetPVPRankProgress() - Returns the player's progress to the next PvP rank.
GetPVPThisWeekStats() - Gets your PVP contribution statistics for the current week.
UnitIsCivilian(unit) - Determine whether a unit is a civilian (low level enemy faction NPC that counts as a dishonorable kill).
UnitPVPRank(unit) - Returns the specified unit's PvP rank ID.

Battlegrounds

GetBattlefieldInstanceInfo(index) - Returns the battlefield instance ID for an index in the battlemaster listing.
GetNumBattlefields() - Returns the number of available instances for the selected battleground at the battlemaster.
GetSelectedBattlefield() - Returns the currently selected battlefield at the battlemaster.
SetSelectedBattlefield(index) - Selects a battlefield instance at the battlemaster.

Skills

Relates to player/trainer Skills.

CollapseSkillHeader(index) - Collapses a header in the skills window.
CollapseTrainerSkillLine(index) - Collapses a header in the trainer window, hiding all spells below it.
ExpandSkillHeader(index) - Expands a header in the skills window.
ExpandTrainerSkillLine(index) - Expands a header in the trainer window, showing all spells below it.
GetNumSkillLines() - Returns the number of skill lines in the skill window, including headers.
GetSelectedSkill() - Returns the currently selected skill line.
GetSkillLineInfo(index) - Returns information on a skill line/header.
IsTrainerServiceLearnSpell(index) - Returns the type of trainer spell in the trainer window.
SetSelectedSkill(index) - Selects a skill line in the skill window.

Talents

GetNumTalents(tabIndex) - Returns the amount of talents for a specialization.
GetNumTalentTabs() - Returns the total number of talent tabs for the player.
WoW Icon update GetTalentInfo(tabIndex, talentIndex) - Returns information about a talent.
GetTalentPrereqs(tabIndex, talentIndex) - Returns the tier and column of a talent's prerequisite, and if the talent is learnable.
GetTalentTabInfo(index) - Returns information for a talent tab (tree).
UnitCharacterPoints(unit) - Returns the number of unspent talent points of the player.

Tracking

CancelTrackingBuff() - Cancels your current tracking buff (skills like Find Minerals and Track Humanoids).
GetTrackingTexture() - Returns the texture of the active tracking buff.

FrameXML

MathUtil

UI Lerp(startValue, endValue, amount) : number - Linearly interpolates between two values for a parameter amount in the closed unit interval [0, 1]
UI Clamp(value, min, max) : number
UI Saturate(value) : number
UI Wrap(value, max) : number
UI ClampDegrees(value) : number
UI ClampMod(value, mod) : number
UI NegateIf(value, condition) : number
UI PercentageBetween(value, startValue, endValue) : number
UI ClampedPercentageBetween(value, startValue, endValue) : number
UI DeltaLerp(startValue, endValue, amount, timeSec) : number
UI FrameDeltaLerp(startValue, endValue, amount) : number
UI RandomFloatInRange(minValue, maxValue) : number
UI Round(value) : number - Rounds a value.
UI Square(value) : number - Squares a value.
UI CalculateDistanceSq(x1, y1, x2, y2) : number
UI CalculateDistance(x1, y1, x2, y2) : number
UI CalculateAngleBetween(x1, y1, x2, y2) : number

TableUtil

UI ripairs(tbl) : iter, invariant, init - Reverse iterates over a sequential table.
UI tDeleteItem(tbl, item) - Removes a value from a sequential table.
UI tIndexOf(tbl, item) : index - Returns the index for a value in a table.
UI tContains(tbl, item) : boolean - Returns true if a sequential table contains a value.
UI tCompare(lhsTable, rhsTable [, depth]) : boolean - Does a deep compare on the values of the table.
UI tInvert(tbl) : table - Returns an inverted table.
UI tFilter(tbl, pred, isIndexTable) : table
UI tAppendAll(table, addedArray) - Appends the contents of a sequential table to another table.
UI tUnorderedRemove(tbl, index)
UI CopyTable(settings) : table - Returns a deep copy of a table.
UI AccumulateIf(tbl, pred) : count
UI ContainsIf(tbl, pred) : boolean
UI FindInTableIf(tbl, pred) : key, value
UI SafePack(...) : table
UI SafeUnpack(tbl) : ...

CvarUtil

UI RegisterCVar(name, value)
UI ResetTestCvars()
UI SetCVar(name, value, eventName) : success
UI GetCVar(name) : value
UI SetCVarBitfield(name, index, value, scriptCVar) : success
UI GetCVarBitfield(name, index) : boolean
UI GetCVarBool(name) : boolean
UI GetCVarDefault(name) : value

Mixins

See also the Complete list of mixins

Mixins are similar to classes in OOP languages. An object can "inherit" from multiple mixins.

UI Mixin(object, ...) - Copies mixins into an existing object.
UI CreateFromMixins(...) - Copies mixins into a new object.
UI CreateColor(r, g, b, a) - Returns a ColorMixin object.
UI CreateRectangle(left, right, top, bottom) - Returns a RectangleMixin object.
UI CreateVector2D(x, y) - Returns a Vector2DMixin object.
UI CreateVector3D(x, y, z) - Returns a Vector3DMixin object.
UI SpellMixin:CreateFromSpellID(spellID) - Returns a SpellMixin object.
UI Item:CreateFromItemID(itemID) - Returns an ItemMixin object.
UI ItemLocation:CreateFromBagAndSlot() - Returns an ItemLocationMixin object.
UI PlayerLocation:CreateFromGUID(guid) - Returns a PlayerLocationMixin object.
UI TransmogUtil.CreateTransmogLocation(slotDescriptor, transmogType, modification) - Returns a TransmogLocationMixin object.
UI AnchorMixin
UI AnimatedNumericFontStringMixin
UI DoublyLinkedListMixin
UI GridLayoutMixin
UI LineMixin
UI SecondsFormatterMixin
UI SparseGridMixin
UI TextureLoadingGroupMixin
UI CreateObjectPool(creationFunc, resetterFunc) - Creates a ObjectPoolMixin object for widgets.
UI CreateFramePool(frameType [, parent, frameTemplate, resetterFunc, forbidden]) - Creates a FramePoolMixin for Frames.
UI CreateTexturePool(parent [, layer, subLayer, textureTemplate, resetterFunc]) - Creates a TexturePoolMixin for Textures.
UI CreateFontStringPool(parent [, layer, subLayer, fontStringTemplate, resetterFunc]) - Creates a FontStringPoolMixin for FontStrings.
UI CreateActorPool(parent [, actorTemplate, resetterFunc]) - Creates an ActorPoolMixin for Actors.
UI CreateFramePoolCollection() - Creates a FramePoolCollectionMixin object for frame pools.

UIParent

UI AbbreviateLargeNumbers(value)
UI AbbreviateNumbers(value)

These functions toggle the Interface Panels, but if they use ShowUIPanel() they cannot be called in combat.

UI ShowUIPanel(frame, force)
UI PVEFrame_ToggleFrame() - Toggles the Group Finder.
UI ToggleAchievementFrame() - Shows the Achievements frame.
UI ToggleCharacter(index) - Toggles the character pane to the specified frame.
UI ToggleCollectionsJournal(index) - Toggles the Collections window.
UI ToggleEncounterJournal() - Toggles the Adventure Guide.
UI ToggleFriendsFrame([tabNumber]) - Opens/closes the friends pane, optionally on a specific tab.
UI ToggleGameMenu() - Opens/closes the game menu.
UI ToggleGuildFrame() - Toggles the Guild & Communites frame.
UI ToggleHelpFrame() - Opens the Help Request frame.
UI ToggleMinimap() - Turns the minimap display on/off.
UI TogglePVPUI() - Opens/closes the PvP frame.
UI ToggleSpellBook(bookType) - Shows the spellbook. Can show your spells or your pet's.
UI ToggleTalentFrame() - Opens the Talent frame.


Interface/SharedXML

AccountUtil

UI GameLimitedMode_IsActive()
UI GetClampedCurrentExpansionLevel()

AnchorUtil

UI AnchorUtil.CreateAnchor(point, relativeTo, relativePoint, x, y)
UI AnchorUtil.CreateGridLayout(direction, rowSize, spacingX, spacingY)
UI AnchorUtil.CreateAnchorFromPoint(region, pointIndex)
UI AnchorUtil.GridLayout(frames, initialAnchor, layout)
UI AnchorUtil.GridLayoutFactoryByCount(factoryFunction, count, initialAnchor, layout)
UI AnchorUtil.GridLayoutFactory(factoryFunction, initialAnchor, totalWidth, totalHeight, overrideDirection, overridePaddingX, overridePaddingY)
UI AnchorUtil.MirrorRegionsAlongVerticalAxis(mirrorDescriptions)
UI AnchorUtil.MirrorRegionsAlongHorizontalAxis(mirrorDescriptions)

ColorUtil

UI CreateColorFromHexString(hexColor)
UI CreateColorFromBytes(r, g, b, a)
UI AreColorsEqual(left, right)
UI GetClassColor(classFilename)
UI GetClassColorObj(classFilename)
UI GetClassColoredTextForUnit(unit, text)
UI GetFactionColor(factionGroupTag)

EasingUtil

UI EasingUtil.InQuadratic(percent)
UI EasingUtil.OutQuadratic(percent)
UI EasingUtil.InOutQuadratic(percent)
UI EasingUtil.InCubic(percent)
UI EasingUtil.OutCubic(percent)
UI EasingUtil.InOutCubic(percent)
UI EasingUtil.InQuartic(percent)
UI EasingUtil.OutQuartic(percent)
UI EasingUtil.InOutQuartic(percent)
UI EasingUtil.InQuintic(percent)
UI EasingUtil.OutQuintic(percent)
UI EasingUtil.InOutQuintic(percent)

ErrorUtil

UI CallErrorHandler(...)

Flags

UI Flags_CreateMask(...) - Creates a bitmask.
UI Flags_CreateMaskFromTable(flagsTable)
UI FlagsUtil.IsSet(bitMask, flagOrMask)

FormattingUtil

UI SplitTextIntoLines(text, delimiter)
UI SplitTextIntoHeaderAndNonHeader(text)
UI FormatValueWithSign(value)
UI FormatLargeNumber(amount) - Formats a number with dot or comma number seperators.
UI GetMoneyString(money, separateThousands)
UI FormatPercentage(percentage, roundToNearestInteger)
UI FormatFraction(numerator, denominator)
UI GetHighlightedNumberDifferenceString(baseString, newString)
UI FormatUnreadMailTooltip(tooltip, headerText, senders)
UI GetCurrencyString(currencyID, overrideAmount, colorCode, abbreviate)
UI GetCurrenciesString(currencies)
UI ReplaceGenderTokens(string, gender)

FrameUtil

UI FrameUtil.RegisterFrameForEvents(frame, events)
UI FrameUtil.UnregisterFrameForEvents(frame, events)
UI FrameUtil.RegisterFrameForUnitEvents(frame, events, ...)
UI DoesAncestryInclude(ancestry, frame)
UI GetUnscaledFrameRect(frame, scale)
UI ApplyDefaultScale(frame, minScale, maxScale)
UI UpdateScaleForFit(frame)

FunctionUtil

UI ExecuteFrameScript(frame, scriptName, ...) - Manually calls the handler for a frame script.
UI CallMethodOnNearestAncestor(self, methodName, ...)
UI GetValueOrCallFunction(tbl, key, ...)
UI GenerateClosure(f, ...)

InterfaceUtil

UI ReloadUI()
UI StoreInterfaceUtil.OpenToSubscriptionProduct()

LinkUtil

UI ExtractHyperlinkString(linkString) - Strips any UI escape sequence (e.g. color coding) from a hyperlink.
UI ExtractLinkData(link)
UI ExtractQuestRewardID(linkString)
UI GetItemInfoFromHyperlink(link)
UI GetAchievementInfoFromHyperlink(link)
UI GetURLIndexAndLoadURL(self, link)

NineSlice

UI NineSliceUtil.ApplyUniqueCornersLayout(self, textureKit)
UI NineSliceUtil.ApplyIdenticalCornersLayout(self, textureKit)
UI NineSliceUtil.ApplyLayout(container, userLayout, textureKit)
UI NineSliceUtil.DisableSharpening(container)
UI NineSliceUtil.ApplyLayoutByName(container, userLayoutName, textureKit)
UI NineSliceUtil.GetLayout(layoutName)
UI NineSliceUtil.AddLayout(layoutName, layout)

PixelUtil

UI PixelUtil.GetPixelToUIUnitFactor()
UI PixelUtil.GetNearestPixelSize(uiUnitSize, layoutScale, minPixels)
UI PixelUtil.SetWidth(region, width, minPixels)
UI PixelUtil.SetHeight(region, height, minPixels)
UI PixelUtil.SetSize(region, width, height, minWidthPixels, minHeightPixels)
UI PixelUtil.SetPoint(region, point, relativeTo, relativePoint, offsetX, offsetY, minOffsetXPixels, minOffsetYPixels)
UI PixelUtil.SetStatusBarValue(statusBar, value)

RegionUtil

UI RegionUtil.IsDescendantOf(potentialDescendant, potentialAncestor)
UI RegionUtil.IsDescendantOfOrSame(potentialDescendant, potentialAncestorOrSame)
UI RegionUtil.CalculateDistanceSqBetween(region1, region2)
UI RegionUtil.CalculateDistanceBetween(region1, region2)
UI RegionUtil.CalculateAngleBetween(region1, region2)

RestrictedInfrastructure

UI tostringall(...)
UI IsFrameHandle(handle, protected)
UI GetFrameHandleFrame(handle, protected, onlyProtected)
UI GetFrameHandle(frame, protected)

ScriptAnimationUtil

UI ScriptAnimationUtil.GetScriptAnimationLock(region)
UI ScriptAnimationUtil.ReleaseScriptAnimationLock(region)
UI ScriptAnimationUtil.IsScriptAnimationLockActive(region)
UI ScriptAnimationUtil.ShakeFrameRandom(region, magnitude, duration, frequency)
UI ScriptAnimationUtil.ShakeFrame(region, shake, maximumDuration, frequency)
UI ScriptAnimationUtil.GenerateEasedVariationCallback(easingFunction, distanceX, distanceY, alpha, scale)
UI ScriptAnimationUtil.StartScriptAnimation(region, variationCallback, duration, onFinish)

ScriptedAnimationEffects

UI ScriptedAnimationEffectsUtil.GetEffectByID(effectID)
UI ScriptedAnimationEffectsUtil.ReloadDB()

TextureUtil

UI GetTextureInfo(obj)
UI SetClampedTextureRotation(texture, rotationDegrees)
UI ClearClampedTextureRotation(texture)
UI GetTexCoordsByGrid(xOffset, yOffset, textureWidth, textureHeight, gridWidth, gridHeight)
UI GetTexCoordsForRole(role)
UI CreateTextureMarkup(file, fileWidth, fileHeight, width, height, left, right, top, bottom, xOffset, yOffset)
UI CreateAtlasMarkup(atlasName, width, height, offsetX, offsetY)
UI SetupAtlasesOnRegions(frame, regionsToAtlases, useAtlasSize)
UI GetFinalNameFromTextureKit(fmt, textureKits)
UI SetupTextureKitOnFrame(textureKit, frame, fmt, setVisibility, useAtlasSize)
UI SetupTextureKitOnFrames(textureKit, frames, setVisibilityOfRegions, useAtlasSize)
UI SetupTextureKitOnRegions(textureKit, frame, regions, setVisibilityOfRegions, useAtlasSize)
UI SetupTextureKitsFromRegionInfo(textureKit, frame, regionInfoList)

TimeUtil

UI SecondsToMinutes(seconds)
UI MinutesToSeconds(minutes)
UI HasTimePassed(testTime, amountOfTime)
UI SecondsToClock(seconds, displayZeroHours)
UI SecondsToTime(seconds, noSeconds, notAbbreviated, maxCount, roundUp) - Converts a number of seconds into a readable formatted string.
UI SecondsToTimeAbbrev(seconds) - Converts a number of seconds into a readable and abbreviated formatted string.
UI FormatShortDate(day, month, year)

UnitUtil

UI GetPlayerGuid()
UI IsPlayerGuid(guid)
UI IsPlayerInitialSpec()


Interface/FrameXML

AchievementUtil

UI AchievementUtil.IsCriteriaAchievementEarned(achievementID, criteriaIndex)
UI AchievementUtil.IsCriteriaReputationGained(achievementID, criteriaIndex, checkCriteriaAchievement, countHiddenCriteria)
UI AchievementUtil.IsCategoryFeatOfStrength(category)
UI AchievementUtil.IsFeatOfStrength(achievementID)

ActionButtonUtil

UI ActionButtonUtil.ShowAllActionButtonGrids()
UI ActionButtonUtil.HideAllActionButtonGrids()
UI ActionButtonUtil.SetAllQuickKeybindButtonHighlights(show)
UI ActionButtonUtil.ShowAllQuickKeybindButtonHighlights()
UI ActionButtonUtil.HideAllQuickKeybindButtonHighlights()

AzeriteEssenceUtil

UI AzeriteEssenceUtil.HasAnyUnlockableMilestones()
UI AzeriteEssenceUtil.GetMilestoneAtPowerLevel(powerLevel)
UI AzeriteEssenceUtil.GetMilestoneSpellInfo(milestoneID)

AzeriteUtil

UI AzeriteUtil.EnumerateEquipedAzeriteEmpoweredItems()
UI AzeriteUtil.AreAnyAzeriteEmpoweredItemsEquipped()
UI AzeriteUtil.DoEquippedItemsHaveUnselectedPowers()
UI AzeriteUtil.GetEquippedItemsUnselectedPowersCount()
UI AzeriteUtil.GenerateRequiredSpecTooltipLine(powerID)
UI AzeriteUtil.FindAzeritePowerTier(azeriteEmpoweredItemSource, powerID)
UI AzeriteUtil.GetSelectedAzeritePowerInTier(azeriteEmpoweredItemSource, tierIndex)
UI AzeriteUtil.HasSelectedAnyAzeritePower(azeriteEmpoweredItemSource)
UI AzeriteUtil.DoesBagContainAnyAzeriteEmpoweredItems(bagID)
UI AzeriteUtil.IsAzeriteItemLocationBankBag(azeriteItemLocation)

CalendarUtil

UI CalendarUtil.GetCalendarInviteStatusInfo(inviteStatus)
UI CalendarUtil.GetEventBroadcastText(event)
UI CalendarUtil.GetOngoingEventBroadcastText(event)
UI CalendarUtil.FormatCalendarTimeWeekday(messageDate)
UI CalendarUtil.AreDatesEqual(firstCalendarTime, secondCalendarTime)

CampaignUtil

UI CampaignUtil.BuildChapterProgressText(campaign, formatString)
UI CampaignUtil.GetSingleChapterText(chapterID, lineSpacing)
UI CampaignUtil.BuildAllChaptersText(campaign, lineSpacing)

CommunitiesUtil

UI CommunitiesUtil.GetMemberRGB(memberInfo)
UI CommunitiesUtil.SortClubs(clubs)
UI CommunitiesUtil.SortStreams(streams)
UI CommunitiesUtil.SortMemberInfo(clubId, memberInfoArray)
UI CommunitiesUtil.GetMemberIdsSortedByName(clubId, streamId)
UI CommunitiesUtil.GetMemberInfo(clubId, memberIds)
UI CommunitiesUtil.GetMemberInfoLookup(memberInfoArray)
UI CommunitiesUtil.GetOnlineMembers(memberInfoArray)
UI CommunitiesUtil.SortMembersByList(memberInfoLookup, memberIds)
UI CommunitiesUtil.GetAndSortMemberInfo(clubId, streamId, filterOffline)
UI CommunitiesUtil.DoesAnyCommunityHaveUnreadMessages()
UI CommunitiesUtil.DoesOtherCommunityHaveUnreadMessages(ignoreClubId)
UI CommunitiesUtil.DoesCommunityHaveUnreadMessages(clubId)
UI CommunitiesUtil.DoesCommunityHaveOtherUnreadMessages(clubId, ignoreStreamId)
UI CommunitiesUtil.GetStreamNotificationSettingsLookup(clubId)
UI CommunitiesUtil.DoesCommunityStreamHaveUnreadMessages(clubId, streamId)
UI CommunitiesUtil.CanKickClubMember(clubPrivileges, memberInfo)
UI CommunitiesUtil.ClearAllUnreadNotifications(clubId)
UI CommunitiesUtil.OpenInviteDialog(clubId, streamId)
UI CommunitiesUtil.FindCommunityAndStreamByName(communityName, streamName)
UI CommunitiesUtil.FindGuildStreamByType(clubStreamType)
UI CommunitiesUtil.GetRoleSpecClassLine(classID, specID)
UI CommunitiesUtil.AddLookingForLines(tooltip, recruitingSpecIds, recruitingSpecIdMap, playerSpecs)

CovenantUtil

UI CovenantUtil.GetRenownRewardDisplayData(rewardInfo, onItemUpdateCallback)
UI CovenantUtil.GetUnformattedRenownRewardInfo(rewardInfo, onItemUpdateCallback)
UI CovenantUtil.GetRenownRewardInfo(rewardInfo, onItemUpdateCallback)

CurrencyContainer

UI CurrencyContainerUtil.GetCurrencyContainerInfo(currencyID, numItems, name, texture, quality)
UI CurrencyContainerUtil.GetCurrencyContainerInfoForAlert(currencyID, quantity, name, texture, quality)

DifficultyUtil

UI DifficultyUtil.GetDifficultyName(difficultyID)
UI DifficultyUtil.IsPrimaryRaid(difficultyID)
UI DifficultyUtil.GetNextPrimaryRaidDifficultyID(difficultyID)
UI DifficultyUtil.GetMaxPlayers(difficultyID)

ItemRef

UI SetItemRef(link, text, button, chatFrame) - Handles item link tooltips in chat.
UI GetFixedLink(text, quality)
UI GetBattlePetAbilityHyperlink(abilityID, maxHealth, power, speed)
UI GetPlayerLink(characterName, linkDisplayText, lineID, chatType, chatTarget)
UI GetBNPlayerLink(name, linkDisplayText, bnetIDAccount, lineID, chatType, chatTarget)
UI GetGMLink(gmName, linkDisplayText, lineID)
UI GetBNPlayerCommunityLink(playerName, linkDisplayText, bnetIDAccount, clubId, streamId, epoch, position)
UI GetPlayerCommunityLink(playerName, linkDisplayText, clubId, streamId, epoch, position)
UI GetClubTicketLink(ticketId, clubName, clubType)
UI GetClubFinderLink(clubFinderId, clubName)
UI GetCalendarEventLink(monthOffset, monthDay, index)
UI GetCommunityLink(clubId)
UI LinkUtil.SplitLink(link)
UI LinkUtil.ExtractLink(text)
UI LinkUtil.IsLinkType(link, matchLinkType)

ItemUtil

UI ItemButtonUtil.RegisterCallback(...)
UI ItemButtonUtil.UnregisterCallback(...)
UI ItemButtonUtil.TriggerEvent(...)
UI ItemButtonUtil.GetItemContext()
UI ItemButtonUtil.HasItemContext()
UI ItemButtonUtil.GetItemContextMatchResultForItem(itemLocation)
UI ItemButtonUtil.GetItemContextMatchResultForContainer(bagID)
UI ItemUtil.GetItemDetails(itemLink, quantity, isCurrency, lootSource)
UI ItemUtil.PickupBagItem(itemLocation)
UI ItemUtil.GetOptionalReagentCount(itemID)

MapUtil

UI MapUtil.IsMapTypeZone(mapID)
UI MapUtil.GetMapParentInfo(mapID, mapType, topMost)
UI MapUtil.ShouldMapTypeShowQuests(mapType)
UI MapUtil.ShouldShowTask(mapID, info)
UI MapUtil.MapHasUnlockedBounties(mapID)
UI MapUtil.MapHasEmissaries(mapID)
UI MapUtil.FindBestAreaNameAtMouse(mapID, normalizedCursorX, normalizedCursorY)
UI MapUtil.GetDisplayableMapForPlayer()
UI MapUtil.GetBountySetMaps(bountySetID)
UI MapUtil.GetMapCenterOnMap(mapID, topMapID)
UI MapUtil.IsChildMap(mapID, ancestorMapID)
UI MapUtil.IsOribosMap(mapID)
UI MapUtil.IsShadowlandsZoneMap(mapID)
UI MapUtil.MapShouldShowWorldQuestFilters(mapID)

PVPUtil

UI PVPUtil.GetTierName(tierEnum)
UI PVPUtil.ShouldShowLegacyRewards()

PartyUtil

UI PartyUtil.GetMinLevel()
UI PartyUtil.GetPhasedReasonString(phaseReason, unitToken)
UI GetGroupMemberCountsForDisplay()

QuestUtils

UI QuestUtil.GetWorldQuestAtlasInfo(worldQuestType, inProgress, tradeskillLineID)
UI QuestUtil.GetQuestIconOffer(isLegendary, frequency, isRepeatable, isCampaign, isCovenantCalling)
UI QuestUtil.ApplyQuestIconOfferToTexture(texture, ...)
UI QuestUtil.GetQuestIconActive(isComplete, isLegendary, frequency, isRepeatable, isCampaign, isCovenantCalling)
UI QuestUtil.ApplyQuestIconActiveToTexture(texture, ...)
UI QuestUtil.ShouldQuestIconsUseCampaignAppearance(questID)
UI QuestUtil.GetQuestIconOfferForQuestID(questID)
UI QuestUtil.ApplyQuestIconOfferToTextureForQuestID(texture, ...)
UI QuestUtil.GetQuestIconActiveForQuestID(questID)
UI QuestUtil.ApplyQuestIconActiveToTextureForQuestID(texture, ...)
UI QuestUtil.SetupWorldQuestButton(button, info, inProgress, selected, isCriteria, isSpellTarget, isEffectivelyTracked)

RuneforgeUtil

UI RuneforgeUtil.GetCostsString(costs)
UI RuneforgeUtil.IsUpgradeableRuneforgeLegendary(itemLocation)
UI RuneforgeUtil.GetRuneforgeFilterText(filter)
UI RuneforgeUtil.GetPreviewClassAndSpec()

TitleUtil

UI TitleUtil.GetNameFromTitleMaskID(titleMaskID)

TransmogUtil

UI TransmogUtil.GetInfoForEquippedSlot(transmogLocation)
UI TransmogUtil.CanEnchantSource(sourceID)
UI TransmogUtil.GetWeaponInfoForEnchant(transmogLocation)
UI TransmogUtil.GetBestWeaponInfoForIllusionDressup()
UI TransmogUtil.GetSlotID(slotName)
UI TransmogUtil.GetSlotName(slotID)
UI TransmogUtil.CreateTransmogLocation(slotDescriptor, transmogType, modification)
UI TransmogUtil.GetTransmogLocation(slotDescriptor, transmogType, modification)
UI TransmogUtil.GetTransmogLocationLookupKey(slotID, transmogType, modification)
UI TransmogUtil.GetSetIcon(setID)

See also

External links