Combined Code
frame 1 {
_root.createEmptyMovieClip('Glop', 1);
_root.createEmptyMovieClip('Glop2', 2);
_root.createEmptyMovieClip('Valkyr', 3);
}
frame 2 {
soundPlay3 = new Sound(Glop);
max3 = 19;
min3 = 1;
rand3 = Math.round(Math.random() * (max3 - min3)) + min3;
soundPlay3.attachSound('~C4 - Pussyslime' + rand3 + '.mp3');
soundPlay3.setVolume(30);
soundPlay3.start(0, 1);
}
frame 7 {
soundPlay1 = new Sound(Glop);
max1 = 120;
min1 = 1;
rand1 = Math.round(Math.random() * (max1 - min1)) + min1;
soundPlay1.attachSound('Recieve_' + rand1 + '.mp3');
soundPlay1.setVolume(50);
soundPlay1.start(0, 1);
}
frame 31 {
soundPlay2 = new Sound(Glop2);
max2 = 10;
min2 = 2;
rand2 = Math.round(Math.random() * (max2 - min2)) + min2;
soundPlay2.attachSound('Jupu (' + rand2 + ').wav');
soundPlay2.setVolume(20);
soundPlay2.start(0, 1);
}
frame 32 {
gotoAndPlay(1);
}