- Thread Author
- #1
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:
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
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);
}
thanks in advance