The values for equipment can be found here:
Equipment Ranges.The current preferred method is to use the updated
script by decondeliteOld version of this script: [
dl.dropboxusercontent.com]
HV Items ScriptCODE
const rangesToSend = [];
rangesToSend.push({ 'eid' : item.eid, 'key' : item.key });
//repeat for all items you want to send: loop over all items in inventory?
function sendRanges(){
if (rangesToSend.length === 0)
return;
const exists = new XMLHttpRequest();
const data = new FormData();
data.append('action', 'store');
data.append('equipment', JSON.stringify(rangesToSend));
exists.open("POST","https://hvitems.niblseed.com/",false);
exists.send( data );
}
Just open up an equipment or forge page, and the script should run, sending the url to the server which will do the rest.
Thanks to:
Varst for helping me with the formatting of the table and the math involved
Tiap for the parser for collecting all the data
dcherry for encouragement
VERY VERY VERY Special thanks to:
Jenga: Setting up a database and query to allow for data to be collected more efficiently then just word of mouth or posts
Please only post equipment with ID's over 72,000,000 (Updated 08/09/15)
05/31/2014 Updated to post 1048
08/26/2014 Updated to post 1057
01/20/2015 Updated to post 1080
08/09/2015 Updated to post 1116
10/16/2015 Updated to post 1132
12/07/2015 Updated to post 1145
12/14/2015 Updated to post 1146
12/19/2015 Updated to post 1148
02/16/2016 Updated to post 1159
03/06/2016 Updated to post 1161
some updates inbetween
09/27/2016: Updated to post 1179 EID max of 108849152, filter issues fixed.
10/22/2016: Updated to post 1185
03/12/2017: Updated to post 1227
12/14/2017: Updated to post 1262
Need data on:
Everything, please use script if able!
Noni edit: script has been updated by decondelite to exclude wrong power ranges.
This post has been edited by DJNoni: Mar 13 2019, 08:35