
Wondering if its possible to use a self-made token marker pack's icon in a script. I want to replace the bleeding eye status with a token market called 'downed' in my custom pack, but i cant seem to get it to function, but it works with all the default markers if(ShowDead === true) {
if(curValue > 0) obj.set('status_bleeding-eye', false);
else if(curValue < 1) {
var DeadSounds = state.HealthColors.auraDeadFX;
if(DeadSounds !== "None" && curValue != prevValue) PlayDeath(DeadSounds);
obj.set('status_bleeding-eye', true);
SetAuraNone(obj);
}
}
}