I have configured the statusmanager script to automatically add a few markers when the token bar values reack certain limits. var statusManager = statusManager || {}; statusManager.CONFIG = [ {barId: 2, barRatio: 0.75, status: 'blue', whenLow: false, exact: false}, {barId: 1, barRatio: 0, status: 'sleepy', whenLow: true, exact: true}, {barId: 1, barRatio: 3, status: 'red', whenLow: true, exact: true}, {barId: 3, barRatio: 1, status: 'skull', whenLow: false, exact: false}]; What i would like to be able to do is when the red ststus marker is appied for it to have a value of 3 to remind me and the players that they are now at -3 to their actions. I know i could set the value using the Token-Mod script, but was wondering if anyone has managed to do this from the statusManager script. I have tried the following: {barId: 1, barRatio: 3, status: 'red:3', whenLow: true, exact: true}, {barId: 1, barRatio: 3, status: 'red%3', whenLow: true, exact: true}, {barId: 1, barRatio: 3, status: 'red#3', whenLow: true, exact: true}, {barId: 1, barRatio: 3, status: 'red@3', whenLow: true, exact: true}, {barId: 1, barRatio: 3, status: 'red 3', whenLow: true, exact: true}, {barId: 1, barRatio: 3, status: 'red;3', whenLow: true, exact: true}, None of which work nor did | \ ? / ~ {barId: 1, barRatio: 3, status: 'red,2', whenLow: true, exact: true}, Had an interesting effect that each time the change was called it added another red status marker, so that there was two red circles , then three... interesting, but not what i was after. In fact depending on what was after the comma a variety of unexpected effects occured. Not recommended. So after much testing, I am of the opinion that you can not set a value to the marker, or I am missing something. Can anyone assist in how I could ammend the script to achieve what i want? (whole script given below. var statusManager = statusManager || {}; statusManager.CONFIG = [ {barId: 2, barRatio: 0.75, status: 'blue', whenLow: false, exact: false}, {barId: 1, barRatio: 0, status: 'sleepy', whenLow: true, exact: true}, {barId: 1, barRatio: 3, status: 'red:-3', whenLow: true, exact: true}, {barId: 3, barRatio: 1, status: 'skull', whenLow: false, exact: false}]; on('change:token', function(obj) { statusManager.CONFIG.forEach(function(opts) { var maxValue = parseInt(obj.get('bar' + opts.barId + '_max')); var curValue = parseInt(obj.get('bar' + opts.barId + '_value')); var markerName = 'status_' + opts.status; if(curValue != NaN) { if(opts.exact) { obj.set(markerName, opts.whenLow && (curValue <= opts.barRatio)); } else if (maxValue != NaN) { if (opts.whenLow) { obj.set(markerName, (curValue <= (maxValue * opts.barRatio))); } else { obj.set(markerName, (curValue > (maxValue * opts.barRatio))); } } } }); });