These forums have been archived and are now read-only.
The new forums are live and can be found at https://forums.eveonline.com/
Spreadsheets won't pull Eve-Central data
=importXML("http://api.eve-central.com/api/marketstat?usesystem=30000142&typeid=11399", "/evec_api/marketstat/type/sell/min")
Indices/Mining Simulator V6.41 UPDATED*
Daily Forge Mineral Sales Summary V1.5
Neug's Prime Industrial Real Estate V1.3
http://youtu.be/YVkUvmDQ3HY
Woo! CSM XI!
Fuzzwork Enterprises
Twitter: @fuzzysteve on Twitter
function loadPriceCell(typeID,systemID,cachebuster){ if (typeof systemID == 'undefined'){ systemID=30000142; //Jita } if (typeof typeID == 'undefined'){ throw 'need typeids'; } if (typeof cachebuster == 'undefined'){ cachebuster=1; } var url="http://api.eve-central.com/api/marketstat?cachebuster="+cachebuster+"&usesystem="+systemID+"&typeid="+typeID; var parameters = {method : "get", payload : ""}; var xmlFeed = UrlFetchApp.fetch(url, parameters).getContentText(); var xml = XmlService.parse(xmlFeed); if(xml) { var rows=xml.getRootElement().getChild("marketstat").getChildren("type"); var price = rows[0].getChild("sell").getChild("min").getValue(); } return price;}