Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×

Macro Problem

So I am creating a macro for my players that brings up a drop down menu, lets them pick the skill I have asked for rolls a d20 adds the skill and adds 1d4 (Players use guidance constantly preferable like this be asked if they want to add it or not), Just trying to speed things up really, below is the macro it finds the skill mod and outputs that to chat but doesn't roll any dice can anybody please help with what is wrong with the Macro &{template:simple} {{mod=?{Skill|Acrobatics, [[@{selected|acrobatics_bonus}]] (Acrobatics) |Animal Handling, [[@{selected|animal_handling_bonus}]] (Animal Handling) |Arcana, [[@{selected|arcana_bonus}]] (Arcana) |Deception, [[@{selected|deception_bonus}]] (Deception) |History, [[@{selected|history_bonus}]] (History) |Insight, [[@{selected|insight_bonus}]] (Insight) |Intimidation, [[@{selected|intimidation_bonus}]] (Intimidation) |Investigation, [[@{selected|investigation_bonus}]] (Investigation) |Medicine, [[@{selected|medicine_bonus}]] (Medicine) |Nature, [[@{selected|nature_bonus}]] (Nature) |Perception, [[@{selected|perception_bonus}]] (Perception) |Performance, [[@{selected|performance_bonus}]] (Performance) |Persuasion, [[@{selected|persuasion_bonus}]] (Persuasion) |Religion, [[@{selected|religion_bonus}]] (Religion) |Sleight of Hand, [[@{selected|sleight_of_hand_bonus}]] (Sleight of Hand) |Stealth, [[@{selected|stealth_bonus}]] (Stealth) |Survival, [[@{selected|survival_bonus}]] (Survival) } }} {{rname=Skill Check}}  {{r1=[[1d20 + ?{Skill} + 1d4]]}}
<a href="https://wiki.roll20.net/D%26D_5E_by_Roll20/Roll_Templates#Simple" rel="nofollow">https://wiki.roll20.net/D%26D_5E_by_Roll20/Roll_Templates#Simple</a> You need to include the reference for normal/advantage/disadvantage: {{normal=1}} I tacked it on to the end here: &amp;{template:simple} {{mod=?{Skill|Acrobatics, [[@{selected|acrobatics_bonus}]] (Acrobatics) |Animal Handling, [[@{selected|animal_handling_bonus}]] (Animal Handling) |Arcana, [[@{selected|arcana_bonus}]] (Arcana) |Deception, [[@{selected|deception_bonus}]] (Deception) |History, [[@{selected|history_bonus}]] (History) |Insight, [[@{selected|insight_bonus}]] (Insight) |Intimidation, [[@{selected|intimidation_bonus}]] (Intimidation) |Investigation, [[@{selected|investigation_bonus}]] (Investigation) |Medicine, [[@{selected|medicine_bonus}]] (Medicine) |Nature, [[@{selected|nature_bonus}]] (Nature) |Perception, [[@{selected|perception_bonus}]] (Perception) |Performance, [[@{selected|performance_bonus}]] (Performance) |Persuasion, [[@{selected|persuasion_bonus}]] (Persuasion) |Religion, [[@{selected|religion_bonus}]] (Religion) |Sleight of Hand, [[@{selected|sleight_of_hand_bonus}]] (Sleight of Hand) |Stealth, [[@{selected|stealth_bonus}]] (Stealth) |Survival, [[@{selected|survival_bonus}]] (Survival) } }} {{rname=Skill Check}}&nbsp; {{r1=[[1d20 + ?{Skill} + 1d4]]}} {{normal=1}} If you had two rolls, you could alternatively use: {{always=1}} (shows both) {{advantage=1}} (highlights the better roll) {{disadvantage=1}} (highlights the worse roll)
Before installing any thing I suggest ahead, understand that you need to enter every command individually cause roll20 introduced a bug where it drops random commands when you put a bunch in chat together.&nbsp;&nbsp; You should install group check api and use that instead.&nbsp; Once it installs 5e OGL, install this one manually: !group-check-config --add {"Guidance Bless Resistance":{"name":"Guidance Bless Resistance","formula":"\[1d4\]"}} Then make this macro and set it to all players: !group-check --public --hidename --showaverage --ro roll2 --?{Which roll?|Strength Save|Dexterity Save|Constitution Save|Intelligence Save|Wisdom Save|Charisma Save|Death Save|Strength Check|Dexterity Check|Constitution Check|Intelligence Check|Wisdom Check|Charisma Check|Acrobatics|Animal Handling|Arcana|Athletics|Deception|History|Insight|Intimidation|Investigation|Medicine|Nature|Perception|Performance|Persuasion|Religion|Sleight of Hand|Stealth|Survival|Strength Attack|Dexterity Attack} --process --button Guidance !group-check ~Guidance Bless Resistance ~hidename I hide names cause groupcheck api shows token images, that way I can use it for my creatures without revealing their character sheet name.&nbsp;&nbsp; If you are curious and feeling experimental, heres the rest of my custom checks. !group-check-config --add {"Passive":{"name":"Passive","formula":"\at{passive_wisdom}"}} !group-check-config --add {"Strength Mod":{"name":"Strength Mod","formula":"\[\at{strength_mod}+\at{jack_of_all_trades}\]"}} !group-check-config --add {"Dexterity Mod":{"name":"Dexterity Mod","formula":"\[\at{dexterity_mod}+\at{jack_of_all_trades}\]"}} !group-check-config --add {"Constitution Mod":{"name":"Constitution Mod","formula":"\[\at{constitution_mod}+\at{jack_of_all_trades}\]"}} !group-check-config --add {"Intelligence Mod":{"name":"Intelligence Mod","formula":"\[\at{intelligence_mod}+\at{jack_of_all_trades}\]"}} !group-check-config --add {"Wisdom Mod":{"name":"Wisdom Mod","formula":"\[\at{wisdom_mod}+\at{jack_of_all_trades}\]"}} !group-check-config --add {"Charisma Mod":{"name":"Charisma Mod","formula":"\[\at{charisma_mod}+\at{jack_of_all_trades}\]"}} !group-check-config --add {"Acrobatics Mod":{"name":"Acrobatics Mod","formula":"\[\at{acrobatics_bonus}\]"}} !group-check-config --add {"Animal Handling Mod":{"name":"Animal Handling Mod","formula":"\[\at{animal_handling_bonus}\]"}} !group-check-config --add {"Arcana Mod":{"name":"Arcana Mod","formula":"\[\at{arcana_bonus}\]"}} !group-check-config --add {"Athletics Mod":{"name":"Athletics Mod","formula":"\[\at{athletics_bonus}\]"}} !group-check-config --add {"Deception Mod":{"name":"Deception Mod","formula":"\[\at{deception_bonus}\]"}} !group-check-config --add {"History Mod":{"name":"History Mod","formula":"\[\at{history_bonus}\]"}} !group-check-config --add {"Insight Mod":{"name":"Insight Mod","formula":"\[\at{insight_bonus}\]"}} !group-check-config --add {"Intimidation Mod":{"name":"Intimidation Mod","formula":"\[\at{intimidation_bonus}\]"}} !group-check-config --add {"Investigation Mod":{"name":"Investigation Mod","formula":"\[\at{investigation_bonus}\]"}} !group-check-config --add {"Medicine Mod":{"name":"Medicine Mod","formula":"\[\at{medicine_bonus}\]"}} !group-check-config --add {"Nature Mod":{"name":"Nature Mod","formula":"\[\at{nature_bonus}\]"}} !group-check-config --add {"Perception Mod":{"name":"Perception Mod","formula":"\[\at{perception_bonus}\]"}} !group-check-config --add {"Performance Mod":{"name":"Performance Mod","formula":"\[\at{performance_bonus}\]"}} !group-check-config --add {"Persuasion Mod":{"name":"Persuasion Mod","formula":"\[\at{persuasion_bonus}\]"}} !group-check-config --add {"Religion Mod":{"name":"Religion Mod","formula":"\[\at{religion_bonus}\]"}} !group-check-config --add {"Sleight of Hand Mod":{"name":"Sleight of Hand Mod","formula":"\[\at{sleight_of_hand_bonus}\]"}} !group-check-config --add {"Stealth Mod":{"name":"Stealth Mod","formula":"\[\at{stealth_bonus}\]"}} !group-check-config --add {"Survival Mod":{"name":"Survival Mod","formula":"\[\at{survival_bonus}\]"}} !group-check-config --add {"Strength Attack":{"name":"Strength Attack","formula":"\[d20+\at{strength_mod}+\at{pb}\]"}} !group-check-config --add {"Dexterity Attack":{"name":"Dexterity Attack","formula":"\[d20+\at{dexterity_mod}+\at{pb}\]"}} !group-check-config --add {"Potion of Healing":{"name":"Potion of Healing","formula":"\[2d4+2\]"}} !group-check-config --add {"Potion of Greater Healing":{"name":"Potion of Greater Healing","formula":"\[4d4+4\]"}} !group-check-config --add {"Potion of Superior Healing":{"name":"Potion of Superior Healing","formula":"\[8d4+8\]"}} !group-check-config --add {"Potion of Supreme Healing":{"name":"Potion of Supreme Healing","formula":"\[10d4+20\]"}} !group-check-config --add {"Keoghtom's Ointment":{"name":"Keoghtom's Ointment","formula":"\[2d8+2\]"}} I also have a page that is just for storage that I place 12 tokens on that are each side of a 12 sided dice and colored to 12 unique colors.&nbsp; I set the players characters and hirelings and minions as represented by each of up to 12 tokens and then get the token ID's of those 12 tokens and pump them into the following macros.&nbsp; I left my token id's in but to get the token id's of those storage tokens just select them and do @{target|token_id} in chat. "ShowTheirMods" !group-check --ro roll1 --ids -MrfFGVGAi25ZS_aSsXU, -MrfGcdY8drK-vQaDKL-, -MrfGdg4E8MUC3_64Dd-, -MrfGeTxHvOgH7ZhaiBb, -MrfGfFhdc_TCNaSAVv2, -MrfGg2_Y2ZLz0U9X1mA, -MrfGh04cvMrQrtnP_Cw, -MrfGhyLu_RkVXLA0FPl, -MrfGivCMt9C8Ik5riWh, -MrfGjZLEN14jvRI9QUU, -MrfGjkTrveRappxQKQR, -MrfGjwT9rcBnBo421Wl --?{Which roll?|AC|Passive|Strength Mod|Dexterity Mod|Constitution Mod|Intelligence Mod|Wisdom Mod|Charisma Mod|Acrobatics Mod|Animal Handling Mod|Arcana Mod|Athletics Mod|Deception Mod|History Mod|Insight Mod|Intimidation Mod|Investigation Mod|Medicine Mod|Nature Mod|Perception Mod|Performance Mod|Persuasion Mod|Religion Mod|Sleight of Hand Mod|Stealth Mod|Survival Mod} "SnapCheck" !group-check --whisper --ids -MrfFGVGAi25ZS_aSsXU, -MrfGcdY8drK-vQaDKL-, -MrfGdg4E8MUC3_64Dd-, -MrfGeTxHvOgH7ZhaiBb, -MrfGfFhdc_TCNaSAVv2, -MrfGg2_Y2ZLz0U9X1mA, -MrfGh04cvMrQrtnP_Cw, -MrfGhyLu_RkVXLA0FPl, -MrfGivCMt9C8Ik5riWh, -MrfGjZLEN14jvRI9QUU, -MrfGjkTrveRappxQKQR, -MrfGjwT9rcBnBo421Wl --ro roll2 --showaverage --?{Snap Check?|Perception|Stealth|Investigation} "Potions" !group-check --public --ro roll1 --?{Which roll?||Potion of Healing|Potion of Greater Healing|Potion of Superior Healing|Potion of Supreme Healing|Keoghtom's Ointment} "GM Prep Check" !group-check --whisper --ro roll2 --showaverage
Heres the tokens I speak of:
Thanks muchly