vhh 3 Posted January 21, 2021 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?
Pseudo 179 Posted January 21, 2021 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); }
Recommended Posts
Archived
This topic is now archived and is closed to further replies.