home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Esportes / PongTable.swf / scripts / DefineSprite_199 / frame_39 / DoAction.as
Encoding:
Text File  |  2005-08-04  |  424 b   |  21 lines

  1. _root.state0 = 2;
  2. _root.ydir = 1;
  3. _root.ball._x = _root.enmy._x;
  4. _root.ball._y = _root.enmy._y;
  5. _root.pw2 = random(3) + 25;
  6. _root.ypw = _root.pw2;
  7. if(_root.enmy._x >= 0 && 200 >= _root.enmy._x)
  8. {
  9.    _root.xdir = 0;
  10.    _root.xpw = random(11) + 1;
  11. }
  12. if(_root.enmy._x >= 201 && 400 >= _root.enmy._x)
  13. {
  14.    _root.xdir = 1;
  15.    _root.xpw = random(11) + 1;
  16. }
  17. tellTarget(_root.ball)
  18. {
  19.    gotoAndStop("atball");
  20. }
  21.