HP coloring from green at 100% to red at 1%.
You must login to post a comment. Don't have an account? Register to get one!
I would love to see this implemented. Here's one such method:
<<code>>local hook; function HealthFade() hook=HealthBar_OnValueChanged; HealthBar_OnValueChanged=HealthFade_Smooth; end
<<code>>
function HealthFade_Smooth(self, value, smooth) hook(self, value, true); end<</code>>
- Reply
- #1
Skizelli Nov 21, 2008 at 13:04 UTC - 0 likesI would love to see this implemented. Here's one such method:
<<code>>local hook; function HealthFade() hook=HealthBar_OnValueChanged; HealthBar_OnValueChanged=HealthFade_Smooth; endfunction HealthFade_Smooth(self, value, smooth) hook(self, value, true); end<</code>>