; set tnoHSB.hud_2_val to sv_Construct "RSE.sleepVal"
; set tnoHSB.hud_2_max to sv_Construct "RSE.sleepMax"
...what for the Kuertee Eat feature... ?
set tnoHSB.hud_3_val to sv_Construct "kEatAndSleepQuest.foodPenalty"set tnoHSB.hud_3_max to sv_Construct "24"...set tnoHSB.hud_4_val to sv_Construct "kEatAndSleepQuest.sleepPenalty"set tnoHSB.hud_4_max to sv_Construct "24"
; =================== Status Bar 1; Encumbrance: Full bar when having 0 encumbrance, empty bar when you carry too muchset tnoHSB.hud_1_color to sv_Construct "7" ; Yellowset tnoHSB.hud_1_val to sv_Construct "tnoHSB.encumbranceLeft"set tnoHSB.hud_1_max to sv_Construct "Player.GetBaseAV Encumbrance"set tnoHSB.hud_1_v_space to 0; =================== Status Bar 2; set tnoHSB.hud_2_color to sv_Construct "4" ; Cyan; set tnoHSB.hud_2_val to sv_Construct "RSE.sleepVal"; set tnoHSB.hud_2_max to sv_Construct "RSE.sleepMax"set tnoHSB.hud_2_v_space to 0; =================== Status Bar 3 set tnoHSB.hud_3_color to sv_Construct "10" ; Orange set tnoHSB.hud_3_val to sv_Construct "kEatAndSleepQuest.foodPenalty"set tnoHSB.hud_3_max to sv_Construct "24"set tnoHSB.hud_3_v_space to 0; =================== Status Bar 4set tnoHSB.hud_4_color to sv_Construct ""set tnoHSB.hud_4_val to sv_Construct ""set tnoHSB.hud_4_max to sv_Construct ""set tnoHSB.hud_4_v_space to 0....
set tnoHSB.hud_#_val to sv_Construct "%q%q.GetAV Health"set tnoHSB.hud_#_max to sv_Construct "%q %q.GetBaseAV Health"
set tnoHSB.hud_2_val to sv_Construct "GetPCMajorSkillUps"set tnoHSB.hud_2_max to sv_Construct "GetGameSetting %qiLevelUpSkillCount%q"
set tnoHSB.hud_#_val to sv_Construct "%q%q.GetAV Health"set tnoHSB.hud_#_max to sv_Construct "%q %q.GetBaseAV Health"
set tnoHSB.hud_#_val to sv_Construct "WeaponCharge"and again you could parse it in the script and if a bar is set up to monitor charges you just get the info from the equipped weapon...
set tnoHSB.hud_1_ref to sv_Construct "GetFormFromMod %qOblivion.esm%q %q01D15A%q"set tnoHSB.hud_1_val to sv_Construct "GetAV Health"set tnoHSB.hud_1_max to sv_Construct "GetBaseAV Health"
set tnoHSB.hud_#_val to sv_Construct "WeaponCharge"and again you could parse it in the script and if a bar is set up to monitor charges you just get the info from the equipped weapon...
set tnoHSB.hud_1_color to sv_Construct "" ; Set color as defined above, or as an expression to change color depending on some variablesset tnoHSB.hud_1_val to sv_Construct "" ; Set current value as an expressionset tnoHSB.hud_1_max to sv_Construct "" ; Set max value, either as a number, or as an expressionset tnoHSB.hud_1_v_space to 0 ; Additional vertical space between this bar and the bar below it.set tnoHSB.hud_1_ref to sv_Construct "" ; Set a reference. Only needed for more complex expressions where val or max are computed from a reference (like a weapon or NPC).set tnoHSB.hud_1_name to sv_Construct "" ; Set displayed name for barset tnoHSB.hud_1_textPos to -1 ; Position of text. Overrides the general textPos if >= 0, see possible values for it aboveset tnoHSB.hud_1_textDisplay to -1 ; How to display value in text. Overrides the general textDisplay if >= 0, see possible values for it aboveset tnoHSB.hud_#_textColor to sv_Construct "" ; Overrides the general textColor, see possible values for it above
set tnoHSB.hud_1_color to sv_Construct "8*(tnoHSB.max>0)" ; 8 (purple) if the player has an enchanted weapon equipped. 0 (bar is hidden), if not.set tnoHSB.hud_1_ref to sv_Construct "Player.GetEquippedObject 16" ; Set reference to the equipped weapon's base IDset tnoHSB.hud_1_val to sv_Construct "Player.GetEquippedCurrentCharge 16" ; Set val to current charge of equipped weaponset tnoHSB.hud_1_max to sv_Construct "GetObjectCharge hud_ref" ; Get object charge (max charge) of the base IDset tnoHSB.hud_1_name to sv_Construct "Ch: "set tnoHSB.hud_1_textPos to 0 ; Text position above bar, left-adjustedset tnoHSB.hud_1_textDisplay to 1 ; Display name + val.set tnoHSB.hud_1_textColor to sv_Construct "tnoHSB.color" ; Set text color to bar color (purple)
set tnoHSB.hud_2_color to sv_Construct "5+(tnoHSB.frac >= 0.5)*5" ; Set color as defined above, or as an expression to change color depending on some variablesset tnoHSB.hud_2_val to sv_Construct "(GetBaseAV Encumbrance)-(GetAV Encumbrance)" ; Player is default reference when hud_#_ref is not defined.set tnoHSB.hud_2_max to sv_Construct "GetBaseAV Encumbrance"
set tnoHSB.hud_3_color to sv_Construct "4 + (tnoHSB.frac < 0.3)*8" ; Color is cyan, but changes to rhubarb if health drops below 30%set tnoHSB.hud_3_ref to sv_Construct "GetFormFromMod %qOblivion.esm%q %q01D15A%q" ; Rohssan, but could be any mod-added companion tooset tnoHSB.hud_3_val to sv_Construct "GetAV Health" ; The defined ref is default referenceset tnoHSB.hud_3_max to sv_Construct "GetBaseAV Health"set tnoHSB.hud_3_textColor to sv_Construct "4" ; Always cyan colorset tnoHSB.hud_3_name to sv_Construct "Rohssan: " set tnoHSB.hud_3_textDisplay to 3 ; Will display "Rohssan:of "
; Set color as defined above, or as an expression to change color depending on some variables
;bar 1 set tnoHSB.hud_x to HUDbarLeft set tnoHSB.hud_y to HUDbarLow; bar 2 needs no positioning, it automatically places itself above bar 1 by default; bar 3 needs no positioning, it automatically places itself above bar 2 by default; bar 4 set tnoHSB.hud_x to HUDmagicCenter set tnoHSB.hud_y to HUDmagicBelow set tnoHSB.hud_size to HUDmagicSize