Decide on a game. Before deciding to make a shoot-em-up game or point-and-click game, know that even with MS DOS 8, batch script has serious limitations to its capabilities. You will not be able to create more of a game than a text-based game. It can be a quiz or a scenario game, but you will have only text. As to whether or not you want to have ASCII graphics is up to you, but the game will still be based entirely on text input. WH.performance.mark('step1_rendered');

Decide on a game.

Learn the script. The script is not that hard to learn, you may even learn it simply by looking at a program. To know any scripting language you may need to know some basic commands in your computer's command line. For this command line, the basic commands that you will need are: echocolortitlegotoifsetlabeling (not a command, but how to label)

Learn the script.

Learn how to use the above commands. The echo command is used to print out text to the console. Below, the echo command prints out 'Hello, world!': WH.shared.addScrollLoadItem('6e34f74ee448e29af0259f554da295d6'){'smallUrl':'https://www.wikihow.com/images/thumb/9/9e/610238-3b1.jpg/v4-460px-610238-3b1.jpg','bigUrl':'/images/thumb/9/9e/610238-3b1.jpg/aid610238-v4-728px-610238-3b1.jpg','smallWidth':460,'smallHeight':345,'bigWidth':728,'bigHeight':546,'licensing':'<div class='mw-parser-output'><p>License: <a target='_blank' rel='nofollow noreferrer noopener' class='external text' href='https://creativecommons.org/licenses/by-nc-sa/3.0/'>Creative Commons</a><br>
</p><p><br />
</p></div>'} The color command is used to change the color of the text in the command line. This isn't very useful, and probably shouldn't be focused on until you have finished the game itself, but the results of the color change can be quite appealing. Colors in DOS command lines are numbered, there is a table of the colors at the end of this article. The following command will change the text color to black background with green text: WH.shared.addScrollLoadItem('167cecd42b92ee0ba61e6fadc3e8ba78'){'smallUrl':'https://www.wikihow.com/images/thumb/0/07/610238-3b2.jpg/v4-460px-610238-3b2.jpg','bigUrl':'/images/thumb/0/07/610238-3b2.jpg/aid610238-v4-728px-610238-3b2.jpg','smallWidth':460,'smallHeight':345,'bigWidth':728,'bigHeight':546,'licensing':'<div class='mw-parser-output'><p>License: <a target='_blank' rel='nofollow noreferrer noopener' class='external text' href='https://creativecommons.org/licenses/by-nc-sa/3.0/'>Creative Commons</a><br>
</p><p><br />
</p></div>'}The title command simply changes the name of the window on the title bar and task bar, and is by no means useful, however, it can make your program look professional. Using it like so will change the title of the window to 'Fun Program': WH.shared.addScrollLoadItem('c921db91084e435a0f2af9ba6f858c6f'){'smallUrl':'https://www.wikihow.com/images/thumb/4/4e/610238-3b3.jpg/v4-460px-610238-3b3.jpg','bigUrl':'/images/thumb/4/4e/610238-3b3.jpg/aid610238-v4-728px-610238-3b3.jpg','smallWidth':460,'smallHeight':345,'bigWidth':728,'bigHeight':546,'licensing':'<div class='mw-parser-output'><p>License: <a target='_blank' rel='nofollow noreferrer noopener' class='external text' href='https://creativecommons.org/licenses/by-nc-sa/3.0/'>Creative Commons</a><br>
</p><p><br />
</p></div>'}The goto command is used to go to a certain part of the program. You will be using it to determine what will happen when certain answers are chosen from questions. To use the goto command to go to a label called 'WRONG': WH.shared.addScrollLoadItem('891c8e7e651bf690b7657d67ad75a676'){'smallUrl':'https://www.wikihow.com/images/thumb/1/12/610238-3b4.jpg/v4-460px-610238-3b4.jpg','bigUrl':'/images/thumb/1/12/610238-3b4.jpg/aid610238-v4-728px-610238-3b4.jpg','smallWidth':460,'smallHeight':345,'bigWidth':728,'bigHeight':546,'licensing':'<div class='mw-parser-output'><p>License: <a target='_blank' rel='nofollow noreferrer noopener' class='external text' href='https://creativecommons.org/licenses/by-nc-sa/3.0/'>Creative Commons</a><br>
</p><p><br />
</p></div>'}The if command is used to determine what will happen if a certain event occurs. After the if statement (if [something]), a command follows. At the if statement, if a certain event is true, the command in the statement will be carried out. You will be using this statement to determine which goto command is to be used. This if statement will be true if the input is equal to 12: WH.shared.addScrollLoadItem('344cfd78d19d5bc4a1594d910acd7d2f'){'smallUrl':'https://www.wikihow.com/images/thumb/e/eb/610238-3b5.jpg/v4-460px-610238-3b5.jpg','bigUrl':'/images/thumb/e/eb/610238-3b5.jpg/aid610238-v4-728px-610238-3b5.jpg','smallWidth':460,'smallHeight':345,'bigWidth':728,'bigHeight':546,'licensing':'<div class='mw-parser-output'><p>License: <a target='_blank' rel='nofollow noreferrer noopener' class='external text' href='https://creativecommons.org/licenses/by-nc-sa/3.0/'>Creative Commons</a><br>
</p><p><br />
</p></div>'}The set command is actually quite complicated, since it may be used in many ways. As for now, all you need it for is to get the computer to receive input. To do this: WH.shared.addScrollLoadItem('5a457147985e3c2da8af19e88ab24682'){'smallUrl':'https://www.wikihow.com/images/thumb/1/10/610238-3b6.jpg/v4-460px-610238-3b6.jpg','bigUrl':'/images/thumb/1/10/610238-3b6.jpg/aid610238-v4-728px-610238-3b6.jpg','smallWidth':460,'smallHeight':345,'bigWidth':728,'bigHeight':546,'licensing':'<div class='mw-parser-output'><p>License: <a target='_blank' rel='nofollow noreferrer noopener' class='external text' href='https://creativecommons.org/licenses/by-nc-sa/3.0/'>Creative Commons</a><br>
</p><p><br />
</p></div>'}Finally, labeling. Labeling can name certain parts of the program so that you may use the goto command. You can name certain sections of the program anything, so long as the name isn't a command. To label a section 'main', type the following::MAINLabeled sections include the label itself and all code that follow it until another label is present or the file reaches the end! Make sure you place the label before the section being labeled, and another label following it so that the computer understands what section is labeled! Example below:@echo off:LABEL1echo THIS IS A TEST OF TEXTset/p input=THIS IS A TEST INPUT_if %input%==1 goto LABEL1goto LABEL2:LABEL2echo TESTThe first line of the above program may have been confusing to you. This line turns off the display of the code inside the file, so it doesn't look like it was all typed out on a console. As of now that is unimportant, right now you should be determining what the above program will do(ignore the first line). The program will display text saying 'THIS IS A TEST OF TEXT', then it will prompt for input. If the input is '1'(meaning you typed in 1), the program will return to LABEL1 and the commands below it will repeat. If the condition in the if statement is not met, the computer will print text to the console 'TEST'. Copy the above program into two different windows running notepad. In one, save it as TEST1 in any folder and run it. Notice how the text is displayed. In the second window, erase the first line and save it as TEST2 and run it. Notice the difference?Once you have a general understanding of how the above commands may be used, you may move on to the next step.

Learn how to use the above commands.

before

Start scripting your game. It is suggested that a beginner use notepad, but if you would like to use MS DOS EDIT, that's fine, too. It is also suggested to a beginner to begin with a basic quiz game, so this is what this article will show you how to do. Remember to start by turning off the echo. Then introduce your game with some text through the echo command, then use set to allow input with the goto command. This may sound confusing, so look above (Note: the command REM creates comments, i.e. notes for the developer that won't show in the final result):

