The HentaiVerse needs you! We will build that database!
Seriously: in the past, lots of players submitted their equipment ranges into the database. That database got polluted because there was no good filter that blocked obsolete equipment. That has been fixed by decondelite (thx!)
Please, install the script at the bottom of this post
And if you are the creator of a script that uses the equipment range data, please contact decondelite and make sure you have the up-to-date credentials for the database.
How to feed the equipment databaseSimply add the following script to your Tampermonkey in Chrome/Firefox, and you don't even need to think about it.
CODE
// ==UserScript==
// @name HV - Items
// @namespace hvitems
// @version 2.1
// @description Registers equipment in the equipment database
// @author Jenga, decondelite
// @grant none
// @match *://*.hentaiverse.org/?s=Bazaar&ss=es*
// @match *://*.hentaiverse.org/?s=Character&ss=in*
// @match *://*.hentaiverse.org/?s=Forge&ss=sa*
// @match *://*.hentaiverse.org/?s=Bazaar&ss=fr*
// ==/UserScript==
var equipment = [];
for(var eid in dynjs_equip) {
// Skips equipment before v0.83 (bugged power was during v0.82)
if (eid<74306995) continue;
equipment.push({"eid":eid, "key":dynjs_equip[eid].k});
}
if(equipment.length > 0){
var httpReq = new XMLHttpRequest();
var data = new FormData();
data.append('action', 'store');
data.append('equipment', JSON.stringify(equipment));
httpReq.open("POST","https://hvitems.niblseed.com/");
httpReq.send( data );
}
Thank you!
This post has been edited by DJNoni: Apr 3 2019, 08:54