home *** CD-ROM | disk | FTP | other *** search
/ Time Warp / Time Warp.iso / pc / timewarp / lab.dxr / 00253.ls < prev    next >
Encoding:
Text File  |  1997-06-09  |  638 b   |  23 lines

  1. on exitFrame
  2.   global end
  3.   if the movieTime of sprite 5 < end then
  4.     if (the movieTime of sprite 5 > 1550) and (the movieTime of sprite 5 < 3800) then
  5.       puppetSprite(6, 1)
  6.       set the castNum of sprite 6 to cast "ENTERING CYBERSPACE"
  7.       updateStage()
  8.     else
  9.       if the movieTime of sprite 5 > 3900 then
  10.         set the castNum of sprite 6 to cast "CHOOSE DIRECTION"
  11.         updateStage()
  12.       end if
  13.     end if
  14.     go(the frame - 1)
  15.   else
  16.     set the movieTime of sprite 5 to end - 10
  17.     go(the frame + 1)
  18.     set the castNum of sprite 3 to cast "CENTER PANEL OFF"
  19.     updateSpeed()
  20.     puppetSprite(3, 0)
  21.   end if
  22. end
  23.