HUD Status Bars 1.2 is now available :intergalactic:
From the changelog:* Added special reference "hud_summon" that holds the reference of your currently summoned creature.Just as with the hud_enemy ref added in 1.1. Allows you to add bars for summon stats. The new ini file comes with a bar that displays the summoned creature's health (and is invisible when there is no summon).
* Added extensive debug functionalityTo make it much easier to debug problems. In the ini, add the line "set tnoHSB.hud_debug to 1" (or to 2) in the setup for a specific bar. The mod will then display debug info for that bar only (and other bars you have added the same line for). Set it to 2 to also see initialization info.
So if you have problem with a bar, add this line to its setup and check the output (report it here if you cannot spot and fix the error yourself).
* Rewrote part of engine to remove possible problems for some playersFound one bug, and rewrote part of the engine. Hopefully this will fix the problems for Sir_MAD and others.
Well I did manage to get the training one to work. It seems that you and I have opposite ideas of how the bars should empty/fill. I reversed the min/max values and it did drop after training only once. I've reversed the skill values as well, but since I've just started a brand new game and don't have any skill increases yet it's hard to say if it's working or not.
No, I fully agree that it makes most sense to display full when you haven't used any training sessions yet. My focus was on getting the bar to work. But it's good that they now work

One thing I thought would be nice to have displayed is bars that show me when I'm almost ready to level up in a major skill. It would be like going into the skill menu, except that I wouldn't have any maximum values displayed, only how far I was away from increasing my skill level. But I don't have a clue how to go about it. How does the game go about filling up those skill bars? Having those would be a great complement to the level up bar, if I can get that to work.
I am pretty sure that info can be retrieved from some OBSE functions. I may look into it when I have the time.
PS: I now know why I can't the level up bar to work. I'm using KCAS and it completely bypasses the vanilla settings. For instance, he has iLevelUpSkillCount set at 10000. And I can't find any sort of variable in his scripts I can use instead. I doubt very much if I'll even be able to add any skill level bars, it looks like he's dealing with those differently as well.
OK - but I would think the mod has some variable counting how close you are to leveling. I know Realistic Leveling has. And I don't think kCAS is messing with the skill leveling, are you sure it does that?
So I've some across a very minor issue. The interior textures don't quite line up with the background. I can see a small space on top but on the bottom it hangs over the edge a little bit. You might want to push them up a pixel or two.
Hm, I actually read those values from the settings for the health bar in your installed HUD xml file, so it should be identical to that...
Sorry for the late answer... Yes, I took this 0.1 somewhere from one of the Real Thirst mod's script. It's the value where the penalties start kicking in.
Thanks for the suggestion. I saw that Real Sleep extended can do that in the first place but I didn't wanted to modify Real Thirst to support it. But I see that the new version supports conditions, so it is possible now. Good work. :thumbsup: I may update the codes some time.
Yes, I looked into Real Thirst myself, and found the 0.1 value, so that is now the suggested setup.
Btw, I haven't mentioned (or even tested it) yet, but it should be easy to use HUD Status Bars to display the 0-0.1 bar before penalties kick in (with one color), and then replace it with another penalty bar in another color when the penalties kick in. Something like this:
set tnoHSB.hud_color to sv_Construct "HUDcolorGreen*(aThirstQuest.aThirstRatio<0.1)" ; Only visible when aThirstRation < 0.1 set tnoHSB.hud_val to sv_Construct "aThirstQuest.aThirstRatio" set tnoHSB.hud_min to sv_Construct "0.1" set tnoHSB.hud_max to sv_Construct "0" SetStage tnoHSB 10 ; Init status bar set tnoHSB.hud_color to sv_Construct "HUDcolorRed*(aThirstQuest.aThirstRatio>=0.1)" ; Only visible when aThirstRation >= 0.1 set tnoHSB.hud_val to sv_Construct "aThirstQuest.aThirstRatio" set tnoHSB.hud_min to sv_Construct "0.1" set tnoHSB.hud_max to sv_Construct "1" set tnoHSB.hud_y to HUDprevBar ; Makes this bar have the exact same position as the bar above it SetStage tnoHSB 10 ; Init status bar
In reality I set up two different bars with the exact same position, with conditions that make only one visible at a time - so it looks line the bar goes from full green to empty before the thirst penalty kicks in, and then from empty to full red as the thirst penalty gets stronger.