home *** CD-ROM | disk | FTP | other *** search
/ תקליטור אוסף מעל 200 משחקים מרתקים / over-200-games-micro-a-media.iso / CONNECTD / SHARED.DIR / 01040_Loin.ls < prev    next >
Encoding:
Text File  |  1996-01-12  |  595 b   |  22 lines

  1. on mouseUp
  2.   global seton, atFish5a, invOn, invCurs, invMask
  3.   if seton = 0 then
  4.     if atFish5a = 1 then
  5.       if not (invCurs = (the castNum of sprite the clickOn + 1)) then
  6.         cursor([the castNum of sprite the clickOn + 1, the castNum of sprite the clickOn + 2])
  7.         updateStage()
  8.         set invCurs to the castNum of sprite the clickOn + 1
  9.         set invMask to the castNum of sprite the clickOn + 2
  10.         set invOn to 1
  11.       else
  12.         cursor(0)
  13.         updateStage()
  14.         set invCurs to 0
  15.         set invOn to 0
  16.       end if
  17.     else
  18.       Bri()
  19.     end if
  20.   end if
  21. end
  22.