I'm working on my Agility script, I cant get either of the gnome agility course scripts to work. Im trying to get my script to click on the rope in the gnome agilility course, but its not detecting it. This is my procedure to click it.
Simba Code:
Procedure Rope;
var
x, y:integer;
begin
if findcolorspiraltolerance(x, y, 5272207, 57, 180, 92, 185, 10) then
Mouse(x, y, 1, 1, 1);
wait(randomrange(7700, 7862));
end;
Also, can someone show me how to add a failsafe, to be sure it properly clicked on the obstacle? Thanks!
Foooty