• 1 page(s)
Request: Data Export tool for Bank/Guild Bank

My guild uses GuildPortal for our website.  It's Bank/Vault feature is very labor intensive to use.  Not sure if there is a method to export data and reconfigure it to upload it and work with GP's system or not.  Would be cool if at least something could me made that could convert said exported data list to a HTML doc, and once posted could have all items as hyperlinked text and associated to, say, WAR-DB database of items.

I'm not at all savy in this department.  I couldn't code my way out of a paper bag.

I will say that my guild and I would totally be testers for this.  I hope I was clear in my description of this request.  I will glady clarify anything that does not make any sense.

 

Thanks in advance to anyone that decides to take this on.

 

 

Report this thread post

I absolutely second this request.  My guild uses GuildLauncher as a host for our site and I desperately need some means of importing data into its Warhammer features like the Bank.  I downloaded Curseprofiler hoping that would do it but it only seems able to update the WarDB.


[edited by: Didz at 10:18 AM (GMT -6) on 14 Dec 2008]

Report this thread post

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]

Report this thread post
  • 1 page(s)
Subscribe to this thread: (you will receive emails when new posts are made)