View Single Post
11/03/15, 11:06 PM   #14
antihax
AddOn Author - Click to view addons
Join Date: Sep 2015
Posts: 23
So bit of an update here, been adding functionality to the site and realized it is fully possible to insert data back into the game... so, done that. The latest version of the uploader will also pull weekly statistics from the site API and create a data file which is loaded by ESO. Also created some public helper functions so other developers can access this within lua.

Our major benefit here is that the more users we have, the more guild sales are observed and the more guild kiosks are seen. This is combined and fed back to addons so more than 5 guild stores histories make up the statistics.

What other data can we take out, merge and put back that would be useful and not provide unfair advantages?

Here is the Lua API available:
  • {sum, count, p5th, p25th, median, mode, p75th, p95th}= ESODR_StatisticsForWeek(itemID, uniqueID, week) - Get statistics for a specific week. Week format is YYYYWW as a string
  • YYYYWW = ESODR_CurrentWeek()
  • YYYYWW = ESODR_PreviousWeek()
  • uniqueID = ESODR_UniqueIDFromLink(itemLink)
  • itemID = ESODR_ItemIDFromLink(itemLink)

The site also has a few JSON API URLs available now. E.g.:
This is all still alpha and subject to change, but focusing more now on polishing, documenting, and adding more features where it makes sense.

Also don't forget to check out the progress on the main example site. antihax.net