hello, I have this problem, and need some help. I have AlterBars v2.0.5 and it works fine but when i tried to use add the following code  " var CONFIG = [     {barId: 1, barRatio: .5, status: "redmarker", whenLow: true},     {barId: 1, barRatio: 0, status: "dead", whenLow: true}]; on("change:token", function(obj) {     CONFIG.forEach(function(opts) {         var maxValue = parseInt(obj.get("bar" + opts.barId + "_max"));         var curValue = parseInt(obj.get("bar" + opts.barId + "_value"));         log(opts.barId + ": " + curValue + "/" + maxValue);              log("-------");              if (!isNaN(maxValue) && !isNaN(curValue)) {             var markerName = "status_" + opts.status;             if (curValue <= (maxValue * opts.barRatio)) {                 obj.set(markerName, opts.whenLow);             }             else {                 obj.set(markerName, !opts.whenLow);             }         }     }); }); " It is the basic token status from the wiki. The "Token Status Manager" wont work if i use an alerbarr comand like : !alter --target|@{selected|token_id} --bar|1 --amount|-?{Damage Taken|0} but if i manualy alter the HP (1st bar) the status will change. The only scripts i am using is:  AlterBars v2.0.5 and the custom wiki above script. (i have more but i disabled them to test) thank you!