home *** CD-ROM | disk | FTP | other *** search
/ Internet 1996 World Exposition / park.org.s3.amazonaws.com.7z / park.org.s3.amazonaws.com / Japan / Panasonic- / funcity / tokyo / slot.dcr / 00068.ls < prev    next >
Encoding:
Text File  |  2017-09-21  |  1.0 KB  |  37 lines

  1. on checkstart
  2.   global gbet
  3.   if gbet <> 0 then
  4.     if (the mouseH > 321) and (the mouseH < 338) and (the mouseV > 67) and (the mouseV < 84) then
  5.       set the visible of sprite 12 to 1
  6.       set the visible of sprite 13 to 1
  7.       set the puppet of sprite 13 to 1
  8.       repeat while stillDown()
  9.         if the mouseV > 123 then
  10.           set the castNum of sprite 13 to 11
  11.           set the locH of sprite 13 to 333
  12.           set the locV of sprite 13 to 128
  13.         else
  14.           if the mouseV > 85 then
  15.             if the castNum of sprite 13 < 10 then
  16.               set the castNum of sprite 13 to 10
  17.               set the locH of sprite 13 to 332
  18.               set the locV of sprite 13 to 104
  19.             end if
  20.           end if
  21.         end if
  22.         movelamp(2)
  23.         updatelamp()
  24.         updateStage()
  25.       end repeat
  26.       if the castNum of sprite 13 >= 10 then
  27.         set the puppet of sprite 13 to 0
  28.         resetlamp(0)
  29.         updatelamp()
  30.         go(#next)
  31.       else
  32.         set the puppet of sprite 13 to 0
  33.       end if
  34.     end if
  35.   end if
  36. end
  37.