Loading. Please Wait...
|
|
|
HV Script Thread, Discuss your creations. Includes guidelines and infos for script creation (2020-02-28 upd) |
|
Jan 21 2018, 21:03
|
Scremaz
Group: Gold Star Club
Posts: 24,304
Joined: 18-January 07
|
i doubt admin will make a new category only for a handful of threads. but if you think it could help, feel free asking him
|
|
|
Jan 21 2018, 21:15
|
Noni
Group: Catgirl Camarilla
Posts: 12,919
Joined: 19-February 16
|
As an experiment, we've moved this thread from the HV chat forum to the HV Systems Discussion forum.
Please enjoy this thread like you used to do!
|
|
|
Jan 22 2018, 20:24
|
lazyNPC
Group: Gold Star Club
Posts: 3,346
Joined: 8-June 12
|
QUOTE(gianfrix94 @ Jan 18 2018, 20:37) Did a small update to Countdown Timer for REs (IMG:[ invalid] style_emoticons/default/smile.gif) Added Middle Click check on RE link and redirect of REs to alt.hentaiverse if alt_redirect is set to true. Another update for this, bugfixes. This post has been edited by gianfrix94: Feb 10 2018, 01:50
|
|
|
Jan 29 2018, 14:34
|
Superlatanium
Group: Gold Star Club
Posts: 7,573
Joined: 27-November 13
|
Income Summary for 0.86, test and help me find bugs if you want.
Income_Summary_2.0.0.user.js.txt ( 37.87k )
Number of downloads: 816(Standalone, doesn't need HV Counter Plus Save this time) Uses price data from HV Toolbox. You can also click to change prices in Income Summary itself. Old details for what this is/why it's useful at the bottom of this post, I'll make more updated instructions soon.
|
|
|
Feb 1 2018, 02:46
|
allgentleman
Newcomer
Group: Members
Posts: 57
Joined: 23-April 17
|
what is the percentile means? i found sometimes it was larger than 100%, and perhaps sometimes it will change (IMG:[ invalid] style_emoticons/default/anime_cry.gif)
|
|
|
|
|
|
Feb 1 2018, 04:00
|
allgentleman
Newcomer
Group: Members
Posts: 57
Joined: 23-April 17
|
nooooooo, i still cant understand.. look this image, this shield's base block chance is 34.16, it's quality is Exquisite. in wiki, its BLK is ranged from 31.34 to 34.63. but why the percentile is 51%???? the suffix doesnt effect the BLC (IMG:[ invalid] style_emoticons/default/anime_cry.gif) what's the wrong?? where is my mistake?? (IMG:[ invalid] style_emoticons/default/blink.gif) This post has been edited by allgentleman: Feb 1 2018, 04:02
|
|
|
Feb 1 2018, 04:24
|
Superlatanium
Group: Gold Star Club
Posts: 7,573
Joined: 27-November 13
|
You're still using the old outdated ranges. Use Live Percentile Ranges instead.
|
|
|
|
|
|
Feb 1 2018, 04:35
|
allgentleman
Newcomer
Group: Members
Posts: 57
Joined: 23-April 17
|
QUOTE(Superlatanium @ Feb 1 2018, 10:24) You're still using the old outdated ranges. Use Live Percentile Ranges instead.
ok, i got it. i used this function in the HVtoolBox. i install the new script now (IMG:[ invalid] style_emoticons/default/laugh.gif) thanks a lot QUOTE(Superlatanium @ Feb 1 2018, 10:24) You're still using the old outdated ranges. Use Live Percentile Ranges instead.
it doesn't work (IMG:[ invalid] style_emoticons/default/cry.gif) after i stop the HVtoolBox, it works. but i want the function of HVtoolBox... (IMG:[ invalid] style_emoticons/default/cry.gif) it's inconvenient, but i can switch between these two tools. after all, thanks (IMG:[ invalid] style_emoticons/default/biggrin.gif)
|
|
|
|
|
|
Feb 1 2018, 05:22
|
Superlatanium
Group: Gold Star Club
Posts: 7,573
Joined: 27-November 13
|
QUOTE(allgentleman @ Feb 1 2018, 02:44) it doesn't work (IMG:[ invalid] style_emoticons/default/cry.gif) after i stop the HVtoolBox, it works. but i want the function of HVtoolBox... (IMG:[ invalid] style_emoticons/default/cry.gif) You still have some other script(s) on that page running, maybe HVtoolBox's. Fix their `// @include`s so that /equip/ pages aren't included, so that Live Percentile Ranges is the only one that runs on equip pages.
|
|
|
|
|
|
Feb 1 2018, 05:35
|
allgentleman
Newcomer
Group: Members
Posts: 57
Joined: 23-April 17
|
QUOTE(Superlatanium @ Feb 1 2018, 11:22) You still have some other script(s) on that page running, maybe HVtoolBox's. Fix their `// @include`s so that /equip/ pages aren't included, so that Live Percentile Ranges is the only one that runs on equip pages.
ok, i got it. many tools need your range function. like hvtoolbox, smart search. why not add a function so that it can update the range data online? maybe you can simply copy and paste the new data to other scripts before, and now u have a some big changes. but a update function would no doubt helps a lot. im not familiar to this type of programming language, it's just an advice (IMG:[ invalid] style_emoticons/default/biggrin.gif) This post has been edited by allgentleman: Feb 1 2018, 05:37
|
|
|
|
|
|
Feb 1 2018, 06:39
|
Superlatanium
Group: Gold Star Club
Posts: 7,573
Joined: 27-November 13
|
I looked at HVToolbox's code but it was too much of a slog for me to get through from the little effort I invested. (If anyone else has looked at it and has an idea of how it could be tweaked to integrate the new ranges, feel free to fix it up or PM me) But SmartSearch is fixable because it's my own script, so I know I can fix it up quickly. (if anyone wants to integrate Live Percentile Ranges into their script, it's really really easy. Example: CODE PercentileRanges.addEquipLink('https://hentaiverse.org/equip/82053309/dde67e38ef'); PercentileRanges.addEquipLink('https://hentaiverse.org/equip/125808352/17b7a8e553'); PercentileRanges.addEquipLink('https://hentaiverse.org/equip/117993212/8204116269', 'Magnificent'); PercentileRanges.run(results => { [82053309, 125808352, 117993212].forEach(eid => { const result = results[eid]; const {percentiles, bases, summaries, infos} = result; resultsField.value += infos.name + ' : ' + summaries.extended + '\n'; }) }, statusElm); ) The only substantial difference between the implementation of this and the old parseEquip function is that this one requires a callback, while the old one was synchronous. This post has been edited by Superlatanium: Feb 1 2018, 07:06
|
|
|
|
|
|
Feb 1 2018, 07:32
|
allgentleman
Newcomer
Group: Members
Posts: 57
Joined: 23-April 17
|
QUOTE(Superlatanium @ Feb 1 2018, 12:39) I looked at HVToolbox's code but it was too much of a slog for me to get through from the little effort I invested. (If anyone else has looked at it and has an idea of how it could be tweaked to integrate the new ranges, feel free to fix it up or PM me)
But SmartSearch is fixable because it's my own script, so I know I can fix it up quickly.
The only substantial difference between the implementation of this and the old parseEquip function is that this one requires a callback, while the old one was synchronous.
i added a user exclude, then these two scripts works well. so it is not really necessary to update the HVToolbox now (IMG:[ invalid] style_emoticons/default/biggrin.gif)
|
|
|
|
|
|
Feb 2 2018, 07:55
|
EmuAGR
Newcomer
Group: Members
Posts: 63
Joined: 8-February 13
|
QUOTE(hansvar92 @ May 31 2016, 16:02) HVEquipCompare v0.6.5.3 fix [attachmentid=87578] Changes: - Update to Wiki Ranges data (31 May 2016) Fix only date of new wiki data (for N key). (IMG:[ invalid] style_emoticons/default/heh.gif) Is there a replacement for this?
|
|
|
Feb 3 2018, 09:24
|
Beddhist
Newcomer
Group: Gold Star Club
Posts: 53
Joined: 21-December 13
|
Is there a mod that allows you to see what kind of gem you have mid-combat? I used to just use hvstats before mods broke last year, and my current mod loadout doesn't play too nice with stats. Anything standalone?
|
|
|
Feb 3 2018, 09:29
|
Superlatanium
Group: Gold Star Club
Posts: 7,573
Joined: 27-November 13
|
Monsterbation
|
|
|
Feb 3 2018, 09:44
|
Beddhist
Newcomer
Group: Gold Star Club
Posts: 53
Joined: 21-December 13
|
Yeah, that's what I thought too. Is there anything beyond enabling raisegem? Because if there is I'm not seeing anything.
Edit: Yup, that worked. ty Scremaz
This post has been edited by Garbouw Deark: Feb 3 2018, 20:35
|
|
|
Feb 3 2018, 11:42
|
Scremaz
Group: Gold Star Club
Posts: 24,304
Joined: 18-January 07
|
QUOTE(Garbouw Deark @ Feb 3 2018, 08:44) Yeah, that's what I thought too. Is there anything beyond enabling raisegem? Because if there is I'm not seeing anything.
there's a way to customize your quickbar, somewhere in the configuration section. iirc you should use "1" to enable gems.
|
|
|
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:
|
|
|
|
|
|
|