Well if you would like to check 20 classes , ya sure
I'll check it out, but why do they implement such thing?
It's just stupidly annoying
Edit:
Could the method for checking the inventory count affect this?
if(script.inventory.getEmptySlots() > 5){
shop.sell("Pure essence", 10);
}
public void sell(String name, int amount) {
Item item = script.inventory.getItem(name);
if (item != null && item.getName().equals(name)) {
if (amount < 4)
item.interact("Sell 1", name);
else if (amount < 9)
item.interact("Sell 5", name);
else if (amount >= 10)
item.interact("Sell 10", name);
Utils.sleep(script, 300, 750);
}
}