Sorry, I was so hooked on using Product Chat for all my posts I knew it'd be moved to scripts.
Ill try it out, Plystire, the problem was it didn't show even though I had the script in the trigger zone and correct paths.
Wait, if a Mod moves my thread to a different forum, why wont they change my name?? I already asked the forum gods and they ignored me. So I emailed FredP. No reply. Can a moderator please change my name to "YFPSD"? (without the quotes)
EDIT: Wait, i've found NOTHING from the mod is working on my testlevels except from the startmenu action. I can go into a shop and "buy" a weapon, but it doesnt show up in my list of weapons. I've followed the script correctly and its still not working! And to top that off, I can't die when I fall off the level! I just go into death mode and repeat "uhuhuhuhuhuhuhuhuhuhuhuhuhuhuhuhuh" until I end test level. Heres the updated code:
:state=0:hudreset,hudx=50,hudy=10,hudimagefine=languagebank/english/gamecore/hud/healthbar.dds,hudname=HealthHUD,hudhide=0,hudmake=display,state=0
:state=0:hudreset,hudx=50,hudy=15,hudimagefine=languagebank/english/gamecore/hud/armorbar.dds,hudname=ArmorHUD,hudhide=0,hudmake=display,state=0
;By loading in the HUDs above in that sequenc, the Health Bar will be below the Armor Bar and the Armor Bar below the outline HUD
:state=0:dimvar=Armor,setvar=Armor 500,dimvar=CalcVar,dimvar=CO,state=1
; Scale the Bars to have them shrink at lower levels
; Use $PH to grab the player's current Health
; Find out how much to scale by using (Current/Max)
:state=1:setvar=CalcVar $PH,divvar=CalcVar 5,scalehudx=HealthHUD %CalcVar
:state=1:setvar=CalcVar Armor,divvar=CalcVar 5,scalehudx=ArmorHUD %CalcVar
; Have the Armor take damage instead of the player's health
:state=1:setvar=CalcVar %CO,subvar=CalcVar $PH,setvar=CO %CalcVar
:state=1,vargreater=CO 0,vargreater=Armor 0:setvar=CalcVar 500,subvar=CalcVar $PH,plraddhealth=%CalcVar,subvar=Armor %CalcVar
:state=1,varless=Armor 0:setvar=Armor 0
:state=1:setvar=CO $PH