home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Corrida / KoreKarts.swf / scripts / frame_168 / DoAction.as
Encoding:
Text File  |  2001-07-07  |  960 b   |  35 lines

  1. setProperty("_root.stat_car1speed.bar2", _width, 1);
  2. stat_car1speed = 0;
  3. setProperty("_root.stat_car1health.bar2", _width, 1);
  4. stat_car1health = 100;
  5. setProperty("_root.stat_car2speed.bar2", _width, 1);
  6. stat_car2speed = 0;
  7. setProperty("_root.stat_car2health.bar2", _width, 1);
  8. stat_car2health = 100;
  9. stat_comphealth = 50;
  10. timer = 0;
  11. if(car1play == false)
  12. {
  13.    setProperty("_root.car", _visible, false);
  14.    car1dead = 1;
  15.    setProperty("_root.car", _X, "-100");
  16. }
  17. if(car2play == false)
  18. {
  19.    setProperty("_root.car2", _visible, false);
  20.    car2dead = 1;
  21.    setProperty("_root.car2", _X, "-200");
  22. }
  23. if(compplay == false)
  24. {
  25.    setProperty("_root.comp1path", _visible, false);
  26.    compdead = 1;
  27.    setProperty("_root.comp1path", _X, "-1000");
  28.    setProperty("_root.comp1path", _Y, "-1000");
  29. }
  30. if(damage == false)
  31. {
  32.    setProperty("_root.stat_car1health", _visible, false);
  33.    setProperty("_root.stat_car2health", _visible, false);
  34. }
  35.