home *** CD-ROM | disk | FTP | other *** search
- if(_root.levelnumber == 1)
- {
- stop();
- _root.havelaser = true;
- _root.ship.powerup.gotoAndPlay("laser");
- _root.display.lasertext.gotoAndPlay("laser");
- _root.havelaser = true;
- _root.ship.shiptype.gotoAndStop("yeslaser");
- _root.displaytextplaying = true;
- }
- else if(_root.levelnumber == 2)
- {
- stop();
- if(_root.difficulty == "easy")
- {
- _root.protectorlevel = 2;
- _root.ship.protector.gotoAndStop("protector");
- }
- else if(_root.difficulty == "expert")
- {
- _root.protectorlevel = 1;
- _root.ship.protector.gotoAndStop("protector");
- }
- _root.havelaser = true;
- _root.ship.shiptype.gotoAndStop("yeslaser");
- _root.display.lasertext.gotoAndPlay("protector");
- _root.ship.powerup.gotoAndPlay("laser");
- _root.displaytextplaying = true;
- }
-