 |
 |
 |
[Add-on] HVStat 5.7.1 (November 2017), HV Statistics, Tracking, and Analysis Tool (for Firefox and Chrome) |
|
May 20 2013, 06:55
|
Drow_Elf
Newcomer
  Group: Members
Posts: 54
Joined: 7-December 08

|
There are a few things you might want to fix in Item drop tracking namely removal of obsolete items (Token of Healing, Soul Stone, Average and Superior potions, Scroll of Warding, Infusions of Gaia, and Crystals of Quintessence), add the new items (Monster Chow, Monster Edibles, and Monster Cuisine) and as the previous poster said, rename godly to heroic.
|
|
|
|
 |
|
May 20 2013, 15:50
|
r3pt1le
Newcomer
  Group: Members
Posts: 67
Joined: 2-January 11

|
I was too impatient to wait for my feature requests to be implemented, so I did them myself. (IMG:[ invalid] style_emoticons/default/rolleyes.gif) It is hardcoded for now, but the main part should be functional in a configurable solution as well. So I decided to post the code here (in case you're actually going to add that functionality). CODE function getBattleEndStatsHtml() { [...] if (true) { var shownGains = new Array(); if (hvStat.roundContext.supportGain > 0) shownGains.push("<b>Support Gain</b>: " + hvStat.roundContext.supportGain.toFixed(2)); if (hvStat.roundContext.depGain > 0) shownGains.push("<b>Deprecating Gain</b>: " + hvStat.roundContext.depGain.toFixed(2)); if (hvStat.roundContext.divineGain > 0) shownGains.push("<b>Divine Gain</b>: " + hvStat.roundContext.divineGain.toFixed(2)); if (hvStat.roundContext.forbidGain > 0) shownGains.push("<b>Forbidden Gain</b>: " + hvStat.roundContext.forbidGain.toFixed(2)); if (hvStat.roundContext.elemGain > 0) shownGains.push("<b>Elemental Gain</b>: " + hvStat.roundContext.elemGain.toFixed(2)); if (hvStat.roundContext.armorProfGain[0] > 0) shownGains.push("<b>Cloth Gain</b>: " + hvStat.roundContext.armorProfGain[0].toFixed(2)); if (hvStat.roundContext.armorProfGain[1] > 0) shownGains.push("<b>Light Armor Gain</b>: " + hvStat.roundContext.armorProfGain[1].toFixed(2)); if (hvStat.roundContext.armorProfGain[2] > 0) shownGains.push("<b>Heavy Armor Gain</b>: " + hvStat.roundContext.armorProfGain[2].toFixed(2)); if (hvStat.roundContext.weapProfGain[0] > 0) shownGains.push("<b>One-Handed Gain</b>: " + hvStat.roundContext.weapProfGain[0].toFixed(2)); if (hvStat.roundContext.weapProfGain[1] > 0) shownGains.push("<b>Two-Handed Gain</b>: " + hvStat.roundContext.weapProfGain[1].toFixed(2)); if (hvStat.roundContext.weapProfGain[2] > 0) shownGains.push("<b>Dual Wielding Gain</b>: " + hvStat.roundContext.weapProfGain[2].toFixed(2)); if (hvStat.roundContext.weapProfGain[3] > 0) shownGains.push("<b>Staff Gain</b>: " + hvStat.roundContext.weapProfGain[3].toFixed(2)); a += "<hr style='height:1px;border:0;background-color:#333333;color:#333333' />" + (shownGains.length == 0 ? "<i>No Gain this round</i>" : shownGains.join(", ")); } else if (hvStat.settings.isShowEndProfs && (hvStat.settings.isShowEndProfsMagic || hvStat.settings.isShowEndProfsArmor || hvStat.settings.isShowEndProfsWeapon)) { //isShowEndProfs added by Ilirith On a side note: You missed a whitespace between "Support" and "Gain".
|
|
|
|
 |
|
May 21 2013, 10:57
|
Naimen
Group: Gold Star Club
Posts: 678
Joined: 23-March 12

|
Need help~ Cann`t open the settings pane... I clicked the HV STAT UI icon but nothing happened (IMG:[ invalid] style_emoticons/default/anime_cry.gif) Firefox 20.0.1 & Greasemonkey 1.8
|
|
|
May 21 2013, 11:36
|
frapodorf
Lurker
Group: Recruits
Posts: 4
Joined: 7-March 13

|
QUOTE(Naimen @ May 21 2013, 10:57)  Need help~ Cann`t open the settings pane... I clicked the HV STAT UI icon but nothing happened (IMG:[ invalid] style_emoticons/default/anime_cry.gif) Firefox 20.0.1 & Greasemonkey 1.8 I can't open the settings pane either (even nuked the indexeddb and started fresh), could in 4.x cant in 5.x anything. (tried with every addon disabled while leaving gm enabled as well) This post has been edited by frapodorf: May 21 2013, 11:37
|
|
|
May 21 2013, 15:40
|
m42a
Group: Members
Posts: 213
Joined: 18-August 10

|
Open the Error Console with Ctrl-Shift J, clear it, refresh the page, try to open the settings pane, and post all the errors or warnings from HVStat here.
|
|
|
|
 |
|
May 21 2013, 17:40
|
Naimen
Group: Gold Star Club
Posts: 678
Joined: 23-March 12

|
QUOTE(m42a @ May 21 2013, 15:40)  Open the Error Console with Ctrl-Shift J, clear it, refresh the page, try to open the settings pane, and post all the errors or warnings from HVStat here.
Timestamp: 2013/5/21 23:40:08 Warning: Unknown property 'box-sizing'. Declaration dropped. Source File: http://hentaiverse.org/?encounter=OTI0MTY4...2NjZmY3OWEzNg==Line: 0 Timestamp: 2013/5/21 23:40:08 Error: TypeError: n is undefined Source File: file:///C:/Users/xxx/AppData/Roaming/Mozilla/Firefox/Profiles/oykhbk4b.default/gm_scripts/HV_Statistics,_Tracking,_and_Analysis_Tool/hvstat.user.js Line: 402 and the highlight codes are var parts = n.toString().split("."); Line 402, Col 1 (IMG:[ invalid] style_emoticons/default/blink.gif) This post has been edited by Naimen: May 21 2013, 17:44
|
|
|
|
 |
|
May 21 2013, 18:44
|
m42a
Group: Members
Posts: 213
Joined: 18-August 10

|
Well, that's certainly odd.
Hit Ctrl-Shift-K in the HentaiVerse tab, paste in "alert(localStorage.HVOverview);" (without the quotes), press enter, and post the contents of the alert box.
|
|
|
May 21 2013, 18:55
|
Naimen
Group: Gold Star Club
Posts: 678
Joined: 23-March 12

|
QUOTE(m42a @ May 21 2013, 18:44)  Well, that's certainly odd.
Hit Ctrl-Shift-K in the HentaiVerse tab, paste in "alert(localStorage.HVOverview);" (without the quotes), press enter, and post the contents of the alert box.
hmm...you mean like this? {"startTime":1359126756919,"lastHourlyTime":1369150520128,"exp":847386318,"credits":1800571,"lastEquipTime":1369142886047,"lastEquipName":"Superior Cotton Pants of the Fire-eater","equips":894,"lastArtTime":1368981954987,"lastArtName":"Precursor Artifact","artifacts":24,"roundArray":[498,12678,0,1574],"expbyBT":[52219062,78888986],"creditsbyBT":[2428,168643]}
|
|
|
|
 |
|
May 21 2013, 20:13
|
m42a
Group: Members
Posts: 213
Joined: 18-August 10

|
The fix for your problem is to paste this into that same box, press enter, and refresh the page:
localStorage.HVOverview='{"startTime":1359126756919,"lastHourlyTime":1369150520128,"exp":847386318,"credits":1800571,"lastEquipTime":1369142886047,"lastEquipName":"Superior Cotton Pants of the Fire-eater","equips":894,"lastArtTime":1368981954987,"lastArtName":"Precursor Artifact","artifacts":24,"roundArray":[498,12678,0,1574],"expbyBT":[52219062,78888986,0,0],"creditsbyBT":[2428,168643,0,0]}'
What's worrying is that I can't find the bit of code that would have corrupted your stats like that. Did you upgrade from a version older than 5.3.3.4?
frapodorf: HVStat doesn't use indexeddb. You'd need to delete each HVStat entry from localStorage to reset everything.
This post has been edited by m42a: May 21 2013, 20:14
|
|
|
|
 |
|
May 21 2013, 23:40
|
frapodorf
Lurker
Group: Recruits
Posts: 4
Joined: 7-March 13

|
QUOTE(m42a @ May 21 2013, 20:13)  The fix for your problem is to paste this into that same box, press enter, and refresh the page:
localStorage.HVOverview='{"startTime":1359126756919,"lastHourlyTime":1369150520128,"exp":847386318,"credits":1800571,"lastEquipTime":1369142886047,"lastEquipName":"Superior Cotton Pants of the Fire-eater","equips":894,"lastArtTime":1368981954987,"lastArtName":"Precursor Artifact","artifacts":24,"roundArray":[498,12678,0,1574],"expbyBT":[52219062,78888986,0,0],"creditsbyBT":[2428,168643,0,0]}'
What's worrying is that I can't find the bit of code that would have corrupted your stats like that. Did you upgrade from a version older than 5.3.3.4?
frapodorf: HVStat doesn't use indexeddb. You'd need to delete each HVStat entry from localStorage to reset everything.
Got it to work again once you said it uses local storage, and yeah, was still using 4.x ;p Used Cookie Controller addon to clear all DOM storage for hentaiverse, and all works again. TY
|
|
|
|
 |
|
May 22 2013, 03:12
|
Ikarum
Newcomer
 Group: Recruits
Posts: 14
Joined: 27-April 10

|
I also have the same problem, I can't open the config panel or see the current round of the arena. Already deleted cookies for hentaiverse using Cookie Controller addon but it still doesn't work.
|
|
|
|
 |
|
May 22 2013, 03:32
|
Naimen
Group: Gold Star Club
Posts: 678
Joined: 23-March 12

|
QUOTE(m42a @ May 21 2013, 20:13)  The fix for your problem is to paste this into that same box, press enter, and refresh the page:
localStorage.HVOverview='{"startTime":1359126756919,"lastHourlyTime":1369150520128,"exp":847386318,"credits":1800571,"lastEquipTime":1369142886047,"lastEquipName":"Superior Cotton Pants of the Fire-eater","equips":894,"lastArtTime":1368981954987,"lastArtName":"Precursor Artifact","artifacts":24,"roundArray":[498,12678,0,1574],"expbyBT":[52219062,78888986,0,0],"creditsbyBT":[2428,168643,0,0]}'
What's worrying is that I can't find the bit of code that would have corrupted your stats like that. Did you upgrade from a version older than 5.3.3.4?
frapodorf: HVStat doesn't use indexeddb. You'd need to delete each HVStat entry from localStorage to reset everything.
It works! Many thanks (IMG:[ invalid] style_emoticons/default/smile.gif) You are right, I used the version 4.3.3 from userscripts until it becomes invalid this HV update.
|
|
|
|
 |
|
May 23 2013, 02:03
|
CZer
Group: Gold Star Club
Posts: 1,166
Joined: 27-January 09

|
[quote name='greentea039' date='May 18 2013, 12:09' post='2613553'] HVSTAT v5.5.5
Thank you thank you thank you.
|
|
|
May 23 2013, 07:03
|
asdf1b
Newcomer
  Group: Members
Posts: 62
Joined: 29-March 09

|
QUOTE(klimtit @ Apr 16 2013, 10:38)  hi i probably asking a noob question but how do i use this with Opera browser thanks
QUOTE(m42a @ Apr 16 2013, 14:52)  It might work if you install the Violent Monkey extension. It's not designed or tested on Opera though, so no promises.
I got it mostly working, just some minor CSS errors. It requires Violent Monkey. Patch [ pastebin.com] here. It should only load the resources once when you add the script to VM. Also had to change resource names to be compliant. This post has been edited by asdf1b: May 23 2013, 07:04
|
|
|
|
 |
|
May 23 2013, 16:40
|
dragon695
Group: Members
Posts: 276
Joined: 5-March 12

|
Absorb notification seems busted, as does arena notifications (too high a level). I am using custom fonts. I accidentally did IPU @ BT, good grief that was 700 turns of pure hell, given the lack of mana potions,, no silence/imperil/PA, and over 3mil HP between the schoolgirl and the unicorn. A real nailbiter to the end. Anyhow, here's the battle log message for Absorb: CODE 30 8 Clow Reed casts Clow Cards, but is absorbed. You gain 13 Magic Points.
|
|
|
|
 |
|
May 23 2013, 19:28
|
m42a
Group: Members
Posts: 213
Joined: 18-August 10

|
@dragon695: Thank you for the bug report. It's been fixed for the next release.
@Ikarum: That shoul be fixed in the next release, but if you don't want to wait you can open a javascript console and run the following command to reset everything:
localStorage.removeItem("HVBackup1"); localStorage.removeItem("HVBackup2"); localStorage.removeItem("HVBackup3"); localStorage.removeItem("HVBackup4"); localStorage.removeItem("HVBackup5"); localStorage.removeItem("HVCharacterSettingsandStats"); localStorage.removeItem("HVCollectData"); localStorage.removeItem("HVDrops"); localStorage.removeItem("HVLoadTimeCounters"); localStorage.removeItem("HVMonsterDatabase"); localStorage.removeItem("HVOverview"); localStorage.removeItem("HVProf"); localStorage.removeItem("HVRewards"); localStorage.removeItem("HVRound"); localStorage.removeItem("HVSettings"); localStorage.removeItem("HVShrine"); localStorage.removeItem("HVStats"); localStorage.removeItem("HVTags"); localStorage.removeItem("HVVersion"); localStorage.removeItem("inventoryAlert");
|
|
|
|
 |
|
May 24 2013, 17:00
|
Zip
Group: Members
Posts: 467
Joined: 3-June 08

|
Not sure if this is already reported, But I don't have the settings button.
JS Console reports: Uncaught TypeError: Cannot read property 'textContent' of undefined hvstat.user.js:239
|
|
|
May 24 2013, 18:35
|
m42a
Group: Members
Posts: 213
Joined: 18-August 10

|
Zip: Which version are you using? If it' not 5.5.5.1 you should upgrade and see if it still happens.
|
|
|
May 25 2013, 17:59
|
Biladsan
Newcomer
  Group: Members
Posts: 65
Joined: 27-September 08

|
OK,i started using scripts (5.5.5.1) but every time i do something in HV it gives me "Database open error: undefined" error
|
|
|
May 26 2013, 13:03
|
astral02
Group: Members
Posts: 697
Joined: 18-May 13

|
I still don't understand how this thing works
|
|
|
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:
|
 |
 |
 |
|