home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / MantAirBall.swf / scripts / frame_17 / DoAction.as
Encoding:
Text File  |  2005-08-05  |  426 b   |  20 lines

  1. gravity = 20;
  2. thrust = 0;
  3. if(_root.scored == 1 && _root.ball.scoredistance > 450)
  4. {
  5.    _root.scored = 0;
  6.    score += 100;
  7.    _root.inbasket = 0;
  8. }
  9. if(_root.scored == 1 && _root.ball.scoredistance <= 450 && _root.ball.scoredistance > 250)
  10. {
  11.    _root.scored = 0;
  12.    score += 25;
  13.    _root.inbasket = 0;
  14. }
  15. if(_root.scored == 1 && _root.ball.scoredistance <= 400)
  16. {
  17.    _root.scored = 0;
  18.    _root.inbasket = 0;
  19. }
  20.