[RELz] HUD Status Bars

Post » Mon May 16, 2011 4:12 pm

The Geeks of the world salute you, NiceOne. :)
User avatar
Nicole Kraus
 
Posts: 3432
Joined: Sat Apr 14, 2007 11:34 pm

Post » Tue May 17, 2011 6:50 am

I've been trying to get the status bars from my companion displayed - similar to how alchmo had http://www.tesnexus.com/downloads/images/34905-1-1286526927.jpg. However, all I'm getting are empty bars like http://i22.photobucket.com/albums/b337/RR5/TES4_hudstatusbarprblm.jpg.

Okay, I'm an idiot. I used the wrong ID for the NPC's. Yes, you may point and laugh.

The bars themselves work fine now, but one thing I can't seem to fix is the name of the bars. For instance, if I use "set tnoHSB.hud_name to sv_Construct Vilja:", it will display the name "Vilja:" below the bar. Is there a way to set it to display the name above the named bar? Similar to alchmo's screenshot I linked in the above quote.
User avatar
Hilm Music
 
Posts: 3357
Joined: Wed Jun 06, 2007 9:36 pm

Post » Mon May 16, 2011 9:21 pm

OK, can you then open Menus\prefabs\ui_config\hudmainmenu_config.xml in a text editor, and look for the line
	 <_hpbarfully> 2  <!-- DEFAULT : 2 -->

Change the "2" to "1", and see how it looks then. For some strange reason, BTMod and DarkUI has this value (which is how much the colored part of the bar is moved down) set to 2 for the health bar, and 1 for the two other bars. HUD Status Bars copy the health bar settings, for no other reason than it being the first of the three bars. I guess I'll just change the code to copy settings from one of the other bars instead.


Yes, that's better. Even the Health bar looks better, it doesn't have the small gap on top either. The Magicka bar seems to be the ones that's aligned the best, you'd probably be better off using that one.
User avatar
carly mcdonough
 
Posts: 3402
Joined: Fri Jul 28, 2006 3:23 am

Post » Tue May 17, 2011 12:15 am

I'd just like to report that my game's running just fine with the new version and http://img713.imageshack.us/img713/2415/screenshot61f.jpg.
To the left of the main HMF cluster I have hunger and exhaustion from tejon's Fatigue Effects, which fill as I get more tired/hungry. Encumbrance is below, and changes from yellow to orange to red as encumbrance increases.

