home *** CD-ROM | disk | FTP | other *** search
- // Spool -Berenger Fish
-
- waitforplayer
- main:
-
-
- // Level varible
-
- // Threads
- level.countess = 0
- thread plates
- end
-
-
-
-
-
- //=================================
- // Plate Setup loop
- //=================================
- plates:
- local.platenumber = 1
- local.platecount = 21
- local.platecount += 1
-
- plates_loop:
- parm.platename string "$plate"
- parm.platename appendint local.platenumber
-
- thread setup_plate
-
- local.platenumber += 1
- //wait .2
- local.platenumber ifnotequal local.platecount goto plates_loop
- end
-
- setup_plate:
- local.plate string parm.platename
-
-
- plat_loop:
- local.plate hide
- local.plate ontrigger lightup
- pause
-
- lightup:
- level.countess ifequal 1 goto lightup2
- goto lightup1
-
- lightup1:
- level.countess = 1
- local.plate notrigger
- local.plate show
- local.plate playsound environment/computer/beeps/cmpbp3.wav 0.5
- wait 1
- goto plat_loop
-
- lightup2:
- level.countess = 0
- local.plate notrigger
- local.plate show
- local.plate playsound environment/computer/beeps/cmpbp2.wav 0.5
- wait 1
- goto plat_loop
- end
-
-
-
-
-