alqqu Posted March 30, 2019 Share Posted March 30, 2019 hey, i'm writing a little simple fishing script, but i need some help with withdrawing from bank when your items needed to be withdrawn are in a string array. FishingEquipment = new String[] {"Fly fishing rod", "Feather"}; then i'm doing if (main.bank.contains(FishingEquipment)) { if (main.bank.withdrawAll(FishingEquipment)) <--- gives error SleepClass.sleepUntil(() -> main.inventory.contains(FishingEquipment), 10000); } so how can i "parse?" or split these item(s) from my array to single ones and withdraw them? Quote Link to comment Share on other sites More sharing options...