How To Make A Text Based Game In Batch Files
How To Make A Game With Notepad And Paint
I am new to these forums, and I thought this would be a great introduction for both parties. I am creating a text-based adventure game as a.bat file, just for fun, and would like to share. I am looking for constructive criticism and advice, as I hope that this little project gives me a more advanced knowledge of.bat scripting.Here's what I have so far:@echo offtitle Adventure Gameset manRoomVal= 0:manRoomecho;echo Your basic controls are:echo Enter L for Leftecho Enter R for Rightecho Enter F for Forwardecho Enter B for Backwardecho Enter S for Searchecho Enter H for Hear/Listenif%manRoomVal% EQU 1 goto mainRoomif%manRoomVal% EQU 0 goto introduction:introductionset manRoomVal= 1echo;echo You are standing in a cold hallway, wielding a gun. You're sweating and you don't recall much.echo There is a door infront of you, a desk to the left, a dark opening to a corridor behind you, and nothing to your right.