set tnoHSB.hud_color to sv_Construct "2*(tnoHSB.frac<1.0)" set tnoHSB.hud_val to sv_Construct "GetAV Strength" set tnoHSB.hud_max to sv_Construct "GetBaseAV Strength"
; bar 1 - 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; bar 2 - 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; bar 3 - 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; bar 4 - enchanted weapon charges; teal, hidden if weapon not enchanted; under weapon icon, under durability 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_x to HUDweaponCenterset tnoHSB.hud_y to HUDweaponBelowset tnoHSB.hud_v_adjust to 10set tnoHSB.hud_size to HUDweaponWidthSetStage tnoHSB 10; bar 5 - fizzle chance; purple, full at 100% casting chance; under magic icon, inline with 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_v_adjust to 5set tnoHSB.hud_size to HUDmagicWidthSetStage tnoHSB 10; bar 6 - cuirass health; red, hidden if not wearing upper body armour; to right of magic iconset tnoHSB.hud_color to sv_Construct "5*(tnoHSB.max>0)"set tnoHSB.hud_ref to sv_Construct "Player.GetEquippedObject 2" ; upper body itemset tnoHSB.hud_val to sv_Construct "Player.GetEquippedCurrentHealth 2"set tnoHSB.hud_max to sv_Construct "GetObjectHealth hud_ref"set tnoHSB.hud_x to HUDmagicRightset tnoHSB.hud_y to HUDmagicAboveset tnoHSB.hud_v_adjust to 4set tnoHSB.hud_size to HUDmagicWidthSetStage tnoHSB 10; bar 7 - shield health; red, hidden if not wearing shield; to right of magic icon, under cuirass health; change hud_x and hud_y if not using previous barset tnoHSB.hud_color to sv_Construct "5*(tnoHSB.max>0)"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 "GetObjectHealth hud_ref"set tnoHSB.hud_y to HUDprevBarBelowset tnoHSB.hud_size to HUDmagicWidthSetStage tnoHSB 10