no edit summary
mNo edit summary |
No edit summary |
||
| Line 3: | Line 3: | ||
Retrieve details about an item from a mail. | Retrieve details about an item from a mail. | ||
name, itemTexture, count, quality, canUse = GetInboxItem(index) | name, itemTexture, count, quality, canUse = GetInboxItem(index, itemIndex) | ||
== Parameters == | == Parameters == | ||
=== Arguments === | === Arguments === | ||
:(index) | :(index, itemIndex) | ||
:;index : Integer - The index of the message to get information from. | :;index : Integer - The index of the message to get information from. | ||
:;itemIndex : Integer - The index of the item (1-ATTACHMENTS_MAX_RECEIVE(16)) | |||
=== Returns === | === Returns === | ||
:name, itemTexture, count, quality, canUse | :name, itemTexture, count, quality, canUse | ||
| Line 26: | Line 29: | ||
inbox_text = GetInboxText(inbox_item_index); | inbox_text = GetInboxText(inbox_item_index); | ||
-- Get the Attachment Description Text | -- Get the Attachment Description Text | ||
inbox_item = GetInboxItem(inbox_item_index); | inbox_item = GetInboxItem(inbox_item_index, 1); | ||
if (inbox_text ~= nil) then | if (inbox_text ~= nil) then | ||
-- Print the message text | -- Print the message text | ||
| Line 35: | Line 38: | ||
-- Print the attachment description | -- Print the attachment description | ||
DEFAULT_CHAT_FRAME:AddMessage("Inbox Item: " | DEFAULT_CHAT_FRAME:AddMessage("Inbox Item: " | ||
.. GetInboxItem(inbox_item_index), 1, 1, 1); | .. GetInboxItem(inbox_item_index, 1), 1, 1, 1); | ||
end | end | ||
end | end | ||