home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Aventura / MindScape.swf / scripts / frame_39 / DoAction_2.as next >
Encoding:
Text File  |  2007-12-04  |  551 b   |  28 lines

  1. worldContainer.world.startGame();
  2. if(currLvl <= 4)
  3. {
  4.    jukebox.playTrack("candy_meadows_1");
  5. }
  6. else if(currLvl == 101)
  7. {
  8.    jukebox.playTrack("candy_meadows_2");
  9. }
  10. else if(currLvl >= 5 && currLvl <= 8)
  11. {
  12.    jukebox.playTrack("clockwork_1");
  13. }
  14. else if(currLvl == 102)
  15. {
  16.    jukebox.playTrack("clockwork_2");
  17. }
  18. else if(currLvl >= 9 && currLvl <= 12)
  19. {
  20.    jukebox.playTrack("asylum_1");
  21. }
  22. else if(currLvl == 103)
  23. {
  24.    jukebox.playTrack("asylum_2");
  25. }
  26. removeMovieClip("loadingScreen");
  27. _root.jukebox.targetVol = _root.musicVol;
  28.