This code is meant to look for a Wall safe then click it. It finds the x, y position of the safe then calculates a random offset for those points so that I don't always click on the same spot.
I am afraid that it might be teleporting the mouse around instead of dragging it.
Is the movement human enough or is it obviously a bot? Can it be improved, if so, how?Code:// Search for a safe. if mainscreen.findObject(x, y, 5855585, 11, ['all safe'], MOUSE_MOVE) then begin rx := randomRange(-50, 10); ry := randomRange(-10, 50); mouse(x, y, rx, ry, MOUSE_LEFT);


Reply With Quote






