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

  1. on exitFrame
  2.   global gCountDown
  3.   if gCountDown > 0 then
  4.     if (ticks() - gCountDown) > (60 * 30) then
  5.       sound stop 2
  6.       set the MovieMouseClick of sprite(1) to 0
  7.       unloadMiaws()
  8.       go(#next)
  9.     end if
  10.   end if
  11. end
  12.