home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Aventura / superman.swf / scripts / frame_105 / DoAction.as
Encoding:
Text File  |  2006-06-07  |  360 b   |  19 lines

  1. if(facing == 0)
  2. {
  3.    MC_gameboard.MC_player.gotoAndStop(1);
  4. }
  5. else
  6. {
  7.    MC_gameboard.MC_player.gotoAndStop(56);
  8. }
  9. a = 0;
  10. while(a < 17)
  11. {
  12.    tmpframe = eval("MC_gameboard.MC_meteors.MC_meteor" add a)._currentframe;
  13.    if(tmpframe == 2 || tmpframe == 3)
  14.    {
  15.       eval("MC_gameboard.MC_meteors.MC_meteor" add a).gotoAndPlay(7);
  16.    }
  17.    a++;
  18. }
  19.