home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / rocketcar2.swf / scripts / DefineSprite_23_Mball / frame_1 / DoAction.as
Encoding:
Text File  |  2008-09-24  |  199 b   |  13 lines

  1. if(rot == undefined)
  2. {
  3.    rot = random(40);
  4. }
  5. _X = _X + random(10);
  6. _Y = _Y - random(10);
  7. _rotation = _rotation + rot;
  8. _alpha = _alpha - 10;
  9. if(_alpha < 0)
  10. {
  11.    this.removeMovieClip();
  12. }
  13.