Thank you, I was a bit nervous if I'm bothering people with their time, but I thought if I never ask I'll never know! Then there's a bit more I want to brush up on this macro, trust me I didn't intend for it to get this complicate, but now that I'm able to accomplish the first part more ideas to brush up the macros keep popping up, but I think this'll be the last, since I don't think a Metamagic macro needs anything more. So now I can automatically subtract Sorcery points using !ammo, but I'm still not sure how to added the correct 'Spell Slots' in correspondence to how many Sorcery Point I spent to create a spell slot. I try using the choice query two times, but it seems to only take the answer from one, by using this code it'll subtract my spell slot two times in a row. ?{Convert which slot?|Level 1,!ammo @{selected|token_id} lvl1_slots_expended -1 level 1 slot|Level 2,!ammo @{selected|token_id} lvl2_slots_expended -1 level 2 slot}
?{Convert which slot?|Level 1,!ammo @{selected|token_id} repeating_resource_$0_resource_right +2 sorcery point|Level 2,!ammo @{selected|token_id} repeating_resource_$0_resource_right +3 sorcery point} Sure enough, If I change the name of the query, it work out, but this require me to answer the choice 2 time so I want to know if there's a way to make this more compact, and work by answering only 1 choice ?{Convert which slot?|Level 1,!ammo @{selected|token_id} lvl1_slots_expended -1 level 1 slot|Level 2,!ammo @{selected|token_id} lvl2_slots_expended -1 level 2 slot}
?{Confirm Slot|Level 1,!ammo @{selected|token_id} repeating_resource_$0_resource_right +2 sorcery point|Level 2,!ammo @{selected|token_id} repeating_resource_$0_resource_right +3 sorcery point}