Simple human clicker
SCAR Code:
{.Include SRL\SRL.SCAR}
var
X, Y: Integer;
begin
SetUpSRL;
ActivateClient;
Wait(1000);
Mouse(X, Y, 0, 0, True);
end.
What you're trying to do (Purely Machine-Like):
SCAR Code:
begin
ActivateClient;
Wait(1000);
repeat
if (GetColor(617, 424) = 16053492) then
ClickMouse(617, 24, True)
else
if (GetColor(643, 422) = 16053492) then
ClickMouse(643, 422, True)
else
if (GetColor(645, 455) = 16053492) then
ClickMouse(645, 455, True)
else
if (GetColor(615, 448) = 16053492) then
ClickMouse(615, 448, True);
until (False);
end.
Explain what you're using this for...