Welcome Guest ( Log In | Register )

43 Pages V « < 39 40 41 42 > »   
Reply to this topicStart new topic
> [Add-on] HVStat 5.7.1 (November 2017), HV Statistics, Tracking, and Analysis Tool (for Firefox and Chrome)

 
post May 6 2016, 16:27
Post #783
its-just-me



Casual Poster
***
Group: Members
Posts: 208
Joined: 14-October 10
Level 306 (Godslayer)


QUOTE(anton3210 @ Apr 25 2016, 10:52) *

I'm working with my own patches in the Iron Browser.
[attachmentid=84393]


Using the quoted files i fixed the proficiencies sidebar.

The error is in util script hvstat-noncombat.js

index of staff changed to 15 from 8
index of cloth changed to 8 from 10
index of light changed to 10 from 12
index of heavy changed to 12 from 14.

Edit proficiency table.html to match character screen.



New proficiency ripper function.

CODE
    captureProficiencies: function () {
        var proficiencyTable = document.getElementById("leftpane").children[2].querySelectorAll('div.fd4');
        var prof = hvStat.characterStatus.proficiencies;
        prof.oneHanded = Number(hv.util.innerText(proficiencyTable[2]));
        prof.twoHanded = Number(hv.util.innerText(proficiencyTable[4]));
        prof.dualWielding = Number(hv.util.innerText(proficiencyTable[6]));
        prof.staff = Number(hv.util.innerText(proficiencyTable[15]));
        prof.clothArmor = Number(hv.util.innerText(proficiencyTable[8]));
        prof.lightArmor = Number(hv.util.innerText(proficiencyTable[10]));
        prof.heavyArmor = Number(hv.util.innerText(proficiencyTable[12]));
        prof.elemental = Number(hv.util.innerText(proficiencyTable[17]));
        prof.divine = Number(hv.util.innerText(proficiencyTable[19]));
        prof.forbidden = Number(hv.util.innerText(proficiencyTable[21]));
        prof.deprecating = Number(hv.util.innerText(proficiencyTable[23]));
        prof.supportive = Number(hv.util.innerText(proficiencyTable[25]));
        hvStat.characterStatus.areProficienciesCaptured = true;
        hvStat.storage.characterStatus.save();
    },


New proficiency-table.html

CODE
<table>
<thead>
<tr>
    <th colspan="2">Equipment</th>
    <th colspan="2">Magic</th>
</tr>
</thead>
<tbody>
<tr>
    <th>One-handed:</th><td></td>
    <th>Staff:</th><td></td>
</tr>
<tr>
    <th>Two-handed:</th><td></td>
    <th>Elemental:</th><td></td>
</tr>
<tr>
    <th>Dual wielding:</th><td></td>
    <th>Divine:</th><td></td>
</tr>
<tr>
    <th>Cloth armor:</th><td></td>
    <th>Forbidden:</th><td></td>
</tr>
<tr>
    <th>Light armor:</th><td></td>
    <th>Deprecating:</th><td></td>
</tr>
<tr>
    <th>Heavy armor:</th><td></td>
    <th>Supportive</th><td></td>
</tr>
</tbody>
</table>


full archive: Attached File  5.6.8.4.zip ( 165.64k ) Number of downloads: 499


Attached Image

Edit: changed script version number in archive to 5.6.8.4

This post has been edited by its-just-me: May 6 2016, 16:36
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post May 26 2016, 07:48
Post #784
Tamao Serizawa



Casual Poster
***
Group: Gold Star Club
Posts: 119
Joined: 15-February 12
Level 480 (Godslayer)


QUOTE(its-just-me @ May 6 2016, 22:27) *

Using the quoted files i fixed the proficiencies sidebar.


Good job. It really fixed and it also showed up during battle too.

Thank you and K+ for you too.

This post has been edited by Tamao Serizawa: May 26 2016, 12:14
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post May 29 2016, 05:23
Post #785
Tamao Serizawa



Casual Poster
***
Group: Gold Star Club
Posts: 119
Joined: 15-February 12
Level 480 (Godslayer)


