Jump to content
Frequently Asked Questions
  • Are you not able to open the client? Try following our getting started guide
  • Still not working? Try downloading and running JarFix
  • Help! My bot doesn't do anything! Enable fresh start in client settings and restart the client
  • How to purchase with PayPal/OSRS/Crypto gold? You can purchase vouchers from other users
  • How to slow down actions?


    vhh

    Recommended Posts

    I am at the point in my script where I am getting the user to withdraw certain items from the bank. I am using the following and sleeping for a short amount of time before withdrawing the next item:

    Bank.withdraw("Manta ray", 5);
    sleep(500, 800);
    Bank.withdraw("Shark", 4);
    sleep(500, 800);

    However, it right clicks on the withdraw item and chooses the option really fast and does not look human like at all. Is there anyway to slow the cursor movement down?

    Link to comment
    Share on other sites

    Cursor speed is set in the client settings, or there's a method in the mouse class iirc. Also opt to use dynamic sleeping, that'll make a difference.

     

    if (Bank.withdraw("Manta ray", 5)) {
    Timing.waitCondition(() -> Inventory.contains("Manta ray"), 1200);
    }

     

    Link to comment
    Share on other sites

    Archived

    This topic is now archived and is closed to further replies.

    ×
    ×
    • Create New...

    Important Information

    We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.