simplecombine.mac
Posted: Sun Aug 29, 2004 3:25 pm
this macro uses the new combine window, it will just continuously make whatever recipe you have selected. its intentionally lacking in error checking and an end condition, i just use it when i dont want to click a hundred times, feel free to add them yourself.
Code: Select all
#turbo
Sub Main
:restart
/delay 30 ${Window[TradeSkillWnd].Child[COMBW_CombineButton].Enabled}
/notify COMBW_CombineArea COMBW_CombineButton leftmouseup
/delay 30 ${Cursor.ID}
/call AutoInvAll
/goto :restart
/return
Sub AutoInvAll
:autoinvall
/if (${Cursor.ID}) {
/notify COMBW_CombineArea AutoInvButton leftmouseup
/delay 1
/goto :autoinvall
}
/return