WoW API: TakeInboxMoney

From AddOn Studio
Revision as of 09:20, 7 July 2006 by WoWWiki>Mikk
Jump to navigation Jump to search

WoW API < TakeInboxMoney


Take all money attached in a given letter in your inbox

TakeInboxMoney(index)


Parameters

Arguments

(index)
index
Number - a number representing a message in the inbox

Returns

nil

Example

for i=GetInboxNumItems(), 1, -1 do 
  TakeInboxMoney(i); 
end;