Alright, this isn't much of a usefull exploit, but it's an exploit and maybe a use can be found.
As of patch 3.0 all of your Battleground Marks and Badges are stored in a new tab called "Currency".
With running this simple script it will allow you to pickup any of your badges/BG Marks from that window and place them into your backpack.
Upon retriving the item in your backpack it doesn't say that they are bound (got me abit excited), but sadly you can't mail/trade them...
Edit: Just to add, they appear back in your Currency window when you log out and in.
Screenshot : http://joev.funpic.org/s/MovingCurrency.jpg
The Script (Just Replace the Item Name)
/run i="Item Name"; for y=1,GetContainerNumSlots(-4) do l=GetContainerItemLink(-4,y) if l and GetItemInfo(l)==i then PickupContainerItem(-4,y,1);DEFAULT_CHAT_FRAME:AddMessage(format("Joev owns and picked up %s", l)); end end
So if you want to pick up your Badge of Justice you would use this:
/run i="Badge of Justice"; for y=1,GetContainerNumSlots(-4) do l=GetContainerItemLink(-4,y) if l and GetItemInfo(l)==i then PickupContainerItem(-4,y,1);DEFAULT_CHAT_FRAME:AddMessage(format("Joev owns and picked up %s", l)); end end
Hopefully someone can find this usefull.
-Joev