|
I've written something like this - it's in extreme alpha though. Link. It memorises what's in the guild vault every time you open it (so close it and open it when you're done moving stuff around) and then stores the contents as a CSV file in the SavedVariables file. You'll have to cut it and paste it from there, or write something else to handle it.
Changing it to make HTML instead of CSV would be pretty easy, neater too (HTML doesn't care about linebreaks...) just alter it something like so (change hxxp back - curse is autoformatting it):
VaultLogger_Dump = "Vault,Position,Item,Quantity\n"
Becomes:
VaultLogger_Dump = ""
And:
VaultLogger_Dump = VaultLogger_Dump .. position .. name .. "," .. item["stackCount"] .. "\n"
else
VaultLogger_Dump = VaultLogger_Dump .. position .. "Empty,0\n"
Becomes:
VaultLogger_Dump = VaultLogger_Dump .. "<div><a href=\"hxxp://www.wardb.com/item.aspx?id=" .. item["uniqueID"] .. "\">" .. name .. "</a> x " .. item["stackCount"] .. "</div>"
else
VaultLogger_Dump = VaultLogger_Dump .. "<div></div>"
[edited by: curious_jp at 7:00 PM (GMT -6) on 21 Dec 2008]
|