Whats happening is it makes headys just fine. When its time to do fish wine, it makes one fish wine (or 3, as it yeilds 3) and then ends the macro, saying that it couldnt find kiola sap.
**EDIT** Fixed the code. Had to rename the second :autodrop. Fixed.
Any help?| - Brewing.mac -
#include routines.mac
#turbo
Sub Main
| Initialisation
/press ctrl
/press shift
/press alt
| Main Loop
/itemtarget Brew Barrel
/face item
/click left item
/varset v98 $char(skill,Brewing)
/if n $v98<45 /goto :Makeheady
/if n $v98<61 /goto :Makefishwine
/if n $v98<151 /goto :Makeskull
/gotoone
:Makeheady
/sendkey down ctrl
/finditem "Packet of Kiola Sap"
/if $find()==FALSE /gotoone
/click left enviro 0
/finditem "Packet of Kiola Sap"
/if $find()==FALSE /gotoone
/click left enviro 1
/finditem "Water Flask"
/if $find()==FALSE /gotoone
/click left enviro 2
/finditem "Bottle"
/if $find()==FALSE /gotoone
/click left enviro 3
/sendkey up ctrl
/click left enviro combine
/if "$cursor()"=="TRUE" /goto :AutoDrop
/for v1 1 to 5
/delay 2
/if "$cursor()"=="TRUE" /goto :AutoDrop
/next v1
/goto :Makeheady
:AutoDrop
/click left auto
/doevents
/goto :Makeheady
one
/sendkey up ctrl
/click left enviro done
/return
:Makefishwine
/sendkey down ctrl
/finditem "Grapes"
/if $find()==FALSE /gotoone
/click left enviro 0
/finditem "Fresh Fish"
/if $find()==FALSE /gotoone
/click left enviro 1
/finditem "Water Flask"
/if $find()==FALSE /gotoone
/click left enviro 2
/finditem "Bottle"
/if $find()==FALSE /gotoone
/click left enviro 3
/sendkey up ctrl
/click left enviro combine
/if "$cursor()"=="TRUE" /goto :AutoDrop
/for v1 1 to 5
/delay 2
/if "$cursor()"=="TRUE" /goto :AutoDrop
/next v1
/goto :Makefishwine
:AutoDrop
/click left auto
/doevents
/goto :Makefishwine
one
/sendkey up ctrl
/click left enviro done
/return
:Makeskull
/sendkey down ctrl
/finditem "Vinegar"
/if $find()==FALSE /gotoone
/click left enviro 0
/finditem "Spices"
/if $find()==FALSE /gotoone
/click left enviro 1
/finditem "Short Beer"
/if $find()==FALSE /gotoone
/click left enviro 2
/finditem "Cyclops Skull"
/if $find()==FALSE /gotoone
/click left enviro 3
/sendkey up ctrl
/click left enviro combine
/for v1 1 to 10
/delay 1
/if "$cursor()"=="TRUE" /goto :AutoDropAle
/next v1
/goto :Makeskull
:AutoDropAle
/if "$cursor(name)"=="Cyclops Skull" /goto :AutoDropSkull
/click left auto
/delay 1
/if "$cursor()"=="TRUE" /goto :AutoDropAle
:AutoDropSkull
/click left auto
/if "$cursor()"=="TRUE" /goto :AutoDropSkull
/doevents
/goto :Makeskull
one
/sendkey up ctrl
/click left enviro done
/return
