
Originally Posted by
Dan the man
The standards! They burn my eyes!
Don't forget your indents people
Also, fullstop at the last end
Simba Code:
program new;
procedure ClickOre();
var
X, Y: Integer;
begin
if FindColorTolerance(X, Y, 4216963, 290, 190, 313, 161, 5) then
begin
MoveMouse(X, Y);
wait(250);
ClickMouse(X, Y, mouse_Left)
end;
end;
begin
ClickOre();
end.
Simba Code:
program new;
procedure ClickOre();
var
x, y: Integer;
begin
if (FindColorTolerance(x, y, 4216963, 290, 190, 313, 161, 5)) then
begin
MoveMouse(x, y);
Wait(150 + Random(100));
ClickMouse(x, y, MOUSE_LEFT);
end;
end;
begin
ClickOre();
end.
Just to be that guy.