
I'm currently running the On Bloodied and Dying script, but don't like the built-in status marker for bloodied. How would I modify the script to use a custom icon of mine instead of a status marker when a creature becomes bloodied? And as I think about it, could I also assign a different icon to represent Prone when a character reaches 0 HP? The script appears below. Thank you! on( "change:graphic" , function (obj) { if (obj.get( "bar1_max" ) === "" ) return ; if (obj.get( "bar1_value" ) <= obj.get( "bar1_max" ) / 2 ) { obj.set({ status_redmarker: true }); } else { obj.set({ status_redmarker: false }) } if (obj.get( "bar1_value" ) <= 0 ) { obj.set({ status_dead: true }); } else { obj.set({ status_dead: false }); }
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; line-height: 18.0px; font: 13.0px Consolas; color: #333333}
p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px Consolas; color: #333333}
p.p3 {margin: 0.0px 0.0px 0.0px 0.0px; line-height: 19.0px; font: 13.0px Consolas; color: #333333; min-height: 15.0px}
span.s1 {font-kerning: none}
span.s2 {font-kerning: none; color: #dd1144}
span.s3 {font-kerning: none; color: #009999}
});