![]() |
|
Matrix .bat script - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Coding (https://sinister.li/Forum-Coding) +--- Forum: Coding (https://sinister.li/Forum-Coding--71) +--- Thread: Matrix .bat script (/Thread-Matrix-bat-script) |
Matrix .bat script - Legit RnA - 08-26-2012 Matrix batch script It will simply open a cmd console and make a bunch of numbers scroll down the screen very quickly. If you don't like the colors, you can change them yourself by changing where it says "color 2(x)" to something else. For example change the (x) to a number or letter between 0-9 and a-f. This is just for entertainment ![]() :A echo off color 25 echo 14837194488193721719346574651683215468 color 26 echo 85737296389572193957282235496842146584 color 28 echo 91785937828367592817495794665465168624 color 21 echo 19919377217817474923816546846216546532 color 24 echo 72735116781891834682220652103546588998 color 2e echo 19948572564985654986216549802350354300 color 2d echo 21284322325984362149836870026895625498 color 29 echo 32375494354986462546869898541696846684 color 2c echo 98921134465798616865156549865268462654 goto :A RE: Matrix .bat script - Flawless Crimson - 09-10-2012 I like your whole idea. And not to be a dick, but this could be done both better and easier than your way. All that just by using the random command: %random% Code: @echo off
title Matrix
:a
color 25
echo %random%%random%%random%%random%%random%%random%
color 26
echo %random%%random%%random%%random%%random%%random%
color 28
echo %random%%random%%random%%random%%random%%random%
color 21
echo %random%%random%%random%%random%%random%%random%
color 21
echo %random%%random%%random%%random%%random%%random%
color 2d
echo %random%%random%%random%%random%%random%%random%
color 29
goto a
[/code]And then you could make it go on and on with more colors. If you want to go all out you can make a dynamic changing variable which then sets the color from time to time, but i guess you don't want to hear about that? You can also just add more %random%'s at the end to make each sentence longer. With love ~FLCrimson RE: Matrix .bat script - iMarcus - 09-10-2012 Also there are a lot of tuts online to make these things, included within the same .dir is a command promt script of the entire star wars movie start to finish ! Obviously not too good on the quality |