hello everybody, i'm trying to make a simple macros in which when a player attacks, a query pops up and asks him witch weapon he wants to use and then rolls to see if it hits and how many damage it does. it's pretty easy to hit since you just have to do more than 10 (it's a custom game i'm testing) so i'd like a macros that does something like this:&nbsp; it asks the weapon it asks if he has any related abilities (which adds the die attached to it: 1d6, 1d8, etc) then sum up the the attribute&nbsp; @{selected|tough} (it's a die) + 1d10 (always rolled) + the die ability and if the sum of the dices is 10+ it rolls the damage die tied to the weapon he chose. so far i have this macro: /em attaks @{target|token_name} with ?{choose your weapon |N/A,0|@{selected|noun1_name},@{selected|noun1_name}!!} and deals [[{{1d10+ 10 + ?{Bonuses to targets AC|0 } }&gt;10} * (@{Selected|Lvl}/2)@{selected|noun1} ]] damages! i'd like to substitute&nbsp; + 10 and ?{Bonuses to targets AC|0 with: + 10 becomes: @{selected|tough} and&nbsp; ?{Bonuses to targets AC|0 becomes: ?{choose an ability?|N/A,0|@{selected|verb1_name},@{selected|verb1}|@{selected|verb2_name},@{selected|verb2}|@{selected|verb3_name},@{selected|verb3}|@{selected|verb4_name},@{selected|verb4}|@{selected|verb5_name},@{selected|verb5}|@{selected|verb6_name},@{selected|verb6}|@{selected|verb7_name},@{selected|verb7}|@{selected|verb8_name},@{selected|verb8}|@{selected|verb9_name},@{selected|verb9}|@{selected|verb10_name},@{selected|verb10} what i tried to do is this, but id doesn't work and i don't understand why (i'm preatty bad at these things) /em attaks @{target|token_name} with ?{choose your weapon |N/A,0|@{selected|noun1_name},@{selected|noun1_name}!!} and deals [[{{1d10+@{selected|tough} + ?{choose an ability|N/A,0|@{selected|verb1_name},@{selected|verb1}|@{selected|verb2_name},@{selected|verb2}|@{selected|verb3_name},@{selected|verb3}|@{selected|verb4_name},@{selected|verb4}|@{selected|verb5_name},@{selected|verb5}|@{selected|verb6_name},@{selected|verb6}|@{selected|verb7_name},@{selected|verb7}|@{selected|verb8_name},@{selected|verb8}|@{selected|verb9_name},@{selected|verb9}|@{selected|verb10_name},@{selected|verb10}}&gt;10} * (@{Selected|Lvl}/2)@{selected|noun1} ]] damages! this simpler one works (i don't need it like this but if i try to modify the one below here in something like the one i want, it stops working) /em attaks @{target|token_name} with ?{choose your weapon |N/A,0|@{selected|noun1_name},@{selected|noun1_name}!!} and deals [[{{1d10+10 + ?{Bonuses to targets AC|0}}&gt;10} * (@{Selected|Lvl}/2)@{selected|noun1} ]] damages! i used for reference this post: <a href="https://app.roll20.net/forum/post/577941/can-i-create-if-slash-then-statements-with-the-macros/?pageforid=579408#post-579408" rel="nofollow">https://app.roll20.net/forum/post/577941/can-i-create-if-slash-then-statements-with-the-macros/?pageforid=579408#post-579408</a> would be immensely grateful if you could help me! cheers