WoW:API GetLootSlotLink: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 9: | Line 9: | ||
== Returns == | == Returns == | ||
;"itemLink" : [[itemLink]] - The itemLink for the specified item or | |||
:: nil, if index is invalid. | :: nil, if index is invalid or if the slot contains money. | ||
== Example == | == Example == |
Revision as of 13:14, 20 November 2016
Retrieves the itemLink of one item in the current loot window.
"itemLink" = GetLootSlotLink(index)
Argument
- (index)
- index
- Number - The index of the item in the list to retrieve info from (1 to GetNumLootItems())
Returns
- "itemLink"
- itemLink - The itemLink for the specified item or
- nil, if index is invalid or if the slot contains money.
Example
The example below will display the item links into your chat window.
local linkstext for index = 1, GetNumLootItems() do if (LootSlotIsItem(index)) then local iteminfo = GetLootSlotLink(index); if linkstext == nil then linkstext = iteminfo else linkstext = linkstext..iteminfo end end end DEFAULT_CHAT_FRAME:AddMessage(linkstext)