Welcome Guest ( Log In | Register )

38 Pages V « < 3 4 5 6 7 > »   
Reply to this topicStart new topic
> [Script] HVtoolBox 1.0.14, A comprehensive out-of-battle script - ISK support

 
post Sep 3 2017, 01:46
Post #81
f4tal



Veteran Poster
********
Group: Members
Posts: 2,662
Joined: 10-January 13
Level 416 (Godslayer)


At every possible page? At bazaar page and Item World for every tab (1H, 2H, shield, staff, heavy, light) too? That sounds an extremely weird...

Can you open a console CTRL + SHIFT + I and tell me, is this any error message here?

This post has been edited by f4tal: Sep 3 2017, 01:47
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 3 2017, 01:56
Post #82
Maharid



The Sleeper
*******
Group: Catgirl Camarilla
Posts: 2,407
Joined: 27-April 10
Level 500 (Ponyslayer)


Yes, they won't show for every page and for every category, made a complete check.

There is no error in the console for Tool Box.

This post has been edited by Maharid: Sep 3 2017, 01:59
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 3 2017, 02:05
Post #83
f4tal



Veteran Poster
********
Group: Members
Posts: 2,662
Joined: 10-January 13
Level 416 (Godslayer)


Just super weird. Because I see no way how that can be...

have you applied any custom CSS?
Do you have any other scripts?
Can you test in different browser, just to be sure? You can download portable Iron browser (Chromium) for quick test.
Also, can you open your local.storage (see first post, FAQ) and send me (PM) your current HVtoolBox file?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 3 2017, 02:46
Post #84
Maharid



The Sleeper
*******
Group: Catgirl Camarilla
Posts: 2,407
Joined: 27-April 10
Level 500 (Ponyslayer)


On Iron It will completely not appear on equipment pages, it will fully work on item pages.

Localstorage infos coming.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 3 2017, 02:56
Post #85
f4tal



Veteran Poster
********
Group: Members
Posts: 2,662
Joined: 10-January 13
Level 416 (Godslayer)


Thanks for feedback. I will check tomorrow what can potentially cause such bug.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 3 2017, 17:56
Post #86
Cleavs



A certain pervert. OT expert. Just dancing around in the game.
***********
Group: Gold Star Club
Posts: 24,313
Joined: 18-January 07
Level 500 (Ponyslayer)


i'm not sure whether this has already been included somewhere or not... a while ago a script which hid figurines from shrine was available. just in case, here's the last working version:
https://forums.e-hentai.org/index.php?s=&am...t&p=4699593

