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 >
Text File  |  1988-02-07  |  1KB  |  46 lines

  1. SCRIPT
  2.  
  3. define user_selection
  4.  
  5. open ('sename.bbs', output)  ; NOTICE TO EXPRESS SYSOPS!
  6. fprinte '&1'                 ; Do NOT modify this part, or it will not
  7. close                        ; work when SE is in Express mode!
  8.                              
  9.  
  10. top:
  11.       clear screen
  12.       printe
  13.       printe 'Welcome to Space Empire &01' center
  14.       printe 'for BBS Express v1.1' center
  15.       printe 'Which would you like to do?' center
  16.       printe
  17.       printe '1) Go play Space Empire' center
  18.       printe '2) See the Space Empire News' center
  19.       printe '3) See Space Empire Scores' center
  20.       printe '4) See Space Empire Hall of Fame' center
  21.       printe '5) Quit' center
  22.  
  23. Retry:
  24.       printe 'Enter your selection>'
  25.       input user_selection 4 noreturn
  26.       
  27.       if user_selection = '1' then
  28.             tos 'spcelite.tos'
  29.       ef user_selection = '2' then
  30.             view 'senews.txt'
  31.       ef user_selection = '3' then
  32.             view 'sescore.txt'
  33.       ef user_selection = '4' then
  34.             view 'sefame.txt'
  35.       ef user_selection = '5' then
  36.             printe 'See ya next time &1'
  37.             exit
  38.       else
  39.             goto retry
  40.       endif
  41.       
  42.       printe
  43.       print 'Press <Return> to continue..'
  44.       input user_selection 1
  45.       goto top
  46.