Randomized cum cowntdown (1 Viewer)

booster

Avid Affiliate
Joined
Sep 19, 2011
I need your help friends. Is there a way to play audio files in pre definded, yet partly randomized order?

i.e. for a handjob scenario:
-first play "ten.mp3"
-then play one of the following: ["I will make you cum in 10 seconds.mp3" "Are you ready to cum.mp3" "Time for the finale.mp3"]
-then play "nine.mp3"
-then play one of the following: ["I'm really looking forward to it.mp3" "It'll be great.mp3" "how much cum will you give me?"]
-then play "eight.mp3"
-then play one of the following...

I am looking for a solution for this in general, not for SDT. But I'm asking here because here we can talk freely about this kinda topic ;)
 

Faceless

Content Creator
Joined
Jun 12, 2011
Sure, it's possible. Here's a quick pseudocode showing how you might go about it.
Code:
File[] countMP3 = new File[10];
File[][] randomLineMP3 = new File[10][3];

for(int count = 10; count > 0; count--) {
  play(countMP3[count]);
  play(randomLineMP3[count][Math.random(3)]);
}
Obviously you'd need to actually implement the play() function, as well as populate the File arrays with references to your audio files.
 

Faceless

Content Creator
Joined
Jun 12, 2011
B booster My specific example should be Java compatible (I haven't actually checked), but pretty much any C-based language (which syntactically does include ActionScript) would be similar. You'd just have to make sure to use the appropriate class for referencing files.
 

Users who are viewing this thread

Top


Are you 18 or older?

This website requires you to be 18 years of age or older. Please verify your age to view the content, or click Exit to leave.