home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Acao / Titans / robin.swf / scripts / DefineSprite_329_bonus / frame_1 / DoAction.as
Encoding:
Text File  |  2006-01-05  |  318 b   |  19 lines

  1. xs = r.carspeed;
  2. onenterframe = function()
  3. {
  4.    _X = _X + xs;
  5.    if(hittest(s.z))
  6.    {
  7.       r.score += 10 * r.point;
  8.       r.zbonus.start();
  9.       r.energy = r.energymax;
  10.       r.bar.barfr.play();
  11.       this.removeMovieClip();
  12.    }
  13.    if(_X < -20)
  14.    {
  15.       this.removeMovieClip();
  16.    }
  17. };
  18. stop();
  19.