Matrix Batch File Only 1's and 0's

Опубликовано: 11 Июль 2026
на канале: higginsiv
1,709
3

Goto higginsbatch.webs.com for all of my Batches! This is a batch file that looks like the whole matrix binary thing.
the vid i took is REALLY slow. but my computer is really bogged down right now. (been runnin a batch counter for quite awhile now, at like 39 million, it counts by ones starting from 0)
anyway here is the code, feel free to change, cause this took me like 5 min and is really rough around the edges

@echo off
title Matrix by William
color 02
:A
set /a v=%random%*2/32767
set /a a=%random%*2/32767
set /a b=%random%*2/32767
set /a c=%random%*2/32767
set /a d=%random%*2/32767
set /a e=%random%*2/32767
set /a f=%random%*2/32767
set /a g=%random%*2/32767
set /a h=%random%*2/32767
set /a i=%random%*2/32767
set /a j=%random%*2/32767
set /a k=%random%*2/32767
Echo %v%%a%%b%%c%%d%%e%%f%%h%%i%%j%%k% (copy this bit as many times as it takes)
Echo %a%%c%%e%%g%%i%%k%%b%%d%%f%%h%%j% (This part too)
goto A