home *** CD-ROM | disk | FTP | other *** search
/ Media Gallery 1995 June / MG6.ISO / mg.dig / 00039.ls < prev    next >
Encoding:
Text File  |  1995-04-20  |  2.1 KB  |  68 lines

  1. on mouseDown
  2.   set fertig to 0
  3.   set orisprite to the clickOn
  4.   set clipcast to the castNum of sprite 37
  5.   set cliph to the locH of sprite 37
  6.   set clipv to the locV of sprite 37
  7.   set the castNum of sprite 37 to the castNum of sprite the clickOn
  8.   posfreien(the locH of sprite the clickOn, the locV of sprite the clickOn)
  9.   set the locH of sprite 37 to the locH of sprite the clickOn
  10.   set the locV of sprite 37 to the locV of sprite the clickOn
  11.   set the locV of sprite the clickOn to 1000
  12.   set oldv to the mouseV
  13.   set oldh to the mouseH
  14.   repeat while the mouseDown
  15.     set newv to the mouseV
  16.     set newh to the mouseH
  17.     set newlocv to the locV of sprite 37 + (newv - oldv)
  18.     set newloch to the locH of sprite 37 + (newh - oldh)
  19.     if newloch < 280 then
  20.       set newloch to 280
  21.     else
  22.       if newloch > 600 then
  23.         set newloch to 600
  24.       else
  25.         set oldh to newh
  26.       end if
  27.     end if
  28.     if newlocv < 90 then
  29.       set newlocv to 90
  30.     else
  31.       if newlocv > 390 then
  32.         set newlocv to 390
  33.       else
  34.         set oldv to newv
  35.       end if
  36.     end if
  37.     set the locH of sprite 37 to newloch
  38.     set the locV of sprite 37 to newlocv
  39.     updateStage()
  40.   end repeat
  41.   if (the locH of sprite 37 > 320) and (the locH of sprite 37 < 560) and (the locV of sprite 37 > 120) and (the locV of sprite 37 < 360) then
  42.     set puzh to (the locH of sprite 37 / 80 * 80) + 40
  43.     set puzv to (the locV of sprite 37 / 60 * 60) + 30
  44.     if platzfrei(puzh, puzv) then
  45.       set the locH of sprite orisprite to puzh
  46.       set the locV of sprite orisprite to puzv
  47.       besetzen(puzh, puzv, orisprite)
  48.       nachhin(orisprite)
  49.       set fertig to loesung()
  50.     else
  51.       set the locH of sprite orisprite to the locH of sprite 37
  52.       set the locV of sprite orisprite to the locV of sprite 37
  53.       nachvorn(orisprite)
  54.     end if
  55.   else
  56.     set the locH of sprite orisprite to the locH of sprite 37
  57.     set the locV of sprite orisprite to the locV of sprite 37
  58.     nachvorn(orisprite)
  59.   end if
  60.   set the castNum of sprite 37 to clipcast
  61.   set the locH of sprite 37 to cliph
  62.   set the locV of sprite 37 to clipv
  63.   updateStage()
  64.   if fertig then
  65.     go(the frame + 2)
  66.   end if
  67. end
  68.