One more thing to look out about proficiency sidebar is when level up. From elemental prof until supportive prof supposed to show max 1.00 or less in red color on the very left pane but instead they adding up.

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

 
post Jun 5 2016, 16:04
Post #786
diamondg



Newcomer
*
Group: Gold Star Club
Posts: 32
Joined: 14-February 16
Level 443 (Godslayer)


I have found why this extension has stopped to track monster skills at some point. The current version of HentaiVerse shows damage from monster skills in the battle log in one of two ways:
QUOTE
Soviet Russia uses Stalin, and hits you for 553 piercing damage
Hyriuu casts Flame Breath, and crits you for 289 fire damage (75% resisted)

While the extension expects the format "<monster> (uses|casts) <skill>, and (hits|crits) you for <damage> <type> damage." ending with the dot.
The fix:
CODE
--- hvstat/data/hvstat.user.js.bak
+++ hvstat/data/hvstat.user.js
@@ -2450,7 +2450,7 @@
                },
        },
        MONSTER_SKILL_HIT: {
-               regex: /^(.+?) (uses|casts) (.+?)\, and (hits|crits) you for (\d+(?:\.\d+)?) (.+?) damage\.$/,
+               regex: /^(.+?) (uses|casts) (.+?)\, and (hits|crits) you for (\d+(?:\.\d+)?) (.+?) damage/,
                relatedMessageTypeNames: null,
                contentType: "text",
                evaluationFn: function (message) {


The compiled fixed version for Firefox can be found here: [github.com] https://github.com/diamondggg/HVSTAT/releases/tag/5.6.8.4 (.xpi file; as mentioned above, "xpinstall.signatures.required" in about:config should be "false" to install). I based on [github.com] https://github.com/74knight/HVSTAT , which seems to be the most recent fork, fixes for proficiency sidebar are already integrated there.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 5 2016, 22:25
Post #787
diamondg



Newcomer
*
Group: Gold Star Club
Posts: 32
Joined: 14-February 16
Level 443 (Godslayer)


I have re-uploaded the Firefox extension to the link above. Now the binary is signed by Mozilla, so
1) changes in about:config are not needed anymore, the extension should be able to install with default settings,
2) I was forced to change internal ID, because the old one is apparently already registered. So if you already have installed an old version and want the new one, disable or delete the old version: the new one will be installed in parallel, not replace, and you certainly don't want to process everything twice updating the same data. Disabling/deleting do not remove statistical data (although having a recent backup never hurts).

This post has been edited by diamondg: Jun 5 2016, 22:25
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 4 2016, 15:17
Post #788
kwsprod



Newcomer
*
Group: Members
Posts: 31
Joined: 30-September 15


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

 
post Aug 12 2016, 07:31
Post #789
Xyanide_



Lurker
Group: Recruits
Posts: 6
Joined: 30-January 11
Level 247 (Godslayer)


Thanks for this Plugin. Makes playing HV an overall better experience.

Runs fine on Cyberfox x64 (IMG:[invalid] style_emoticons/default/smile.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 12 2016, 10:36
Post #790
Tamao Serizawa



Casual Poster
***
Group: Gold Star Club
Posts: 119
Joined: 15-February 12
Level 480 (Godslayer)


QUOTE(diamondg @ Jun 6 2016, 04:25) *

I have re-uploaded the Firefox extension to the link above. Now the binary is signed by Mozilla, so
1) changes in about:config are not needed anymore, the extension should be able to install with default settings,
2) I was forced to change internal ID, because the old one is apparently already registered. So if you already have installed an old version and want the new one, disable or delete the old version: the new one will be installed in parallel, not replace, and you certainly don't want to process everything twice updating the same data. Disabling/deleting do not remove statistical data (although having a recent backup never hurts).


Please can you do it for chrome extension too?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 20 2016, 19:55
Post #791
diamondg



Newcomer
*
Group: Gold Star Club
Posts: 32
Joined: 14-February 16
Level 443 (Godslayer)


QUOTE(Tamao Serizawa @ Aug 12 2016, 11:36) *

Please can you do it for chrome extension too?

