home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 127 / dpcs0998.iso / Internet / netobs / Install.exe / t2.z / BREAKOUT.DCR / 00017_timeDrivers.ls < prev    next >
Encoding:
Text File  |  1998-01-20  |  319 b   |  17 lines

  1. on timePause piTicks
  2.   set tempTicks to the ticks
  3.   repeat while the ticks < (tempTicks + piTicks)
  4.     if the mouseDown then
  5.       exit repeat
  6.       pass()
  7.     end if
  8.   end repeat
  9. end
  10.  
  11. on timeHardPause piTicks
  12.   set tempTicks to the ticks
  13.   repeat while the ticks < (tempTicks + piTicks)
  14.     nothing()
  15.   end repeat
  16. end
  17.