phony Posted May 29, 2017 Posted May 29, 2017 I know how to withdraw certain items or items in an array but how do I withdraw ALL items in the bank until inventory is full without putting all items in a list ty
Lewis Posted May 29, 2017 Posted May 29, 2017 https://osbot.org/api/org/osbot/rs07/api/Bank.html get list of all items in bank and store them then withdraw items in that list 2
Polymorphism Posted May 29, 2017 Posted May 29, 2017 14 minutes ago, Lewis said: https://osbot.org/api/org/osbot/rs07/api/Bank.html get list of all items in bank and store them then withdraw items in that list Dont even gotta store in a list really. boolean withdrawAll(Filter<Item> filter) Withdraws all of the specified item. #withdrawAll(item->item!=null) 1