So, I'm using tokenmod with keithcurtis's concentration script to track concentration and remind players to roll concentration checks. I also found an easy macro he made for adding and subtracting hp, but i noticed that using the macro to subtract hp does not trigger the concentration check mod. Is there something I can change to make sure the macro triggers the reminder, or are these two just not going to work together? the macro !token-mod --set bar1_value|?{Enter damage or healing amount. Use positive or negative to modify values|-0} the mod on('ready', () => { const TOKEN_CONCENTRATING_STATUS_MARKER = "status_" + "While_Concentrating::3742111"; on("change:graphic:bar1_value", function(obj, prev) { if (obj.get(TOKEN_CONCENTRATING_STATUS_MARKER)) { log ("status marker is " + obj.get(TOKEN_CONCENTRATING_STATUS_MARKER)); //let playerPage = Campaign().get("playerpageid"); //let tokenPage = obj.get("_pageid"); if (prev["bar1_value"] > obj.get("bar1_value")) { let final_conc_DC = 10; let calc_conc_DC = (prev["bar1_value"] - obj.get("bar1_value")) / 2; if (calc_conc_DC > final_conc_DC) { final_conc_DC = Math.floor(calc_conc_DC); } let tokenName = obj.get("name"); let theMessage = "/w gm &{template:npcaction} {{rname=Concentration Check "+tokenName+"}} {{name="+tokenName+"}} {{description=[DC " +final_conc_DC + " Constitution](~selected|constitution_save)"+ "
" +"}}"; sendChat("Concentration",theMessage ); } } }); });