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
  • Moving items in inventory


    Neb

    Recommended Posts

    Is there a API method to move items around in your inventory?

     

    for example move a item from slot 25 to slot 26.

    Link to comment
    Share on other sites

    if (Mouse.move(knife)) {
        if (Mouse.drag(knifeSpot)) {
            sleepUntil(()->Inventory.slotContains(26,"Knife"),Calculations.random(1000,4000));
        }
    }

     

    Going to be doing something like this if there isnt I think.

    Link to comment
    Share on other sites

     private static boolean moveItemToSlot(String itemName, int inventorySlot) {
            Item item = Inventory.get(itemName);
            if (item == null) return false;
            if (!item.getDestination().contains(Mouse.getPosition())) {
                if (Mouse.move(item.getDestination())) {
                    Timing.waitCondition(() -> item.getDestination().contains(Mouse.getPosition()), 1800);
                }
            } else {
                if (Mouse.drag(Inventory.slotBounds(inventorySlot))) {
                    return item.getSlot() == inventorySlot;
                }
            }
            return false;
        }

     

    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.