home *** CD-ROM | disk | FTP | other *** search
- @echo off
- :mainmenu
- cls
- type .\global\logo.tgf
- echo.
- echo Made with Adventure Game Creator
- echo.
- echo To play END OF THE WORLD
- echo select a number 1-4
- echo.
- echo 1 = Play
- echo 2 = Help
- echo 3 = Credits
- echo 4 = Quit
- echo.
- echo Press a number (1 though 4)
- echo Select the option you want:
- echo.
- choice /c:1234
- echo.
- if errorlevel 4 goto end
- if errorlevel 3 goto credits
- if errorlevel 2 goto help
- if errorlevel 1 goto play
-
- :play
- cls
- echo.
- echo General Wilson: Jones, there isn't anything that
- echo we can do now, they've landed...
- echo.
- pause
- echo.
- echo Private Jones: They've landed!?! What can we do?
- echo.
- pause
- echo.
- echo General Wilson: I told you, there isn't anything
- echo we can do!
- echo.
- pause
- echo.
- echo Background: CRASH
- echo.
- pause
- echo.
- echo General Wilson: No! they've broken into the base!
- echo Run Jones, I'll try to hold'em!
- echo.
- pause
- echo.
- echo Private Jones: But sir!
- echo.
- pause
- echo.
- echo General Wilson: I said run!
- echo.
- pause
- echo.
- echo Narrator: You run without looking back. As you
- echo run you can here the aliens ripping
- echo away at General Wilson. You shutter
- echo at the thought of that happening to
- echo you.
- echo.
- pause
- :doors
- cls
- type .\global\doors.tgf
- echo.
- echo Narrator: You see three doors in front of you:
- echo one says Bio Lab, another says Exit,
- echo and the third says Armory.
- echo.
- choice /c:123
- if errorlevel 3 goto armory
- if errorlevel 2 goto exit2
- if errorlevel 1 goto biolab
-
- :doors2
- cls
- type .\global\doors.tgf
- echo.
- echo Narrator: You see three doors in front of you:
- echo one says Bio Lab, another says Exit,
- echo and the third says Armory.
- echo.
- choice /c:123
- if errorlevel 3 goto armory
- if errorlevel 2 goto exit
- if errorlevel 1 goto biolab
-
- :exit2
- cls
- echo.
- echo Narrator: You did it! You made it out of the base
- echo safe and sound... or did you? On the
- echo way out you find a red access card!
- type .\global\rac.tgf
- echo.
- pause
- goto goon
-
-
- :biolab
- cls
- type .\global\rac.tgf
- echo.
- echo Narrator: You find a red access card!
- echo.
- echo Narrator: You look around but don't
- echo see anything of interest.
- echo.
- pause
- goto doors2
-
- :armory
- cls
- echo.
- echo Narrator: As you enter the room something attacks you!
- type .\global\alien.tgf
- echo.
- pause
- goto mainmenu
-
- :exit
- cls
- echo.
- echo Narrator: You did it! You made it out of the base
- echo Safe and sound... or did you?
- echo.
- pause
- goto goon
-
- :goon
- cls
- type .\global\scum.tgf
- echo.
- echo Narrator: There is a building in front of you.
- echo It says "ScumCo Labs".
- echo.
- pause
- goto choose1
-
- :choose1
- cls
- echo.
- echo 1 = Open the door
- echo.
- choice /c:1
- if errorlevel 1 goto open
-
- :open
- cls
- echo.
- echo Narrator: You try to open the door but the door
- echo is locked!
- echo.
- pause
- goto choose2
-
- :choose2
- cls
- echo.
- echo 1 = Open the door
- echo 2 = Use red access card
- echo.
- choice /c:12
- if errorlevel 2 goto redopen
- if errorlevel 1 goto open
-
- :redopen
- cls
- echo.
- echo Narrator: You use the red access card on the door
- echo and the door opens!
- echo.
- pause
- goto scum
-
- :scum
- cls
- echo.
- echo Narrator: You see a microscope with a slide in it
- echo labeled "ALIEN DNA SAMPLE". You decide
- echo to look at it.
- echo.
- pause
- goto dna
-
- :dna
- cls
- type .\global\molecule.tgf
- echo.
- echo Pryvate Jones: This alien DNA is multiplying way
- echo too fast! At this rate the aliens
- echo will be huge beasts by sunset!
- echo.
- pause
- echo.
- echo Narrator: You know now that there may be nothing that
- echo you can do to save the world...
- echo.
- pause
- goto mainmenu
-
- :help
- cls
- echo.
- echo Select one of the numbers indicated
- echo. on the choice menu.
- echo.
- pause
- goto mainmenu
-
- :credits
- cls
- echo.
- echo Programming - James Simmons
- echo Design - James Simmons
- echo Graphics - James Simmons
- echo Story - James Simmons
- echo Created by - James Simmons
- echo.
- echo (c) 1999 Sim Software
- echo.
- pause
- goto mainmenu
-
- :end
- cls
- echo.
- echo Thanks for playing END OF THE WORLD!
-
-
-