Posts

How to make game in notepad

Image
  Method 1  Creating A Guessing Game with a Batch File 1 Open Notepad.  Notepad has an icon that resembles a blue Notepad. Use the following steps to open Notepad in Windows. Click the  Windows Start  menu. Type "notepad". Click  Notepad. 2 Copy the following script.  This is a batch script that can be used to create a guessing game. Highlight the entire script below. Then right-click it and click  Copy . The script is as follows: [1] @ echo off color 0b title Guessing Game by seJma set /a guessnum = 0 set /a answer =% RANDOM % set variable1 = surf33 echo ---------------------------------------------------------------- echo This Is a Guessing Game Made in Notepad!!! echo . echo What Number Am I Thinking Of? echo ---------------------------------------------------------------- echo . : top echo . set /p guess = echo . if %guess% GTR %answer% ECHO Lower! if %guess% LSS %answer% ECHO Higher! if %guess% == %answer% GOTO ...