It says (InvFull) is an unknown identifier. Is there a substitute?![]()
![]()
![]()
![]()
It says (InvFull) is an unknown identifier. Is there a substitute?![]()
![]()
![]()
![]()
(InvCount = 28)
Now it says "Unknown Identifier 'InvCount'"
under program include srl:
SCAR Code:program new;
{.include SRl/SRl.scar}
begin
SetUpSrl;
repeat
Mine;
until(InvFull);
end.
in you're main loop. make sure to call SetUpSRl; in the begin.![]()
Now, it says "semicolon expected" at the "end." When i change the period to a semicolon, it says "unexpected end of file."SCAR Code:program New;
{.include SRl/SRl.scar}
var
x,y: Integer;
procedure FindAndCut;
begin
SetUpSrl;
repeat
if findcolor (x,y, 3758421, 229, 60, 229, 60) and
findcolor (x,y, 530197, 254, 93, 254, 93) and
findcolor (x,y, 1329212, 218, 95, 218, 95) then
begin
Wait (7000)
ClickMouse (216,77, True)
Wait (7000)
ClickMouse (216, 77, True)
end;
until (InvFull);
end.![]()
SCAR Code:program New;
{.include SRl/SRl.scar}
var
x,y: Integer;
procedure FindAndCut;
begin
repeat
if findcolor (x,y, 3758421, 229, 60, 229, 60) and
findcolor (x,y, 530197, 254, 93, 254, 93) and
findcolor (x,y, 1329212, 218, 95, 218, 95) then
begin
Wait (7000)
ClickMouse (216,77, True)
Wait (7000)
ClickMouse (216, 77, True)
end;
until(InvFull);
end;
begin
SetUpSrl;
FindAndCut;
end.
you need to have a main loop![]()
forgot your main loop
[edit:]oops rikjess already told you. sorry
if i may explain:
You could also Just take out the procedure part.
SCAR Code:program New;
{.include SRl/SRl.scar}
var
x,y: Integer;
begin
SetUpSrl;
repeat
if findcolor(x,y, 3758421, 229, 60, 229, 60) and
findcolor(x,y, 530197, 254, 93, 254, 93) and
findcolor(x,y, 1329212, 218, 95, 218, 95) then
begin
Wait(7000);
ClickMouse(216,77, True);
Wait(7000);
ClickMouse(216, 77, True);
end;
until(InvFull);
end.
Wow- it works! Thx dude![]()
If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig
ITS PEANUT BUTTER JELLY TIME! PEANUT BUTTER JELLY TIME! PEANUT BUTTER JELLY TIME NOW WHERE HE AT WHERE HE AT WHERE HE AT WHERE HE AT NOW THERE HE GOES THERE HE GOES THERE HE GOES PEANUT BUTTER JELLY! PEANUT BUTTER JELLY! ![]()
There are currently 1 users browsing this thread. (0 members and 1 guests)