Good on you for your effort!,
NKN is right but change Try to Never Use static coordinates they are guaranteed to get you and others banned! XD
Their is two function's you should be using, MMouse() and Mouse()
They include an added randomness to how long the mouse stay's at the location before, during and after clicking and also you can add randomness to coordinates going Down and Right.
It would look something like this:
Simba Code:
program Benzhs_Alcher;
begin
Writeln('Script Made By Benzh');
Repeat
MMouse(743, 188, 10, 10); {<------- 10 Coordinate Down and Right Randomness}
wait(randomrange(500, 800));
Mouse(743, 188, 10, 10, True)
wait(randomrange(500, 800));
MMouse(714, 339, 10, 10)
wait(randomrange(500, 800));
Mouse(714, 339, 10, 10, True)
wait(randomrange(500, 800));
MMouse(580, 230, 10, 10);
wait(randomrange(500, 800));
Mouse(580, 230, 10, 10, True);
wait(randomrange(2000, 3000));
until(false);
end.
Although this wouldn't work so well because it would click 2 different coordinates randomly on each symbol so to stop this we use GetmousePos()
Example:
Simba Code:
Program Benzhs_Alcher;
Var
x, y:Integer; //<------- Integer Variables for GetMousePos to put its Coordinates
begin
Writeln('Script Made By Benzh');
Repeat
MMouse(743, 188, 10, 10); {<------- 10 Coordinate Down and Right Randomness}
GetMousePos(x, y);
wait(randomrange(500, 800));
Mouse(x, y, 0, 0, True)
wait(randomrange(500, 800));
MMouse(714, 339, 10, 10) //<------- Moves mouse to coord's
GetMousePos(x, y); //<------- Get's coord's the mouse has moved to and stores them in x and y integer's.
wait(randomrange(500, 800));
Mouse(x, y, 0, 0, True); //<------- Click's the Stored Coordinates with no randomness because we don't want the mouse to move 2 times on the same thing we wanted to Click
wait(randomrange(500, 800));
MMouse(580, 230, 10, 10);
GetMousePos(x, y);
wait(randomrange(500, 800));
Mouse(x, y, 0, 0, True);
wait(randomrange(2000, 3000));
until(false);
end.