home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GEMini Atari
/
GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso
/
files
/
bbs
/
ibiiv16
/
deferun.scr
< prev
next >
Wrap
Text File
|
1993-02-27
|
2KB
|
79 lines
script
define b
define path
define in
define where
define time1
define time2
define dummy1
define dummy2
define keyit
define dummy3
define rc
time1 = &33
dummy3 = time1
b = &29
; Edit the line below this one!!!!
path = 'D:\EXPRESS\DEFENSE\'
open('[path]DEFEINFO.TXT',INPUT)
finput dummy2 6
finput dummy1 2
close
if command_level(32) then
clear screen
printe 'SYSOP MENU'
printe 'Which do you want to enter?'
printe '1. Iron Bomber II: The Defense Game'
printe '2. Iron Bomber II: The Utility (Reset the High score tables)'
keyit = get_key
if keyit = '2' then
ttp ('[path]RESETDEF.TTP','[path]')
exit
endif
endif
if dummy2 = 'y' then
dummy2 = 'Y'
endif
if dummy2 = 'Y' then
open('[dummy1]',APPEND)
fprinte '---------------------Entered IRON Bomber II: The Defense'
close
endif
clear screen
printe 'Entering Iron Bomber II: The Defense...... Please wait. '
tos ('[path]DEFENSE.TTP','EXPRESS [path] [b] [dummy3]')
open('[path]DEFEINFO.TXT',INPUT)
finput dummy2 6
finput dummy1 2
close
if dummy2 = 'y' then
dummy2 = 'Y'
endif
if dummy2 = 'Y' then
open('[dummy1]',APPEND)
fprinte '---------------------Exitted IRON Bomber II: The Defense'
close
endif
;
; At the end, here you may want to execute the games menu again and/or
; change the current path back to the directory containing the
; EXPRESS files.
; An example of changing the directory back would be something like
;
; rc = file_chgdir ('D:\EXPRESS\')
;
; An example of executing the games menu would be
;
; execute ('D:\EXPRESS\MENUS_80\GAMES.HLP')
;
; Remember: These statements are not read by the script editor because
; of the semicolon in front of them.
;