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

1a.gif
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

Creating the Batch File

1.jpg
2.jpg
3.jpg
4.jpg
5.jpg
right click
>new
>>text document

rename "matrix.bat"
>click yes

should change icon to a gear

Programing the File

6.jpg
7.jpg
8.jpg
2.JPG
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

Additional Creativity to Your Matrix

2.jpg
1.jpg
3.jpg
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)