Free WoW Macro: Clean up your Mailbox

So this is a nice macro that will empty yourmailbox and throw all the attachments in your inventory.

This should be useful when you find yourself buying tons of mats from the Auction house and your mailbox is filled up with endless mails containing auction winnings.

This macro was made using ACTool (http://www.actool.net/)

Requirements:
1. Run World of Warcraft at 1280x1024 in windowed mode with the default settings
2. Make sure you're running the default "blue" Windows XP theme

Code:

// This line is necessary to select the proper window
SetActiveWindow World of Warcraft

//information constant
constants
temp = Information
end

//check color of auction box
LoadRGB 80, 295

While {RGBRed} <> 132 AND {RGBGreen} <> 69 AND {RGBBlue} <> 0
//put mouse over inbox item 1
MousePos 61, 278
RightClick
Delay 400
//put mouse over mail attachment 1
MousePos 698, 623
RightClick
Delay 400
//put mouse over mail attachment 2
MousePos 762, 610
RightClick
Delay 400
//put mouse over mail attachment 2
MousePos 819, 627
RightClick
Delay 400
Delay 500
LoadRGB 80, 295
End

ShowMessage temp = Information, OK, Your WoW Mailbox is Empty.

No comments: