It seems to work perfectly, except for that I continue to get the error message:
Couldn't find a comparison operation '@pack(?,'
Please note that the macro works great...just curious why this error message continues to occur..
Code: Select all
| - Celestial Essense Creation Macro -
| - You must have equal numbers of Celestial Solvent and Scent of Marr in
| - your inventory for this simple macro to work.
| - CelestialEssense.mac -
| Syntax: /macro CelestialEssense.mac
#include routines.mac
Sub Main
/call FindCombiner Poison
/if $return==99 /return
/cleanup
/click right inv $return
/sendkey down ctrl
:MakeCelestialEssense
/finditem "Celestial Solvent"
/if $find()==FALSE /goto :Done
/click left pack $return 0
/finditem "The Scent of Marr"
/if $find()==FALSE /goto :Done
/click left pack $return 1
/click left pack $return combine
:WaitCE
/delay 2
/if $pack($return, empty)==FALSE /goto :WaitCE
/delay 2
/click left auto
/goto :MakeCelestialEssense
:Done
/sendkey up ctrl
/return

