try
InventorySlotDestination currItemDestination = new InventorySlotDestination(bot, currentSlot);
InventorySlotDestination placementDestination = new InventorySlotDestination(bot, mapSlot);
if (currentSlot != mapSlot) {
if (bot.getMethods().getMouse().continualClick(currItemDestination, new Condition() {
@Override
public boolean evaluate() {
return bot.getMethods().getMouse().move(placementDestination) && placementDestination.evaluate();
}
})) {
//sleep or do something after?
}
}
This is an example from my code I use to sort my inventory using a map of items. this is how I get it to drag items around
So mapSlot would be slot 27?