WoW:API GetQuestLogChoiceInfo: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 34: Line 34:


: Returns a bunch of data about a quest reward choice from the quest log.
: Returns a bunch of data about a quest reward choice from the quest log.


----
----
{{Template:WoW API}}
{{WoW API}}
[[Category:API Functions|GetQuestLogChoiceInfo]]
[[Category:API Quest Functions|GetQuestLogChoiceInfo]]

Revision as of 06:04, 4 January 2006

GetQuestLogChoiceInfo -Documentation by AlexanderYoshi-

Returns a bunch of data about a quest reward choice from the quest log.

GetQuestLogChoiceInfo(itemNum);

Arguments
(Number itemNum)
itemNum
The item number to get info on

Returns
String name, String texture, Number numItems, Number quality, Boolean isUsable
name
The name of the quest item
texture
The texture of the quest item
numItems
How many of the quest item
quality
Quality of the quest item
isUsable
If the quest item is usable by the current player

Example
local name, texture, numItems, quality, isUsable = GetQuestLogChoiceInfo(requiredItem.type, i);
Result
"Silver Belt", ..., 1, 100, false

Description
Returns a bunch of data about a quest reward choice from the quest log.



Template:WoW API