home *** CD-ROM | disk | FTP | other *** search
/ Seeker / Seeker.iso / files_w / minka_c.dir / 00103.ls < prev    next >
Encoding:
Text File  |  1994-12-03  |  489 b   |  24 lines

  1. on mouseDown
  2.   global getpoints, getpieces
  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(getpieces, 6) then
  8.     puppetSprite(20, 1)
  9.   end if
  10.   if getAt(getpoints, 2) and getAt(getpoints, 3) then
  11.     if getAt(getpoints, 4) and getAt(getpoints, 5) then
  12.       if getAt(getpoints, 6) then
  13.         go("scene2_4")
  14.       else
  15.         go("scene2_3")
  16.       end if
  17.     else
  18.       go("scene2_2")
  19.     end if
  20.   else
  21.     go("scene2_1")
  22.   end if
  23. end
  24.