Start scripting your game.

REM

Work on the instructions page. At this point, you should save your file(save as something.bat), and put it in a folder that you created for the game. After saving it, run it and make sure it works. From this point on you will be having multiple files per game (especially if you want to have ASCII graphics). You can get the batch script to print out the contents of any file on the screen with the type command. The below will print the contents of TEST.txt: WH.shared.addScrollLoadItem('0b6d68c741108d8e0db51a1437c19f2d'){'smallUrl':'https://www.wikihow.com/images/thumb/5/56/610238-5b1.jpg/v4-460px-610238-5b1.jpg','bigUrl':'/images/thumb/5/56/610238-5b1.jpg/aid610238-v4-728px-610238-5b1.jpg','smallWidth':460,'smallHeight':345,'bigWidth':728,'bigHeight':546,'licensing':'<div class='mw-parser-output'><p>License: <a target='_blank' rel='nofollow noreferrer noopener' class='external text' href='https://creativecommons.org/licenses/by-nc-sa/3.0/'>Creative Commons</a><br>
</p><p><br />
</p></div>'}It's important to remember to include the file extension, or the command may not work properly.Create an instructions page in notepad. It should say something like: WH.shared.addScrollLoadItem('121ff2fa296e1a44f70a02d04767eaa0'){'smallUrl':'https://www.wikihow.com/images/thumb/8/87/610238-5b2.jpg/v4-460px-610238-5b2.jpg','bigUrl':'/images/thumb/8/87/610238-5b2.jpg/aid610238-v4-728px-610238-5b2.jpg','smallWidth':460,'smallHeight':345,'bigWidth':728,'bigHeight':546,'licensing':'<div class='mw-parser-output'><p>License: <a target='_blank' rel='nofollow noreferrer noopener' class='external text' href='https://creativecommons.org/licenses/by-nc-sa/3.0/'>Creative Commons</a><br>
</p><p><br />
</p></div>'}Save this as INST.txt in the folder of the batch file, then make it so that your game will print the text to the console on the instructions page: WH.shared.addScrollLoadItem('9589e787ae1d591e27188cfa1f427e18'){'smallUrl':'https://www.wikihow.com/images/thumb/a/a4/610238-5b3.jpg/v4-460px-610238-5b3.jpg','bigUrl':'/images/thumb/a/a4/610238-5b3.jpg/aid610238-v4-728px-610238-5b3.jpg','smallWidth':460,'smallHeight':345,'bigWidth':728,'bigHeight':546,'licensing':'<div class='mw-parser-output'><p>License: <a target='_blank' rel='nofollow noreferrer noopener' class='external text' href='https://creativecommons.org/licenses/by-nc-sa/3.0/'>Creative Commons</a><br>
</p><p><br />
</p></div>'}Run the program and make sure it works. WH.shared.addScrollLoadItem('1c9780fb28f8f2366c21cb05554e0369'){'smallUrl':'https://www.wikihow.com/images/thumb/7/7d/610238-5b4.jpg/v4-460px-610238-5b4.jpg','bigUrl':'/images/thumb/7/7d/610238-5b4.jpg/aid610238-v4-728px-610238-5b4.jpg','smallWidth':460,'smallHeight':345,'bigWidth':728,'bigHeight':546,'licensing':'<div class='mw-parser-output'><p>License: <a target='_blank' rel='nofollow noreferrer noopener' class='external text' href='https://creativecommons.org/licenses/by-nc-sa/3.0/'>Creative Commons</a><br>
</p><p><br />
</p></div>'}

Work on the instructions page.

Work on the contents of the game itself. This is where most of your creativity/research, work, and time is spent working on the game, as well as where most of the game's scripting should be. There should be a place that you go when you get an answer wrong, and a way to advance to the next question when you get the answer right. The above will have basic questions about the exterior of a car. You may replace them with what you like. Run the program and make sure it works.

Work on the contents of the game itself.

Create a winning screen. Creating a winning screen is as simple as the instructions screen. Create a text document with praise for winning and save it as WIN.txt in the batch folder. Add the following lines to the end of your game for the winning screen:

Create a winning screen.

Your game should now look like the code above: Run the program and make sure it works.

Your game should now look like the code above:

Touch up your file. Start by going to each label and placing the cls command after it. This will clear the screen at each label so you don't have a screen full of unnecessary information.

Touch up your file.

Correct grammar where appropriate. If you want, make all of the answers on the list complete sentences. NOTE THAT YOU SHOULD AVOID CONTRACTIONS IN THE BATCH SCRIPT ECHO COMMAND! You should also avoid slashes and greater than/less than symbols, stars, percent symbols, and any other unusual symbols. These symbols will create a syntax error that causes the program to stop, lag, or crash.

Correct grammar where appropriate.

NOTE THAT YOU SHOULD AVOID CONTRACTIONS IN THE BATCH SCRIPT ECHO COMMAND!

Create graphics for the game if you would like. Generate ASCII art in separate text documents and use the type command to display them in the program:

Create graphics for the game if you would like.

Correct any typing errors that you can find. Think of your own things to correct. Then add your color with the color command. It is suggested that you place it at the beginning of the program so that the whole program is of this color. Here is the explanation of how to use it directly from the command line: Sets the default console foreground and background colors.COLOR [attr] attr Specifies color attribute of console outputColor attributes are specified by TWO hex digits -- the firstcorresponds to the background; the second the foreground. Each digitcan be any of the following values: 0 = Black 8 = Gray 1 = Blue 9 = Light Blue 2 = Green A = Light Green 3 = Aqua B = Light Aqua 4 = Red C = Light Red 5 = Purple D = Light Purple 6 = Yellow E = Light Yellow 7 = White F = Bright WhiteIf no argument is given, this command restores the color to what it waswhen CMD.EXE started. This value either comes from the current consolewindow, the /T command line switch or from the Default Color registryvalue.In other words, if you wanted a bright white background and black text:@echo offcolor f0:MAINclsecho.

Correct any typing errors that you can find.

Sets the default console foreground and background colors.

COLOR [attr]

attr Specifies color attribute of console output

Color attributes are specified by TWO hex digits -- the firstcorresponds to the background; the second the foreground. Each digitcan be any of the following values:

0 = Black 8 = Gray 1 = Blue 9 = Light Blue 2 = Green A = Light Green 3 = Aqua B = Light Aqua 4 = Red C = Light Red 5 = Purple D = Light Purple 6 = Yellow E = Light Yellow 7 = White F = Bright White

If no argument is given, this command restores the color to what it waswhen CMD.EXE started. This value either comes from the current consolewindow, the /T command line switch or from the Default Color registryvalue.

Congratulations, you have just created a basic computer game with batch script!

Congratulations, you have just created a basic computer game with batch script!

Tags:
Tomasz David
Tomasz David

Leave a Comment