I'm trying to make a chat box menu that lets me fire off effects and status changes based off spell level changing number of targets. For spells with no saves I think I have it figured out, once queries for saves come into play, i'm stumped. I know there is the HTML issue for nested Queries and I think I have addressed that... maybe. I'll share what I've got so far. I have NO training in this stuff. All I know I learned through Nick Olivo's youtube channel, Several of Keithcurtis's posts here, google and stubborness... so... it's probably ugly as sin, but it's what I've got. the working script with no queries is &{template:default} {{name=Beacon of Hope}}{{When you are ready choose the number of affected creatures, then designate your targets}} {{[1](!
/fx glow-holy @{target|Target1|token_id} 
!token-mod --set statusmarkers|+Courage::1748637 --ids @{target|Target1|token_id} --ignore-selected)[2](!
/fx glow-holy @{target|Target1|token_id} 
!token-mod --set statusmarkers|+Courage::1748637 --ids @{target|Target1|token_id} --ignore-selected 
 
/fx glow-holy @{target|Target2|token_id} 
!token-mod --set statusmarkers|+Courage::1748637 --ids @{target|Target2|token_id} --ignore-selected)[Play sound](SYRINSCAPE LINK)}} !token-mod --set statusmarkers|+blue What I am tinkering with is this... &{template:default} {{name=Animal Friendship}}{{When you are ready choose the spell level, then designate your targets}} {{[1](!
/fx sparkle-charm @{target|Target1|token_id} 
!token-mod ?{Did Target 1 Fail|Yes, --set statusmarkers#Charmed::1748634|No} --ids @{target|Target1|token_id} --ignore-selected)[2](!
/fx sparkle-charm @{target|Target1|token_id} 
!token-mod ?{Did Target 1 Fail|Yes, --set statusmarkers#Charmed::1748634|No} --ids @{target|Target1|token_id} --ignore-selected 
 
/fx sparkle-charm --ids @{target|Target2|token_id} 
!token-mod ?{Did Target 2 Fail|Yes, --set statusmarkers#Charmed::1748634|No} --ids @{target|Target2|token_id} --ignore-selected)[Play sound](SYRINSCAPE LINK)}} For 1 target it works just fine... It won't fire for 2 though. Google and reading several of Keith's posts in here has gotten me this far, But I can't find the next step for the life of me. Honestly he probably answered it in one of the pages I read, and it was just above my head and i didn't even realize it. Would anyone know if this is possible/ where i'm messing up?