home *** CD-ROM | disk | FTP | other *** search
- stop();
- _quality = "high";
- if(_root.difficulty == "easy")
- {
- _root.display.bombs = _root.numberofbombs * 3;
- _root.display.time = int(1000 / _root.time) * 3;
- _root.display.health = "+" + _root.shipshield * 3 + " Shield Bonus";
- _root.totalscore += int(_root.numberofbombs * 3 + int(1000 / _root.time) * 3 + _root.shipshield * 3);
- }
- if(_root.difficulty == "expert")
- {
- _root.display.bombs = _root.numberofbombs * 5;
- _root.display.time = int(1000 / _root.time) * 5;
- _root.display.health = "+" + _root.shipshield * 5 + " Shield Bonus";
- _root.totalscore += int(_root.numberofbombs * 5 + int(1000 / _root.time) * 5 + _root.shipshield * 5);
- }
- _root.display.totalscore = int(_root.totalscore);
- _root.status.score = int(_root.totalscore);
- _root.changelevels = true;
-