home *** CD-ROM | disk | FTP | other *** search
- _root.jukebox.targetVol = 0;
- myProfile = SharedObject.getLocal("mindScapeProfile");
- myProfile.data.secretsFound = secretsFound;
- myProfile.data.medalsEarned = medalsEarned;
- myProfile.data.unblockedLevels = unlockedLevels;
- myProfile.data.url = "http://www.MINDistortion.net";
- myProfile.flush();
- removeMovieClip("hud");
- removeMovieClip("worldContainer");
- if(_root.lifes < 0)
- {
- _root.attachMovie("game_over","cine",1);
- stop();
- }
- else if(currLvl == 0)
- {
- _root.attachMovie("cine_1","cine",1);
- stop();
- }
- else if(currLvl == 4)
- {
- _root.attachMovie("cine_2","cine",1);
- stop();
- }
- else if(currLvl == 101)
- {
- _root.score += _root.bonusScore;
- _root.bonusScore = 0;
- _root.attachMovie("cine_3","cine",1);
- _root.unlockedLevels = 1;
- stop();
- }
- else if(currLvl == 102)
- {
- _root.score += _root.bonusScore;
- _root.bonusScore = 0;
- _root.attachMovie("cine_4","cine",1);
- _root.unlockedLevels = 2;
- stop();
- }
- else if(currLvl == 12)
- {
- _root.attachMovie("cine_5","cine",1);
- stop();
- }
- else if(currLvl == 103 && endSuccess)
- {
- _root.score += _root.bonusScore;
- _root.bonusScore = 0;
- _root.attachMovie("cine_6","cine",1);
- stop();
- }
- else if(currLvl == 103 && !endSuccess)
- {
- _root.attachMovie("cine_7","cine",1);
- stop();
- }
-