home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GEMini Atari
/
GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso
/
files
/
bbs
/
mpr50fxd
/
spestart.hlp
< prev
next >
Wrap
Text File
|
1988-02-07
|
1KB
|
46 lines
SCRIPT
define user_selection
open ('sename.bbs', output) ; NOTICE TO EXPRESS SYSOPS!
fprinte '&1' ; Do NOT modify this part, or it will not
close ; work when SE is in Express mode!
top:
clear screen
printe
printe 'Welcome to Space Empire &01' center
printe 'for BBS Express v1.1' center
printe 'Which would you like to do?' center
printe
printe '1) Go play Space Empire' center
printe '2) See the Space Empire News' center
printe '3) See Space Empire Scores' center
printe '4) See Space Empire Hall of Fame' center
printe '5) Quit' center
Retry:
printe 'Enter your selection>'
input user_selection 4 noreturn
if user_selection = '1' then
tos 'spcelite.tos'
ef user_selection = '2' then
view 'senews.txt'
ef user_selection = '3' then
view 'sescore.txt'
ef user_selection = '4' then
view 'sefame.txt'
ef user_selection = '5' then
printe 'See ya next time &1'
exit
else
goto retry
endif
printe
print 'Press <Return> to continue..'
input user_selection 1
goto top