Under the weapon icon I have the weapon durability (I turned off the optional DarNified bar, for consistency's sake); it is green when the weapon's health is above 50%, red when under 50%, and gold/orange when repaired above 100% with the expert armourer perk. Below that is the remaining charges of an enchanted weapon, visible only if an enchanted weapon is readied. I originally tried it have it so that the bar would be full at 100%, and a different colour when over 100%, but apparently tnoHSB.frac never exceeds 1.0. Ah well, I used to the mostly-full bar after using DarN for so long.

Under the spell icon is the casting chance for Fizzle.

Next to the spell icon is a row of readouts for armour health: helmet, upper body, lower body, hands, feet, and shield. Follows the same colour scheme as the weapon bar, and is not visible if I don't have that type of armour equipped. It also works just fine when wearing armour that covers multiple areas (ie, arena raiment): the bars go down in tandem.

Spoiler
; encumbrance; fills as weight carried increases: yellow to 55% full, orange to 80% full, red to 100%; to left of magicka barset tnoHSB.hud_color to sv_Construct	"7+(3*(tnoHSB.frac>0.55))-(5*(tnoHSB.frac>0.80))"set tnoHSB.hud_val to sv_Construct	"GetAV Encumbrance"set tnoHSB.hud_max to sv_Construct	"GetBaseAV Encumbrance"set tnoHSB.hud_min to sv_Construct	"0"set tnoHSB.hud_max to sv_Construct	"GetBaseAV Encumbrance"set tnoHSB.hud_x to			HUDbarsLeftset tnoHSB.hud_y to			HUDbarsLowSetStage tnoHSB 10; TFE exhaustion; purple, empty when fully rested; default position: same x, above encumbranceset tnoHSB.hud_color to sv_Construct	"8"set tnoHSB.hud_val to sv_Construct	"tfeNeeds.exhaustion"set tnoHSB.hud_max to sv_Construct	"tfeNeeds.fExhaustionMessageThreshold"SetStage tnoHSB 10; TFE hunger; rhubarb, empty when fully fed; default position: same x, above tfe exhaustionset tnoHSB.hud_color to sv_Construct	"12"set tnoHSB.hud_val to sv_Construct	"tfeNeeds.hunger"set tnoHSB.hud_max to sv_Construct	"tfeNeeds.fHungerMessageThreshold"SetStage tnoHSB 10; weapon health; green, red when below 50%, orange above 100%, hidden if not wielding weapon; not completely full unless repaired to 125% with expert armorer perk; under weapon iconset tnoHSB.hud_color to sv_Construct	"5*(tnoHSB.max>0)-4*(tnoHSB.frac>.4)+9*(tnoHSB.frac>0.81)"set tnoHSB.hud_ref to sv_Construct	"Player.GetEquippedObject 16" ; weaponset tnoHSB.hud_val to sv_Construct	"Player.GetEquippedCurrentHealth 16"set tnoHSB.hud_max to sv_Construct	"1.25* (GetObjectHealth hud_ref)"set tnoHSB.hud_x to			HUDweaponCenterset tnoHSB.hud_y to			HUDweaponBelowset tnoHSB.hud_y_adjust to 		4set tnoHSB.hud_size to			HUDmagicWidthSetStage tnoHSB 10; enchanted weapon charges; teal, hidden if weapon not enchanted; under weapon health barset tnoHSB.hud_color to sv_Construct	"4*(tnoHSB.max>0)"set tnoHSB.hud_ref to sv_Construct	"Player.GetEquippedObject 16"set tnoHSB.hud_val to sv_Construct	"Player.GetEquippedCurrentCharge 16"set tnoHSB.hud_max to sv_Construct	"GetObjectCharge hud_ref"set tnoHSB.hud_y to			HUDprevBarBelowset tnoHSB.hud_size to			HUDweaponWidthSetStage tnoHSB 10; fizzle chance; purple, full at 100% casting chance; under magic icon, inline with weapon durability barset tnoHSB.hud_color to sv_Construct	"8"set tnoHSB.hud_val to sv_Construct	"tejonFizzle.chance"set tnoHSB.hud_max to sv_Construct	"100"set tnoHSB.hud_x to			HUDmagicCenterset tnoHSB.hud_y to			HUDmagicBelowset tnoHSB.hud_y_adjust to 		5set tnoHSB.hud_size to			HUDmagicWidthSetStage tnoHSB 10; helmet health; green, red when below 50%, orange above 100%, hidden if not wearing helmet; not completely full unless repaired to 125% with expert armorer perk; to right of magic iconset tnoHSB.hud_color to sv_Construct	"5*(tnoHSB.max>0)-4*(tnoHSB.frac>.4)+9*(tnoHSB.frac>0.81)"set tnoHSB.hud_ref to sv_Construct	"Player.GetEquippedObject 1" ; hairset tnoHSB.hud_val to sv_Construct	"Player.GetEquippedCurrentHealth 1"set tnoHSB.hud_max to sv_Construct	"1.25* (GetObjectHealth hud_ref)"set tnoHSB.hud_x to			HUDmagicRightset tnoHSB.hud_y to			HUDmagicAboveset tnoHSB.hud_y_adjust to 		2set tnoHSB.hud_size to			HUDmagicWidthSetStage tnoHSB 10; cuirass health; green, red when below 50%, orange above 100%, hidden if not wearing upper body armour; not completely full unless repaired to 125% with expert armorer perk; under previous item health barset tnoHSB.hud_color to sv_Construct	"5*(tnoHSB.max>0)-4*(tnoHSB.frac>.4)+9*(tnoHSB.frac>0.81)"set tnoHSB.hud_ref to sv_Construct	"Player.GetEquippedObject 2" ; upper bodyset tnoHSB.hud_val to sv_Construct	"Player.GetEquippedCurrentHealth 2"set tnoHSB.hud_max to sv_Construct	"1.25* (GetObjectHealth hud_ref)"set tnoHSB.hud_y to			HUDprevBarBelowset tnoHSB.hud_size to			HUDmagicWidthSetStage tnoHSB 10; greaves health; green, red when below 50%, orange above 100%, orange above 100%, hidden if not wearing lower body armour; not completely full unless repaired to 125% with expert armorer perk; under previous item health barset tnoHSB.hud_color to sv_Construct	"5*(tnoHSB.max>0)-4*(tnoHSB.frac>.4)+9*(tnoHSB.frac>0.81)"set tnoHSB.hud_ref to sv_Construct	"Player.GetEquippedObject 3" ; lower bodyset tnoHSB.hud_val to sv_Construct	"Player.GetEquippedCurrentHealth 3"set tnoHSB.hud_max to sv_Construct	"1.25* (GetObjectHealth hud_ref)"set tnoHSB.hud_y to			HUDprevBarBelowset tnoHSB.hud_size to			HUDmagicWidthSetStage tnoHSB 10; gloves health; green, red when below 50%, orange above 100%, hidden if not wearing hand armour; not completely full unless repaired to 125% with expert armorer perk; under previous item health barset tnoHSB.hud_color to sv_Construct	"5*(tnoHSB.max>0)-4*(tnoHSB.frac>.4)+9*(tnoHSB.frac>0.81)"set tnoHSB.hud_ref to sv_Construct	"Player.GetEquippedObject 4" ; handset tnoHSB.hud_val to sv_Construct	"Player.GetEquippedCurrentHealth 4"set tnoHSB.hud_max to sv_Construct	"1.25* (GetObjectHealth hud_ref)"set tnoHSB.hud_y to			HUDprevBarBelowset tnoHSB.hud_size to			HUDmagicWidthSetStage tnoHSB 10; boots health; green, red when below 50%, orange above 100%, hidden if not wearing foot armour; not completely full unless repaired to 125% with expert armorer perk; under previous item health barset tnoHSB.hud_color to sv_Construct	"5*(tnoHSB.max>0)-4*(tnoHSB.frac>.4)+9*(tnoHSB.frac>0.81)"set tnoHSB.hud_ref to sv_Construct	"Player.GetEquippedObject 5" ; footset tnoHSB.hud_val to sv_Construct	"Player.GetEquippedCurrentHealth 5"set tnoHSB.hud_max to sv_Construct	"1.25* (GetObjectHealth hud_ref)"set tnoHSB.hud_y to			HUDprevBarBelowset tnoHSB.hud_size to			HUDmagicWidthSetStage tnoHSB 10; shield health; green, red when below 50%, orange above 100%, hidden if not wearing shield; not completely full unless repaired to 125% with expert armorer perk; under previous item health barset tnoHSB.hud_color to sv_Construct	"5*(tnoHSB.max>0)-4*(tnoHSB.frac>.4)+9*(tnoHSB.frac>0.81)"set tnoHSB.hud_ref to sv_Construct	"Player.GetEquippedObject 13" ; shieldset tnoHSB.hud_val to sv_Construct	"Player.GetEquippedCurrentHealth 13"set tnoHSB.hud_max to sv_Construct	"1.25* (GetObjectHealth hud_ref)"set tnoHSB.hud_y to			HUDprevBarBelowset tnoHSB.hud_size to			HUDmagicWidthSetStage tnoHSB 10


I bet there are a ton of bars I could add, but I can't think of any that I need, given my playing style....
User avatar
Verity Hurding
 
Posts: 3455
Joined: Sat Jul 22, 2006 1:29 pm

Post » Mon May 16, 2011 4:54 pm

The bars themselves work fine now, but one thing I can't seem to fix is the name of the bars. For instance, if I use "set tnoHSB.hud_name to sv_Construct Vilja:", it will display the name "Vilja:" below the bar. Is there a way to set it to display the name above the named bar? Similar to alchmo's screenshot I linked in the above quote.
The text is not really supported yet, I am still waiting for a solution with help from the OBSE team, to get smaller fonts. I'll consider doing something about the position and make it (semi-)official if the final text solution takes time.


Yes, that's better. Even the Health bar looks better, it doesn't have the small gap on top either. The Magicka bar seems to be the ones that's aligned the best, you'd probably be better off using that one.

I'll do that. Vanilla has this vertical gap set to 2, DarNified UI has reduced it to 1, but BTMod and DarkUI has reduced it to 1 (by default) for the fatigue and magic bars, but not the health bar. I assume that is an oversight in the two (DarkUI is pretty much a dark copy of BTMod).


I'd just like to report that my game's running just fine with the new version and http://img713.imageshack.us/img713/2415/screenshot61f.jpg.

Thanks, I love your screenshot :)

