home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / tunnelrush.swf / scripts / DefineSprite_111 / frame_2 / DoAction.as
Encoding:
Text File  |  2007-03-12  |  188 b   |  14 lines

  1. stop();
  2. onEnterFrame = function()
  3. {
  4.    if(Ec < 20)
  5.    {
  6.       attachMovie("Explosion","E" + Ec,Ec);
  7.    }
  8.    Ec++;
  9.    if(Ec > 70)
  10.    {
  11.       _root.gotoAndPlay("dead");
  12.    }
  13. };
  14.