Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×

Turn Clock Script

So i am trying to use the turn clock script and it seems to work except it will not play the sound.   I am trying to figure out what the name of the jukebox sounds need to be so it will synch up with the script.  I am sure its plain as day but I do not know enough about coding to just pick out the name from the other stuff.  Now the code says -  async function ClockRun(time, message){ if (time <= 0){ return; } sendChat("TurnClock", "!Sound: Ticking Clock"); _.each(message.selected,function (o) { getObj(o._type,o._id).set("status_stopwatch", time); }); for (time; time >0; time --){ await sleep(1000); _.each(message.selected,function (o) { getObj(o._type,o._id).set("status_stopwatch", (time - 1)); });} _.each(message.selected,function (o) { getObj(o._type,o._id).set("status_stopwatch", false); }); sendChat("TurnClock", "!Sound: Buzzer"); }
Heya, I just tried to make sure it was working. The sounds in your jukebox should be named: Sound: Ticking Clock and Sound: Buzzer However, to make sure they will play (sometimes the jukebox tracks stop working), try just playing them from the jukebox once each. I should've commented it better, but to be fair, I didn't actually submit it, a friend of mine did on my behalf.