home *** CD-ROM | disk | FTP | other *** search
/ Model Wife / The Best of New Machine Publishing 4 - Disc 2: Model Wife.iso / pc / sampler / dm13.dxr / 00010_Text3.ls < prev    next >
Encoding:
Text File  |  1995-09-05  |  882 b   |  33 lines

  1. on mouseUp
  2.   global CHARACTER, CHOICE3, RESPONSE, CLIP, movie
  3.   set RESPONSE to CHOICE3
  4.   if (CLIP = 34) and (movie = 2) and (CHARACTER = 1) then
  5.     go("response")
  6.   else
  7.     if (CLIP = 38) and (movie = 2) and (CHARACTER = 2) then
  8.       go("MI")
  9.     else
  10.       if (CLIP = 37) and (movie = 3) and (CHARACTER = 2) then
  11.         go("response")
  12.       else
  13.         if (CLIP = 40) and (movie = 4) and (CHARACTER = 2) then
  14.           go("response")
  15.         else
  16.           if (movie = 3) and (CHARACTER = 2) then
  17.             set CHARACTER to CHARACTER + 1
  18.             go("MS")
  19.           else
  20.             if (movie = 4) and (CHARACTER = 2) then
  21.               set CHARACTER to CHARACTER + 1
  22.               go("MS")
  23.             else
  24.               set CHARACTER to CHARACTER + 1
  25.               go("response")
  26.             end if
  27.           end if
  28.         end if
  29.       end if
  30.     end if
  31.   end if
  32. end
  33.