home *** CD-ROM | disk | FTP | other *** search
- _root.game.checkpoint_1a_01.onEnterFrame = function()
- {
- if(this.hitTest(_root.game.player))
- {
- _root.overlay.gotoAndPlay("wrongway");
- }
- };
- _root.game.checkpoint_1a_02.onEnterFrame = function()
- {
- if(this.hitTest(_root.game.player))
- {
- _root.overlay.gotoAndPlay("glidedown");
- }
- };
- _root.game.checkpoint_1a_03.onEnterFrame = function()
- {
- if(this.hitTest(_root.game.player))
- {
- _root.overlay.gotoAndPlay("glidedown");
- }
- };
- _root.game.checkpoint_1a_04.onEnterFrame = function()
- {
- if(this.hitTest(_root.game.player))
- {
- _root.fadeout.play();
- }
- };
- _root.game.level.pit.onEnterFrame = function()
- {
- if(this.hitTest(_root.game.player))
- {
- _root.overlay.gotoAndPlay("gameover");
- _root.fadeout.play();
- }
- };
-