I\'ve got it working now but with the time delay is there a better way because I want two different scripts to be working I want to have these playing in this order and have
The following script will load 4 sounds (sound_0.wav to sound_3.wav) and play them.
sounds = [] for i in range(4): sound = pygame.mixer.Sound('sound_%d.wav'%i) sound.play() sounds.append(sound)