Could you post it on the HUD Status Bars page on TESNexus as well? It is a great showcase of the mod's capabilities, and would be nice to have there.


...I originally tried it have it so that the bar would be full at 100%, and a different colour when over 100%, but apparently tnoHSB.frac never exceeds 1.0. Ah well, I used to the mostly-full bar after using DarN for so long.

tnoHSB.frac is indeed capped between 0 and 1, but you can use "(tnoHSB.val>tnoHSB.max)" to check if the bar is more than 100%

Btw, I haven't forgot you request for bars that gets dimmed when they get filled, like the Darn option, it will (probably) be in the next version, together with vertical bars and circles (that grow/shrink).
User avatar
Alan Whiston
 
Posts: 3358
Joined: Sun May 06, 2007 4:07 pm

Post » Tue May 17, 2011 3:50 am

Thank you TNO your request as to which cold mod I was using it prompted me to see if there were others available
I had been using Dynamic Temperature ( but I could never get kuertees temp to show up [no aspersions on kuertee- ever!] - something in dynamic temp is not triggering it I think - would your bars work better ??

so in the mean time I am trying Duke Patricks Hypothermia II for which no bar would work that I could discern due to each area not having a temp set but it relying on wet (rain,swamps,swimming) and heat (sunlight)

I would like to go back to Dynamic temp ! but bars for either would be gratefully received. [ sorry that banana or carrot cakes don't travel through cyberspace]
User avatar
Harry Hearing
 
Posts: 3366
Joined: Sun Jul 22, 2007 6:19 am

Post » Mon May 16, 2011 3:27 pm

Thanks, I love your screenshot :) Could you post it on the HUD Status Bars page on TESNexus as well?

Done.

tnoHSB.frac is indeed capped between 0 and 1, but you can use "(tnoHSB.val>tnoHSB.max)" to check if the bar is more than 100%

I just changed my ini to
set tnoHSB.hud_color to sv_Construct	"5*(tnoHSB.max>0)-4*(tnoHSB.frac>.5)+9*(tnoHSB.val>tnoHSB.max)"
but the last colour never comes up. It should be red from empty to 50% full, green to 100%, and orange if over 100%. It stays green even when items are repaired to 125%. :shrug:

Btw, I haven't forgot you request for bars that gets dimmed when they get filled, like the Darn option, it will (probably) be in the next version, together with vertical bars and circles (that grow/shrink).

Dynamic alpha would be awesome, especially if it's "programmable" the same way the colours are.
User avatar
Curveballs On Phoenix
 
Posts: 3365
Joined: Sun Jul 01, 2007 4:43 am

Post » Tue May 17, 2011 5:18 am


I just changed my ini to
set tnoHSB.hud_color to sv_Construct	"5*(tnoHSB.max>0)-4*(tnoHSB.frac>.5)+9*(tnoHSB.val>tnoHSB.max)"
but the last colour never comes up. It should be red from empty to 50% full, green to 100%, and orange if over 100%. It stays green even when items are repaired to 125%. :shrug:


So you can have multiple colours for a bar? I was wondering if that were possible or not. That would be awesome! I really like that ability to change the colour of the bar, it's an excellent feature. BTW TNO, have you had a chance to take a look at how the game fills up the skill bars on the stats menu? It would be great to be able to see on screen when you were about to increase a skill level. Another feature I thought would be really cool is having all that info in the stats menu show up on screen with the press of a hotkey. So instead of going into the menu and flipping between pages, you could see everything at once with just a single key press.
User avatar
Samantha Pattison
 
Posts: 3407
Joined: Sat Oct 28, 2006 8:19 pm

Post » Tue May 17, 2011 3:07 am

Here it is, my brand new Nehrim-inspired enemy health bar!

Thanks for the updates, TNO!

Spoiler
; A bar above the target icon that displays the current enemy health. ; This bar is meant to replace the default enemy health bar.; Displays above the crosshair.												set tnoHSB.hud_color to sv_Construct		"1*(tnoHSB.val

User avatar
tannis
 
Posts: 3446
Joined: Sat Dec 09, 2006 11:21 pm

Post » Tue May 17, 2011 4:45 am

@ TheNiceOne

As a new version of Oblivion XP was released, are you working on a support of Oblivion XP Bar for your mod? I noticed you asked Andalaybay and he answered you:


I've also gotten requests to fix Ob XP's own status bar so that it's more in line with the others when using Darn UI. I think we traded comments on that earlier. Now in Ob XP, you can turn off the level progress bar. So I guess that's how people have fixed it - turn it off and use your's instead! :)

I think the variables you need are:
ObXPMain.currentXP
ObXPMain.neededXP

The neededXP has already been adjusted so that it's a round number. The level progress is calculated by (currentXP / neededXP) * 100. There is also a variable for the total experience points and the playing time is also recorded. Both are used to calculate an hourly experience point amount which is displayed in the character menu, not in the HUD. Here is a screenshot showing the progress bar in the HUD. And here is the experience stats in the character menu.

If you want the other variables, they are:
ObXPMain.totalXP
ObXPMain.playTime
ObXPMain.restedXP

restedXP is the experience point bonus you get for resting. I have it turned off (it's an option in the ini). Ob XP is as configurable as your mods are :) I don't know how you would use rested XP in a HUD status bar, but I'll provide the variable anyway. All of these variables are floats, except needed XP has been rounded down (modulus function).

Lastly there are variables to record the number of training sessions per level. That's how many sessions you've had and how many you are entitled to. You can have training sessions carry over in Ob XP. That has some bugs right now that I'm trying to fix, so I won't include those variables right now. Besides, do you want me to put any more ideas in players' heads? :) I can provide those variables once I have fixed the script, if you want.

If you need anything more, let me know.

Edit: Ignore rested XP. It doesn't work directly as a bonus. I've had it disabled for so long, I forgot how it works :) Anyway, it works more like a repository. While you have rested XP, any experience points you gain are doubled. The base experience points you gain are deducted from your rested XP. Once your rested XP runs out, the experience points you gain revert to normal levels. Interesting way to do it... That's what I love about this mod - the design details that went into it...



Unfortunately I don`t know how to apply this information to your ini. :unsure:

If you need more specific information from Andalaybay, I`ll be happy to ask him for you.
User avatar
Rudi Carter
 
Posts: 3365
Joined: Fri Sep 01, 2006 11:09 pm

Post » Tue May 17, 2011 6:22 am

I just changed my ini to
set tnoHSB.hud_color to sv_Construct	"5*(tnoHSB.max>0)-4*(tnoHSB.frac>.5)+9*(tnoHSB.val>tnoHSB.max)"
but the last colour never comes up. It should be red from empty to 50% full, green to 100%, and orange if over 100%. It stays green even when items are repaired to 125%. :shrug:


I pasted your code from your previous post into my ini and all seems to be working. Currently my equipment is fully repaired, 125%, and the bars are orange. Previous to that I had some damaged pieces that were green. The only color I have yet to see is red since I didn't have a piece so badly damaged. I'll purposely let a piece go below 50% to test it.
User avatar
jennie xhx
 
Posts: 3429
Joined: Wed Jun 21, 2006 10:28 am

Post » Tue May 17, 2011 1:55 am

Ha, totally missed this. I'd been getting a bit nervous about kCHUDC's Pluggy dependency, what with Pluggy misbehaving worse than usual since OBSE 0019.

Thanks TNO, now I don't have to do it! Which is really a good thing because I haven't taken even one look at menu functions. ;)
User avatar
Johnny
 
