home *** CD-ROM | disk | FTP | other *** search
- script
- abort off
-
- ; The BBS Express ST! Universal Instant Graphics Mode Selector
-
- ; Written by Adam Of Evil - SysOp #2: Modem Madness BBS 516-295-3827
-
- clear variables
-
- define vidmode
- define modepath = 'e:\menus_80\gmode.hlp' ; Filename to store mode.
-
- clear screen
-
- printe
- printe 'Please choose your video text mode:'
- printe
- printe '(1) Standard ASCII/VT-52 (Default)'
- printe '(2) Instant Graphics! (Requires IG.EMU or IG.ACC)'
- printe
- print 'Choose text mode (RETURN=Default): '
-
- input vidmode 1
-
- open '[modepath]' output
-
- if vidmode = '2'
- fprinte '2'
- else
- fprinte '1'
- endif
- exit
-
-