Make a Game

by Davies Haboz in Outside > Launchers

846 Views, 5 Favorites, 0 Comments

Make a Game

IMG-20201223-WA0004.jpg
For more information on interesting games ... and how to make them ..email me on
xylemhaboz@gmail.com

Hello everyone, today am going to show you how you can make your favorite game by just using a Notepad.exe on your PC
Follow these steps earnestly....

Open the Notepad.exe on your PC by just typing Notepad on either your start menu or your command prompt window.

Copy paste the beneath words or type them on your Notepad.exe
I do prefer you type word-by-word to understand better.

👇👇👇

@echo off
echo By Haboz
color 2
echo.
pause
cls

:one
color 3
echo WElcoMe
echo.
echo to start the game type a and press ENTER.
echo.
echo To see instructions type b and press ENTER.
echo.
echo To quit type c and press ENTER.
echo.
set /p y= What do you want to do?
pause
if %y% ==a goto two
if %y% ==b goto three
if %y% ==c goto quit
goto quit

:two
cls
color f
echo Are you ready to play.....
echo.
pause
cls
echo 1) When Neil Armstrong landed on moon which foot did he step first?
echo.
echo a) left
echo b) Right
echo c) Both legs at a time
echo d) He doesnt have legs
echo.
set /p ans=ANSWER:
if %ans%==a goto fourth
if %ans%==b goto wrong
if %ans%==c goto wrong
if %ans%==d goto wrong
goto quit

:wrong
cls
color 4
echo SORRY!!!! you have been given wrong answer.
pause
goto two


:three
cls
color e
echo INSTRUCTIONS...
echo.
echo 1) No cheating
echo.
echo 2) Five questions will come to you, every right answer will unlock second question.
echo.
echo 3) If any wrong answer will be placed, you will be out of the game.
echo.
echo 4) When a question comes to you, there are FOUR options (A, B, C AND D)
echo.
echo If your answer is "a" of a given question then type "A" and press ENTER.
echo.
pause
cls
goto one

echo To play game type 1 and press Enter.
echo.
set /p num=COMMAND.:
if %num%==1 goto two
goto quit

:fourth
echo.
echo CONGRATULATIONS....
echo You have unlocked second question
echo.
pause
cls
echo 2) Who invented FACEBOOK?
echo.
echo a) Bill Gates
echo b) Steve Jobs
echo c) Mark Zukerberg
echo d) John Zukerberg
echo.
set /p ans=ANSWER:
if %ans%==a goto wrong
if %ans%==b goto wrong
if %ans%==c goto fifth
if %ans%==d goto wrong
goto fourth

:fifth
echo.
echo CONGRATULATINS...
echo you have unlocked third question
echo.
pause
cls
echo 3) Which was the first advanced humanord robo?
echo.
echo a) Tobo
echo b) Electro
echo c) NAO
echo d) Numbo
echo.
set /p ans=ANSWER:
if %ans%==a goto wrong
if %ans%==b goto sixth
if %ans%==c goto wrong
if %ans%==d goto wrong
goto fifth

:sixth
echo.
echo CONGRATULATIONS...
echo You have made it to the fourth question.
echo This is slightly hard
echo.
pause
cls
echo 4) What is the name of the first plane made by Wright Brothers?
echo.
echo a) Eagle
echo b) Air Winger
echo c) Wright's
echo d) Flyer
echo.
set /p ans=ANSWER:
if %ans%==a goto wrong
if %ans%==b goto wrong
if %ans%==c goto wrong
if %ans%==d goto seventh
goto sixth

:seventh
cls
echo.
echo CONGRATULATIONS.....
echo.
echo You have made it this far and now you are in the last question.
echo.
echo. You have one more step to be the WINNER.
echo.
echo ARE YOU READY TO PLAY?..
echo.
pause
cls
echo 5) Which of these mammals lay eggs?
echo.
echo a) Autompus
echo b) Playtipus
echo c) Whale
echo d) Congo
echo.
set /p ans=ANSWER:
if %ans%==a goto wrong
if %ans%==b goto correct
if %ans%==c goto wrong
if %ans%==d goto wrong
goto seventh

:10
:correct
cls
pause
echo Cerdits
echo.
echo Thank you for Playing this game
echo.
echo game made by Haboz
echo for any details email me on xylemhaboz@gmail.com
echo.
pause
cls
goto one

Save it as a bat. file
Example:
Haboz.bat

And just beneath the save option, lies the "save as" option.
Save as "All Files" to finish making up your game.

After saving it on your desktop or on any folder. Click to execute your command game.....and Ooops....enjoy your game..
Share if you did made it!...