Code: Select all
/itemnotify ${Me.Platinum} leftmouseupi have 0 Platinum 0 gold in Inventory.But the mq2 does not know it?
why the charm slot?
Moderator: MacroQuest Developers
Code: Select all
/itemnotify ${Me.Platinum} leftmouseupCode: Select all
Sub DelCoins
/echo Deleting Silver and Copper
/windowstate InventoryWindow open
/shift /notify InventoryWindow IW_Money3 leftmouseup
/destroy
/delay 1s
/shift /notify InventoryWindow IW_Money2 leftmouseup
/destroy
/keypress esc
/keypress esc
/return
Code: Select all
/windowstate InventoryWindow open
/shift /notify InventoryWindow IW_Money0 leftmouseup
Code: Select all
sub bank
/keypress ESC
/keypress ESC
/keypress ESC
/keypress ESC
|you can change the banker's name
/target Banker
/delay 1s
/keypress u
/delay 1s
/if (${Me.Platinum}>0) {
/shift /notify InventoryWindow IW_Money0 leftmouseup
/delay 1s
/shift /notify BigBankWnd BIGB_Money0 leftmouseup
/delay 1s
}
/if (${Me.Gold}>0) {
/shift /notify InventoryWindow IW_Money1 leftmouseup
/delay 1s
/shift /notify BigBankWnd BIGB_Money1 leftmouseup
/delay 1s
}
/if (${Me.Silver}>0) {
/shift /notify InventoryWindow IW_Money2 leftmouseup
/delay 1s
/shift /notify BigBankWnd BIGB_Money2 leftmouseup
/delay 1s
}
/if (${Me.Copper}>0) {
/shift /notify InventoryWindow IW_Money3 leftmouseup
/delay 1s
/shift /notify BigBankWnd BIGB_Money3 leftmouseup
/delay 1s
}
/notify BigBankWnd DoneButton leftmouseup
/keypress ESC
/keypress ESC
/keypress ESC
/keypress ESC
/return