No. Google Chrome on Windows (with default settings) can install extensions only from Chrome Store. Publishing in Chrome Store requires a Google developer account, I don't have one (and upgrading a normal account isn't free).
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 18 2016, 05:47
Post #792
edu5ardo



Casual Poster
***
Group: Members
Posts: 151
Joined: 6-October 11
Level 480 (Godslayer)


i have Google developer account, if someone wants to update the project to 0.84 compatibility on reloader, I can post it on the Chrome Web Store

This post has been edited by edu5ardo: Sep 18 2016, 05:48
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 18 2016, 13:04
Post #793
diamondg



Newcomer
*
Group: Gold Star Club
Posts: 32
Joined: 14-February 16
Level 443 (Godslayer)


And what is the problem with compatibility? I can look on it.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 19 2016, 06:20
Post #794
edu5ardo



Casual Poster
***
Group: Members
Posts: 151
Joined: 6-October 11
Level 480 (Godslayer)


QUOTE(diamondg @ Sep 18 2016, 06:04) *

And what is the problem with compatibility? I can look on it.


my inglish fail, i use google translate Spanish>inglish Sorry T.T

HVstat with reloader is broken, almost all functions fail, with reloader overview fail, battle stats (log) fail drops no record, shinre no recod with use item manager and reloader keyboard config fail, 50% battle enhancement (config) fail on reloader warring sistem fail, hightlight text is beautiful but fail with reloader.

In summary all fail with reloader XP

Please confirm whether you're upgrading HV Stat and to make it compatible with reloader as this one script replaces least 48 different script besides having features that are not available in the script compendium

It is a monumental work, so if you do, people will be so happy, confident they will reach many donations XP



This post has been edited by edu5ardo: Sep 19 2016, 07:37
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Sep 25 2016, 07:56
Post #795
jplshejeser



Veteran Poster
********
Group: Gold Star Club
Posts: 4,311
Joined: 24-August 15
Level 497 (Dovahkiin)


