Public Macros ghetto tradeskills
Reply
ghetto tradeskills
for the semi afk super lazy tradeskiller

this will hit the combine button and auto inventory
More +

|combine.mac
Sub Main

:loop
/notify TradeskillWnd Combinebutton leftmouseup
/delay 1s
/autoinv
/delay 2s
/goto :loop


and this will sell back that tradeskilled item
(usage... /mac sell "Golden Opal Amulet")
More +
|sell.mac
sub main

/declare itemname string outer
/declare tmpslot int outer

/if (!${Window[MerchantWnd].Open}) {
   /echo Merchant window not open!
   /end
   }

/keypress OPEN_INV_BAGS

/varset itemname ${Param0}

/if (${itemname.Equal[NULL]}) {
   /echo Must supply an item name!
   /end
   }

/if (${FindItemCount[=${itemname}]}>0) {
   /echo Selling ${itemname}
   :sell
   /varset tmpslot ${FindItem[=${itemname}].InvSlot}
   /if (!${tmpslot}) /end
   /itemnotify ${tmpslot} leftmouseup
   /delay 1
   /shift /notify MerchantWnd MW_Sell_Button leftmouseup
   /delay 3
   /if (${FindItemCount[=${itemname}]}>0) /goto :sell
   }
/echo Sold all.

/return
Sat May 12, 2012 11:45 am
Private access granted, let me know if you want this post left in public macros.
Sat May 12, 2012 11:12 pm
Project Lead
Cool thanks, yea it's fine out here.
Sun May 13, 2012 11:41 am
Simple but nice. Going to save a copy of it. Can never have to many ways to do something.
Sun May 13, 2012 8:22 pm
Listen to This Guy
Public Macros ghetto tradeskills
Reply