
I have created the following test script function DoSomething(){ sendChat('Crawler','DoSomething triggered'); } on("change:campaign:turnorder", function(obj){ sendChat('Crawler','on event triggered'); DoSomething(); }); When I add tokens manually to the turnorder and click to advance turn for the first time, my on Change Event fires twice. Then when I further adavance the turn, it fires once. Why does it fire twice the first time and what can I do to prevent this. I would like DoSomething to fire only when I click on the button to advance the turn.