Hello i have a problem with my script i try to run it but every time i use it with the rs client in browser it cant compile because of the (
in begin???
Simba Code:
program ratkiller;
procedure RatKillerPro;
var
x, y: Integer
begin//this is where i get the error"[Error] (7:1): Semicolon (';') expected at line 6 Compiling failed."
if FindColorSpiralTolerance(x, y, 3159351, 523, 108, 11, 438) or
FindColorSpiralTolerance(x, y, 4277060, 523, 108, 11, 438) then
begin
MoveMouse(x, y);
ClickMouse(x, y, 1);
Wait(100000);
end;
end;
begin
RatKillerPro;
end;