Posts: 3390
Joined: Fri Jul 06, 2007 11:32 am

Post » Tue May 17, 2011 2:17 am

I pasted your code from your previous post into my ini and all seems to be working. Currently my equipment is fully repaired, 125%, and the bars are orange. Previous to that I had some damaged pieces that were green. The only color I have yet to see is red since I didn't have a piece so badly damaged. I'll purposely let a piece go below 50% to test it.

Ah, I stand corrected. I was testing by using the console to boost my skill and then repairing my items from 100% to 125%. But when I get them below 100% and repair them up again the bar goes orange. Something about the way HSB initializes and determines the colours, or something. Anyhow, yes, it works. Red -> green -> orange. Yay!
User avatar
Dewayne Quattlebaum
 
Posts: 3529
Joined: Thu Aug 30, 2007 12:29 pm

Post » Mon May 16, 2011 11:56 pm

Concerning the Oblivion XP level progress bar implementation.

I experimented, but I can`t get it to work. I tried the following without success:

set tnoHSB.hud_val to sv_Construct "ObXPMain.currentXP"
set tnoHSB.hud_min to sv_Construct "0"
set tnoHSB.hud_max to sv_Construct "100"

I guess that`s too simple. Andalaybay wrote, the level progress is calculated by (currentXP / neededXP) * 100. Well, I don`t know how to implement that, because I don`t have no experience with scripting.
User avatar
Joanne Crump
 