(and a custom filter too: https://forums.e-hentai.org/index.php?s=&am...&p=4827264)


also, i checked a bit of cottons and seems there's soething odd about how profs are retrieved:

this one doesn't trigger percentile: https://hentaiverse.org/equip/137194287/dbec4cd82e
this one says "no htmlname for DProf": https://hentaiverse.org/equip/121134764/9044b45a86
this one says "found no stat for Forbidden": https://hentaiverse.org/equip/116250410/4b3158cff9
this one says no htmlname for FProf": https://hentaiverse.org/equip/88840068/c8cfd7ae3f

this one seems to work properly, if it can help: https://hentaiverse.org/equip/99952837/456ee5b08e

This post has been edited by Scremaz: Sep 3 2017, 18:26
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 3 2017, 20:10
Post #87
Maharid



The Sleeper
*******
Group: Catgirl Camarilla
Posts: 2,407
Joined: 27-April 10
Level 500 (Ponyslayer)


The one that "work properly" for me say "no stat for Agility".

For hiding collectible i use this:
CODE
// ==UserScript==
// @name            Unshrinable Figurines
// @description     Trys to prevent you from shrining figurines
// @include         *hentaiverse.org/?s=Bazaar&ss=is*
// @include         *hentaiverse.org/?s=Bazaar&ss=ss*
// @include         *hentaiverse.org/?s=Bazaar&ss=mm*
// @author-maincode oohmrparis
// @author-script   LostLogia4
// @version         1.2
// ==/UserScript==

var figurine = document.querySelectorAll('#item_pane tr td:first-Child');
for(i = 0; i < figurine.length; i++) {
  if(/Figurine/.test(figurine[i].children[0].getAttribute('onclick'))) {
    figurine[i].parentElement.style.display = 'none';
  }
}

I think is one of the older one but never stopped working.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 3 2017, 20:36
Post #88
Cleavs



A certain pervert. OT expert. Just dancing around in the game.
***********
Group: Gold Star Club
Posts: 24,313
Joined: 18-January 07
Level 500 (Ponyslayer)


QUOTE(Maharid @ Sep 3 2017, 20:10) *

The one that "work properly" for me say "no stat for Agility".

because one PAB is missing. it's working as intended, i guess. a bit invasive though...
other opinions?

QUOTE(Maharid @ Sep 3 2017, 20:10) *

For hiding collectible i use this:
CODE
// ==UserScript==
// @name            Unshrinable Figurines
// @description     Trys to prevent you from shrining figurines
// @include         *hentaiverse.org/?s=Bazaar&ss=is*
// @include         *hentaiverse.org/?s=Bazaar&ss=ss*
// @include         *hentaiverse.org/?s=Bazaar&ss=mm*
// @author-maincode oohmrparis
// @author-script   LostLogia4
// @version         1.2
// ==/UserScript==

var figurine = document.querySelectorAll('#item_pane tr td:first-Child');
for(i = 0; i < figurine.length; i++) {
  if(/Figurine/.test(figurine[i].children[0].getAttribute('onclick'))) {
    figurine[i].parentElement.style.display = 'none';
  }
}

I think is one of the older one but never stopped working.

hmm... another one to add to the script list, i guess...
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 3 2017, 23:32
Post #89
f4tal



Veteran Poster
********
Group: Members
Posts: 2,662
Joined: 10-January 13
Level 416 (Godslayer)


QUOTE

i'm not sure whether this has already been included somewhere or not... a while ago a script which hid figurines from shrine

Scremaz, actually, you can hide whatever equipment and items you want with highlights. Just put word "figurine" in first slot (for example) and type in in custom CSS field: ".styleHigh0 {display: none !important}" and voila - figures are gone. Sadly, they are gone from every page, which is not cool...

I will put special setting to show figurines only on Item Inventory page to make things more simple and clear.

QUOTE
checked a bit of cottons and seems there's soething odd about how profs are retrieved:

It is something odd/right with Percentile Ranges, not with HVtoolBox itself. Sorry, I can't help here and should we at all? Super and Jenga are coming up with new Percentile script with way better stat analyzer, so it is better to wait for their solution, than fixing a script, isn't it?
Moreover, original Percentile Ranges hadn't parsed (AFAIK) cooton and plate staff - it fas hc_br fix. So, it I'd better to make that script parse cooton/plate anyhow, than not parse them at all =)

Currently, I am working on better modal windows, shrine/gift logger and visual comparison of equip. It would take 2-3 extra days. And of course fixing bugs and glitches.

Speaking of them...
Maharid, sorry, I cannot reproduce that bug and find why exactly all checkboxes are disappeared.
The only solution I can give, is delete HVtoolBox from local.storage (backup it as you need) anf give script a try to rebuild itself from a new.

This post has been edited by f4tal: Sep 3 2017, 23:32
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 3 2017, 23:37
Post #90
piyin



Reasons to love the IRS.
***********
Group: Gold Star Club
Posts: 10,862
Joined: 4-February 09
Level 500 (Ponyslayer)


Any news on the numeration stuff? (IMG:[invalid] style_emoticons/default/rolleyes.gif)

Also: the mm function for items/equimpents doesnt work as intented.
I tried to send some FV and BG and i added the recipient/subject/message and selected the 1 message 10 att, and it wasnt sent, it was, however, stuck in the make new message section of MM.

