im jus having trouble on how to make scripts repeat
i read a tut but didint understand it
and where do i place it in the script?
im jus having trouble on how to make scripts repeat
i read a tut but didint understand it
and where do i place it in the script?
Post the script and what you want to repeat, and I'll show you a couple ways you could make it repeat.
Interested in C# and Electrical Engineering? This might interest you.
Begin
MoveMouse(84,96);
Wait(600);
ClickMouse(84,96,true);
Wait(600);
MoveMouse(82,118);
Wait(600);
ClickMouse(82,118,true);
end;
(((its jus something simple i made to switch in rsc private duels cuz im new to scare )))
SCAR Code:Begin
repeat
MoveMouse(84,96);
Wait(600);
ClickMouse(84,96,true);
Wait(600);
MoveMouse(82,118);
Wait(600);
ClickMouse(82,118,true);
until(False) // Endless repeat
end;
MoveMouse and ClickMouse will give you a fast ban. Also, your waiting is static, meaning that Jagex will find out you're a bot pretty fast. Here's a little fix that will make you seem less "Botty":
Comment 1: In theory, "Mouse" does the same a MoveMouse and ClickMouse, just a lot less detectable. "84,96" are the co-ordinates on which to click. "2,2" are the randomness on the x and the y-axis. "True" is the same as in ClickMouse.SCAR Code:begin
SetupSRL;
MouseSpeed:= 25+random(5); // Sets the mousespeed pretty fast
repeat
Mouse(84,96,2,2,true); // Read Comment 1
Wait(600+random(200)); // Read Comment 2
Mouse(82,118,2,2,true); // Same as comment 1
Wait(600+random(200)); // Same as comment 2
until(False)
end;
Comment 2: +random(Somenumber) is really what keeps us undetectable. This will do that your character never waits the same amount of time. Just like a human.
-Knives
noo its for a private rsc server
thxs thoethis helped
![]()
There are currently 1 users browsing this thread. (0 members and 1 guests)