
friends..... i have a macro (as token action) nested inside another.... for saving throw and skills checks...... this saves space in the token action bar ..... (contemplates normal, advantages and disadvantages rolls). I put the code as token action inside the character (journal), and then in the atributte & abilities (checking as token action). The problem comes when I want to choose to roll a normal roll (1 die), which is rolled 2. As configured only one value is chosen (randomly), but what I want is that when I choose the NORMAL option, only 1 die is rolled not 2. Thx in advance.
I am sure that some of the gods of this forum in macros will know how to fix this tiny defect. :)
I post the code:
Saving throws
&{template:simple}{{?{Roll Type?|Normal,normal|Advantage,advantage|Disadvantage,disadvantage}=1}}?{Saving Throw?|STR,{{rname=Strength Save}}{{mod=@{selected|strength_save_bonus}}} {{r1=[[1d20+@{selected|strength_save_bonus}]]}}{{r2=[[1d20+@{selected|strength_save_bonus}]]}}|DEX,{{rname=Dexterity Save}}{{mod=@{selected|dexterity_save_bonus}}} {{r1=[[1d20+@{selected|dexterity_save_bonus}]]}}{{r2=[[1d20+@{selected|dexterity_save_bonus}]]}}|CON,{{rname=Constitution Save}}{{mod=@{selected|constitution_save_bonus}}} {{r1=[[1d20+@{selected|constitution_save_bonus}]]}}{{r2=[[1d20+@{selected|constitution_save_bonus}]]}}|INT,{{rname=Intelligence Save}}{{mod=@{selected|intelligence_save_bonus}}} {{r1=[[1d20+@{selected|intelligence_save_bonus}]]}}{{r2=[[1d20+@{selected|intelligence_save_bonus}]]}}|WIS,{{rname=Wisdom Save}}{{mod=@{selected|wisdom_save_bonus}}} {{r1=[[1d20+@{selected|wisdom_save_bonus}]]}}{{r2=[[1d20+@{selected|wisdom_save_bonus}]]}}|CHA,{{rname=Charisma Save}}{{mod=@{selected|charisma_save_bonus}}} {{r1=[[1d20+@{selected|charisma_save_bonus}]]}}{{r2=[[1d20+@{selected|charisma_save_bonus}]]}}}{{charname=@{selected|character_name}}}
Skill checks
&{template:simple}{{?{Roll Type?|Normal,normal|Advantage,advantage|Disadvantage,disadvantage}=1}}?{Ability?|Acrobatics,{{rname=Acrobatics}}{{mod=@{selected|acrobatics_bonus}}} {{r1=[[1d20+@{selected|acrobatics_bonus}]]}}{{r2=[[1d20+@{selected|acrobatics_bonus}]]}}|Animal Handling,{{rname=Animal Handling}}{{mod=@{selected|animal_handling_bonus}}} {{r1=[[1d20+@{selected|animal_handling_bonus}]]}}{{r2=[[1d20+@{selected|animal_handling_bonus}]]}}|Arcana,{{rname=Arcana}}{{mod=@{selected|arcana_bonus}}} {{r1=[[1d20+@{selected|arcana_bonus}]]}}{{r2=[[1d20+@{selected|arcana_bonus}]]}}|Athletics,{{rname=Athletics}}{{mod=@{selected|athletics_bonus}}} {{r1=[[1d20+@{selected|athletics_bonus}]]}}{{r2=[[1d20+@{selected|athletics_bonus}]]}}|Deception,{{rname=Deception}}{{mod=@{selected|deception_bonus}}} {{r1=[[1d20+@{selected|deception_bonus}]]}}{{r2=[[1d20+@{selected|deception_bonus}]]}}|History,{{rname=History}}{{mod=@{selected|History_bonus}}} {{r1=[[1d20+@{selected|History_bonus}]]}}{{r2=[[1d20+@{selected|History_bonus}]]}}|Insight,{{rname=Insight}}{{mod=@{selected|Insight_bonus}}} {{r1=[[1d20+@{selected|Insight_bonus}]]}}{{r2=[[1d20+@{selected|Insight_bonus}]]}}|Intimidation,{{rname=Intimidation}}{{mod=@{selected|Intimidation_bonus}}} {{r1=[[1d20+@{selected|Intimidation_bonus}]]}}{{r2=[[1d20+@{selected|Intimidation_bonus}]]}}|Investigation,{{rname=Investigation}}{{mod=@{selected|Investigation_bonus}}} {{r1=[[1d20+@{selected|Investigation_bonus}]]}}{{r2=[[1d20+@{selected|Investigation_bonus}]]}}|Medicine,{{rname=Medicine}}{{mod=@{selected|Medicine_bonus}}} {{r1=[[1d20+@{selected|Medicine_bonus}]]}}{{r2=[[1d20+@{selected|Medicine_bonus}]]}}|Nature,{{rname=Nature}}{{mod=@{selected|Nature_bonus}}} {{r1=[[1d20+@{selected|Nature_bonus}]]}}{{r2=[[1d20+@{selected|Nature_bonus}]]}}|Perception,{{rname=Perception}}{{mod=@{selected|Perception_bonus}}} {{r1=[[1d20+@{selected|Perception_bonus}]]}}{{r2=[[1d20+@{selected|Perception_bonus}]]}}|Performance,{{rname=Performance}}{{mod=@{selected|Performance_bonus}}} {{r1=[[1d20+@{selected|Performance_bonus}]]}}{{r2=[[1d20+@{selected|Performance_bonus}]]}}|Persuasion,{{rname=Persuasion}}{{mod=@{selected|Persuasion_bonus}}} {{r1=[[1d20+@{selected|Persuasion_bonus}]]}}{{r2=[[1d20+@{selected|Persuasion_bonus}]]}}|Religion,{{rname=Religion}}{{mod=@{selected|Religion_bonus}}} {{r1=[[1d20+@{selected|Religion_bonus}]]}}{{r2=[[1d20+@{selected|Religion_bonus}]]}}|Sleight of Hand,{{rname=Sleight of Hand}}{{mod=@{selected|sleight_of_hand_bonus}}} {{r1=[[1d20+@{selected|sleight_of_hand_bonus}]]}}{{r2=[[1d20+@{selected|sleight_of_hand_bonus}]]}}|Stealth,{{rname=Stealth}}{{mod=@{selected|Stealth_bonus}}} {{r1=[[1d20+@{selected|Stealth_bonus}]]}}{{r2=[[1d20+@{selected|Stealth_bonus}]]}}|Survival,{{rname=Survival}}{{mod=@{selected|Survival_bonus}}} {{r1=[[1d20+@{selected|Survival_bonus}]]}}{{r2=[[1d20+@{selected|Survival_bonus}]]}}}{{charname=@{selected|character_name}}}