Welcome Guest ( Log In | Register )

10 Pages V « < 6 7 8 9 10 >  
Reply to this topicStart new topic
> [Script] Live Percentile Ranges 1.1.0, See how good your equips are at a glance

 
post Aug 23 2021, 15:33
Post #141
killi890



Casual Poster
****
Group: Members
Posts: 446
Joined: 19-May 11
Level 455 (Dovahkiin)


No matter what I try, and also after waiting a few days, any and all equipment I look at says "No data available for this equip type".

I'm using an up to date Firefox, with Tampermonkey right now. The Live Percentile Ranges 1.1.0.s3 script. I'm not using any special firewall or whatever.

If someone has an idea, I'd be happy to hear it.

User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 23 2021, 18:06
Post #142
Shank



Roll for Initiative
**********
Group: Global Mods
Posts: 8,980
Joined: 19-May 12
Level 500 (Ponyslayer)


Have you tried enabling custom font in the HV Settings?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 23 2021, 18:17
Post #143
killi890



Casual Poster
****
Group: Members
Posts: 446
Joined: 19-May 11
Level 455 (Dovahkiin)


QUOTE(Shank @ Aug 23 2021, 18:06) *

Have you tried enabling custom font in the HV Settings?


That changes it to "Request Error: Response code of "0""
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 23 2021, 19:59
Post #144
Necromusume



(((Shark)))
*********
Group: Catgirl Camarilla
Posts: 6,688
Joined: 17-May 12
Level 500 (Ponyslayer)


QUOTE(killi890 @ Aug 23 2021, 16:17) *
That changes it to "Request Error: Response code of "0""

That's progress. Now open the Network panel (Ctrl+Shift+E or Tools > Web Developer > Network), hit Reload, and see what error it's giving for the request to reasoningtheory.net.

This post has been edited by Necromusume: Aug 23 2021, 20:00
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 23 2021, 21:27
Post #145
killi890



Casual Poster
****
Group: Members
Posts: 446
Joined: 19-May 11
Level 455 (Dovahkiin)


QUOTE(Necromusume @ Aug 23 2021, 19:59) *

That's progress. Now open the Network panel (Ctrl+Shift+E or Tools > Web Developer > Network), hit Reload, and see what error it's giving for the request to reasoningtheory.net.


Ah thanks. It's noscript. I didn't think of that, because hentaiverse doesn't actually show any symbols in its popup window. I have white listed it, and now it works. Thanks you.
I... guess it makes sense though, that this happened.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 27 2021, 06:44
Post #146
chronoquairium



Newcomer
*
Group: Members
Posts: 24
Joined: 11-June 20
Level 292 (Godslayer)


QUOTE(Shank @ Aug 23 2021, 12:06) *

Have you tried enabling custom font in the HV Settings?

