Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

Question Optimal pattern to click magic spell (repetitively)

Joined
Oct 7, 2015
Messages
9
Hello,

Imagine I am making a script where I just have to repetitively click the same magic spell 10 times (before doing a different action like banking or walking or whatever).

What is the best way to make the clicking human-like?
Currently I just do this:
Code:
if (Magic.REPETITIVE_SPELL.activate()) {
     Execution.delayUntil(() -> false, 1000, 2345);
}
This approach seems so flawed as Jagex can easily determine (over a long period of time) that my clicking is always between 1s and 2.345s. And BOOM ban incoming.

thanks in advance
 
Joined
Aug 23, 2015
Messages
1,970
Execution.delayUntil(() -> false, 1000, 2345);

Is the same as

Execution.delay(1000, 2345);


I would personally use a delay with an average delay, and throw in some randomization that will break that pattern occasionally.
 
Joined
Oct 7, 2015
Messages
9
Execution.delayUntil(() -> false, 1000, 2345);

Is the same as

Execution.delay(1000, 2345);


I would personally use a delay with an average delay, and throw in some randomization that will break that pattern occasionally.
What does an "average delay" mean? I dont understand.
and thanks for replying
 
Top