Uses of Class
rs.kreme.ksbot.api.hooks.Bank.WithdrawMode
-
Packages that use Bank.WithdrawMode Package Description rs.kreme.ksbot.api.hooks -
-
Uses of Bank.WithdrawMode in rs.kreme.ksbot.api.hooks
Methods in rs.kreme.ksbot.api.hooks that return Bank.WithdrawMode Modifier and Type Method Description static Bank.WithdrawMode
Bank.WithdrawMode. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Bank.WithdrawMode[]
Bank.WithdrawMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in rs.kreme.ksbot.api.hooks with parameters of type Bank.WithdrawMode Modifier and Type Method Description void
Bank. withdraw(int id, int amount, Bank.WithdrawMode withdrawMode)
Withdraws a specified quantity of an item from the bank by ID.void
Bank. withdraw(java.lang.String item, int amount, Bank.WithdrawMode withdrawMode)
Withdraws a specified quantity of an item from the bank by name.void
Bank. withdraw(java.util.function.Predicate<KSItem> filter, int amount, Bank.WithdrawMode withdrawMode)
Withdraws an item from a container (e.g., bank, inventory) based on a specified filter, amount, and mode.
-