home *** CD-ROM | disk | FTP | other *** search
/ Encyklopedia Omnia / Planeta.iso / data / g_gen.dir / 00033_checkTimer1.ls < prev    next >
Encoding:
Text File  |  2000-10-17  |  589 b   |  23 lines

  1. on exitFrame
  2.   global gCountDown
  3.   if gCountDown > 0 then
  4.     if (ticks() - gCountDown) > (60 * 30) then
  5.       sound stop 2
  6.       unloadMiaws()
  7.       set the MovieMouseClick of sprite(1) to 0
  8.       set nodeID to the CurrentNodeID of sprite(1)
  9.       SwingSpeed(sprite(1), 5)
  10.       case nodeID of
  11.         127:
  12.           set the BackBufferMovie of sprite(1) to EMPTY
  13.           SwingComplete(sprite(1), 176, 21, 55)
  14.         128:
  15.           SwingComplete(sprite(1), 176, 24, 38)
  16.         129:
  17.           SwingComplete(sprite(1), 176, 24, 38)
  18.       end case
  19.       go(#next)
  20.     end if
  21.   end if
  22. end
  23.