home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Nave / 30k_starfighter.swf / scripts / DefineSprite_38_helper / frame_1 / DoAction.as
Encoding:
Text File  |  2006-07-26  |  278 b   |  18 lines

  1. function helperGo()
  2. {
  3.    _Y = _Y + 4;
  4.    if(hitTest(_root.ship))
  5.    {
  6.       _root.ship.bonus += 50;
  7.       gotoAndPlay(2);
  8.    }
  9.    if(_Y >= 600)
  10.    {
  11.       this.removeMovieClip();
  12.    }
  13. }
  14. stop();
  15. lifeSpan = 25;
  16. process = "helperGo";
  17. this.onEnterFrame = helperGo;
  18.