Description
Deposit Express
Features:
Tired of manually keeping your bulk gold in one place (Warband Bank)?
Automatic gold deposit in increments, which you can set account-wide with: /setIncrement <amount_in_gold> (default: 50)
All you have to do is open your bank and it'll do it's thing.
So how does it work?
Example:
- Your character has 123456 gold and some silver/copper.
- You didn't change the default increment and opened the bank.
- Automatically 123400 gold (no silver/copper) will be deposited into your Warband Bank.
- Your character is left with 56 gold and some silver/copper.
The math:
- floor((characterGold - setIncrement) / setIncrement) * setIncrement = depositAmount
- or floor((123456 - 50) [=123406] / 50) [=2468] * 50 = 123400
Updates:
v1.0.3:
- Updating will cause all data to be cleared on initial usage, this is done to resolve longstanding issues with the data structure that were addressed.
v1.0.2:
- Updated code for better first time use.
v1.0.1:
- Now shows what the current increment is set to when joining the game, as a reminder.
v1.0.0:
- Added chatcommand to change the increment, use /setIncrement <amount_in_gold> (default: 50)


