Loading. Please Wait... 
 |
 |
 |
Script report thread (aka The Compendium), For script updates only. Generic support on Script Thread on System section. Updated 2018-03-03 |
|
Jul 21 2017, 14:22
|
Scremaz
Group: Gold Star Club
Posts: 24,304
Joined: 18-January 07

|
This thread will be used to keep track of all the working script with sources and such, and will be synchronized as much as possible with wiki's script pagePretty much all the infos here come from the older Script Thread, but this thread will be a "mere" (and hopefully less clustered) announce one. Coders may opt to post their updates here, but technical discussions, bug reports, troubleshooting etc will still go there. As of today (the time reported in topic description), this is the list of working scripts: QUOTE Interface: Combat: Items & Equipment: Monster Lab: Moogle management: Comprehensive management tools
Last but not the least, many thanks to all the coders who are doing their best to improve our gameplay and to f4tal for the original compendium. This post has been edited by Noni: Dec 30 2020, 09:30
|
|
|
|
 |
|
Jul 21 2017, 14:37
|
Usagi =
Group: Gold Star Club
Posts: 2,923
Joined: 29-October 13

|
Is this a headcount for scripts or is this information used to build the new compendium?
Caused if its the latter, I'd expect stuff like authors, links to download etc to be needed.
|
|
|
Jul 21 2017, 15:17
|
friggo
Group: Gold Star Club
Posts: 2,134
Joined: 9-October 14

|
I'll go ahead and mention the HV Monster Scan script by jenga201. I only managed to tinker with it a little bit before the 0.85 update broke it, but it seemed like a nice idea for a script. Latest working version for 0.84 was 0.02. HV Monster Scan: helps players create a comprehensive database of the HentaiVerse bestiary According to jenga's sig, the script update is "in progress", but his status is also marked as "on hiatus", so... (IMG:[ invalid] style_emoticons/default/unsure.gif)
|
|
|
Jul 21 2017, 15:30
|
RoadShoe
Group: Catgirl Camarilla
Posts: 3,241
Joined: 9-August 15

|
I second friggo's HV Monster scan request. I read somewhere that it's a niblseed concern that the site doesn't communicate with HTTPS.
Also a Battle log set up that accumulates, so we can keep up with what's been dropped over time.
This post has been edited by RoadShoe: Jul 21 2017, 15:31
|
|
|
|
 |
|
|
 |
|
Jul 21 2017, 17:55
|
Scremaz
Group: Gold Star Club
Posts: 24,304
Joined: 18-January 07

|
QUOTE(LOL50015 @ Jul 21 2017, 14:37)  Is this a headcount for scripts or is this information used to build the new compendium?
Caused if its the latter, I'd expect stuff like authors, links to download etc to be needed.
both. for now a simple headcount, but also the first step towards the compendium. it *needs* to be done and we have to start somewhere, so... QUOTE(friggo @ Jul 21 2017, 15:17)  I'll go ahead and mention the HV Monster Scan script by jenga201.
I only managed to tinker with it a little bit before the 0.85 update broke it, but it seemed like a nice idea for a script. Latest working version for 0.84 was 0.02.
HV Monster Scan: helps players create a comprehensive database of the HentaiVerse bestiary
QUOTE(RoadShoe @ Jul 21 2017, 15:30)  I second friggo's HV Monster scan request. I read somewhere that it's a niblseed concern that the site doesn't communicate with HTTPS.
the problem is that those datas reside in a database on jenga's own site. so, unless someone else wants to host that db and re-address the script to send datas on that, we'll have to wait for him. QUOTE(RoadShoe @ Jul 21 2017, 15:30)  Also a Battle log set up that accumulates, so we can keep up with what's been dropped over time.
this is not a request thread, sir (IMG:[ invalid] style_emoticons/default/heh.gif) QUOTE(Nanoha_Prayer @ Jul 21 2017, 15:45)  SmartMonsterLab feeding monsters one by one with crystals really painful. (IMG:[ invalid] style_emoticons/default/cry.gif) what did it do? is it completely broken? how many people were using it?
|
|
|
|
 |
|
Jul 21 2017, 19:15
|
Benny-boy
Group: Gold Star Club
Posts: 1,906
Joined: 27-December 10

