home *** CD-ROM | disk | FTP | other *** search
/ 321 GAMES / 321GAMES.iso / logic / runes / runes.exe / runes.DXR / 00110.ls < prev    next >
Encoding:
Text File  |  1996-07-01  |  505 b   |  23 lines

  1. on mouseUp
  2.   global SOLUTIONFLAG, UPG, PUZZ
  3.   if (UPG = 0) and (PUZZ > 3) and (SOLUTIONFLAG = 0) then
  4.     go("RVONLY")
  5.   end if
  6.   if (UPG = 0) and (PUZZ > 3) and (SOLUTIONFLAG = 0) then
  7.     exit
  8.   end if
  9.   if SOLUTIONFLAG = 1 then
  10.     exit
  11.   end if
  12.   if (the key = "r") or (the key = "R") or (the key = "N") or (the key = "n") then
  13.     exit
  14.   end if
  15.   if (the key = "Q") or (the key = "q") then
  16.     exit
  17.   end if
  18.   set SOLUTIONFLAG to 1
  19.   set the keyUpScript to "EEMPTY"
  20.   dontPassEvent()
  21.   go("NEW")
  22. end
  23.