Welcome!

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

Sign up now!
  1. D

    Question How does delays work together?

    How does delays work together? // code example for LoopingBot \\ public void onStart() { setLoopDelay(200,400); // let's say it produces y public void onLoop() { Execution.delay(x); } Is the final delay between loops x+y or x? And what would be answer if to use...
  2. D

    Question Moving mouse outside the screen

    Is it possible to move mouse outside the screen sometimes to imitate human-like behaviour, like checking other web pages and so on?
  3. D

    Resolved getAnimation() not updating

    Oh, found a reason. I'm using ranged in combat and during that movement bot stands still between shooting arrows which results in animation -1 so it then clicks again. Thanks for all the replies!
  4. D

    Resolved getAnimation() not updating

    It prints it all the time even while it's fighting. Weird is that getPosition() works but getAnimationId() and getTarget() do not.
  5. D

    Resolved getAnimation() not updating

    I actually am doing something. I used it as a validation argument to attack target, but even when I'm fighting target, I get default values on these methods, resulting spam clicking. full validation argument @Override public boolean validate() { if(!Npcs.getLoaded(NPC_idss).isEmpty() &&...
  6. D

    Resolved getAnimation() not updating

    Hello, I use line " Players.getLocal().getAnimationId()" in my code, but it returns always -1. It doesn't seem to update that value. Am I supposed to do some newQuery to refresh values or something similar beforehand? (OSRS) PS! Tried also method "Players.getLocal().getTarget()" but it is...
Top