home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / escape.swf / scripts / frame_11 / DoAction.as
Encoding:
Text File  |  2005-08-23  |  315 b   |  16 lines

  1. this.stop();
  2. over_cnt = 18;
  3. _global.over = 1;
  4. mySound.stop();
  5. this.onEnterFrame = function()
  6. {
  7.    _root.chara01.gotoAndStop("damage");
  8.    _root.chara02.gotoAndStop("damage");
  9.    _root.chara03.gotoAndStop("damage");
  10.    over_cnt -= 1;
  11.    if(over_cnt < 0)
  12.    {
  13.       _root.gotoAndStop("start");
  14.    }
  15. };
  16.