so, just reporting it.

This post has been edited by piyin: Sep 3 2017, 23:51
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 3 2017, 23:42
Post #91
Cleavs



A certain pervert. OT expert. Just dancing around in the game.
***********
Group: Gold Star Club
Posts: 24,313
Joined: 18-January 07
Level 500 (Ponyslayer)


QUOTE(f4tal @ Sep 3 2017, 23:32) *

I will put special setting to show figurines only on Item Inventory page to make things more simple and clear.

if it's possible, yes. you know, in the past i read a few people whining they shrined one pony and i'd like to give them the tools not to do it again. and the coder the chance to have not responsibility (IMG:[invalid] style_emoticons/default/tongue.gif)

QUOTE(f4tal @ Sep 3 2017, 23:32) *

It is something odd/right with Percentile Ranges, not with HVtoolBox itself. Sorry, I can't help here

uh, thought so.

QUOTE(f4tal @ Sep 3 2017, 23:32) *

should we at all? Super and Jenga are coming up with new Percentile script with way better stat analyzer, so it is better to wait for their solution, than fixing a script, isn't it?

if that's the case, no. of course. i could've even not reported them at this point (IMG:[invalid] style_emoticons/default/duck.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 4 2017, 00:32
Post #92
Maharid



The Sleeper
*******
Group: Catgirl Camarilla
Posts: 2,407
Joined: 27-April 10
Level 500 (Ponyslayer)


@f4tal: Nope, don't work, checkbok still not show.

Do you have version 0.9.5?
I want to try to see if that version hstill have checkbox or if the problem is somewhere else.

At the moment i'm using IM for Equipment page and Too Box for everything else.

This post has been edited by Maharid: Sep 4 2017, 00:52
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 4 2017, 01:07
Post #93
longwood



Casual Poster
***
Group: Members
Posts: 150
Joined: 5-January 17
Level 330 (Godslayer)


You r very cool and kind bro f4tal,u make a great script to make our life as a player of this game easier.
U clearly worked quite a lot on this.
(Yeah (IMG:[invalid] style_emoticons/default/heh.gif) (IMG:[invalid] style_emoticons/default/heh.gif) (IMG:[invalid] style_emoticons/default/heh.gif) (IMG:[invalid] style_emoticons/default/heh.gif) (IMG:[invalid] style_emoticons/default/heh.gif) (IMG:[invalid] style_emoticons/default/heh.gif) (IMG:[invalid] style_emoticons/default/heh.gif) )
Thank you very much for ur hard work bro f4tal and other player who give contribution to this project (IMG:[invalid] style_emoticons/default/smile.gif)

This post has been edited by longwood: Sep 4 2017, 09:21
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 4 2017, 01:30
Post #94
f4tal



Veteran Poster
********
Group: Members
Posts: 2,662
Joined: 10-January 13
Level 416 (Godslayer)


QUOTE

@f4tal: Nope, don't work, checkbok still not show.
Do you have version 0.9.5?

Then I do not know. The only reason why checkboxes may disappear, if one of your equip has weird ID, however it cannot be potentialle, or when data of equipment cannot being parsed (but then all-checkbox would not appear at all...), third alternative is checkboxes do appear, but appear outside is page or hidden (why...?).

As for version 0.9.5., yes I have, but I been able to upload it when I will come back home (min.10 hours). In a future I will keep all outdated version in first post - it was bad (heck, stupid and idiotic) decision to remove old version from first post, but I did it to remove any backward issues (versions 0.9.5 and 0.9.6. store their data a little bit differently and thus can lead to unexpected results).

Well, sorry for inconvenience, I haven't thought that may happen =(
On a bright note, it is a beta, so I can technically cover my mistake by saying, 'well, sh1t happens, sorry, this is a prototype' =)

QUOTE
Your very cool and kind bro f4tal,u make a great script to make our life as a player of this game easier.

Thank you for kind words =)
If you would find amy bugs (and believe me, you will), report them back.

