• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

Bazaar Watcher (sounds off when tell or sell)

nijhal

Member
Joined
Feb 22, 2006
RedCents
10¢
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
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
 
Sounds like a good idea to help with answering questions right away so you dont miss a sale and cool to know that you made a sale. Nice.... I like it.
 
Make and audio trigger and link it to the macro.

I just use audio triggers for that stuff.

"is browsing your wares" = Someone is shopping
"has purchased" = Bling bling! Sale baby!
"tell's you" = Someone Sent a tell and needs a response!

Now you can make your own audio sounds by using the windows sound recorder. And once you made it, just save it in yoru sounds directory and and upload it to the audio trigger. Sounds difficult but is really really easy.
 
Bazaar Watcher (sounds off when tell or sell)

Users who are viewing this thread

Back
Top
Cart