Posts: 3457
Joined: Sat Jul 22, 2006 9:44 am

Post » Tue May 17, 2011 1:20 am

Ah, Klaus, if I'm understanding how these bars work, this is super easy :)

set tnoHSB.hud_val to sv_Construct "ObXPMain.currentXP"
set tnoHSB.hud_min to sv_Construct "0"
set tnoHSB.hud_max to sv_Construct "ObXPMain.neededXP"

So if your currentXP is 2000 and your neededXP is 10000, then you are 20% of the way to levelling. Now I haven't gone through this entire thread, but if I'm reading the variables correctly, I think that's what you need to do.
User avatar
Carlos Rojas
 
Posts: 3391
Joined: Thu Aug 16, 2007 11:19 am

Post » Tue May 17, 2011 9:21 am

Ah, Klaus, if I'm understanding how these bars work, this is super easy :)

set tnoHSB.hud_val to sv_Construct "ObXPMain.currentXP"
set tnoHSB.hud_min to sv_Construct "0"
set tnoHSB.hud_max to sv_Construct "ObXPMain.neededXP"
That seems correct. :) Note that min/max is zero by default, so you don't even need the hud_min line there, though it doesn't hurt to have it there either.

And you'll of course need a "set tnoHSB.hud_color to sv_Construct ...." line too...
User avatar
Verity Hurding
 
