Make a Quiz From Notepad on Any Windows

by harisxx33 in Circuits > Computers

464 Views, 0 Favorites, 0 Comments

Make a Quiz From Notepad on Any Windows

Screenshot 2023-01-27 202946.png

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

Start

Click The Search Bar And Search Up Notepad

Once On Notepad Head To Next Step

The Code

Copy The Code On Supplies Sections

Then Go To Notepad And Paste It

Editing to Your Style

Screenshot 2023-01-28 094027.png

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

Saving

Screenshot 2023-01-28 094301.png

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