Okay, I havent been able to play alot lately (why I havent fixed my MM mac). So I have my toons up in trader ALOT. So I like to know when I get a tell or sell something. But, I dont like getting a sound when I get a tell all the time. So I wrote this little macro up. It will beep when you get a tell, will beep twice when you sell something.
To run:
Make sure tells are NOT in a seperate window.
Run macro /macro BazaarWatcher
It knows you sold something based on current weight. So anytime you add something or take somethign away from your inventory that changes the weight it will also beep.
But works well for being afk trader, having eq running in the background ect.
This is also why I would like to know if you can play a wav or mp3 file in a macro. So I can make different sounds fo different events.
BazaarWatcher.mac
To run:
Make sure tells are NOT in a seperate window.
Run macro /macro BazaarWatcher
It knows you sold something based on current weight. So anytime you add something or take somethign away from your inventory that changes the weight it will also beep.
But works well for being afk trader, having eq running in the background ect.
This is also why I would like to know if you can play a wav or mp3 file in a macro. So I can make different sounds fo different events.
BazaarWatcher.mac
Rich (BB code):
#event Tell "#*#tells you#*#"
#event Tell "#*#told you#*#"
Sub Main
/echo |-----------------------------------
/echo |Nijhals Bazaar Watcher
/echo | V1.0 Beta
/echo | Coming Online Now!
/echo |-----------------------------------
/popup Nijhals Bazaar Watcher V1.0 Beta Coming Online Now!
/declare weight int outer ${Me.CurrentWeight}
/varset weight ${Me.CurrentWeight}
:loop
/if (${weight}!=${Me.CurrentWeight}) /call Bought
/doevents
/goto :loop
Sub event_Tell
/echo Someone sent us a tell!
/popup Someone has sent us a tell!
/beep
/return
Sub Bought
/varset weight ${Me.CurrentWeight}
/echo Someone has bought something!
/popup Someone has bought something!
/beep
/beep
/return

