home *** CD-ROM | disk | FTP | other *** search
- on startMovie
- global Screen, CDLocation, rwObj, sync, Sep
- cursor(200)
- if the machineType = 256 then
- set Sep to "\"
- else
- set Sep to ":"
- end if
- set the exitLock to 1
- preLoadCast(10)
- preLoadCast()
- set Screen to 0
- set the soundEnabled to 1
- set sync to 0
- set the fileName of cast 10 to CDLocation & "SOUNDS" & Sep & "INTRO.MOV"
- set the keyDownScript to "EndIntro"
- set the mouseDownScript to "EndIntro"
- end
-
- on idle
- global sync
- if (sync = 0) and (the frame > 5) then
- if the movieTime of sprite 1 > (20.75 * 60) then
- go("Bang")
- set sync to 1
- end if
- end if
- end
-
- on EndIntro
- global CDLocation, name, PopQuizTime, NoQuiz, QuizUp, QuizWaiting, Difficulty
- cursor(200)
- set Difficulty to 1
- set PopQuizTime to the ticks
- set NoQuiz to 0
- set QuizUp to 0
- set QuizWaiting to 0
- set name to EMPTY
- cursor(4)
- go(1, CDLocation & "MENUS_O.DIR")
- end
-