currently i am using this macro to roll for skills in my game... &{template:simple} {{mod=?{Skill|Acrobatics, [[@{Quip|acrobatics_bonus}]] (Acrobatics) |Athletics, [[@{Quip|Athletics_bonus}]] (Athletics) |Animal Handling, [[@{Quip|animal_handling_bonus}]] (Animal Handling) |Arcana, [[@{Quip|arcana_bonus}]] (Arcana) |Deception, [[@{Quip|deception_bonus}]] (Deception) |History, [[@{Quip|history_bonus}]] (History) |Insight, [[@{Quip|insight_bonus}]] (Insight) |Intimidation, [[@{Quip|intimidation_bonus}]] (Intimidation) |Investigation, [[@{Quip|investigation_bonus}]] (Investigation) |Medicine, [[@{Quip|medicine_bonus}]] (Medicine) |Nature, [[@{Quip|nature_bonus}]] (Nature) |Perception, [[@{Quip|perception_bonus}]] (Perception) |Performance, [[@{Quip|performance_bonus}]] (Performance) |Persuasion , [[@{Quip|persuasion_bonus}]] (Persuasion) |Religion, [[@{Quip|religion_bonus}]] (Religion) |Sleight of Hand, [[@{Quip|sleight_of_hand_bonus}]] (Sleight of Hand) |Stealth, [[@{Quip|stealth_bonus}]] (Stealth) |Survival, [[@{Quip|survival_bonus}]] (Survival) } }} {{rname=Skill Check}} {{r1=[[1d20@{Quip|halflingluck}+?{Skill}]]}} @{Quip|rtype} @{Quip|halflingluck}+?{Skill}]]}} however i want to skip the select menu and rather opt for a text only selection #macroname 'INPUT' and it would roll the macro for stealth, without having to make every macro for each skill it would read in "stealth" as a variable and execute the following macro &{template:simple} {{rname=Skill Check}} {{r1=[[1d20@{Quip|halflingluck}+[[@{Selected|'INPUT'_bonus}]]]]}} @{Quip|rtype} @{Quip|halflingluck}+[[@{Selected|'INPUT'_bonus}]]]]}} can this be done?