Tradeskill destroy macro

seashadow

New member
Joined
Oct 20, 2007
Messages
166
Reaction score
13
Points
0
I am working on skilling up my pottery, using the combine mac. This creates a ton of Unfired Star Ruby Encrusted Stein, is there a macro out there that can go my inventory and just destroy these steins?

Thanks.
 
try the mq2cursor plugin. Depending on how you have your TS macro setup it might do the trick.
 
Does the combine.mac get the item on your cursor after doing the combine and doing /autoinventory??

If so and you don't want any of the produced items, just get the id of the item and then instead of just /autoinventory do:

Code:
/if (${Cursor.ID}==ITEM_ID) {
     /destroy
} else {
     /autoinventory
}
 
MQ2AutoDestroy works now...just had to zone.
 
Last edited:
combine mac just autoinventories. The problem with just having it destory everytying on the cursor, it would also destroy the tools.

That is what the specified ID check is for. To prevent it from destroying anything other than the created product.