home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Aventura / starisland.swf / scripts / DefineSprite_396_pad / frame_25 / DoAction.as
Encoding:
Text File  |  2007-12-10  |  440 b   |  15 lines

  1. stop();
  2. illusoft.Game.Instance.Thisscore = illusoft.Game.Instance.KilledEnemies * 30 + int(illusoft.Game.Instance.currentTile.GetTimeLeft() / 1000) * 10 + 250;
  3. var i = 0;
  4. this.onEnterFrame = function()
  5. {
  6.    this.txtScore.text = i;
  7.    i += 50;
  8.    if(i > illusoft.Game.Instance.Thisscore)
  9.    {
  10.       this.txtScore.text = illusoft.Game.Instance.Thisscore;
  11.       delete this.onEnterFrame;
  12.       this.gotoAndPlay("Total");
  13.    }
  14. };
  15.