Ok. say for example you had this
SCAR Code:
begin
repeat
FindColor(blah,blah);
until(FindColor(Blah,blah);
end;
could i simply do this instead?
SCAR Code:
begin
repeat
Wait(10);
until(FindColor(Blah,Blah));
end;
because in my script i wanna apply this (in essense)
SCAR Code:
begin
repeat
Mouse(x,y,1,1,false);
Wait(1000);
until(chooseoption('x'));
end;
but i dont know if it would work. although the only other way i thought of was to do this
SCAR Code:
begin
repeat
Mouse(x,y,1,1,false);
Wait(1000);
ChooseOption('x');
until(chooseoption('x'));
end;
could someone clarify this for me?