G
gse7en
I modified AutoBank.mac for my needs and RedBot said I should share, so why not. I present to you: FuckUpMyShit.Mac. This will delete all items in all the contents of your bags in your inventory.
Code:
|*******************************************************************|
| - FuckUpMyShit.mac - *|
| *|
| Usage: *|
| Simply run this macro as you would normally and watch *|
| FuckUpMyShit.mac liberate you from most of your material *|
| possessions. *|
| *|
|*******************************************************************|
Sub Main
|Loop through all bags
/declare CurrentBagNum int local
/declare BagSlot int local
/declare ItemName string local
/for CurrentBagNum 1 to 10
/for BagSlot 1 to ${Me.Inventory[pack${CurrentBagNum}].Container}
/varset ItemName ${Me.Inventory[pack${CurrentBagNum}].Item[${BagSlot}]}
/if (!${ItemName.Equal[NULL]}) {
/echo Moved ${Me.Inventory[pack${CurrentBagNum}].Item[${BagSlot}].Stack} ${ItemName} to the bank.
/nomodkey /shift /itemnotify in pack${CurrentBagNum} ${BagSlot} leftmouseup
/destroy
/delay 5
}
/doevents
/next BagSlot
/next CurrentBagNum
/return