Is that necessary? Having the same problem, console gave the attached info. I really don't want to change my font if I don't have to, but is that the only option? (Unless I'm misinterpreting and it only changes the detailed text and not the headers/all-caps text.)

Attached Image

This post has been edited by chronoquairium: Aug 27 2021, 06:49
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 27 2021, 10:19
Post #147
Nezu



Rat
********
Group: Catgirl Camarilla
Posts: 3,929
Joined: 29-January 12
Level 500 (Ponyslayer)


QUOTE(chronoquairium @ Aug 27 2021, 05:44) *

Is that necessary? Having the same problem, console gave the attached info. I really don't want to change my font if I don't have to, but is that the only option? (Unless I'm misinterpreting and it only changes the detailed text and not the headers/all-caps text.)

Attached Image


Yes, it is 100% necessary, as the game default font is not actually a font - it's a series of images, which means parsing it requires a separate (tedious to write) code path everywhere it's used.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 27 2021, 15:02
Post #148
OnceForAll



Fluffy Tail Fox
*******
Group: Catgirl Camarilla
Posts: 1,621
Joined: 3-January 21
Level 500 (Ponyslayer)


QUOTE(Nezu @ Aug 27 2021, 16:19) *

Yes, it is 100% necessary, as the game default font is not actually a font - it's a series of images, which means parsing it requires a separate (tedious to write) code path everywhere it's used.


For any script writer who has interests, here is a implementation used to parse the default HentaiVerse font:

CODE
function parseDefaultFont(htmlElement) {
  let string = '';
  const letters = htmlElement.innerHTML.match(/"c\d\w"/g);
  for (let j = 0; j < letters.length; j++) {
    string += letters[j].match("c\d(\w)")[1];
  }
  return string;
}
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 28 2021, 06:47
Post #149
chronoquairium



Newcomer
*
Group: Members
Posts: 24
Joined: 11-June 20
Level 292 (Godslayer)


QUOTE(Nezu @ Aug 27 2021, 04:19) *

Yes, it is 100% necessary, as the game default font is not actually a font - it's a series of images, which means parsing it requires a separate (tedious to write) code path everywhere it's used.

...unfortunate. Thanks for the answer though.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 1 2021, 02:02
Post #150
Shank



Roll for Initiative
**********
Group: Global Mods
Posts: 8,980
Joined: 19-May 12
Level 500 (Ponyslayer)


@Ransotengai
It's more of an Ask the Experts question, so I've moved your post here
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 1 2021, 02:25
Post #151
Ransotengai



Casual Poster
***
Group: Members
Posts: 213
Joined: 24-February 19
Level 372 (Dovahkiin)


Thnx. (IMG:[invalid] style_emoticons/default/biggrin.gif) (IMG:[invalid] style_emoticons/default/biggrin.gif)

This post has been edited by Ransotengai: Nov 1 2021, 02:25
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 4 2022, 22:33
Post #152
Alexander44



Casual Poster
***
Group: Members
Posts: 128
Joined: 29-March 13
Level 414 (Godslayer)


Hello, I understand this doesn't work on isekai mode, is it true?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 5 2022, 01:44
Post #153
Pretty anon



Full power, full throttle
*******
Group: Gold Star Club
Posts: 1,663
Joined: 10-April 17
Level 500 (Ponyslayer)


QUOTE(Alexander44 @ Jan 4 2022, 14:33) *

Hello, I understand this doesn't work on isekai mode, is it true?


Yes it works, here's the latest version of the script, the one in the first post is a few versions old so that might be why it doesn't work for some people.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 5 2022, 02:07
Post #154
Basara Nekki



A poor man with a star.
**********
Group: Gold Star Club
Posts: 7,558
Joined: 13-September 12
Level 500 (Ponyslayer)


QUOTE(Pretty anon @ Jan 4 2022, 20:44) *

Yes it works, here's the latest version of the script, the one in the first post is a few versions old so that might be why it doesn't work for some people.


I installed this version and continues not working in Isekai. (IMG:[invalid] style_emoticons/default/sad.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 5 2022, 06:03
Post #155
Alexander44



Casual Poster
***
Group: Members
Posts: 128
Joined: 29-March 13
Level 414 (Godslayer)


QUOTE(Pretty anon @ Jan 5 2022, 00:44) *

Yes it works, here's the latest version of the script, the one in the first post is a few versions old so that might be why it doesn't work for some people.


The 1.1.0.s3 version doesn't work on Firefox default + Tampermonkey at all, does nothing in both peristent and isekai, tried disabling all other complements and scripts.

The 1.1.0.s version works fine, I got to make it work on isekai with the fix shown in the thread:

// @include https://hentaiverse.org/isekai/equip*
// @include https://hentaiverse.org/isekai/showequip.php*


QUOTE(Basara Nekki @ Jan 5 2022, 01:07) *

I installed this version and continues not working in Isekai. (IMG:[invalid] style_emoticons/default/sad.gif)


If you are using the 1.1.0.s version add this at the beginning of the script, it will break it in persistent but works on isekai:

// @include https://hentaiverse.org/isekai/equip*
// @include https://hentaiverse.org/isekai/showequip.php*

This post has been edited by Alexander44: Jan 5 2022, 06:16
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 5 2022, 06:21
Post #156
sssss2



Veteran Poster
********
Group: Gold Star Club
Posts: 3,944
Joined: 11-April 14
Level 500 (Ponyslayer)


I use both Firefox and Chrome, and have no problem.

I guess your Tampermonkey or Firefox is outdated.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 5 2022, 11:11
Post #157
forgottendropzone



/o_o\
******
Group: Catgirl Camarilla
Posts: 764
Joined: 31-January 18
Level 500 (Ponyslayer)


QUOTE(Pretty anon @ Jan 4 2022, 15:44) *

Yes it works, here's the latest version of the script, the one in the first post is a few versions old so that might be why it doesn't work for some people.



Didn't even realize this version even existed. Thanks! Works just fine in Persistent and Isekai, as far as I'm concerned. (IMG:[invalid] style_emoticons/default/biggrin.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 5 2022, 14:06
Post #158
Alexander44



Casual Poster
***
Group: Members
Posts: 128
Joined: 29-March 13
Level 414 (Godslayer)


QUOTE(sssss2 @ Jan 5 2022, 05:21) *

I use both Firefox and Chrome, and have no problem.

I guess your Tampermonkey or Firefox is outdated.


Both are up to date, I checked and I just checked again. I will try again once I have more time.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 6 2022, 21:00
Post #159
Basara Nekki



A poor man with a star.
**********
Group: Gold Star Club
Posts: 7,558
Joined: 13-September 12
Level 500 (Ponyslayer)


I discovered why the script was not working. At least for me, the script does not work with the standard game font. Today I tested change the font and use the same settings that I use in Persistent. It worked!! (IMG:[invalid] style_emoticons/default/biggrin.gif)

I use the 1.1.0.s3 version, browser SRWare Iron 96.0.4900.0, and Tampermonkey 4.13
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 24 2022, 03:38
Post #160
paladinefizban



Newcomer
**
Group: Members
Posts: 75
Joined: 23-April 11
Level 342 (Dovahkiin)


hey! mine wont work either.
tampermonkey 4.16
and live percentile 1 . 1 . 0 . s3
and i got
monster 1412
smart 137s2
and im on chrome
What up yo!
running everything else on standard. No random whacky changes
User is offlineProfile CardPM
Go to the top of the page
+Quote Post


10 Pages V « < 6 7 8 9 10 >
Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 


Lo-Fi Version Time is now: 15th March 2025 - 01:28