Tutorial - How to Make "The Matrix" in Command Prompt (2014 Version)

Поділитися
Вставка
  • Опубліковано 12 лис 2024

КОМЕНТАРІ • 913

  • @AwesomeGames56
    @AwesomeGames56  3 роки тому +14

    An updated version of this video has been uploaded. You can see it here: ua-cam.com/video/k884nYWtcjI/v-deo.html

    • @yash1152
      @yash1152 3 роки тому

      thanks for posting the info here (:

  • @jyrilappalainen8850
    @jyrilappalainen8850 8 років тому +544

    theacher was like wtf when I showed this to her and she said that I need to pay if I broke it😂😂😂

    • @gerritvonvolkswagen4018
      @gerritvonvolkswagen4018 7 років тому +5

      Kakkamake 74 my teacher would start screaming

    • @Mountainair2975
      @Mountainair2975 7 років тому +11

      lol I have to try this prank on my teacher XD

    • @fate_7199
      @fate_7199 7 років тому +4

      Kakkamake 74 lol

    • @LokoManInvictus
      @LokoManInvictus 7 років тому +2

      LOL

    • @simonnoren7406
      @simonnoren7406 7 років тому +20

      haha yea sdame here but insted of neo i put my teatchers name xd she was like omg shut it offff

  • @niju
    @niju 8 років тому +239

    0=Black 8=Gray
    1=blue 9=Light blue
    2=green
    3=aqua
    4=red
    5=purple
    6=yellow
    7=white

    • @arnas5015
      @arnas5015 8 років тому +7

      xJadxn pretty sure their are more colours than that

    • @niju
      @niju 8 років тому +19

      atleast I gave you some!

    • @erlendcx
      @erlendcx 7 років тому +13

      You sound ungrateful Arnas

    • @uksuperrascal
      @uksuperrascal 7 років тому

      with colour subtraction you only need 3 colours to make any colour

    • @MdAdil-nh2pu
      @MdAdil-nh2pu 7 років тому +5

      more commands like this:
      ipconfig /hackermode

  • @AwesomeGames56
    @AwesomeGames56  7 років тому +219

    This video will be removed in the coming weeks, and a new version of it will be uploaded where I explain the commands better. This video is a few years old now and I've learned more about batch scripts since this was made.

    • @darbycringle8339
      @darbycringle8339 7 років тому

      AwesomeFriends56 Gaming EPIC VID

    • @shighley948
      @shighley948 7 років тому +4

      If you mess with the spacing between the %random%'s and the speed you can get a spaced effect instead of the solid lines of numbers. It takes a little patience, but trying to be random with the spaces helps, everything from a single space to a couple 'tab's can make a world of difference.

    • @cobybruz4104
      @cobybruz4104 7 років тому

      Awesome Friends Gaming your the freaking best it works like heaven and you should be proud of that

    • @maty1594
      @maty1594 7 років тому +2

      why you didnt added it to description ??'!!

    • @fallawayyt3028
      @fallawayyt3028 6 років тому

      SAME

  • @eidmargaming8993
    @eidmargaming8993 5 років тому +358

    F.B.I whe got him
    Edit:omg thx for the 1 like
    Oh it just me :(

  • @Matt23488
    @Matt23488 7 років тому +5

    "@echo off" is a batch command that tells cmd not to display the commands in the batch file as they are executed. So it's never required for any batch file to function, but you do need it for sort of visual effects like these for obvious reasons.

  • @Eremon1
    @Eremon1 5 років тому +125

    That doesn't look anything like the matrix data screen.

    • @ferocs
      @ferocs 5 років тому +1

      Matrix is showing an nmap-scan as far as i know.

    • @CoolKoon
      @CoolKoon 5 років тому +7

      @@ferocs I highly doubt that considering the fact that horizontally typed Japanese(?) characters appear in it as well.

    • @DexXx84
      @DexXx84 5 років тому +5

      Kirschcore[.]de it actually is sushi recipe in Japanese :D :D :D. And yes, apart from it being Japanese characters they also spawn vertically, with different speed at each column, and the longer column got, the brighter the characters were, and it is far more complicated than by just using batch file, as in this video. Regarding nmap, it's one of the rare cases of using real life software in sci-fi IT movies, the other are mostly graphical overlays doing nothing useful.

    • @oleguncrew1433
      @oleguncrew1433 5 років тому +1

      LOL

    • @ByMyRecords
      @ByMyRecords 4 роки тому

      i tired this an it dont even work tho?

  • @EnderRealmMC
    @EnderRealmMC 8 років тому +104

    Not only is this a matrix cool effect but it also makes your computer faster.....
    Just letting you know

    • @arnas5015
      @arnas5015 8 років тому +3

      KkingEndeRz you're kidding right?

    • @AwesomeGames56
      @AwesomeGames56  8 років тому +37

      KkingEndeRz wait. Faster? In every use of this it's made it slower by taking up the CPU's resources to generate random numbers.

    • @arnas5015
      @arnas5015 8 років тому +15

      AwesomeFriends56 Gaming lmao, think it's a troll. xD

    • @EnderRealmMC
      @EnderRealmMC 8 років тому +3

      it increases the cpu

    • @arnas5015
      @arnas5015 8 років тому +7

      KkingEndeRz lmao. no it doesn't.

  • @mohitjavle1191
    @mohitjavle1191 3 роки тому +1

    Nice bro my friends get shocked when I do in front of them
    They excited to know this trick and I told them that video
    Love from India bro ❤️

  • @hensola
    @hensola 8 років тому +3

    To explain @echo off
    Echo off turns the local echo off.
    Basically, the command script interpreter will not echo the statement in the batch script to the screen.
    The @ symbol prevents "echo off" from appearing on the screen.
    +Michael Reilly
    This is why your program says "echo off", you forgot to add the @ symbol to the beginning.
    If I want to debug a script, I will change
    @echo off
    to
    :: @echo off
    That way it shows me what the script is doing.
    :: is the same as REM, with one noticeable difference:
    - :: is ignored by the command interpreter when it is pre-processing the script, therefore a script will run quicker.
    - Whereas a REM statement is processed at script run-time

    • @kintler11
      @kintler11 8 років тому

      +Formal Moss simply it doesn't show the commands.

  • @admiringsplat77
    @admiringsplat77 7 років тому +1

    it comes up with:
    Sets the default console foreground and background colors.
    COLOR [attr]
    attr Specifies color attribute of console output
    Color attributes are specified by TWO hex digits -- the first
    corresponds to the background; the second the foreground. Each digit
    can be any of the following values:
    0 = Black 8 = Gray
    1 = Blue 9 = Light Blue
    2 = Green A = Light Green
    3 = Aqua B = Light Aqua
    4 = Red C = Light Red
    5 = Purple D = Light Purple
    6 = Yellow E = Light Yellow
    7 = White F = Bright White
    If no argument is given, this command restores the color to what it was
    when CMD.EXE started. This value either comes from the current console
    window, the /T command line switch or from the DefaultColor registry
    value.
    The COLOR command sets ERRORLEVEL to 1 if an attempt is made to execute
    the COLOR command with a foreground and background color that are the
    same.
    Press any key to continue . . .

  • @blur4
    @blur4 9 років тому +21

    0= Black 1= Blue 2= Green 3= Aqua 4= Red 5= Purple 6= Yellow 7= White 8= Grey 9= Light Blue A= Light Green B= Light Aqua C= Light Red D= Light Purple E= Light Yellow F= Bright White. or type in 11 instead of 0 and it will give you a command list of what i just wrote.

    • @redoanda5847
      @redoanda5847 8 років тому

      +blu r THANKS SO MUCH

    • @blur4
      @blur4 8 років тому

      +Red Oanda no problem.

    • @samu5167
      @samu5167 7 років тому

      blu r You can just type color help, or remember the Hex coding language and the colors from black to bright white

    • @blur4
      @blur4 7 років тому +1

      I don't the type the color I type the number associated with the color.*****

    • @Minimum3Dashers
      @Minimum3Dashers 4 роки тому

      you can just use color (wrong thingy)

  • @ZakiAsir
    @ZakiAsir 8 років тому +21

    If you want a new intro, I got you covered man.

    • @that_mason_guy
      @that_mason_guy 7 років тому

      Ill take one

    • @lesno3636
      @lesno3636 6 років тому +1

      i want an intro whit the name of "Miki's Vlogs" PLEASE

  • @Zzsillykitty_Vi
    @Zzsillykitty_Vi 5 років тому +32

    6:52 live wallpaper

  • @stiaannieuwoudt9217
    @stiaannieuwoudt9217 9 років тому

    cant believe that something ragarding sofware actually works on youtube. Thanx m8

  • @missgingerful
    @missgingerful 9 років тому +6

    Hi, thanks for the vid. Goes a bit more in depth than some others. I have a question about the random number generator part. Is there any way you can mix the numbers with letters and if so, can you change the font of those letters too to make it look more "Matrix-y"? I know the actual font in the films is just a mixture of backwards Japanese script and backwards Western Latin numbers and letters so just wanted to know if there was any way of re creating it more closely to the film. I've never done anything like this in my life so I'm a complete newbie. Lol.

  • @javidabdullahmir2856
    @javidabdullahmir2856 4 роки тому

    Thanks sir.... You are the worlds most intelligent guy....Thanks

  • @deepfinds
    @deepfinds 6 років тому +2

    It's a little messy but at least you go through the basics!

  • @blackjames4809
    @blackjames4809 5 років тому +6

    I have vibes of hacker after watching this.

  • @farshidnobary6428
    @farshidnobary6428 5 років тому +1

    I did everything you said but still couldnot change the speed?
    thanks

  • @MrBgdu26
    @MrBgdu26 6 років тому +4

    One thing I'm sure about "@echo off" is that it hides the command prompt before the typed command like "C:\Users>"

  • @danman2897
    @danman2897 4 роки тому

    best intro ever.

  • @tfr
    @tfr 6 років тому +5

    1:08 It turns off the "C:\Users\%user%\*" pretty much. Cls clears the page (CLearS)

  • @DanielFurtadoR
    @DanielFurtadoR 8 років тому +1

    Wow, nice step by step and upgradations of delay etc.
    the goto reminds me of the 8086 assembly programming

    • @jenniferblair5170
      @jenniferblair5170 8 років тому +1

      @echo off
      echo Microsoft Windows [Version 6.1.7601]
      echo Copyright (c) 2009 Microsoft Corporation. All rights reserved.
      echo.
      :cmd
      set /p cmd=
      %cmd%
      goto cmd

  • @DFDuck55
    @DFDuck55 5 років тому +12

    @echo off
    title Not Matrix
    color 0a
    mode 1000
    cls
    echo Hello Neo
    pause
    cls
    :Not Matrix
    set /a _rand=(%random%*999/32768)+1

    • @markoloko1223
      @markoloko1223 5 років тому

      oh god im gonna test it

    • @markoloko1223
      @markoloko1223 5 років тому

      Really cool!

    • @silent_whisperer3624
      @silent_whisperer3624 5 років тому

      that was neatly done, time is bit slow overall the spacing between the random numbers are really outstanding

  • @Booglywoogly619
    @Booglywoogly619 7 років тому +1

    how many times did you press ctrl v bcz i need the exact amount?

  • @DiogoMoreda
    @DiogoMoreda 7 років тому +3

    @echo off makes the command prompt invisible, this usually being C:\ when you're on your system root folder!

  • @runn1nwith5izzorz
    @runn1nwith5izzorz 7 років тому

    echonoff means it's not telling you what's going on behind the scenes. basically everything you type after echo off until you skip a line won't be displayed or considered code

  • @TheCalax
    @TheCalax 7 років тому +144

    You've got little to no idea what you're doing, right? xD

    • @AwesomeGames56
      @AwesomeGames56  7 років тому +42

      Z3roFPS pretty much, when I made this I was still at a basic understanding of programming and knew next to nothing about BATCH scripts. I've taken programming courses since this was made though and I'm considering making a new version of the video.

    • @AwesomeGames56
      @AwesomeGames56  3 роки тому +4

      @Sir Scofferoff I still might make an updated version one of these days!

    • @nach0rui473
      @nach0rui473 3 роки тому +1

      @@AwesomeGames56 so we are waiting...

    • @imperatusmauser7096
      @imperatusmauser7096 3 роки тому +2

      @@AwesomeGames56 Fulfill your promise my brother! Or let the shrimp erase you 🦐

    • @AwesomeGames56
      @AwesomeGames56  3 роки тому +1

      @@imperatusmauser7096 BRING ON THE SHRIMP! 🦐

  • @louisa6943
    @louisa6943 7 років тому

    dude this video is awesome.. super simple to create it.

  • @Prutswerk
    @Prutswerk 5 років тому +3

    The "goto Greeting" statement and the Greeting label is completely redundant.

  • @rafaelpradosbarbosa9991
    @rafaelpradosbarbosa9991 5 років тому +4

    wow, this was extremely useful tanks a lot

  • @ohdamn4583
    @ohdamn4583 8 років тому +22

    does this damage my pc?

    • @AwesomeGames56
      @AwesomeGames56  8 років тому +5

      +Stefan Matei No. If you follow the directions in the video it should not harm your PC.

    • @jtfarin9995
      @jtfarin9995 8 років тому +2

      Hey When i press any key or enter when its open. Its close out. Why is it doing that?

    • @AwesomeGames56
      @AwesomeGames56  8 років тому +1

      JTFarin 999 The command "goto" is case sensitive, if it can't find where it needs to go it closes itself out. Other than that I'm not sure what else it could be.

    • @jenniferblair5170
      @jenniferblair5170 8 років тому

      no. you can change the commands in caps wherever and it still won't!

    • @jenniferblair5170
      @jenniferblair5170 8 років тому +1

      no!

  • @KindofaScientist
    @KindofaScientist 8 років тому +13

    @echo off will hide all the commands u wrote while running the .bat file and @echo on will show them all :)

  • @sng1s675
    @sng1s675 7 років тому +3

    @echo off
    turns off the text that displays in console when its opened

  • @KittenKatja
    @KittenKatja 5 років тому +4

    "The Matrix" is actually "The Ghost in the Shell".

  • @jo-andrehansen1239
    @jo-andrehansen1239 7 років тому +1

    possible to use symbols instead?;) or do i need to learn javascripts? =D

  • @JuelZ925
    @JuelZ925 8 років тому +6

    Works great!

  • @anupamroy1771
    @anupamroy1771 4 роки тому

    Hey um great but...When I do it, it says "not recognized" and loops along with it

  • @baluwastaken
    @baluwastaken 5 років тому +4

    Welcome to a New Episode of: "Why is this in my Recommendations?"

  • @TheHutchFiles
    @TheHutchFiles 3 роки тому

    Whats crazy is that, that exact combination down to the 1, is in pi. In order. Thats insane!

  • @bih6310
    @bih6310 5 років тому +10

    6:52 why im see Avengers.

  • @x.brxkxn._.chxrli.x
    @x.brxkxn._.chxrli.x 3 роки тому

    Why I didn't work?
    I already follow your step with carefully but it's still not working

  • @byeqe1
    @byeqe1 5 років тому +10

    i trolled my friend with this xD

  • @boredomholds9734
    @boredomholds9734 9 років тому +4

    Thanks so much!!! Keep up the good work!!!

  • @onboho
    @onboho 7 років тому +1

    This is awesome... Thanks so much man...

  • @MasonGelosotech
    @MasonGelosotech 5 років тому +3

    UA-cam recommendations on crack but it’s fun

  • @sphinx09200
    @sphinx09200 3 роки тому

    Thanks for the tutorial it rocked.

  • @leilaeveleigh9459
    @leilaeveleigh9459 5 років тому +3

    I dont even know how to use a commond block in minecraft

  • @SomeOne-xl8kh
    @SomeOne-xl8kh 4 роки тому

    How do you hide the scroll bars that are on the side on bottom

  • @bueblinr1
    @bueblinr1 5 років тому +3

    *delets the Matrix again*
    Whole world glitches out

  • @db3xo
    @db3xo 4 роки тому +1

    Mathew, you havent removed this video yet.

  • @yorumcuturk
    @yorumcuturk 8 років тому +5

    he has typed the file name which is located in his computer matrix.bat file.
    you need code for that matrix screen. you can create the code in .txt editor and save the file with name something like matrix.bat but the name of the file must be end with .bat its must be .bat format. when you open that file from your desktop that matrix will be displayed on your screen. on this video he has run the file on cmd. he didn't share the matrix code.
    sample of matrix code;
    @echo off
    pause
    color 0c
    mode 1000
    :A
    echo %random%
    goto A
    %random% this will be displayed on your screen. if you write this more than one then you screen will be more wide e.g. %random% %random% %random% %random% %random% %random% %random% %random%

    • @vibepanda3945
      @vibepanda3945 8 років тому +1

      dude legend thanks a lot can you please sub to my channel?

    • @samu5167
      @samu5167 7 років тому

      Yorumcu Turk %random% makes single line longer, and you forgot 'cls' commands

    • @WISHER0
      @WISHER0 6 років тому

      Vay demek Türk

  • @zeddsplayground2555
    @zeddsplayground2555 2 роки тому +1

    hank you soo much! This helped a lot! ❤️

  • @Halonahsucksatediting
    @Halonahsucksatediting 6 років тому +4

    i pranked my friends with this they said "dude are you a hacker" i said yes they freaked out

  • @pricey5438
    @pricey5438 8 років тому +5

    when i press enter it closes how do i fix that

    • @AwesomeGames56
      @AwesomeGames56  8 років тому +1

      Make sure your pointers are correct.

    • @Sydni519
      @Sydni519 8 років тому

      Thats rit it dose not wurk

    • @RiZeroSterfin
      @RiZeroSterfin 8 років тому

      u redo the same step m8

    • @jacksonfarmer8574
      @jacksonfarmer8574 8 років тому

      look at the command he puts in again same thing happened to me but I fixed it

    • @RiZeroSterfin
      @RiZeroSterfin 8 років тому

      lol

  • @jamesmajor6392
    @jamesmajor6392 4 роки тому

    keep it up bro, great content man

  • @Engineer9736
    @Engineer9736 5 років тому

    .3 seconds is 300 milliseconds. Not 3. And echo off prevents the command prompt from displaying all the lines that are in the script.

  • @ETGreat
    @ETGreat 9 років тому +4

    i like cmd and turbo C++

    • @AwesomeGames56
      @AwesomeGames56  9 років тому +1

      Personally I like Batch (CMD) and C#, I haven't gotten around to C++, and I've used HTML long enough to know a little about CSS. Do you recommend C++?

    • @istrebitelji
      @istrebitelji 9 років тому +2

      +AwesomeFriends56 Gaming Naaah keep using C# Easier and shorter codes.

    • @ahmedshaikh7662
      @ahmedshaikh7662 9 років тому +1

      +AwesomeFriends56 Gaming I know C++ and I recommend it!

    • @iangabrielalcantara7756
      @iangabrielalcantara7756 6 років тому

      Pilipino ka dre

  • @MetalSnakeBoogy
    @MetalSnakeBoogy 5 років тому

    I learned this over 30 years ago on DOS.

    • @andhisband
      @andhisband 5 років тому

      So? He was new at this point--learning DOS commands. Everybody starts somewhere.

  • @ArtNoggs
    @ArtNoggs 8 років тому +45

    This Command For Weaks @echo off
    title Matrix
    color 0a
    mode 1000
    goto Greeting
    :Greeting
    cls
    echo Hello Neo
    pause
    cls
    goto Matrix
    :Matrix
    echo %randon%
    goto Matrix

    • @PantsYT
      @PantsYT 6 років тому

      how dumb are you?
      the @echo off command hides the commands, and not inserting it would ruin it completely.

    • @rushikeshhalge3897
      @rushikeshhalge3897 6 років тому

      what do you mean by hide the commands ? i didnt get it

    • @PantsYT
      @PantsYT 6 років тому

      @@rushikeshhalge3897 just try it

    • @redbox7883
      @redbox7883 6 років тому

      He put in @echo off tho

    • @evaldaslukosevicius7207
      @evaldaslukosevicius7207 6 років тому +3

      something u made wrong not %randon% u need %random%

  • @dannycarbona
    @dannycarbona 7 років тому +9

    You should plan out what you're going to say in advance so you don't talk like a dying turtle walks.

    • @AwesomeGames56
      @AwesomeGames56  7 років тому +9

      Danny Carbona You should check the upload date on a video before you criticize someone for a video they uploaded almost three years ago.

    • @briggholmes4957
      @briggholmes4957 7 років тому

      AwesomeFriends56 Gaming haha good one

    • @santanzotss
      @santanzotss 7 років тому

      buttkisser lol...but yea niceone awesome friends gaming

  • @Demonslayer-if4zf
    @Demonslayer-if4zf 7 років тому

    how would I make the text binary instead of random numbers and letters?

  • @sirMAXX77
    @sirMAXX77 8 років тому +3

    Program:
    @echo off
    title Matrix
    color 0a
    mode 1000
    goto Greeting
    :Greeting
    cls
    echo Hello Neo.
    pause
    cls
    goto Matrix
    :Matrix
    echo %random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%
    PING 1.1.1.1 -n 1 -w 0.3 >NUL
    goto Matrix
    Welcome. The ping doesn't work for me, it slows it down to a crawl, even at 0.0ms ,but it might work for others, I'll just have to toy with it.
    Thank you for uploading, this what I love about YT, I haven't written any programs in ages and feels nice to find something to tinker with. I might get back in to it.

  • @lofi5049
    @lofi5049 7 років тому

    i did everything u said other than the mode 1000 bit because mine already goes into full screen,it says press any button to continue,i do that and it just closes command prompt

  • @ANONYMOUS-pu5cn
    @ANONYMOUS-pu5cn 8 років тому +3

    ECHO OFF TURNS OFF ANY unnecessary WRITEING

    • @loouis
      @loouis 5 років тому

      ANONYMOUS and you should go to school.😉

    • @Engineer9736
      @Engineer9736 5 років тому

      More accurate: Echo off prevents the command prompt from showing the commands that the script executes.

    • @maxmuster7003
      @maxmuster7003 4 роки тому

      But neverless if we start an executable from the batch file it can display a string with the default output. For to prevent this running DOS we can use CTTY nul and at last at the end CTTY con.
      @echo off
      REM DOS Batch file
      CTTY nul
      ABC.EXE
      XYZ.EXE
      CTTY con

  • @shoxcsgo2836
    @shoxcsgo2836 7 років тому

    to me it sey that:
    'random' is not recognized as an internal or external command,
    operable program or batch file.

  • @ntafou4208
    @ntafou4208 8 років тому +3

    thx bro now i can scar my fr :D

  • @Its_NateBrown
    @Its_NateBrown 8 років тому

    Why is it not letting me press enter cause when I do and I press enter it closes it and goes back to where I opened it

  • @EliSmith
    @EliSmith 7 років тому +20

    This guy doesn't know anything about what he's doing

    • @satori1885
      @satori1885 5 років тому +1

      You are not better than him >:/

    • @ClamDigger_
      @ClamDigger_ 5 років тому +1

      Shut up nerd lmaooooo xD

    • @tomjanko8032
      @tomjanko8032 5 років тому +2

      DO IT BETTER IF YOU CAN

    • @Vatsyayana87
      @Vatsyayana87 5 років тому +1

      yet he did exactly what he intended? im gunna make a reach and say your just an ass hole.

    • @Ukowyeslo
      @Ukowyeslo 5 років тому +1

      Fuck you

  • @farazjaved8745
    @farazjaved8745 4 роки тому

    thanks alot ab tak bus filmo ma dekha tha aj khud banya hai

  • @wiseguy7224
    @wiseguy7224 5 років тому +3

    @echo off
    "I don't know exactly what it does, but many programs require that to be put at the beginning..."
    You noob. RTFM
    If echo is not switched off the program will write every command to the screen before it is executed.
    Learn programming before you post videos... Thumbs down.

  • @beneficialmafialogy8513
    @beneficialmafialogy8513 7 років тому

    Any of the bat file is not working on my lappy.What should I do then

  • @mochtegernrapper5720
    @mochtegernrapper5720 7 років тому +5

    Thats isnt The matrix. Not cool stuff.

    • @cw.9644
      @cw.9644 7 років тому +1

      ITS MENT TO LOOK LIKE IT NOT THE ACTUAL MATRIX

  • @johndelacosta4449
    @johndelacosta4449 2 роки тому

    How many times do you need to spam the "%random%"?

  • @hackthishittwice1974
    @hackthishittwice1974 5 років тому

    I know this video is from 2014 but its still usefull.
    If got a question, do you know unicode? Ofcourse you do.
    Is it possible doing a matrix with where %random% will be shown as unicode characters?

  • @cas10a
    @cas10a 7 років тому

    The Matrix would be just zeros and ones to simulate...they were supposedly reading binary...echo off just turns off seeing commands...a batch file is not really a compiled program, but it was a little neat fun file, you put together...

    • @AwesomeGames56
      @AwesomeGames56  7 років тому

      Rob Cas I've actually had programming and logic classes since this video was made, so looking back on it I should really make a new video on this subject. The Matrix actually (and you probably already knew it) had their own symbols rather than using numbers from what I remember from the film. I love the effect and it's just a fun little script that I still to this day mess around with.

  • @estanislaomendivil2581
    @estanislaomendivil2581 8 років тому +1

    can you do it move more slowly? and how do you have to code so as to obtain random numbers between 0 and 1?

  • @timmyg_official4352
    @timmyg_official4352 7 років тому

    the same thing I also type and after I opened it there is written "press any key...." I pressed but it gets off

  • @uksuperrascal
    @uksuperrascal 7 років тому

    Hi I'm new to batch files so please leave this video for other newbies as it dose not blind me with to much blurb and for your next video please copy and paste the batch text to the above - show more window - so that we can copy and paste it into note pad from here - as i type slow and make mistakes - that would be a lot easier - Thank you

  • @AbhishekKumar-te6of
    @AbhishekKumar-te6of 8 років тому

    if i press any key then it suddernly go back to the window not showing matrix

  • @basztarek
    @basztarek 8 років тому +1

    Hi, thanks for the video. Just got one question:
    Suppose I want to execute some code after this effect. Like hold down the Matrix for 5 seconds, then load up an ASCII-art using TYPE filename.txt - how do you break the loop and execute the next command?
    I tried to do it using a for-in loop but it generates the same numbers in every line and that's not what I actually wanted. I was thinking of using a counter.
    My pseudocode:
    @echo off
    :a
    do the matrix loop
    ping delay
    counter++
    if counter reaches 1000
    goto b
    goto a
    :b
    type asciiart.txt
    Is something wrong? I don't think I initiated the variable well or the program doesn't increment it properly. What would you do?

  • @giedriusdekaminavicius5272
    @giedriusdekaminavicius5272 3 роки тому

    And btw if you want to change the color of text put in command prompt color red

  • @meyer.oppelt
    @meyer.oppelt 5 років тому

    If anyone is wondering this line should be pinging and inside circuit. Which means it shouldnt go to the internet. It might take longer than 0.3 seconds to ping your DNS server so ping this address below.
    PING 127.0.0.1 -n 1 -w 0.3 >nul

  • @enduser8709
    @enduser8709 8 років тому

    Control C -stops the batch program- This needs a random number of digits scrolling down, I recall some blank sections dropping down in the movie.

  • @johnbarrios4625
    @johnbarrios4625 4 роки тому

    the command is working but its not turning green

  • @BenMcK
    @BenMcK 7 років тому

    i need help with slowing down the words but it wont do anything.
    i put in (Ping 1.1.1.1 -n 1 -w 0.3 >NUL) and nothing happens:(
    please help

  • @lukasvaranavicius3997
    @lukasvaranavicius3997 7 років тому

    Since colour a is green then what is blue?

  • @lackmou
    @lackmou 4 роки тому

    [TIP] type „echo off“ into cmd and you know exactly what it does. Its not needed but its for the beauty of the .bat scripts that use the „echo“ command.

  • @adwarization
    @adwarization 6 років тому +1

    It works even for windows 10?

    • @vincenzo3574
      @vincenzo3574 6 років тому

      Yes because Windows sucks so it still uses batch

    • @Lucianperson
      @Lucianperson 5 років тому

      I can't get it to work on mine

  • @un_civilized
    @un_civilized 3 роки тому

    I would like to see the random numbers converted to binary. Is that possible?

  • @krajax6875
    @krajax6875 6 років тому +1

    lol the guns n roses intro XD

  • @samj1012
    @samj1012 4 роки тому

    cool indeed. can you show is how to change font size make it bigger ?

  • @MadDogTM
    @MadDogTM 5 років тому

    it filled teh screen up then i re opened it and it was gone back to the small amount on left of screen. i did it before

  • @buddzy8372
    @buddzy8372 7 років тому

    When I pressed any key the command box closed down instead of doing the maytrix

  • @eingooglenutzer2531
    @eingooglenutzer2531 5 років тому +1

    Is this dangerous for my macbook?

    • @Happy_Teddy24
      @Happy_Teddy24 5 років тому

      You cant even do it on mac. More proof apple uses child proof, out dated software.

  • @joshdenham8404
    @joshdenham8404 7 років тому

    My notepad doesn't seem to respond to the commands....weird

  • @xeryus3357
    @xeryus3357 6 років тому

    Wait what? i have definitely got the same code but for some reason it doesn't work, i can open it as a bat format but when i do cmd crashed, after snooping around, for some reason it doesn't like ANSI so uhh, please help.

  • @AdamWebbadamwbb
    @AdamWebbadamwbb 7 років тому

    @echo off disables the command input being shown on screen thus only showing the output of the commands entered.

  • @carlovolti9390
    @carlovolti9390 7 років тому

    Um, "@echo off" simply stops the batch file from echoing the command in the file to the screen. "@echo on" restores it to the default which is echoing the commands in the batch to the screen. "cls" simply means "Clear screen".