Simple AFK Combine, Auto-Inventory TS Macro

Have a macro idea but not sure where to start? Ask here.

Moderator: MacroQuest Developers

the-hated
orc pawn
orc pawn
Posts: 11
Joined: Sun May 07, 2006 7:48 am

Simple AFK Combine, Auto-Inventory TS Macro

Post by the-hated » Sun Dec 10, 2006 7:45 am

I'm looking for basically what the subject of this message says, a simple macro that once i select the recipe from the list and start the macro it will keep hitting combine and then auto-inventory until out of one or more of the ingredients... does this exist?

Auronin
a ghoul
a ghoul
Posts: 80
Joined: Tue Jul 11, 2006 7:52 am

Post by Auronin » Sun Dec 10, 2006 8:31 am

...
Last edited by Auronin on Sun Jan 21, 2007 9:21 am, edited 1 time in total.

Jago668
orc pawn
orc pawn
Posts: 22
Joined: Mon Apr 14, 2003 11:19 am

Post by Jago668 » Sun Dec 10, 2006 3:06 pm

There is one in the VIP section I know for sure. Donate $10 and it is yours for the taking.

aamlord
a lesser mummy
a lesser mummy
Posts: 35
Joined: Wed Feb 07, 2007 3:56 pm

Post by aamlord » Thu Mar 15, 2007 10:59 am

I have seen such script around and I don't have the VIP access so it's not exclusive to paid members. Search for combine.mac

ms1089
orc pawn
orc pawn
Posts: 10
Joined: Sun Jan 02, 2005 8:29 pm

Post by ms1089 » Thu Mar 15, 2007 11:35 am

Pretty sure I have PM'd the-hated before .. but since this topic was just bumped, I might as well post what I used when I did tradeskills, I suppose :p
Simple, but I <3'd it. Disclaimer: This is kinda ancient, and because I'm not really playing anymore, I haven't tested it recently.

Code: Select all

#event OOS "Sorry, but you #*#" 

sub main
	/echo TS Clicker
	/call click
	/return

sub click
:Click
	/if (${Window[TradeskillWnd].Child[CombineButton].Enabled}) {
		/notify TradeskillWnd CombineButton leftmouseup
	}
	/call drop
	/doevents
	/goto :Click


Sub drop
:drop
	/if (${Cursor.ID}) {
		/autoinv
		/goto :drop
	}
	/doevents
	/return
	

sub Event_oos
	/Echo Ran out of stuff. Ending.
	/endmacro