PDA

View Full Version : ah sold message


sabo
31-08-2006, 03:23 PM
i'm looking for an addon that makes a sound and or display's a message when i sold someting on AH. anyone knows if there is someting like that?

Royce Nickel Nine
31-08-2006, 04:21 PM
FuBar_MailFu

sabo
31-08-2006, 05:54 PM
thx i wil have a look :)

Royce Nickel Nine
31-08-2006, 10:26 PM
Well, or put this in your XML file:

<Frame name="AuctionAlert" hidden="true">
<Scripts>
<OnLoad>
this:RegisterEvent("CHAT_MSG_SYSTEM")
</OnLoad>
<OnEvent>
if string.find(arg1, "Your auction of .+ sold%.") then
UIErrorsFrame:AddMessage(arg1, 1.0, 1.0, 0.0, 1.0, UIERRORS_HOLD_TIME)
PlaySound("MapPing")
end
</OnEvent>
</Scripts>
</Frame>