QUOTE
Any news on the numeration stuff? rolleyes.gif

In progress

QUOTE
Also: the mm function for items/equimpents doesnt work as intented.

Hmm, try to increase delay between calls option in settings. Chances are that request to send message was sent too earlier.

This post has been edited by f4tal: Sep 4 2017, 01:32
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 4 2017, 01:55
Post #95
Maharid



The Sleeper
*******
Group: Catgirl Camarilla
Posts: 2,407
Joined: 27-April 10
Level 500 (Ponyslayer)


On version 0.9.5 checkbox for equipment worked so i don't think is an ID thing, it is the new version or another change i made.

Keeping the old version will be good (with a complete changelog for each) but lraving only the last version reduce fragmentation so it cannot be called an error, don't worry about it.

Anyway, thanks for the help, i'll wai and see if i can find the problem with 0.9.5.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 4 2017, 02:33
Post #96
piyin



Reasons to love the IRS.
***********
Group: Gold Star Club
Posts: 10,862
Joined: 4-February 09
Level 500 (Ponyslayer)


QUOTE(f4tal @ Sep 4 2017, 01:30) *

Hmm, try to increase delay between calls option in settings. Chances are that request to send message was sent too earlier.


Testing.
Report in a few minutes.

EDIT: Worked! (IMG:[invalid] style_emoticons/default/biggrin.gif)


This post has been edited by piyin: Sep 4 2017, 02:44
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 4 2017, 08:34
Post #97
CPUAMD



Veteran Poster
********
Group: Catgirl Camarilla
Posts: 2,731
Joined: 24-April 15
Level 500 (Ponyslayer)


https://hentaiverse.org/equip/136806703/6ed703a8c0
[attachembed=107966]

got some error (IMG:[invalid] style_emoticons/default/sad.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 4 2017, 10:58
Post #98
Cleavs



A certain pervert. OT expert. Just dancing around in the game.
***********
Group: Gold Star Club
Posts: 24,313
Joined: 18-January 07
Level 500 (Ponyslayer)


QUOTE(Goldage @ Sep 4 2017, 08:34) *

I reported it too previously. Seems it's due to percentile script and a current new version is being written.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 4 2017, 13:08
Post #99
KitsuneAbby



Curse God of the Hentai Shrine
**********
Group: Catgirl Camarilla
Posts: 7,572
Joined: 12-July 14
Level 500 (Ponyslayer)


Am I really going to be the first one to ask if it'd be possible to import my prices from Item Manager?

Transferring all this one by one (and with screenshots, mind you) would be a total nightmare:
(IMG:[i.imgur.com] https://i.imgur.com/dLbO336h.png)

This post has been edited by Scremaz: Sep 4 2017, 13:30
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 4 2017, 13:25
Post #100
f4tal



Veteran Poster
********
Group: Members
Posts: 2,662
Joined: 10-January 13
Level 416 (Godslayer)


QUOTE
Am I really going to be the first one to ask if it'd be possible to import my prices from Item Manager?

Import from...? maybe export from? =)

For what reasons you want to export your prices?
If you want just a backup them, then check the very first post, it says how one can backup his data manually (specials buttons in settings are already build and would be included in next version)

If you want to export your prices in form of data/shop, then select equipment you need (click checkboxes), then click ~LIST~ button and input something like this:

CODE
$name @ $myprice

...and voila, you have a list with following format:
Exquisite Sword @ 60000
Average rapier @ 40000
Peerless Axe @ 56000
, or
CODE
$name @ $mypricea

..for that format:
Exquisite Sword @ 60k
Average rapier @ 40k
Peerless Axe @ 56k

There lots of commands you can use in list, check the first/second post for details. =)

...or I understood your question wrong?

This post has been edited by f4tal: Sep 4 2017, 13:26
User is offlineProfile CardPM
Go to the top of the page
+Quote Post


38 Pages V « < 3 4 5 6 7 > » 
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: 26th July 2025 - 14:42