**RESOLVED** OVERVIEW: I am trying to use power card to create a macro that will output text based on the results of a roll. (5E OG Sheet) DETAILS: When a player rolls a Nat1 and gets a critical failure the CRITICAL FAILURE button should multiply the selected tokens proficiency bonus by 5 and add 1d20 to the result. Then compare that result to determine the outcome. If result is 30 or greater - print text NO Consequence. If the result is 24-29 - print text Tier 1 Consequence. If the result is 18-23 - print text Tier 2 Consequence. If the result is 17 or less - print text Tier 3 Consequence. MY ATTEMPT: I used the Longsword Attack example from the ScriptCards wiki as a guide and this is what I cam up with !scriptcard {{ --#title|Critical Failure --#leftsub|Results Roll --#sourceToken|@{selected|token_id} --#emoteText|@{selected|token_name} has fumbled their attack --=CFResultsRoll|1d20 + [[5*@{selected|pb} [PROF]]] --+Result|@{selected|token_name} rolls [$CFResultsRoll] --?[$CFResultsRoll.Total] -ge 30|NoC --?[$CFResultsRoll.Total] -eq 29|Tier1C --?[$CFResultsRoll.Total] -eq 28|Tier1C --?[$CFResultsRoll.Total] -eq 27|Tier1C --?[$CFResultsRoll.Total] -eq 26|Tier1C --?[$CFResultsRoll.Total] -eq 25|Tier1C --?[$CFResultsRoll.Total] -eq 24|Tier1C --?[$CFResultsRoll] -eq 23|Tier2C --?[$CFResultsRoll] -eq 22|Tier2C --?[$CFResultsRoll] -eq 21|Tier2C --?[$CFResultsRoll] -eq 20|Tier2C --?[$CFResultsRoll] -eq 19|Tier2C --?[$CFResultsRoll] -eq 18|Tier2C --?[$CFResultsRoll] -le 17|Tier3C --^Final| --:NoC| --+By skill or by luck @{selected|token_name} escapes all adverse repercussions --^Final| --:Tier1C| --+Tier 1 Consequence!|A Tier 1 result @{selected|token_name} must pick a Tier 1 Card. --:Final| --:Tier2C| --+Tier 2 Consequence!|A Tier 2 result @{selected|token_name} must pick a Tier 2 Card. --:Final| --:Tier3C| --+Tier 3 Consequence!|A Tier 3 result @{selected|token_name} must pick a Tier 3 Card. --:Final| }} PROBLEM: The greater than 30 does not work at all and if the result is between 18 and 29 it gives the correct output as well as the output for each result that follows. EXAMPLE: Critical Failure Results Roll Result Goblin Assassin rolls <span class="userscript-userscript-showtip userscript-tipsy" title="Roll: 1d20 + 10 Result: (19) + 10 " style="min-width: 1.75em ; font-family: "undefined" ; text-align: center ; display: inline-block ; font-weight: bold ; height: 1em ; margin-top: -1px ; margin-bottom: 1px ; padding: 0px 2px ; border: 1px solid rgb( 135 , 133 , 10 ) ; border-radius: 3px ; background-color: rgb( 255 , 254 , 162 )">29 Tier 1 Consequence! A Tier 1 result Goblin Assassin must pick a Tier 1 Card. Tier 2 Consequence! A Tier 2 result Goblin Assassin must pick a Tier 2 Card. Tier 3 Consequence! A Tier 3 result Goblin Assassin must pick a Tier 3 Card. REQUEST: Would love to know what I am doing wrong, but will gladly accept a link to a working version of something similar enough that I can adjust it to my needs. Thanks in Advance.