|
Inline Difficulty Changer - broken
|
|
|
|
 |
|
Jul 21 2017, 20:15
|
Noni
Group: Catgirl Camarilla
Posts: 13,124
Joined: 19-February 16

|
QUOTE(Benny-boy @ Jul 21 2017, 19:15)  Inline Difficulty Changer - broken
CODE // ==UserScript== // @name HV Inline Difficulty Changer // @version 2017-06-24 // @namespace HVIDC // @match https://hentaiverse.org/* // @run-at document-end // ==/UserScript==
function iframeLoad() { var doc = changeDifficulty.iframe.contentDocument; if (!iframeLoad.difficulty) { var diff = document.getElementById('difficulty'); diff.innerHTML = doc.getElementById('difficulty').innerHTML; diff.style.display = null; if (changeDifficulty.loading.parentNode) changeDifficulty.loading.parentNode.removeChild(changeDifficulty.loading); //if (dd.select.parentNode) dd.select.parentNode.removeChild(dd.select); changeDifficulty.iframe.parentNode.removeChild(changeDifficulty.iframe); delete changeDifficulty.iframe; dd(); return; } var targets = doc.querySelectorAll('#settings_challenge input[type="radio"]'); // if (!targets.length) // var targets = doc.querySelectorAll('#settingsinner > div:nth-child(2) [type="radio"]'); //console.log(targets); var target = targets[dd.difficulties.indexOf(iframeLoad.difficulty)];
delete iframeLoad.difficulty; if (!target) return; target.checked = true; doc.querySelector('[value="Apply Changes"]').click();
}
function changeDifficulty(e) {
name = name.toLowerCase().replace(/^(.)/,function(a) { return a.toLowerCase(); }).replace(/IWBTH/i,'IWBTH').replace(/pfudor/i,'PFUDOR'); e.target.style.display = 'none'; changeDifficulty.loading = e.target.parentNode.appendChild(document.createElement('div')); changeDifficulty.loading.innerHTML = 'Working...'; if (!changeDifficulty.iframe) { changeDifficulty.iframe = document.body.appendChild(document.createElement('iframe')); changeDifficulty.iframe.style.cssText = 'width: 0px; height: 0px; overflow: hidden; white-space: nowrap; visibility: hidden;'; changeDifficulty.iframe.addEventListener('load',iframeLoad,false); } iframeLoad.difficulty = e.target.children[e.target.selectedIndex].innerHTML; // always reload to prevent stale settings changeDifficulty.iframe.src = 'https://hentaiverse.org/?s=Character&ss=se';
}
function dd() { if (!dd.el) return; if (!dd.select) { dd.select = dd.el.parentNode.appendChild(document.createElement('select')); dd.difficulties = ['Normal','Hard','Nightmare','Hell','Nintendo','IWBTH','PFUDOR']; dd.difficulties.forEach(function(x) { dd.select.appendChild(document.createElement('option')).innerHTML = x; }); dd.select.onchange = changeDifficulty; } var currentDifficulty = toText(dd.el.innerHTML) .replace(/^(.)/,function(a) { return a.toUpperCase(); }) .replace(/iwbth/i,'IWBTH') .replace(/pfudor/i,'PFUDOR'); dd.select.selectedIndex = dd.difficulties.indexOf(currentDifficulty); dd.select.style.cssText = 'position:absolute; margin:0; padding:0; width: 110px;'; var elRect = dd.el.getBoundingClientRect(); dd.select.style.top = elRect.top-3 + 'px'; dd.select.style.left = elRect.left + 'px'; //dd.el.style.display = 'none'; }
//graphic font unsupported function toText(HTML) { return HTML.replace(/<.+?>/g,'').replace(/\sLv.+/g,''); }
if (document.querySelector('#navbar')) { //var target = document.querySelector('.cit + .cit tr:last-child > td > div'); var target = document.querySelector('#level_readout > div:nth-child(1) > div:nth-child(1)'); target.style.cursor = 'pointer'; target.id = 'difficulty'; dd.el = target; dd(); }
no it's not
|
|
|
|
 |
|
Jul 21 2017, 20:37
|
Scremaz
Group: Gold Star Club
Posts: 24,304
Joined: 18-January 07

|
good. one less. -------------------------------- original intro: here we are again, trying to take stock of the situation and build an adequate compendium. please report here about the working scripts, the broken ones in need of fixing and so on - possibly with a brief description. version number appreciated when reporting a working script, just in case. properly working: - Monsterbation 1.1.5.0: comprehensive hovering/tracking
- Inline Difficulty Changer 2017-06-24: lets you change difficulty without needing to go into the option page
- Percentile Ranges 1.2.1: calculates percentile values of Equip rolls
- SmartSearch 1.3.1: improved Search panel
- Round Counter 1.0.0.0: self-explanatory
- Smart Monster Lab 2.0.13c: more options on Monster Lab
- HV Confirmer 0.4: asks for a confirmation when fleeing or using EDs
partially broken, needing some fixes: - Item Manager: comprehensive inventory/bazaar/MM helper
completely broken, needing many fixes. possibly a complete rework: - HV Monster Scan: scan monsters and send stats to jenga's db [needing jenga's care]
- Equip Comparison: helps to estimate the quality of an item by cross-checking with wiki rolls
- Equip Range: self-explanatory
- Sort Inventory By Date: self-explanatory
- Proficiency Gain Sidebar: adds infos about prof gains
- Sort: Automatic sorting of items in shop by Quality\Rarity and more show option
- Equipment Highlights: Simple Highlights that add a colored background
- Equipment PAB Symbols: Add PAB symbols to items in shop
- Lottery Prize Reminder: Add current Weapon and Amor Lottery to the selected pages with a direct link
- Mini Monster Lab Additions: better Monster Lab interface
- Item Shop Buyer: lets you type the desired amount of items from Item Shop
excluded: - reloader/cracklingcast/obsolete and illegal scripts
This post has been edited by Scremaz: Sep 3 2017, 14:18
|
|
|
|
 |
|
Jul 21 2017, 20:43
|
Benny-boy
Group: Gold Star Club
Posts: 1,906
Joined: 27-December 10

|
QUOTE(DJNoni @ Jul 21 2017, 21:15)  no it's not
Good to know, added to wiki with monsterbation (IMG:[ invalid] style_emoticons/default/happy.gif)
|
|
|
Jul 21 2017, 21:49
|
Scremaz
Group: Gold Star Club
Posts: 24,304
Joined: 18-January 07

|
QUOTE(Benny-boy @ Jul 21 2017, 20:43)  Good to know, added to wiki with monsterbation (IMG:[ invalid] style_emoticons/default/happy.gif) oh, you're already updating? nice! btw, i'd say to remove all the deprecated scripts. any objections?
|
|
|
Jul 21 2017, 22:18
|
Benny-boy
Group: Gold Star Club
Posts: 1,906
Joined: 27-December 10

|
QUOTE(Scremaz @ Jul 21 2017, 22:49)  oh, you're already updating? nice!
btw, i'd say to remove all the deprecated scripts. any objections?
Separate page for outdated scripts?
|
|
|
Jul 21 2017, 22:26
|
Scremaz
Group: Gold Star Club
Posts: 24,304
Joined: 18-January 07

|
QUOTE(Benny-boy @ Jul 21 2017, 22:18)  Separate page for outdated scripts?
i thought about the bin, tbh (IMG:[ invalid] style_emoticons/default/heh.gif)
|
|
|
|
 |
|
Jul 21 2017, 22:33
|
Superlatanium
Group: Gold Star Club
Posts: 7,593
Joined: 27-November 13

|
The older equipment comparison script (the one that displays stats like L - 0.03) is old and reportedly very annoying to debug; the previous creator/maintainers got sick of it and gave up IIRC, and anyone who wants to make it functional for 0.85 is (probably) going to be in for a lot of work. My percentile ranges does the same sort of thing, but it's only that useful for L-ranges and it only notes the most important stats, and only for some gears. (anyone here like doing data entry? (IMG:[ invalid] style_emoticons/default/tongue.gif)) Jenga recently fixed up the equipment ranges script and the backend (including enabling HTTPS), and I'm sure that was a decent bit of work, since all of the HTML changed: the monster scanner is (probably) a whole lot easier to fix up, since it mainly just needs to parse the log.
|
|
|
|
 |
|
Jul 21 2017, 22:39
|
KitsuneAbby
Group: Catgirl Camarilla
Posts: 7,570
Joined: 12-July 14

|
QUOTE(Scremaz @ Jul 21 2017, 21:49)  oh, you're already updating? nice!
btw, i'd say to remove all the deprecated scripts. any objections?
If you're talking about the excluded scripts, then my answer is NO. Even if they're completely pointless in terms of functionality, they may still have useful bits of code inside for further reference. It should be determined one after the other if they have anything useful inside or not before deciding to trash them. On the other hand, scripts that contain forbidden things should remain in a restricted area, unaccessible to lambda players.
|
|
|
|
 |
|
Jul 21 2017, 22:42
|
Superlatanium
Group: Gold Star Club
Posts: 7,593
Joined: 27-November 13

|
QUOTE(Scremaz @ Jul 21 2017, 19:49)  btw, i'd say to remove all the deprecated scripts. any objections? That sounds good. People interested in the obsolete stuff can always look at the page history, after all, so the info isn't lost, simply removed from the main page newbies looking for stuff will be stumbling onto.
|
|
|
|
 |
|
Jul 21 2017, 22:48
|
SidZBear
Group: Gold Star Club
Posts: 560
Joined: 31-May 16

|
QUOTE(Nanoha_Prayer @ Jul 21 2017, 06:45)  SmartMonsterLab feeding monsters one by one with crystals really painful. (IMG:[ invalid] style_emoticons/default/cry.gif) Seconded! I'm even willing to offer a sizeable reward for this one >.< QUOTE(Scremaz @ Jul 21 2017, 08:55) 
what did it do? is it completely broken? how many people were using it?
Completely broken; it redid the monster screen into something a bit easier to read, and also allowed to bulk feed monsters crystals and chaos tokens. Check each monster, then select from a drop down what you wanted to do and how many times to do it. Probably more stuff, but I absolutely agree with Nanoha, we needs it back >.< This post has been edited by SidZBear: Jul 21 2017, 22:50
|
|
|
|
 |
|
Jul 21 2017, 23:09
|
Noni
Group: Catgirl Camarilla
Posts: 13,124
Joined: 19-February 16

|
QUOTE(lololo16 @ Jul 21 2017, 23:05)  These two are broken and are useful (second one for low level players, I suppose)
Sort_Inventory_by_Date.txt ( 616bytes )
Number of downloads: 84
Proficiency_Gain_Sidebar.txt ( 3.09k )
Number of downloads: 80Second one also for mages of all levels but 500. We all have to grind our staff, and you know how it is, you shouldn't keep grinding your staff after it's finished... nothing more will come out. Waste of time and you will be quite sore afterward. What? I was talking about staff proficiency! What did you think I was talking about!?
|
|
|
|
 |
|
Jul 21 2017, 23:10
|
Scremaz
Group: Gold Star Club
Posts: 24,304
Joined: 18-January 07

|
QUOTE(decondelite @ Jul 21 2017, 22:39)  It should be determined one after the other if they have anything useful inside or not before deciding to trash them.
alright. feel free to start (IMG:[ invalid] style_emoticons/default/rolleyes.gif) QUOTE(Superlatanium @ Jul 21 2017, 22:42)  That sounds good. People interested in the obsolete stuff can always look at the page history, after all, so the info isn't lost, simply removed from the main page newbies looking for stuff will be stumbling onto.
yep. afterall, if one user goes into that page is to see what *is* useful. not what *was* useful when, saying, HV 0.7 was up. and afterall the actual infos are here in the forums. wiki only collects links. QUOTE(SidZBear @ Jul 21 2017, 22:48)  Completely broken; it redid the monster screen into something a bit easier to read, and also allowed to bulk feed monsters crystals and chaos tokens. Check each monster, then select from a drop down what you wanted to do and how many times to do it.
crowdfunding(s) will eventually come when i'll know exactly what they should be hosted for. and thank you for these infos (IMG:[ invalid] style_emoticons/default/smile.gif)
|
|
|
|
 |
|
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:
|
 |
 |
 |
|
|
|