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

  1. on mouseUp
  2.   global SOND, TSOND
  3.   if SOND = 1 then
  4.     set TSOND to 0
  5.   end if
  6.   if SOND = 0 then
  7.     set TSOND to 1
  8.   end if
  9.   set SOND to TSOND
  10.   if SOND = 1 then
  11.     go("SNDOFF")
  12.   end if
  13.   if SOND = 0 then
  14.     go("SNDON")
  15.   end if
  16. end
  17.