home *** CD-ROM | disk | FTP | other *** search
/ תקליטור אוסף מעל 200 משחקים מרתקים / over-200-games-micro-a-media.iso / CONNECTD / 05DD.DXR / 00001.ls next >
Encoding:
Text File  |  1996-01-12  |  1.5 KB  |  78 lines

  1. on startMovie
  2.   set the exitLock to 1
  3.   set the keyDownScript to "doCommandKey"
  4. end
  5.  
  6. on doCommandKey
  7.   if (the commandDown and (the keyCode = 47)) or (the keyCode = 53) then
  8.     nothing()
  9.   end if
  10. end
  11.  
  12. on setSpecial1
  13.   global special, matches5d, matchCount5d
  14.   set special to 1
  15.   repeat with x = 4 to 18
  16.     puppetSprite(x, 1)
  17.   end repeat
  18.   repeat with x = 1 to 15
  19.     if item x of matches5d = 0 then
  20.       set the castNum of sprite (x + 3) to the number of cast ("match" & x)
  21.       next repeat
  22.     end if
  23.     set the castNum of sprite (x + 3) to the number of cast "doto"
  24.   end repeat
  25. end
  26.  
  27. on killSpecial1
  28.   global special
  29.   set special to 0
  30.   repeat with x = 4 to 18
  31.     puppetSprite(x, 0)
  32.   end repeat
  33. end
  34.  
  35. on setSpecial2
  36.   global special
  37.   cursor(4)
  38.   set special to 2
  39.   repeat with x = 3 to 28
  40.     puppetSprite(x, 1)
  41.   end repeat
  42.   repeat with x = 1 to 26
  43.     set the castNum of sprite (x + 2) to the number of cast ("tablet" & x)
  44.   end repeat
  45.   cursor(0)
  46. end
  47.  
  48. on killSpecial2
  49.   global special
  50.   set special to 0
  51.   repeat with x = 3 to 28
  52.     puppetSprite(x, 0)
  53.   end repeat
  54. end
  55.  
  56. on setSpecial3
  57.   global special, matches5d
  58.   set special to 3
  59.   repeat with x = 4 to 18
  60.     puppetSprite(x, 1)
  61.   end repeat
  62.   repeat with x = 1 to 15
  63.     if item x of matches5d = 0 then
  64.       set the castNum of sprite (x + 3) to the number of cast ("matchwide" & x)
  65.       next repeat
  66.     end if
  67.     set the castNum of sprite (x + 3) to the number of cast "doto"
  68.   end repeat
  69. end
  70.  
  71. on killSpecial3
  72.   global special
  73.   set special to 0
  74.   repeat with x = 4 to 18
  75.     puppetSprite(x, 0)
  76.   end repeat
  77. end
  78.