Sometimes it just does very strange things and doesn't combine at all ....what's wrong with this macro?
What needs to be done to this macro to make it work properly?
THANKS!!
Code: Select all
| - ColdainHeater.mac -
|
| Please be near a brew barrel open before you start this macro.
|
#include routines.mac
Sub Main
/itemtarget Brew Barrel
/face item
/click left item
:MakeColdainHeater
/sendkey down ctrl
/finditem "Water Flask"
/if $find()==FALSE /goto :Done
/click left enviro 0
/finditem "Allspice"
/if $find()==FALSE /goto :Done
/click left enviro 1
/finditem "Brown Algae"
/if $find()==FALSE /goto :Done
/click left enviro 2
/finditem "Shotglass"
/if $find()==FALSE /goto :Done
/click left enviro 4
/sendkey up ctrl
/click left enviro combine
/delay 2
/click left auto
/goto :MakeColdainHeater
:Done
/sendkey up ctrl
/click left enviro done
/return

