home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Aventura / lightsprites.swf / scripts / DefineSprite_1168 / frame_3 / DoAction.as
Encoding:
Text File  |  2007-09-27  |  426 b   |  21 lines

  1. if(_global.gameDifficulty == 1)
  2. {
  3.    this.coming_txt.text = "200 Targets Coming Up!";
  4. }
  5. else if(_global.gameDifficulty == 2)
  6. {
  7.    this.coming_txt.text = "300 Targets Coming Up!";
  8. }
  9. else if(_global.gameDifficulty == 3)
  10. {
  11.    this.coming_txt.text = "400 Targets Coming Up!";
  12. }
  13. else if(_global.gameDifficulty == 5)
  14. {
  15.    this.coming_txt.text = "400 Targets Coming Up!";
  16. }
  17. else
  18. {
  19.    this.coming_txt.text = "";
  20. }
  21.