
Im running DnD 5e and have a monster that regenerates 10 HP if they are below half HP. I'm using the OnMyTurn API script to add the HP through tokenmod automatically. Right now for the OnMyTurm ability I have below: !token-mod --api-as -<MYDM#> --ids @{selected|character_id} --set bar3_value|+10 This works except it adds 10 HP at at the start of each of the monsters turns. I tried to create a query as below ?{Half HP?|Yes,!token-mod --api-as <MYDM#> --ids @{selected|character_id} --set bar3_value&#124;+10 | No, } This fails and pipes the text of the command into chat. What am I doing wrong?