HUD Status Bars 1.1 is now available :dance: :dance:
This is mostly an "engine" overhaul, to make the scripts more effective, and make it possible to display more advanced stats.
Note that 1.1 requires OBSEv19b4!From the changelog:* Removed check for valid values during savegame load. This prevented bars from displaying at all, if no value was available just after savegame loadAs it says. The previous version would check for valid color, val and max during savegame load, which would prevent bars from displaying at all if they didn't have valid values at that time. Now you can have a bar displaying some stat about your helmet, even if you have no helmet equipped when you load a savegame.
* Added special references, "hud_enemy" and "hud_weapon" that holds references to current enemy and currently equipped weapon, and can be used in expressionshud_weapon is really only a shorthand for "Player.GetEquippedObject 16" that was used in the weapon charge bar in v. 1.0.1, but having it as a special reference allow for more advanced use. The ini now says
set tnoHSB.hud_val to sv_Construct "GetEquippedCurrentCharge 16" ; Set val to current charge of player's equipped weapon set tnoHSB.hud_max to sv_Construct "GetObjectCharge hud_weapon" ; Get object charge (max charge) of the current equipped weapon
to display weapon charge.
The
hud_enemy reference is a bit more advanced. It tracks your current enemy (the one you last attacked), and makes it possible to display bars about that. Combined the next change, it allows for an interesting new bar:
* Added special value "tnoHSB.enemyMaxHealth" that can be used in calculations when "hud_enemy" existsThis variable is a new special variable, that is equal to the highest tracked health of the hud_enemy ref. This is made especially for users of MMM, where enemies often are buffed with current health higher than their base health, which prevents the standard enemy health bar from displaying until you have wounded the enemy down to below base healt. But the use of this value makes it possible to have a bar that displays how much of the buffed health you have taken away. See pictures http://www.tesnexus.com/downloads/images/34905-1-1286833518.jpg, http://www.tesnexus.com/downloads/images/34905-2-1286833518.jpg and http://www.tesnexus.com/downloads/images/34905-3-1286833518.jpg for how it works.
* Added possible pre-evaluation of constant ref/color/min/max values, to avoid re-calculation for each loopDoesn't change any functionality, but makes the scripts a bit more effective. Any constant number (including a single HUDcolor... value) will be calculated at savegame load, and then not re-calculated each loop. Also, if you add a "#" at the start of a hud_ref expression, that expression will be called only at savegame load and the resulting ref will then be stored. E.g. if you want to have a bar displaying Vilja's health, you'll need this line:
set tnoHSB.hud_ref to sv_Construct "GetFormFromMod %q1em_Vilja.esp%q %q000F05%q", but if you add a "#" before "GetFormFromMod", Vilja's reference is calculated at savegame load, and then just reused, instead of being re-calculated each time HUD Status Bars loops.
* Added one new default hud bar - that displays enemy health above base health (when the normal health bar is invisible) As described above. Now you can see if an enemy is really immune, or only has a buffed health that you need to wound down, before the normal enemy health bar becomes visible.
As you see, this was an engine overhaul. I will look into improved/diversified bar visuals, and text later.
Well, got it worked out. I added this bit of code to your HUDmain script and placed it immediately after While i > 0
(gawd I love copying stuff from the CSWiki - I don't have to think too hard...)
...
I'm sure there is a way to get the total weight carried adjusted for feather more efficiently, but I'll let you can deal with that for your next release.
edit: the above was posted before I saw 1.1 was up on Nexus
Thanks. I had the idea that using a Feather spell would make "GetAV Encumbrance" return a lower value, thus making the bar display correctly in the first place. I will look into this for next update.