Can anyone give me an example script to make the event scheduler to play a random sample every 2 minutes? I would be very happy :-)
Inviato Fri 31 Jan 20 @ 5:35 pm
How many samples in your bank?
Inviato Fri 31 Jan 20 @ 5:40 pm
10 for the moment
Inviato Fri 31 Jan 20 @ 7:34 pm
does it have to be the event scheduler? It can't do random samples so it would be a script any way
try this on a button, this isn't really random either, but it might do
repeat_start_instant 'rsiRandSample' ? repeat_stop 'rsiRandSample' & repeat_stop 'rsiPlaySample' & set 'samplerDO' 0 : repeat_start_instant 'rsiRandSample' 77ms & sampler_select +1 & var 'samplerDO' 0 ? set 'samplerDO' 1 & repeat_start 'rsiPlaySample' 120000ms -1 & sampler_play
try this on a button, this isn't really random either, but it might do
repeat_start_instant 'rsiRandSample' ? repeat_stop 'rsiRandSample' & repeat_stop 'rsiPlaySample' & set 'samplerDO' 0 : repeat_start_instant 'rsiRandSample' 77ms & sampler_select +1 & var 'samplerDO' 0 ? set 'samplerDO' 1 & repeat_start 'rsiPlaySample' 120000ms -1 & sampler_play
Inviato Fri 31 Jan 20 @ 9:25 pm