Youve got a bunch of cunks of code like this
SCAR Code:
begin
FindSymbol(x,y,'farming spot')
Mouse(x,y,4,4,true);
Flag;
end;
When they need to be classified as procedures like this
SCAR Code:
Procedure ClickFarmingSymbol;
begin
FindSymbol(x,y,'farming spot')
Mouse(x,y,4,4,true);
Flag;
end;
also use standards (indents)
So first make everything procedures
and at the very bottom do
SCAR Code:
Begin
Procedure1
Procedure2
repeat
procedure3
until(LobsToFish=FisedLobs)
Logout;
end.
Thats just an example, name your procedures anything you want