home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Puzzle / mirrored_maze2.swf / scripts / frame_2 / DoAction.as
Text File  |  2008-09-04  |  519b  |  36 lines

  1. game = SharedObject.getLocal("mydata");
  2. if(game.data.checkpoint == undefined)
  3. {
  4.    _root.check = 0;
  5. }
  6. else
  7. {
  8.    _root.check = game.data.checkpoint;
  9. }
  10. stop();
  11. if(game.data.bonus1 == undefined)
  12. {
  13.    _root.bonus1 = 0;
  14. }
  15. else
  16. {
  17.    _root.bonus1 = game.data.bonus1;
  18. }
  19. if(game.data.bonus3 == undefined)
  20. {
  21.    _root.bonus3 = 0;
  22. }
  23. else
  24. {
  25.    _root.bonus3 = game.data.bonus3;
  26. }
  27. if(game.data.bonus2 == undefined)
  28. {
  29.    _root.bonus2 = 0;
  30. }
  31. else
  32. {
  33.    _root.bonus2 = game.data.bonus2;
  34. }
  35. Mouse.hide();
  36.