Hi again, the following code seems to only play the second song on every start of the game (the Story of Light one). I have started the game like twenty times, and each time it only plays the second the song. Am I doing something wrong with the code? Or is William Orbit lucky? This is the only code where I use media_loop in the game and I run it in the main function.

Code:
music_number = integer(random(2.99));
   if (music_number == 0) media_loop("Café Del Mar Digby Jones  Pina Colada (Jazz Mix).-.3astUpRoaR.mp3",NULL,100);	
   if (music_number == 1) media_loop("Café Del Mar William Orbit  The Story of Light.-.3astUpRoaR.mp3",NULL,100);	
   if (music_number == 2) media_loop("Café Del Mar Afterlife  Dub Ya Mind.-.3astUpRoaR.mp3",NULL,100);



Thanks for taking the time.