WoW:API GetLootSlotInfo: Difference between revisions
Jump to navigation
Jump to search
GetLootSlotInfo - Documentation by tsigo -
No edit summary |
(upgraded deprecated template) |
||
Line 1: | Line 1: | ||
{{wowapi}} | |||
<center>'''GetLootSlotInfo''' ''- Documentation by [[user:tsigo|tsigo]] -''</center> | <center>'''GetLootSlotInfo''' ''- Documentation by [[user:tsigo|tsigo]] -''</center> | ||
Line 47: | Line 48: | ||
DEFAULT_CHAT_FRAME:AddMessage("coins: "..string.gsub(item,"\n"," "),1,1,1); | DEFAULT_CHAT_FRAME:AddMessage("coins: "..string.gsub(item,"\n"," "),1,1,1); | ||
Revision as of 18:03, 6 January 2007
lootIcon, lootName, lootQuantity, rarity = GetLootSlotInfo(index);
Returns the information for a loot slot.
- Arguments
- slot
- slot
- Number - the index of the item (1 is the first item)
- Returns
- lootIcon
- lootIcon
- String - The path of the graphical icon for the item.
- lootName
- lootName
- String - The name of the item.
- lootQuantity
- lootQuantity
- Number - The quantity of the item in a stack. Note: Quantity for coin is always 0.
- rarity
- rarity
- Number - 0 for grey, 1 for white items and quest items, 2 for green, 3 for blue and have not seen output with epics yet presumably it would be 4 as it has incremented so far.
- Example
local lootIcon, lootName, lootQuantity, rarity= GetLootSlotInfo(1);
- Result
- lootIcon is "Interface\Icons\INV_Misc_Coin_06"
- lootName is "3 silver 40 copper"
- lootQuantity is 0
- rarity is 0
- Notes
When returning coin data, the 'quanity' is always 0 and the 'item' contains the amount and text. It also includes a line break after each type of coin. The linebreak can be removed by string substitution.
DEFAULT_CHAT_FRAME:AddMessage("coins: "..string.gsub(item,"\n"," "),1,1,1);