How to Make a Matrix Batch File
by MatrixEagle15 in Circuits > Computers
452906 Views, 43 Favorites, 0 Comments
How to Make a Matrix Batch File
This batch file will give out random green numbers that resemble the background to "The Matrix"
theres really no point to it except to look cool
theres really no point to it except to look cool
Creating the Batch File
right click
>new
>>text document
rename "matrix.bat"
>click yes
should change icon to a gear
>new
>>text document
rename "matrix.bat"
>click yes
should change icon to a gear
Programing the File
right click
>edit
it should have opened notepad
copy and paste in between the lines
@echo off
color 2
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start
save
double click and it should create the matrix
>edit
it should have opened notepad
copy and paste in between the lines
@echo off
color 2
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start
save
double click and it should create the matrix
Additional Creativity to Your Matrix
you can change the color code to make the background and numbers a different color
right now the color code is "2" which can also be written as "02"
its still the same number
"0" make the background black and the "2" makes the numbers green
if you change the code to 15
background would be blue and numbers would be pink
or if you change the code to 47
background would be red numbers would be white
if you wanted to change what the text said just get rid of the "%random%"s and add a bunch of writing.
in the example i wrote "MatrixEagle15" (17 times to get the blur effect)
right now the color code is "2" which can also be written as "02"
its still the same number
"0" make the background black and the "2" makes the numbers green
if you change the code to 15
background would be blue and numbers would be pink
or if you change the code to 47
background would be red numbers would be white
if you wanted to change what the text said just get rid of the "%random%"s and add a bunch of writing.
in the example i wrote "MatrixEagle15" (17 times to get the blur effect)