My goal is to add a selection to the "roll type" drop down you can set on a move in the basic dungeon world by roll20 character sheet. I want to add a "random" selection, which would pick randomly from the 6 attributes and use its mod (say, charisma +2 or intelligence -1), and preferable, report on which attr mod it used in the resulting roll on hover. my campaign is (because of setting) accumulating a lot of moves that reflect "wild magic" and it is tedious for me to have to pick a random stat every time the characters or NPCs roll one of these moves when what i want is for it to simply be a random attribute and if we need to, dig in and see what the attribute selected was. i see the input: attr_statmod_query: <input type="hidden" name="attr_statmod_query" value="?{Stat|STR,@{strength_mod}[strength]|DEX, @{dexterity_mod}[dexterity]|CON, @{constitution_mod}[constitution]|INT, @{intelligence_mod}[intelligence]|WIS, @{wisdom_mod}[wisdom]|CHA, @{charisma_mod}[charisma]}"> and I think adding something like attr_statmod_query_random and an associated option here: <option value="@{intelligence_mod}[intelligence]">INT</option> <option value="@{wisdom_mod}[wisdom]">WIS</option> <option value="@{charisma_mod}[charisma]">CHA</option> <option value="@{statmod_query}">ASK</option> <option value="@{statmod_query_random}">RANDOM</option> <option value="@{bond_query}">BOND</option> would do the trick, but i confess I have no idea what to put in the attr_statmod_query_random to make this work. on the other hand, it isn't really a "query" since i don't need to ask the user for something, just get a random one of six values... thoughts?