Some reason the script doesn't click properly
So I got this bit of simba script and for some reason when it clicks the altar and then presses the offer bones, it just clicks ground for some reason. Not sure why. Anyone know the reason for this.
Simba Code:
procedure ClickAltar();
var
Burner: Tbox;
begin
wait(gaussRangeInt(3000,3400));
burner := intTobox(200, 157, 245, 183);
mouseBox(burner, MOUSE_RIGHT);
wait(1000);
if chooseOption.select(['ffer Altar']) then
fastClick(MOUSE_LEFT)
else begin
writeLn('Script messed up');
terminateScript();
end;
end;