Good morning! I'm not sure exactly what to type in the search bar for this, so I'll go ahead and just lay out what I'm looking at with my custom sheet. Just this month (December 2022) Mongoose sent out their PDF rulebook for Paranoia: Perfect Edition. I've been building a character sheet to accommodate these new rules, as they adapt pretty easily from their previously published Red Clearance Edition. I have a mostly functional sheet right now, but I'm struggling with getting my rolls to evaluate in a way that produces proper results for a negative NODE. For context, in Paranoia Perfect and Red Clearance Editions, a NODE is "Number Of DicE" rolled, which is derived from adding together a stat and a skill for a total NODE. In this case, I've got the roll set up to add the stat and the skill plus relevant modifiers (a custom number input plus wounds) to determine the total NODE. But between having negative stats, skills, and wound penalties, sometimes a NODE can end up negative. Now, it would be a simple thing to state that there must be a minimum of one dice rolled, but that isn't the case for Paranoia when it comes to negative NODEs. RAW, when a negative NODE is rolled, a player rolls the absolute value of their NODE, and any rolls that aren't successes subtract from the total number of successes (eg. if the NODE is -3, a player rolls 3 dice; their results are 5, 6, and 3, so they end up getting 1 success because the 3 removes one of the three successes they'd otherwise generate). There's an additional fiddly bit with the computer dice, but that doesn't actually factor into this problem so I'm not going to go over it. The computer dice is working perfectly (as it should, since it comes directly from Your Friend the Computer). Here's my dice rolling button right now: <button type="roll" value="\n **NODE Successes:** [[(@{skillpick} + @{statpick} + @{wounds} + @{modifier})d6>5 &noerror]]\n **Computer Dice:** [[1d6>@{flags} &noerror]]" name="roll_NODE"></button> Full code can be found in the github repository here . When I try to extract absolute values or use a minimum evaluator in this line, the roller breaks entirely. I would appreciate some assistance with this if there's any to be had. Thank you and happy holidays!