I been trying to get fishrolls.mac to work but I get the Subroutine "main" not found error msg.
What should I do?
heres the macro im useing
Code: Select all
#include routines.mac
Sub Main
/call FindCombiner Baking
/if $return==99 /return
/cleanup
/click right inv $return
:MakeFishRolls
/sendkey down ctrl
/finditem "Fresh Fish"
/if $find()==FALSE /goto :Done
/click left pack $return 0
/finditem "Bat Wing"
/if $find()==FALSE /goto :Done
/click left pack $return 1
/sendkey up ctrl
/click left pack $return combine
/if "$cursor()"=="TRUE" /goto :AutoDropFishRolls
/for v1 1 to 5
/delay 2
/if "$cursor()"=="TRUE" /goto :AutoDropFishRolls
/next v1
/goto :MakeFishRolls
:AutoDropFishRolls
/click left auto
/goto :MakeFishRolls
:Done
/sendkey up ctrl
/return
