
I'm trying to implement the Planet Mercenary rule system in a custom character sheet. I want either a button on the sheet or a macro players can call to roll. What I'm trying to do: Roll 1d6 as the Mayhem die. Roll 2 more d6, then compare each of them to the Mayhem die. If the Mayhem die is higher than BOTH dice (each, not total), then trigger another event or just post a message that Mayhem rules apply. In a perfect world, I'd also like to give the total of all 3 dice added together, too. In psudo code, this would be something like: m=1d6, die1=1d6, die2=1d6 if m>die1 AND m>die2 then msg=m+die1+die2 & "MAYHEM!" else msg=m+die1+die2 This looks like it should be easy, but I've been struggling to figure out how to implement it. Could someone please either point me in the right direction or tell me how this would be done?