please help i cant find my silence spell (is it okay to ask this question here?, if not please tell me where should i ask

i'm only a beginner to hentaiverse so i'm sure i don't know alot of things
i'm lvl 121 and i still dont have the silence spell, do i have to use some sort of equipment or do i need to improve deprecating proficiencies and more to unlock the silence spell or lvl up more? any requirements or is this a temporary maintenance am i the only one experiencing this? sorry for noob question and poor english and literacy i'mjust a south east asian troll
thank you
(IMG:[oi67.tinypic.com] http://oi67.tinypic.com/2qicohz.jpg)
(IMG:[oi66.tinypic.com] http://oi66.tinypic.com/i6id00.jpg)
(IMG:[oi68.tinypic.com] http://oi68.tinypic.com/o7j0oi.jpg)
(IMG:[oi67.tinypic.com] http://oi67.tinypic.com/2e3dgkw.jpg)

This post has been edited by jplshejeser: Sep 25 2016, 08:02
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Oct 20 2016, 01:09
Post #796
diamondg



Newcomer
*
Group: Gold Star Club
Posts: 32
Joined: 14-February 16
Level 443 (Godslayer)


Version 5.6.9, compatible with vanilla Reloader (https://forums.e-hentai.org/index.php?s=&am...t&p=4355789): should work both with active Reloader and without it: [github.com] https://github.com/diamondggg/HVSTAT/releases/tag/v5.6.9
Note 1. I have fixed all bugs I have noted in the configuration with reloader, but, of course, there can be bugs that I have not noted. Feel free to report.
Note 2. I have tested with vanilla reloader, I have no idea how reloader plugins interact with HVSTAT. Especially given that some functionality is offered both by reloader plugins and HVSTAT. In any case, feel free to report if something is broken.
Note 3. HVSTAT listens for the custom event Reloader_reloaded. Some versions of Reloader do not dispatch this event, HVSTAT does not work with these versions. Check whether the line
CODE
window.dispatchEvent(new CustomEvent('Reloader_reloaded'));

is present in Reloader script. If not, then either get another version or (if you can understand javascript code) insert this line in the end of code which updates the page with reloaded data.

UPD: edu5ardo has uploaded this version to Chrome store: [chrome.google.com] https://chrome.google.com/webstore/detail/h...fieeiahphjaeaef

This post has been edited by diamondg: Oct 20 2016, 13:51
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Oct 23 2016, 18:13
Post #797
8055



Dormant Scanner
***
Group: Members
Posts: 223
Joined: 17-May 09
Level 387 (Dovahkiin)


Hello there. I wanted to ask if you had any plans to add support for the Pale Moon browser (Firefox-derivative) in the future.

The reason I ask is I typically use Pale Moon for Hentaiverse over Firefox since it tends to be much faster navigating between pages. The default Firefox browser tends to be substantially slower, even with add-ons disabled.

For the record, I am using Pale Moon Version 26.3.3 (x64) and attempting to install the HVSTAT .xpi from the Github page results in an incompatibility error.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Oct 24 2016, 12:52
Post #798
diamondg



Newcomer
*
Group: Gold Star Club
Posts: 32
Joined: 14-February 16
Level 443 (Godslayer)


QUOTE
Hello there. I wanted to ask if you had any plans to add support for the Pale Moon browser (Firefox-derivative) in the future.

Short answer: no.
Long answer. I did a quick search on their forum. [forum.palemoon.org] Here they explicitly claim that Pale Moon is not Firefox and supporting FF extensions is not their goal. There are several discussions about next major version stopping support of so called Jetpack/SDK extensions; in particular, [forum.palemoon.org] here they say these extensions need to be partially rewritten - and HVSTAT is a SDK extension, so Pale Moon support isn't a matter of simply adding a few magic lines to the extension manifest. I believe that it is possible - after all, they seem to have something for UserScripts, and HVSTAT has been an UserScript for long time (moving to separate extension for speed and stability, I guess) - but finally, they do not provide any documentation for extension developers - the link "Resources/Add-On development" on their addons site sends to [dev.addons.palemoon.org] http://dev.addons.palemoon.org/ , which is a static page consisting of one line
QUOTE
You shouldn't be here... Yet.

This is not encouraging, to say the least.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 1 2016, 21:57
Post #799
Maharid



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


Version 5.6.8.2 work perfectly with PaleMoon.

If it not install do this:

- Download the xpi file.
- Change the extension to rar (NOT zip).
- Unpack the package and KEEP IT.
- Opend the file called "install.rdf"
- Change those two line as it shown here:
<em:minVersion>24.0</em:minVersion>
<em:maxVersion>99.0</em:maxVersion>
- Save the file.
- Drag and drop the file in the original archive and click ok if prompted.
- Change the extension back to xpi.
- Drag and drop the extension on an opened Pale Moon window.
- Enjoy.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 26 2016, 13:45
Post #800
Tamao Serizawa



Casual Poster
***
Group: Gold Star Club
Posts: 119
Joined: 15-February 12
Level 480 (Godslayer)


QUOTE(diamondg @ Oct 20 2016, 07:09) *

Version 5.6.9, compatible with vanilla Reloader.

UPD: edu5ardo has uploaded this version to Chrome store: [chrome.google.com] https://chrome.google.com/webstore/detail/h...fieeiahphjaeaef


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

 
post Mar 19 2017, 03:24
Post #801
Scremaz



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


updated the first post and thread title a bit. the new coders may want to speak with the thread starter to make a single team. just saying.

either way, many thanks to past and current coders for your efforts.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jun 6 2017, 12:55
Post #802
ALL_MIGHT



Becoming addicted to LN and WN
*******
Group: Gold Star Club
Posts: 1,548
Joined: 14-October 16
Level 460 (Godslayer)


Could someone please upload HVStat 5.6.9 on chrome web store.
Because it automatically gets disabled by browser as it is not on chrome web store.
below are screenshots of auto disable
Attached Image
Attached Image
it would be helpful to all chrome users (IMG:[invalid] style_emoticons/default/biggrin.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post


43 Pages V « < 39 40 41 42 > » 
Reply to this topicStart new topic
2 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
1 Members: groinface

 


Lo-Fi Version Time is now: 1st May 2024 - 14:55