WoW:API GetLootSlotLink: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 8: Line 8:
iteminfo is info of items include name,itemid, enchant, subid
iteminfo is info of items include name,itemid, enchant, subid


[[Category:API Functions|GetLootSlotLink]]
{{Template:WoW API}}
[[Category:API Inventory Functions|GetLootSlotLink]]
[[Category:API Item Functions|GetLootSlotLink]]
[[Category:API Loot Functions|GetLootSlotLink]]

Revision as of 14:57, 4 January 2006

return loot slot items link and tooltip

   for index = 1, GetNumLootItems(), 1 do
     if (LootSlotIsItem(index)) then
       local iteminfo = GetLootSlotInfo(index);
       akz_AddFishLoot(GetMinimapZoneText(), itemid);
     end
   end    

iteminfo is info of items include name,itemid, enchant, subid

Template:WoW API