home *** CD-ROM | disk | FTP | other *** search
/ PC/CD Gamer UK 39 / PCGAMER39.bin / games / amber / amberhub.dxr / 00084.ls < prev    next >
Encoding:
Text File  |  1996-11-08  |  418 b   |  24 lines

  1. on exitFrame
  2.   global gRippleSwitch, gRippleOnce
  3.   if gRippleOnce = 1 then
  4.     set the volume of sound 2 to 255
  5.     puppetSound(2, 83)
  6.     updateStage()
  7.     rippleWord(#notTheEnd)
  8.     set gRippleOnce to 0
  9.   end if
  10.   cursor(-1)
  11.   if the timer < 330 then
  12.     go(the frame)
  13.   else
  14.     set gRippleSwitch to 0
  15.   end if
  16. end
  17.  
  18. on mouseDown
  19.   global gRippleSwitch
  20.   set gRippleSwitch to 0
  21.   cursor(200)
  22.   go(the frame + 1)
  23. end
  24.