home *** CD-ROM | disk | FTP | other *** search
- SCRIPT
- ;
- ; Look scripts for play!!!!!
- ;
- ; call this subroutine main
- [main]
- ;
- ; play track 5 on the cdrom
- ;
- _cd 5
- ; play arena.flc
- arena.flc
- ;
- ; start a loop
- ;
- _startsub
- ; if 1 was pressed goto option1
- _keyin "1" option1
- ; if a mouse was clicked in the left region goto option1
- _region 0 0 159 199 option1
- ; if 2 was pressed goto option2
- _keyin "2" option2
- ; if a mouse was clicked in the right region goto option2
- _region 160 0 319 199 option2
- ; end the loop
- _endsub
- ;
- ; call the subroutine option1
- [option1]
- ; play main.flc
- main.flc
- ; end this animation
- _jump finish
- ;
- ; call the subroutine option2
- [option2]
- ; play face.flc
- face.flc
- ;
- ; call the subroutine finish
- [finish]
- ; play smash.flc
- smash.flc
- ; end and return 0 as errlevel or c shell
- _return 0
-