GODMODEhttp://image.noelshack.com/fichiers/2015/07/1424016854-help.png
I would like to animate the background color of theses when overhealed/less than 50% hp
Animate VerticalLine1 BgColor "0 255 255 255" Linear 0.1 0.2 Animate VerticalLine1 BgColor "10 10 10 255" Linear 0.2 0.4
Doesn't seem to work, help ?
Well you've got the animation for the BG going to black starting before the first animation finishes, try putting the second part as
Animate VerticalLine1 BgColor "0 255 255 255" Linear 0.1 0.2
Animate VerticalLine1 BgColor "10 10 10 255" Linear 0.3 0.4
The first number is the start time and the second is the duration, so you've got it set up as starting while the first animation is only halfway done.