Hiya
Im quite new to dogtag however I'm quite certain what I want to do, however I can't seem to make it work
I want my CurrentHP and MaxHP to be show in the following way:
MaxHP shown in green when 100% (CurrentHP hidden)
CurrentHP/MaxHP shown in green from 75%-99%
CurrentHP/MaxHP shown in yellow from 74%-40%
CurrentHP/MaxHP shown in red from 39%-1%
I have gotten the currentHP to work like a charm with the following code:
[((HP < MaxHP * 0.99) >= MaxHP * 0.75):Color("00ff00") ((HP < MaxHP * 0.75) >= MaxHP * 0.4):Color("FFD700") (HP < MaxHP * 0.4):Color("DC143C") "/":Color("00ff00") MaxHP:Color("00ff00")]
However I dont seem to have any option to get the MaxHP and the "/" to show up in the correct color... Is that even possible?
//Q