Welcome Guest ( Log In | Register )

43 Pages V « < 38 39 40 41 > »   
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 Feb 16 2016, 22:30
Post #776
fatquack



Casual Poster
****
Group: Members
Posts: 463
Joined: 4-November 12
Level 467 (Godslayer)


Is this script still being updated at all?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Feb 18 2016, 20:18
Post #777
tuscck



Casual Poster
****
Group: Gold Star Club
Posts: 444
Joined: 7-September 14
Level 479 (Godslayer)


QUOTE(sebasimp @ Dec 21 2015, 22:49) *

You can disable the signature verification by entering into about:config and changing "xpinstall.signatures.required" value to false



Since Mozilla is enforcing it and disabling this feature is quite a security risk I understand. Will the developer team address this Issue???

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

 
post Mar 1 2016, 10:56
Post #778
nonamethanks



Newcomer
**
Group: Gold Star Club
Posts: 81
Joined: 21-May 12
Level 257 (Ascended)


Holy shit, this plugin turns HV into a whole different game! Thank you!
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Mar 18 2016, 20:04
Post #779
fatquack



Casual Poster
****
Group: Members
Posts: 463
Joined: 4-November 12
Level 467 (Godslayer)


It's a shame it's not being updated anymore though.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 17 2016, 20:58
Post #780
stryker115



Meh
****
Group: Members
Posts: 437
Joined: 20-April 13
Level 271 (Godslayer)


As of HV0.84, proficiencies sidebar is now fucked...
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 21 2016, 03:11
Post #781
Snelk



Lurker
Group: Recruits
Posts: 5
Joined: 8-September 12
Level 128 (Ascended)


QUOTE(tuscck @ Feb 18 2016, 12:18) *

Since Mozilla is enforcing it and disabling this feature is quite a security risk I understand. Will the developer team address this Issue???

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


Not to mention that in the near future you won't even be able to override it at all unless you are using either the developer (aurora) or nightly builds of Firefox. According to Mozilla's timeline the override toggle will be removed in Firefox 47 on the release and beta channels.

[wiki.mozilla.org] Link

This post has been edited by Snelk: Apr 21 2016, 03:11
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Apr 25 2016, 16:52
Post #782
anton3210



____________
******
Group: Members
Posts: 874
Joined: 3-February 10
Level 500 (Ponyslayer)


QUOTE(stryker115 @ Apr 17 2016, 20:58) *

As of HV0.84, proficiencies sidebar is now fucked...


I'm working with my own patches in the Iron Browser.
[attachmentid=84393]
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
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: 551


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 498 (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 498 (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: 35
Joined: 14-February 16
Level 461 (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: 35
Joined: 14-February 16
Level 461 (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 498 (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: 35
Joined: 14-February 16
Level 461 (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: 153
Joined: 6-October 11
Level 489 (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: 35
Joined: 14-February 16
Level 461 (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: 153
Joined: 6-October 11
Level 489 (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,391
Joined: 24-August 15
Level 500 (Ponyslayer)


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


43 Pages V « < 38 39 40 41 > » 
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: 1st August 2025 - 19:30