This was what I got first:
Code: Select all
Sub Main
|Put Platinum from Inventory to Bank
/shift /notify InventoryWindow IW_Money0 leftmouseup
/shift /notify BigBankWnd BIGB_Money0 leftmouseup
|Put Gold from Inventory to Bank
/shift /notify InventoryWindow IW_Money1 leftmouseup
/shift /notify BigBankWnd BIGB_Money1 leftmouseup
|Put Silver from Inventory to Bank
/shift /notify InventoryWindow IW_Money2 leftmouseup
/shift /notify BigBankWnd BIGB_Money2 leftmouseup
|Put Copper from Inventory to Bank
/shift /notify InventoryWindow IW_Money3 leftmouseup
/shift /notify BigBankWnd BIGB_Money3 leftmouseup
|Change
/notify BigBankWnd BIGB_ChangeButton leftmouseup
|Bring Platinum to Shared Bank
/shift /notify BigBankWnd BIGB_Money0 leftmouseup
/delay 5
/shift /notify BigBankWnd BIGB_SharedBankLabel leftmouseup
/endCode: Select all
|Put Platinum from Inventory to Bank
/shift /notify InventoryWindow IW_Money0 leftmouseup
/delay 5
/if (${Cursor.ID}) {
/shift /notify BigBankWnd BIGB_Money0 leftmouseup
}


