Hi All, Just looking for some help to tidy up a Bardic Inspiration macro. I currently have a macro which, when used, will deduct 1 from a class resource: !modbattr --silent --sel --class_resource|-1 !token-mod --set statusmarkers|BARD-png /em Buster &{template:atk} {{desc=**Uses Bardic Inspiration** }} This allows the Bard to track his usage between rests and works well. The only problem is he is not able to select a character and cast it on them, and it puts the BARD symbol on his character. So I dug a little deeper (read: scrounged forum for macro) and came up with this: !modbattr --silent --sel --class_resource|-1 !token-mod --set statusmarkers|BARD-png --ids @{target|token_id} /em Buster &{template:atk} {{desc=**Uses Bardic Inspiration** on @{target|token_name} }} This macro allows the Bard to select a character token and run the macro. It will place the BARD symbol on the selected character and post the message however it does not track usage and generates an error message: (From ChatSetAttr): Errors No target characters. You need to supply one of --all, --allgm, --sel, --allplayers, --charid, or --name. I'm guessing it's an error somewhere around distinguishing between the caster and the target. (my knowledge on such stuff is extremely limited!). Is it possible to combine these two macros in a way that both functions are completed?