Release 1.01

master
Kasi 2018-10-02 08:05:37 +01:00
parent 1b138cc913
commit d9ff74ae8e
2 changed files with 9 additions and 6 deletions

View File

@ -96,12 +96,12 @@ class Bank
static bool Deposit(const std::string& Name, std::int32_t Amount);
static bool Deposit(const Interactable::Item& Item, std::int32_t Amount);
static bool DepositAllExcept(std::int32_t ID);
static bool DepositAllExcept(const std::string& Name);
static bool DepositAllExcept(const Interactable::Item& Item);
static bool DepositAllExcept(const std::vector<std::int32_t>& IDs);
static bool DepositAllExcept(const std::vector<std::string>& Names);
static bool DepositAllExcept(const std::vector<Interactable::Item>& Items);
static bool DepositAllExcept(std::int32_t ID, double DepsositAllChance = 0.00); // DepositAllChance = the chance it will click deposit all on the individual item, instead of left clicking if possible. Will deposit all if the current default quantity is not enough to one click it
static bool DepositAllExcept(const std::string& Name, double DepsositAllChance = 0.00);
static bool DepositAllExcept(const Interactable::Item& Item, double DepsositAllChance = 0.00);
static bool DepositAllExcept(const std::vector<std::int32_t>& IDs, double DepsositAllChance = 0.00);
static bool DepositAllExcept(const std::vector<std::string>& Names, double DepsositAllChance = 0.00);
static bool DepositAllExcept(const std::vector<Interactable::Item>& Items, double DepsositAllChance = 0.00);
static bool DepositAll();
static bool DepositEquipment();
@ -112,6 +112,9 @@ class Bank
static PIN_STEP GetEnterPinStep();
static bool IsEnterPinOpen();
static bool EnterPin(bool Terminate = true);
static std::int32_t GetDefaultWithdrawQuantity();
static bool SetDefaultWithdrawQuantity(std::int32_t Amount);
};
/** @} */

Binary file not shown.