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 .
×
Create a free account

Dropdown Macro Help

Hello, I've been scouring all the wikis on how to create different types of macros and have been able to figure out simple dropdown ones, however what I'd like to do is try to make a custom "Lingering Injuries" macro to allow players to choose the type of damage they received (using&nbsp; <a href="https://marketplace.roll20.net/browse/gameaddon/362/critical-hit-deck-for-gms" rel="nofollow">https://marketplace.roll20.net/browse/gameaddon/362/critical-hit-deck-for-gms</a> ) So far this is what I've come up with the following to roll on one table: /w gm &amp;{template:npcaction} {{rname= Short-Term Madness }} {{name= Supplemental Materials }} {{description= [[1t[Setback-Slashing-(Lv.1-4)]]] }} &nbsp;I've been trying to use the "Potion of Healing" dropdown macro as a guide to try and set this up &amp;{template:desc} {{desc= ?{Choose a Potion of...|Healing, **Potion of Healing**: [[2d4+2]]|Greater Healing, **Potion of Greater Healing**: [[4d4+4]]|Superior Healing, **Potion of Superior Healing**: [[8d4+8]]|Supreme Healing, **Potion of Supreme Healing**: [[10d4+20]]|Keoghtom's Ointment, **Keoghtom's Ointment**: [[2d8+2]] and cured of poison and any disease} }} But when I set things up using this format I can only get the first table to roll.... Could someone help me formulate this so I can add multiple kinds of damage tables?&nbsp; Thanks in advance!!
1599876300
Oosh
Sheet Author
API Scripter
Can you post the code you're actually trying to run? It's generally a good idea to avoid punctuation in any names you need to call in Queries or other macros, but you don't seem to have anything in those table names that would break a Query. /w gm &amp;{template:npcaction} {{rname= Short-Term Madness }} {{name= Supplemental Materials }} {{description= ?{Table|1,[[1t[Setback-Slashing-(Lv.1-4)]]]| 2,[[1t[Setback-Piercing-(Lv.1-4)]]]| 3,[[1t[Setback-Bludgeoning-(Lv.1-4)]]]} }} That should work, I think?
1599880104

Edited 1599880179
OMG it worked!&nbsp; /w gm &amp;{template:npcaction} {{rname= Critical Damage }} {{name= Levels 5-8 }} {{description= ?{What Kind of Damage?|Slashing,[[1t[PCDangerous-Slashing-(Lv.5-8)]]]| Piercing,[[1t[PCDangerous-Piercing-(Lv.5-8)]]]| Bludgeoning,[[1t[PCDangerous-Bludgeoning-(Lv.5-8)]]]| Magic,[[1t[PCDangerous-Magic-(Lv.5-8)]]]} }} Thank you so much!!! looking at what I'd tried I realized I was messing up the format of the dropdown options...&nbsp;