im kinda stuck, you see here, i want to move my mouse somewhere and click. There are two colour outcomes that i expect. i want this procedure to try to detect both. currently, it is only detecting the 1st outcome, and not together with the second. how can i overcome this?
Simba Code:
repeat
begin
MoveMouse(123,123);
wait (200)
ClickMouse(123,123,1);
wait (200)
while not (FindColorSpiralTolerance (x, y, 1242424, 123, 123, 123, 1323, 2)) or //the 1st colour outcome
not (FindColorSpiralTolerance (x, y, 12323453, 123, 123, 123, 1323, 2)) do //the 2nd colour outcome
wait(200);
end;
until not(FindColorSpiralTolerance (x, y, 122352, 123, 123, 123, 1323, 2));
end;