
So I am trying to do a thing with Chatsetattr where I can have a token macro for my paladin so it ticks off a channel divinity and a harness divine power resource from the character sheet, as well as add a spell slot that they picked back, and the macro for that works great and does what I need... It's not until I try to output a whisper in the chat using certain things where things go awry. Below is the macro, and I will make the part that I am having trouble with bigger than the other text the part I'm having a problem with. !modattr --silent --name @{selected|character_name} --repeating_resource_$0_resource_right|-1 !modattr --silent --name @{selected|character_name} --repeating_resource_$6_resource_left|-1 !modattr --silent --name @{selected|character_name} --lvl?{what level spell slot?|1,1|2,2}_slots_expended|+1 /w "@{selected|character_name}" &{template:desc}{{desc= The following resources have been changed, these are their current numbers: **Level 1 Spell Slots** [[@{selected|lvl?{what level spell slot?|1,1|2,2}_slots_expended}+1]] **Channel Divinity** [[@{selected|repeating_resource_$0_resource_right}-1]] **Harness Divine Power** [[@{selected|repeating_resource_$6_resource_left}-1]]}} As you can see I am having trouble with that inline roll. I wanted it to ask what level spell they wanted to get back by repeating the question from this part " !modattr --silent --name @{selected|character_name} --lvl?{what level spell slot?|1,1|2,2}_slots_expended|+1" so it would just put in that value without prompting another question. but I guess inline rolls go through before the question prompt command does and it says that the attribute that I tried to roll doesn't exist. is there a way to do this? or do inline rolls prevent you from doing question prompts in them. (P.S. sorry if some of the terminology is wrong, I make macros all day, but I don't know the names for things really)