RainbowEncoder said: If you are creating/modifying a character sheet you may want to consider Custom Roll Parsing . That should give you similar flexibility to a Mod script but it'll be available to anyone who uses the character sheet irrespective of their subscription level. Thank you, I fiddled with roll parsing and I found ways to do it. I roll each die individually and add them in another inline roll, after having the script compare the results to 4, and if they match, add 0 to Total instead of 4. I'm having trouble though, I'm trying to switch the color of crit fails in the inline roll tooltip. I'm using Legacy Sanitization. .sheet-rolltemplate-test .sheet-results .inlinerollresult .basicdiceroll.critfail {
color:#7f8688;
} Here's what I tried, I tried ".inlinerollresult.critfail" too, it doesn't work... I snipped those class names from Oosh's post ( Blue Dice on /r Rolls and Inline Tooltips ), but I can't make it work, the critFails in the tooltip stay red... Am I doing something wrong? Maybe I should make another post, since it's css wizrdry and not dice reference anymore. Thank you