home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / DomonicDefence4.swf / scripts / DefineButton2_1520 / BUTTONCONDACTION on(release).as next >
Encoding:
Text File  |  2005-09-27  |  333 b   |  17 lines

  1. on(release){
  2.    if(_root.money >= 20000 && _root.autoSaveOn != true)
  3.    {
  4.       _root.money -= 20000;
  5.       messyHah._visible = true;
  6.       _root.autoSaveOn = true;
  7.    }
  8.    else if(_root.autoSaveOn == true)
  9.    {
  10.       messo = "You already have auto-save!";
  11.    }
  12.    else
  13.    {
  14.       messo = "Not Enough Money!";
  15.    }
  16. }
  17.