← WoW API < GetQuestLogChoiceInfo
Returns a bunch of data about a quest reward choice from the quest log.
name, texture, numItems, quality, isUsable = GetQuestLogChoiceInfo(itemNum)
Parameters[edit | edit source]
Arguments[edit | edit source]
- itemNum (number) - The item number to get info on
Returns[edit | edit source]
- name (string) - The name of the quest item
- texture (string) - The texture of the quest item
- numItems (number) - How many of the quest item
- quality (number) - Quality of the quest item
- isUsable (Boolean) - If the quest item is usable by the current player
Description[edit | edit source]
Returns a bunch of data about a quest reward choice from the quest log.
Examples[edit | edit source]
local name, texture, numItems, quality, isUsable = GetQuestLogChoiceInfo(requiredItem.type, i)
Result
"Silver Belt", ..., 1, 100, false
Community content is available under CC-BY-SA unless otherwise noted.