Reddozen Posted March 31, 2019 Share Posted March 31, 2019 It takes a long time to drop items out of the inventory. It takes around 45 seconds for a full dropped inventory. Even writing my own dropping method with Mouse and inventory slots, it looks like the mouse waits a very long time to path before clicking. Is there some other method to make it move+click faster? Quote Link to comment Share on other sites More sharing options...
Token Posted March 31, 2019 Share Posted March 31, 2019 There are other ways, but I'm pretty sure if used correctly it should take less than 45 seconds, it's usually faster than human mouse movements/clicks Quote Link to comment Share on other sites More sharing options...
Xx pk xX Posted March 31, 2019 Share Posted March 31, 2019 Usually I'm using getInventory().dropAll(itemNames); And it's a lot faster than 45 seconds. Also make sure you have Shift drop enabled in RS settings (settings -> controls -> enable Shift click to drop items). Quote Link to comment Share on other sites More sharing options...
Imthabawse Posted March 31, 2019 Share Posted March 31, 2019 As @Xx pk xX said if used correctly drops faster then the average human can Quote Link to comment Share on other sites More sharing options...
FuryShark Posted March 31, 2019 Share Posted March 31, 2019 5 hours ago, Reddozen said: It takes a long time to drop items out of the inventory. It takes around 45 seconds for a full dropped inventory. Even writing my own dropping method with Mouse and inventory slots, it looks like the mouse waits a very long time to path before clicking. Is there some other method to make it move+click faster? Are you using mirror mode? Everything is a lot slower in mirror mode, at least for me.. 1 Quote Link to comment Share on other sites More sharing options...
Reddozen Posted March 31, 2019 Author Share Posted March 31, 2019 3 hours ago, FuryShark said: Are you using mirror mode? Everything is a lot slower in mirror mode, at least for me.. ya. using mirror mode. there no way to speed up mirror mode? Quote Link to comment Share on other sites More sharing options...
FuryShark Posted March 31, 2019 Share Posted March 31, 2019 30 minutes ago, Reddozen said: ya. using mirror mode. there no way to speed up mirror mode? Not that i know of Only thing that sucks about it Quote Link to comment Share on other sites More sharing options...
Chris Posted March 31, 2019 Share Posted March 31, 2019 56 minutes ago, Reddozen said: ya. using mirror mode. there no way to speed up mirror mode? change the reaction speed. Top left where it says mirror mode shows u what keys to hit Quote Link to comment Share on other sites More sharing options...
Reddozen Posted March 31, 2019 Author Share Posted March 31, 2019 3 hours ago, Chris said: change the reaction speed. Top left where it says mirror mode shows u what keys to hit doesnt seem to work with clicking/mouse moving. I set it down to 250ms and it still drops very slowly. Quote Link to comment Share on other sites More sharing options...
Molly Posted April 5, 2019 Share Posted April 5, 2019 (edited) On 3/31/2019 at 10:49 AM, Reddozen said: ya. using mirror mode. there no way to speed up mirror mode? I just had a user mention this issue in my thieving script when running mirror mode and I figured out a way to fix it. 1) Iterate through inventory slots and store the mouse destination of any slot containing an item you wish to drop in a list. 2) Hold down shift key to enable shift click dropping. getKeyboard().pressKey(16); 3)Iterate the mouse destination list: -move mouse to mouse destination -check if the option when hovering item is drop getMenuAPI().getTooltip().contains("Drop") -if the hover option is drop then click -if hover option is not drop then you'll need to right click the item, and interact with the drop option for example: List<Option> options = getMenuAPI().getMenu(); for (int j = 0; j < options.size(); j++) { if (options.get(j).action.equals("Drop")) { getMouse().move(new RectangleDestination(getBot(), getMenuAPI().getOptionRectangle(j))); mouse.click(false); break; } } -at the end release shift key getKeyboard().releaseKey(16); This seemed to speed things up quite a bit for me, though it still won't be as fast as if you weren't running mirror. Edit: The reason you need to check if drop is the item's hover option is because the user may not have shift click dropping enabled and in that case you'll need to either write a method to enable it or just drop the items by selecting drop from their menu. Edited April 5, 2019 by Molly 1 Quote Link to comment Share on other sites More sharing options...