I figured out what broke the Shrine tracking and initial Proficiency gathering.
Apparently if i enable Column View, then it won't get far enough in the if/else routines.
CODE
if (_settings.isColumnInventory) {
if (isItemInventoryPage()) {
initItemsView()
}
} else {
if (isCharacterPage()) {
collectCurrentProfsData()
} else {
if (isShrinePage() && _settings.isTrackShrine) {
captureShrine()
}
}
}
change to
CODE
if (_settings.isColumnInventory && isItemInventoryPage()) {
initItemsView()
} else {
if (isCharacterPage()) {
collectCurrentProfsData()
} else {
if (isShrinePage() && _settings.isTrackShrine) {
captureShrine()
}
}
}
and i think it should work with using column mode.
Haven't tested it, as i decided to just disable column mode.
//Ilirith
[Edit]
I tested it and it works after the change.
I also added Spiritual to my proficiency sidebar.
Download below (IMG:[
invalid]
style_emoticons/default/smile.gif)
If you wish to use tampermonkey, just add this to the top of the HV_STAT.user.js file.
CODE
// ==UserScript==
// @name HV Statistics, Tracking, and Analysis Tool
// @namespace HV STAT
// @description Collects data, analyzes statistics, and enhances the interface of the HentaiVerse
// @include http://hentaiverse.org/*
// @author Various (http://forums.e-hentai.org/index.php?showtopic=50962)
// @version 5.2.2
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js
// @require http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js
// @resource jQueryUICSS http://www.starfleetplatoon.com/~cmal/HVSTAT/jqueryui.css
// ==/UserScript==
//Ilirith
The fix is just the normal HVSTAT with the fixed column view condition plus having added Spiritual to the proficiency sidebar.
HVSTAT_5220fix.ZIP ( 158.81k )
Number of downloads: 98The fixaddon contains both fixes as well as an addition to the Battle Summary, you can now have it show some of your proficiency gains.
I added it for when i'm grinding proficiency, its nice to be able to see how much it increased, without having to write down your proficiencies manually.
It is enabled by default just as the normal battle summary is, but it can be disabled in the options.
HVSTAT_522_profsum.ZIP ( 159.41k )
Number of downloads: 92 I finished the Proficiency summary, it can now show all proficiencies, as well as you can enable/disable which kind of proficiencies you want shown, hopefully cutting abit down on eventual clutter.
This post has been edited by Ilirith: Jun 8 2012, 21:37