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

Macro Issues

I'm having a small issue when writing a macro. Whenever I write it, it shows up with what it should be rolling. I put the roll in quadruple brackets and it finally rolls, but won't show crit ranges and glowing boxes anymore. Code and screenshots will be provided. Can I get a little help? &{template:default} {{name=Recharger Rifle (Used)}} ?{How many shot fired?| One,{{cost=[[25]] AP}} {{Attack=[[1d100cs<[[(@{Weapons: MEW}+15)]]cf>[[(94+floor(@{Luck}/2))]]]]}} {{Damage=[[round((15+1d10)*0.9)]]}}| Two,{{cost=[[50]] AP}} {{Attack 1=[[1d100cs<[[(@{Weapons: MEW}+15)]]cf>[[(94+floor(@{Luck}/2))]]]]}} {{Damage 1=[[round((15+1d10)*0.9)]]}} {{Attack 2= [[[[1d100cs<[[(@{Weapons: MEW}+15)]]cf>[[(94+floor(@{Luck}/2))]]]]]]}} {{Damage 2=[[round((15+1d10)*0.9)]]}}| Three,{{cost=[[75]] AP}} {{Attack 1=[[1d100cs<[[(@{Weapons: MEW}+15)]]cf>[[(94+floor(@{Luck}/2))]]]]}} {{Damage 1=[[round((15+1d10)*0.9)]]}} {{Attack 2= [[[[1d100cs<[[(@{Weapons: MEW}+15)]]cf>[[(94+floor(@{Luck}/2))]]]]]]}} {{Damage 2=[[round((15+1d10)*0.9)]]}&#125 {{Attack 3= [[[[1d100cs<[[(@{Weapons: MEW}+15)]]cf>[[(94+floor(@{Luck}/2))]]]]]]}} {{Damage 3=[[round((15+1d10)*0.9)]]}&#125| Four,{{cost=[[100]] AP}} {{Attack 1=[[1d100cs<[[(@{Weapons: MEW}+15)]]cf>[[(94+floor(@{Luck}/2))]]]]}} {{Damage 1=[[round((15+1d10)*0.9)]]}} {{Attack 2= [[[[1d100cs<[[(@{Weapons: MEW}+15)]]cf>[[(94+floor(@{Luck}/2))]]]]]]}} {{Damage 2=[[round((15+1d10)*0.9)]]}&#125 {{Attack 3= [[[[1d100cs<[[(@{Weapons: MEW}+15)]]cf>[[(94+floor(@{Luck}/2))]]]]]]}} {{Damage 3=[[round((15+1d10)*0.9)]]}&#125 {{Attack 4= [[[[1d100cs<[[(@{Weapons: MEW}+15)]]cf>[[(94+floor(@{Luck}/2))]]]]]]}} {{Damage 4=[[round((15+1d10)*0.9)]]}&#125} {{Crit Success range= [[@{Luck} [Luck]+1]]}} {{Note= Hyperbreeder: Recharges four shots at the beginning of the round.}}
1479067896
Scott C.
Forum Champion
Sheet Author
API Scripter
Compendium Curator
The problem is that you have double inline bracketed it. That removes the critical/fumble formatting. Just do a single set of brackets around your whole thing: [[1d100cs<[[(@{Weapons: MEW}+15)]]cf>[[(94+floor(@{Luck}/2))]] ]] And add that space between the last set of brackets and the brackets for your luck calculation. That should fix it.