home *** CD-ROM | disk | FTP | other *** search
- function playgame()
- {
- gotoAndPlay(23);
- }
- function resetlevel()
- {
- this.resetclip.resetclip.gotoAndPlay(2);
- storage.data.myhighscore = 0;
- yourhigh = 0;
- storage.flush();
- }
- function musicon()
- {
- this.options.on_off.gotoAndStop(1);
- musicstate = 1;
- storage.data.musicsetting = 1;
- playmusic();
- }
- function musicoff()
- {
- stopmusic();
- this.options.on_off.gotoAndStop(2);
- musicstate = 0;
- storage.data.musicsetting = 0;
- }
- _root.level = 1;
- delete state;
- _quality = "HIGH";
- if(level > 1)
- {
- playcont.gotoAndStop(2);
- }
- gameScene = "INTRO";
- playmusic();
- i = 0;
- while(i < 5)
- {
- this.flyingBlob_holder.attachMovie("flyingBlobs","fb" + i,i);
- i++;
- }
- i = 0;
- while(i < 5)
- {
- this.flyingBlob_holder2.attachMovie("flyingBlobs","fb" + i,i);
- i++;
- }
- if(musicstate == 0)
- {
- this.options.on_off.gotoAndStop(2);
- }
-