home *** CD-ROM | disk | FTP | other *** search
/ Seeker / Seeker.iso / files_w / bar.dir / 00087.ls < prev    next >
Encoding:
Text File  |  1994-12-03  |  752 b   |  37 lines

  1. on mouseDown
  2.   global getpoints, masterrunning, nearmiss
  3.   repeat with i = 1 to 37
  4.     set the cursor of sprite i to 0
  5.   end repeat
  6.   cursor(200)
  7.   if getAt(getpoints, 2) and getAt(getpoints, 3) then
  8.     if getAt(getpoints, 4) and getAt(getpoints, 5) then
  9.       if getAt(getpoints, 6) then
  10.         go("scene2_4")
  11.       else
  12.         go("scene2_3")
  13.       end if
  14.     else
  15.       if nearmiss then
  16.         if getAt(getpoints, 4) then
  17.           go("scene2_2*")
  18.         else
  19.           go("scene2_2")
  20.         end if
  21.       else
  22.         if getAt(getpoints, 4) then
  23.           go("K2_2")
  24.         else
  25.           go("K2_1")
  26.         end if
  27.       end if
  28.     end if
  29.   else
  30.     if masterrunning then
  31.       go("scene2_1")
  32.     else
  33.       go("M1_1")
  34.     end if
  35.   end if
  36. end
  37.