home *** CD-ROM | disk | FTP | other *** search
/ DIGIZINE 1 / DIGIZINE.BIN / main / sony / discman.dir / 00020_Script_20 < prev    next >
Text File  |  1995-09-24  |  407b  |  21 lines

  1. on exitFrame
  2.   global gBugFix,gTimeAround
  3.   
  4.   if gTimeAround = false then
  5.     if the ticks < gBugFix + 8*60 then
  6.       go loop
  7.     else
  8.       set the volume of sound 1 to 256
  9.       go "koach"
  10.     end if
  11.   end if
  12.   
  13.   if gTimeAround = true then
  14.     if the ticks < gBugFix + 25*60 then
  15.       go loop
  16.     else
  17.       set the volume of sound 1 to 256
  18.       go "koach"
  19.     end if
  20.   end if
  21. end