@echo off cls rem *********************** rem ****** Main menu ****** rem *********************** echo ******************************** echo *** Lardog's Shareware CD #1 *** echo ******************************** echo What type of shareware game? Echo (A) 3D (B) Adventure Echo (C) Drawing (D) Expanded-memory games (requires EMS boot) Echo (E) Fighting (F) Flying Echo (G) Learning (H) Mario Echo (I) Other (J) Parlor Echo (K) Pinball (L) Puzzles Echo (M) Quizzes (N) Shooting Echo (O) Tetris (P) Thinking Echo (Q) Last Game (Z) Quit choice /N /C:ABCDEFGHIJKLMNOPQZ your choice? cls if errorlevel 18 goto end if errorlevel 17 goto SG_Last if errorlevel 16 goto SG_Think if errorlevel 15 goto SG_Tetris if errorlevel 14 goto SG_Shoot if errorlevel 13 goto SG_Quiz if errorlevel 12 goto SG_Puzzle if errorlevel 11 goto SG_Pinball if errorlevel 10 goto SG_Parlor if errorlevel 9 goto SG_Other if errorlevel 8 goto SG_Mario if errorlevel 7 goto SG_Learn if errorlevel 6 goto SG_Fly if errorlevel 5 goto SG_Fight if errorlevel 4 goto SG_Expanded if errorlevel 3 goto SG_Draw if errorlevel 2 goto SG_Adv if errorlevel 1 goto SG_3d goto end rem *********************** rem ****** 3D ****** rem *********************** :SG_3d echo Which 3D shareware game? Echo (A) 3D Trek (B) Amazon Queen Echo (C) Blake Stone (D) Catacombs Abyss Echo (E) Descent (F) Eradicator Echo (G) Heretic (H) Hexen Echo (I) Ken's Labyrinth 1 (J) Ken's Labyrinth 2 Echo (K) Lethal Weapon (L) Magic Carpet Echo (M) Nitemare 3D (N) Pyrotechnica Echo (O) Quarantine (P) Radix Echo (Q) Raid (R) Rise of the Triand Echo (S) Road Warrior (T) Spear of Destiny Echo (U) Tekwars (V) Terminal Velocity Echo (W) Terror in Christmas Town (Z) Back choice /N /C:ABCDEFGHIJKLMNOPQRSTUVWZ your choice? if errorlevel 24 SGAMES if errorlevel 23 SGAMER \3D\XMAS if errorlevel 22 SGAMER \3D\TV if errorlevel 21 SGAMER \3D\TEKWAR if errorlevel 20 SGAMER \3D\SPEAR if errorlevel 19 SGAMER \3D\RW if errorlevel 18 SGAMER \3D\ROTT if errorlevel 17 SGAMER \3D\RAID if errorlevel 16 SGAMER \3D\RADIX if errorlevel 15 SGAMER \3D\QDEMO if errorlevel 14 SGAMER \3D\PYRO if errorlevel 13 SGAMER \3D\N3D if errorlevel 12 SGAMER \3D\CARPET if errorlevel 11 SGAMER \3D\LETHAL if errorlevel 10 SGAMER \3D\LAB3D if errorlevel 9 SGAMER \3D\KEN if errorlevel 8 SGAMER \3D\HEXEN if errorlevel 7 SGAMER \3D\HERETIC if errorlevel 6 SGAMER \3D\ERAD if errorlevel 5 SGAMER \3D\DESCENT if errorlevel 4 SGAMER \3D\CATABYSS if errorlevel 3 SGAMER \3D\BSTONE if errorlevel 2 SGAMER \3D\QUEEN if errorlevel 1 SGAMER \3D\3DTREK goto end rem *********************** rem ****** ADV ****** rem *********************** :SG_Adv echo Which Adventure shareware game? Echo (A) Amazon (B) Ancients I: Deathwatch Echo (C) Bard's Quest (D) Dune 2 Echo (E) Dungeons of the Unforgiven (F) Felix the Cat Echo (G) Gateway (H) Gobliins Echo (I) Indenture (J) Little Big Adventure Echo (K) Mad Dog (L) Moraf's World Echo (M) Outnumbered (N) Psionics Echo (O) Robowars (P) Rooms of the Abyss Echo (Q) Shadowkeep (R) Walls of Bratock Echo (Z) Back choice /N /C:ABCDEFGHIJKLMNOPQRZ your choice? if errorlevel 19 SGAMES if errorlevel 18 SGAMER \ADV\BRATOCK if errorlevel 17 SGAMER \ADV\SHADOW if errorlevel 16 SGAMER \ADV\ABYSS if errorlevel 15 SGAMER \ADV\ROBOWAR if errorlevel 14 SGAMER \ADV\PSIONICS if errorlevel 13 SGAMER \ADV\OUT if errorlevel 12 SGAMER \ADV\MORAF if errorlevel 11 SGAMER \ADV\MADDOG if errorlevel 10 SGAMER \ADV\LBA if errorlevel 9 SGAMER \ADV\INDENT if errorlevel 8 SGAMER \ADV\GOBLIN if errorlevel 7 SGAMER \ADV\GATE if errorlevel 6 SGAMER \ADV\FELIX if errorlevel 5 SGAMER \ADV\UNFORGIV if errorlevel 4 SGAMER \ADV\DUNE2 if errorlevel 3 SGAMER \ADV\BQUEST if errorlevel 2 SGAMER \ADV\ANCIENT if errorlevel 1 SGAMER \ADV\AMAZON goto end rem *********************** rem ****** DRAW ****** rem *********************** :SG_Draw echo Which Drawing shareware game? Echo (A) Bert's Dinosaurs (B) Bert's Prehistoric Animals Echo (C) Bert's Whales and Dolphins (D) Coloring Book 1.5 Echo (E) Connect the Dots (F) CPP Coloring Book Echo (G) Crayon Box 3.0 (H) EGA Coloring Book . . . This file goes on and on, you must modify it to suit yourself. SGAMER.BAT copies the appropriate CD subdirectory to the hard drive, and each subdirectory (on the CD) represent a shareware game with a RUNME.BAT file to run the appropriate executable. All the games were set up to use my sound card before storing on (gold) CD. :SG_Last cd SGCOPY call runme cd .. sgames :end