This barebones initiative tracker script simply puts a green dot on the token at the top of the order... ignoring any custom items added to the tracker. When you clear initiative, it removes the green dot. If you want to use something other than the green dot... change status_green to something else. on("change:campaign:turnorder", function(current, previous) {     var CurrentTO = JSON.parse(current.get("turnorder"));     var PreviousTO = JSON.parse(previous["turnorder"]);     if (CurrentTO.length === 0 && PreviousTO[0].id != -1) getObj("graphic", PreviousTO[0].id).set("status_green", false);     if (CurrentTO.length > 0 && CurrentTO[0].id != -1) getObj("graphic", CurrentTO[0].id).set("status_green", true);     if (PreviousTO.length > 0 && PreviousTO[0].id != -1) getObj("graphic", PreviousTO[0].id).set("status_green", false); });