How to Create a Matrix Effect Using Notepad
by Grey__X in Circuits > Computers
1356 Views, 16 Favorites, 0 Comments
How to Create a Matrix Effect Using Notepad
Today I will be showing you how to make a Matrix Effect using Notepad. This is my very first Instructable so please no hate. The video attached is from my YouTube Channel.(READ COMMENTS)
Open the Notepad Application
If you are running Windows 10 then simply click on the Cortana icon at the bottom. Then, type in "Notepad"
Add Code
Either type this in or copy paste it (Note:%random% is supposed to be spammed)
===CODE===
@echo off
title Matrix
color 0a
mode 1000
goto greeting
:greeting
cls
echo Hello, Welcome to the Matrix!
pause
cls
goto
Matrix
:Matrix echo %random%
PING 1.1.1.1 -n -w 0,3 >NUL
goto Matrix
Save the File
Click "File"--------->Save As
Then save file as a .bat not .txt
Complete! You Made It!
Thanks for viewing hope you enjoy! Next Step: Explanation After That: Disclaimer
Explaination
===CODE===
@echo off
title Matrix -----Gives the window a title
color 0a ----- What color the font will be
mode 1000 -----Speed
goto greeting Command to go to greeting page
:greeting Greeting Section
cls clears screen
echo Hello, Welcome to the Matrix! -----Echo pretty much means it will print it on the screen
pause --------This and cls help make a title page(I may be wrong, I am no expert)
cls clears scren
goto Matrix -----Command to go to matrix section
:Matrix Matrix Section
echo %random% -------%random% means print a random number
PING 1.1.1.1 -n -w 0,3 >NUL -----Also speed
goto Matrix loops the matrix effect
DISCLAIMER
NO HARMFUL INTENTIONS WHILE MAKING THIS INSTRUCTABLE. I AM NOT HELD RESPONSIBLE FOR ANY DAMAGE OR HARM CAUSED BY THE MAKING OR DISTRIBUTING THIS PROGRAM. THIS IS MEANT FOR ENTERTAINMENT PURPOSES ONLY