• 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

Macro - Macro to search for specific items on alts/bots

Joined
Aug 9, 2006
RedCents
482¢
When you need to search a character for that certain item or just want to see how many poison potions your guys are carrying...

Code:
sub main (string ItemToLookFor)
    /if (${FindItemCount[${ItemToLookFor}]}>0) /bc ${Me.CleanName} has ${FindItemCount[${ItemToLookFor}]} in inventory
    /if (${FindItemBankCount[${ItemToLookFor}]}>0) /bc ${Me.CleanName} has ${FindItemBankCount[${ItemToLookFor}]} in the bank
    /if (${ItemToLookFor.Equal[Krono]} && ${Me.Krono}>0) /bc ${Me.CleanName} has ${Me.Krono} Krono
/return

Uses MQ2EQBC

Usage: "/bcaa //mac haveany krono" will result in everyone who has at least 1 krono announcing it or search for "blue diamond" when searching bots holding tradeskill materials.
 
Code:
sub main (string ItemToLookFor)
    /if (${FindItemCount[${ItemToLookFor}]}==0 && ${FindItemBankCount[${ItemToLookFor}]}==0) /bc ${Me.CleanName} has none in inventory or bank (not counting house(es) or dragon horde or tradeskill depot
/return

Uses MQ2EQBC

This is for checking who needs something like the Drunkard's Stein

Usage: /bcaa //mac nothaveany "drunkard's stein"

Now you can QuICKLY check who needs to do specific quests when they're available or which toons need a TaskAdd to get that reward. *** DOES NOT CHECK DRAGON HORDE OR HOUSES ***
 
there are a few other resources that don't require you to use a macro for something like this. many/most folks these days aren't going to go through the extra effort to run a macro.

like mq2status

/dg all /status krono
/dg all /status item cool item
/dgf all /status item bank cool item
/dg all /status itemall cool item
 
Macro - Macro to search for specific items on alts/bots

Users who are viewing this thread

Back
Top
Cart