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

Chromatic Orb Macro, Need Some Help

So I'm not very good with Macros but I'm trying to make one for Chromatic Orb where you can choose; Spell Level, Damage type and also use Elemental Adept for fire but it is really not liking the damage part. I suspect it has something to do with having a question within a question but I have no idea? Any help would be greatly appreciated. Here it is: &{template:default} {{name=Chromatic Orb}} {{Dix Casts at Level=?{What Level Chromatic Orb}}} {{Attack Roll = ?{Roll Type|Normal, [[1d20]]|Advantage,[[2d20kh1]]|Disadvantage, [[2d20kl1]]}+[[@{spell_attack_bonus}]]}} {{Damage = ?{Damage Type|Fire, =[[(?{What Level Chromatic Orb}+2)t[Elemental-Adept-D8]]]Fire|Acid, =[[(?{What Level Chromatic Orb}+2)d8]]Acid|Cold, =[[(?{What Level Chromatic Orb}+2)d8]]Cold|Lightning, =[[(?{What Level Chromatic Orb}+2)d8]]Lightning|Poison, =[[(?{What Level Chromatic Orb}+2)d8]]Poison|Thunder, =[[(?{What Level Chromatic Orb}+2)d8]]Thunder}}} {{?{Mantel Of Flame?|No, Mantel Of Flame = No|Yes, Mantel Of Flame = [[@{charisma_mod}]]Fire}}}
1624841134
GiGs
Pro
Sheet Author
API Scripter
You are correct that it's because of the nested query (question inside a question). There's a page on the wiki on how to deal with Advanced Roll Queries . There's another way using the Reusing Rolls technique, but moving the rolls outside of the query, and calling them inside it, like this: &{template:default} {{name=Chromatic Orb}} [[(?{What Level Chromatic Orb|1}+2)t[Elemental-Adept-D8]]] [[(?{What Level Chromatic Orb}+2)d8]]  [[(?{What Level Chromatic Orb}+2)d8]] [[(?{What Level Chromatic Orb}+2)d8]] [[(?{What Level Chromatic Orb}+2)d8]] [[(?{What Level Chromatic Orb}+2)d8]] {{Dix Casts at Level=?{What Level Chromatic Orb}}} {{Attack Roll = ?{Roll Type|Normal, [[1d20]]|Advantage,[[2d20kh1]]|Disadvantage, [[2d20kl1]]}+[[@{spell_attack_bonus}]]}} {{Damage = ?{Damage Type|Fire, $[[0]]Fire|Acid, $[[1]]Acid|Cold, $[[2]] Cold|Lightning, $[[3]] Lightning|Poison, $[[4]] Poison|Thunder, $[[5]]Thunder}}} {{?{Mantel Of Flame?|No, Mantel Of Flame = No|Yes, Mantel Of Flame = [[@{charisma_mod}]]Fire}}}
Thank you so much, this helps alot. I didn't know you could recall stuff like that
1624848933
GiGs
Pro
Sheet Author
API Scripter
Most of us didnt either, till it was accidentally discovered. It's an undocumented feature.