NOTE: this is runescape, a friend asked me to make him a script for this one website where you have to click a button.
Ok so i'm trying to figure out arrays. And on this game you have to scroll down and click a button, but like most games theres things to stop autoers.
You have to:
-Scroll Down [checkmark]
-Click the proceed button [checkmark]
BUT the button moves and its the same text color as other things on the screen, this is really hard to explain. So I made this:
SCAR Code:procedure ClickEveryWhere;
var
CEW : array of integer;
begin
CEW([331, 341, 351, 361, 371, 381, 391, 401, 411]);
if timeFromMark(FailSafeTM > 10000) then
begin
for CEW:=1 to 9 do
Mouse(770, CEW, 0, 0, true);
wait(10);
end;
end;
Thats all i got I think i'm doing something wrong.
SIDENOTE: The Integer
Is from another procedure.SCAR Code:FailSafeTM
Any help would be apprecaited![]()


Reply With Quote














