Hey guys, a newbie here. I'm trying to create a skill check macro for a HackMaster game to avoid looking up skill values on the character sheet, and to have a pretty output. The HM concept of a skill check is that a d100 throw modified with check difficulty shall be below the given skill mastery level of the character, so the backbone of a Listening check would be something like this: &{template:default}
{{name=Skill Check}}
{{outcome=[[{d100+?{Difficulty|Trivial,-90|Easy,-80|Average,-40|Difficult,0|Very_Difficult,10}}<@{ character |skill_listening}]] success}} I could extend this to include all relevant skills in a nice skill selector: &{template:default}
{{name=Skill Check}}
{{outcome=[[{1d100 + ?{Difficulty|Trivial,-90|Easy,-80|Average,-40|Difficult,0|Very_Difficult,10}}<?{Skill|Acting,16| long list here |Weather_Sense,22}]] successes}} Its output is something like this: Skill Check Outcome 1 successes It's almost there, but not quite yet 1. I tried to display the selected skill, the mastery level, and difficulty so that the output is something like this: Skill: Acting Mastery: 16 Difficulty: Average Outcome: 1 success but all my attemtps were in vain. How can I re-use the values selected in a previous query without putting up another? Can someone help me out on this? 2. I understand there is no way to display the two dropdown at the same time without using an API. Is that correct? 3. Is there a way to display only the word "success" or "failure" without the boolean resulting from the comparison? Many thanks for any help!