Posts: 3455
Joined: Sat Jul 22, 2006 1:29 pm

Post » Mon May 16, 2011 6:36 pm

Thanks a lot, it works now, yay!

@ TheNiceOne

You could add these necessary two lines to the "Examples" sections of the Hud Status Bars.ini in a further release of your mod. I`m sure all Oblivion XP users will be happy to find the necessary scripts and there will be less questions in the future.

; ==== Oblivion XP level progress
;set tnoHSB.hud_val to sv_Construct "ObXPMain.currentXP"
;set tnoHSB.hud_max to sv_Construct "ObXPMain.neededXP"
User avatar
Sophie Louise Edge
 
Posts: 3461
Joined: Sat Oct 21, 2006 7:09 pm

Post » Tue May 17, 2011 3:18 am

Finally fiddling with this... awesome stuff. :D

I see you've already got TFE covered, but for me the single most important use of kCHUDC was keeping track of the spell failure chance from Fizzle!

	set tnoHSB.hud_val to sv_Construct	 	"tejonFizzle.chance"	set tnoHSB.hud_max to sv_Construct		"100"		

This can just replace the Spell Effectiveness bar, as Fizzle removes the effectiveness mechanic. (...at least for now.)
User avatar
Scotties Hottie
 
Posts: 3406
Joined: Thu Jun 08, 2006 1:40 am

Post » Tue May 17, 2011 8:51 am

Ha, totally missed this. I'd been getting a bit nervous about kCHUDC's Pluggy dependency, what with Pluggy misbehaving worse than usual since OBSE 0019.

Not to derail the thread, but can you elaborate on the Pluggy problem? I still have it installed HUD-style for Scathe, but my crashes-per-hour have skyrocketed recently and I can't figure out why. I'd happily lose scathe for a more stable game...

I see you've already got TFE covered, but for me the single most important use of kCHUDC was keeping track of the spell failure chance from Fizzle!

Mine looks like this
; casting chance for tejon's Fizzle; purple, full at 100% casting chance; under magic icon, inline with weapon durability barset tnoHSB.hud_color to sv_Construct	"8"set tnoHSB.hud_val to sv_Construct	"tejonFizzle.chance"set tnoHSB.hud_max to sv_Construct	"100"set tnoHSB.hud_x to			HUDmagicCenterset tnoHSB.hud_y to			HUDmagicBelowset tnoHSB.hud_y_adjust to 		5set tnoHSB.hud_size to			HUDmagicWidthSetStage tnoHSB 10

User avatar
carrie roche
 
Posts: 3527
Joined: Mon Jul 17, 2006 7:18 pm

Post » Tue May 17, 2011 4:25 am

I'd happily lose scathe for a more stable game...
Heh, should I be cross ?

Anyway, nice to see you around the forum!
User avatar
Big Homie
 
Posts: 3479
Joined: Sun Sep 16, 2007 3:31 pm

Post » Tue May 17, 2011 9:32 am

Finally fiddling with this... awesome stuff. :D

I see you've already got TFE covered, but for me the single most important use of kCHUDC was keeping track of the spell failure chance from Fizzle!

	set tnoHSB.hud_val to sv_Construct	 	"tejonFizzle.chance"	set tnoHSB.hud_max to sv_Construct		"100"		

This can just replace the Spell Effectiveness bar, as Fizzle removes the effectiveness mechanic. (...at least for now.)



This is why I reversed my merging of your mods now. :)
User avatar
Dean
 
Posts: 3438
Joined: Fri Jul 27, 2007 4:58 pm

Post » Tue May 17, 2011 5:28 am

Heh, should I be cross ?

Anyway, nice to see you around the forum!

No, don't be cross. I love Scathe, it's especially handy to ensure that damage with a duration is working efficiently - I much prefer seeing 5s over 1s... :)

But if Pluggy's making my game nearly unplayable, then it (and sadly Scathe, the only Pluggy HUD mod left in my LO) will need to go.
User avatar
Oscar Vazquez
 
Posts: 3418
Joined: Sun Sep 30, 2007 12:08 pm

Post » Tue May 17, 2011 5:18 am

Thanks for comments all. I will try to compile all the good ini settings for bars and add them to the ini file or the 1st post here - but I'm a bit busy with other projects for the moment...

But if Pluggy's making my game nearly unplayable, then it (and sadly Scathe, the only Pluggy HUD mod left in my LO) will need to go.

...but why don't you update Scathe to use MenuQue instead, shadeMe? I think it should be relatively easy, though you may want to wait until the new font functions scruggsy is working on ;)
User avatar
Charlie Ramsden
 
Posts: 3434
Joined: Fri Jun 15, 2007 7:53 pm

Post » Tue May 17, 2011 7:01 am

...but why don't you update Scathe to use MenuQue instead, shadeMe? I think it should be relatively easy, though you may want to wait until the new font functions scruggsy is working on ;)
I could, but I'm not been privy to the workings of the the UI and to MenuQue's functions generally. But if I were to convert Scathe, I'd need to be able to do the following:
  • Create an arbitrary number of UI elements (to show the damage text),
  • Set the value(text in Scathe's case), color, position (in screenspace) and opacity of said elements.
  • Destroy created elements when the show's over.
  • Find enough time to work on the conversion.
Were the above possible, I'll consider pushing an update of Scathe.

PS: Sorry about the hijack :batman:
User avatar
Nienna garcia
 
Posts: 3407
Joined: Wed Apr 25, 2007 3:23 am

Post » Tue May 17, 2011 2:11 am

This mod does 1 through 3, so it looks like 4's your big challenge.

Now, what is Scathe and how did I miss it?
User avatar
Nicole Elocin
 
Posts: 3390
Joined: Sun Apr 15, 2007 9:12 am

PreviousNext

Return to IV - Oblivion