Introduction: Make a Quiz From Notepad on Any Windows

Welcome today You Will Be Coding Your Own Puzzle On Notepad

Requirements

  • Laptop
  • Notepad Installed


Supplies

@echo off

cls

Title Haris Puzzle Room

color 0e

:Start

echo The Start

ECHO Start Puzzle - 1

ECHO Close - 2

SET /P OPT=Please make a selection, and press enter:

if %OPT%==1 GOTO StartP

if %OPT%==2 GOTO Exit

:StartP

cls

echo Choose Wisely

ECHO School

ECHO Home

SET /P OPT=Once Answered Click Enter:

if %OPT%==School GOTO Failed

if %OPT%==Home GOTO 2

:Failed

echo You Got It Wrong

pause

echo Goodbye

exit

:2

cls

echo Steam Or Google Play Store

SET /P OPT=Once Answered Click Enter:

if %OPT%==Google Play Store GOTO Failed

if %OPT%==Steam GOTO 3

:3

cls

echo Are You Islamic

SET /P OPT=Once Answered Click Enter:

if %OPT%==No GOTO Failed

if %OPT%==Yes GOTO 4

:4

cls

echo Final Question

echo Do You Want To Restart

SET /P OPT=Once Answered Click Enter:

if %OPT%==No GOTO End

if %OPT%==Yes GOTO Start

:End

cls

echo You Made It

pause

echo This The End Thanks For Playing

Exit

Step 1: Start

Click The Search Bar And Search Up Notepad

Once On Notepad Head To Next Step

Step 2: The Code

Copy The Code On Supplies Sections

Then Go To Notepad And Paste It

Step 3: Editing to Your Style

Now You Can Edit The Code I Have Showed What The Code Is In The Pic

Step 4: Saving

Type In Your Puzzle Name And But .bat At The End Also Set Encoding To ANSI