Subroutine "main" not found

Need help running MacroQuest 1? Too bad! Use MQ2.

Moderator: MacroQuest Developers

King Bass Fisher
orc pawn
orc pawn
Posts: 11
Joined: Tue Jun 25, 2002 3:30 am

Subroutine "main" not found

Post by King Bass Fisher » Fri Jun 28, 2002 10:20 pm

Hey guys whats up?

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
Am I missing somthing?