Nice video, I had a lot of fun watching it. I knew most of the things you covered in the video, however there were a few things I actually didn't. Nice to see someone giving Survivalcraft 2 a proper electronics tutorial that it deserves. Keep up the good work! :)
Yes I can, I want to do some more in-depth explanations of certain systems, and I plan on diving into the quantum physics of signals (ticks are quantized) and show how to make 50Hz clocks (twice as fast as the usual clock) and real 100Hz timers
Yes, for F and A, the AND gate will output A, but for 7 and 2, which is respectively 0111 and 0010 in binary, the AND gate will output 0010, which is 2
@@Cleacat it processes it bit by bit: the AND gate only outputs a "1" for the bits where both inputs are "1", the output of 2 in the previous example is a coincidence, if you want to compare values, then you could use memory banks to do that
I like the 4-bit counter it will make your brain blow cause when i used it with a piston on top its like the nunber puling 1 Press 2 and the left is Press 1 press 0 its cool
To create a sort of system in which I have motion sensors scattered around the forest and I want to create a control center that can identify the corresponding signal to identify the sensor, what do you recommend?
I would recommend wires or wire-through blocks to transport the signal to your control center, maybe you can put them underground and group them in the way you want it to be displayed
Connect the output of an SR latch to your piston. Then connect a button to the "set" input and a button to the "reset" input of the SR latch. Press the "set" button and remove it (or hide it so that you can reset your map). When you press the remaining button the piston should open, and you can press it as much as you like but it won't ever close again
The fact that the NXOR gate doesn't exist is not that logic because it's the only inexistent combination of logic gates. But it doesn't make me anything because I never have to economise space when i do an electric system.
Yes, you can generate data to add, subtract, or multiply 4-bit numbers. Memory banks with such calculation data can be used to make 8-bit and 16-bit calculators. To make a computer you'll also need RAM and registers. Luckily, a memory bank is a 4-bit RAM unit, so you can just use it for all memory related tasks. And then, if I remember it correctly, you'll only need a program counter, and an instruction decoder, memory banks can take instruction codes as an input and turn certain wires on or off to activate the right calculation or logic processes. In the future, I want to make videos about the process of making a CPU from scratch
Can you make the video tutorial of oxygen not included automations? Not survival parts, just automation, solid transport and electrical parts. Because I need your short brief tutorial
I'm still confusing with logic gates. Especially when I want to make adder and subtractor. In case I want to make a simple game that give a poin, then the poin can be exchange with item. So it would be adder when win the game and substract the poin when it exchange with item.
Calculating is all about breaking bigger calculations up into smaller calculations. For most calculations, you can build the method you use to calculate in your head as an algorithm: 836 + 975 = (8+9) x100 + (3+7) x10 + (6+5) = (1) x1000 + (7+1) x100 + (0+1) x10 + (1). So to add two numbers, you need some component that can take two digits as its input, and add them together into a one digit sum output, and a carry output (usually this value is either zero or one). This component you can wire up to connect to each two digits of the same significance of the input digits. You can make such a component for adding binary numbers: the two binary inputs are fed into an XOR gate (one of the two is on) for the sum output, and they are fed into an AND gate (both are on) for the carry output In Survivalcraft, you can fill a memory bank with certain data so that it can be used to add hexadecimal digits together, this is faster than doing this in binary
@@SP4CEBAR it's seems like 8 bit counter at mgblitz81 music to show track list isn't it? And then using XOR gates and AND gates (I used to learn this in Wikipedia call Half / Full adder) but it didn't work with hexadecimal
@SP4CEBAR dunno if u live in the US but unfortunately most curriculums before we adopted Common Core(2010s I think) taught us to memorize how to add/subtract/multiply/divide rather than explicitly teaching us different algorithms to use to calculate.
If I remember it correctly, the 8-bit counter in MGBlitz's music player is to select a track. A half adder is a component that adds two binary digits together The approach I use to add numbers in Survivalcraft adds two hexadecimal digits together The way you break a large sum up into smaller sums that can be solved by one of the aforementioned components is the same
Also , I cant upload videos , and I cant be a youtuber ,because i use now mobile data , but before August 2022 I made a video on my channel with a leather and fur farm , with pistons , a logic not gate and more stuff .
@Meeooooooww cool, maybe you could use McDonald's free wifi to upload videos (or Starbucks' free WiFi, or any other free WiFi place), just watch out for hackers who may be looking for devices with bad security on free WiFi networks, or who may pretend to be the free WiFi network
@@Meeooowing I'm sure there are places that offer free WiFi, some snackbars, restaurants, campings, hotels, schools, companies, touring busses, and ferry boats do. Alternatively, some internet service providers have a deal where users can buy more more mobile data (or unlimited mobile data) for a day
A 4-bit signal consists of four binary signals (bits), each of these signals have a value assigned to it, all the values of the bits that are turned on added up make a value, there are 2^4=16 possible combinations of 4-bits, so the value can be displayed as a hexadecimal (16) value
Yes, you could do that with memory banks, in this case you can use the memory bank input with the single blue dot as the input, and the output as the output: the encoding memory bank could have the data: 08A3 which can be translated to 0000 0101 0110 0011 in a D/A converter, you can access it by sending the values 1, 2, and 3 into the memory bank, my count here starts at 1 instead of starting at 0 for consistency with the next step the decoding memory bank has the data: 00030000102 which returns zero when the input value doesn't have a code assigned to it, 1 when the input is 8, 2 when the input is A, and 3 when the input is 3
Really? They are really easy to use. Just open the creative inventory, go to the fireworks tab, and grab a firework. If you're on mobile just hold the center of your screen, if you're on PC just hold and release right-click If you want to know how to craft fireworks, pause the game and go to the receapedia If I remember it correctly there are 8 different patterns of fireworks, which can each be high and not flickering, high and flickering, low and not flickering, or low and flickering, all these types of fireworks are available in 8 different colors
@Cut Scenes That isn't hart either, place down a dispenser, put a firework in it, make sure the dispenser is in shoot-mode, place a button next to the dispenser, hit the button, enjoy
@@emagico3030 I once had an idea to use many dispensers with fireworks to make a cursor indicator for one of my computer screens, but it seems quite impractical. But maybe I'll ever make a 3D screen using fireworks, that could be interesting
You study all this, explained to us, edit all this, created all this, build an computer and explained it too. This Chanel is underrated
Thank you very much!
Also Subtitles!
Bro Hats off in appreciation of how impressive are you in Electrics skill in survival Craft 2
Nice video, I had a lot of fun watching it. I knew most of the things you covered in the video, however there were a few things I actually didn't. Nice to see someone giving Survivalcraft 2 a proper electronics tutorial that it deserves. Keep up the good work! :)
Finally! Found a legit channel about SC2!
You should REALLY love this game to dedicate so much time for making super high level guide video like this. Thank you. +1 sub
Thanks for the sub!
i was waiting for this lol thx!
me too! LOLOLOLOLOLOLOLOLOLOLOLOL
Dude you should be a actual electric engineer bro, you teaches me well! Tysm!
I will be
Thanks Sp4cebar! Very Electrical😄
I cannot say any thing more than thanks it really helps :]
This video is very useful
Glad to hear that
Thank you so much for this video :)
I'll try to add Spanish subtitles.
Thanks
@Blua F xd
@Blua pero al menos tiene mecánicas chidas xd
@Blua xd
Good job with no dislikes
Thanks bro...... It's very helpful 💯
me: finally!, also me is lost at 0:23
Don't worry, in the first minute, I'm explaining the same thing multiple times
Спасибо! Благодаря тебе я узнал много нового!
4:38 is this good for houses?
Yes, especially with the new update, if the lever is on the inside you can keep all intruding werewolves out
Thank you very much !!! 🤯😃
You did not a good job, you did the Best Video i ever watched about this game! thank you! 😃
Can you make some advanced tutorials? For example, how to use a clock signal to direct two memories to swap directly.Oh, thanks.
Yes I can, I want to do some more in-depth explanations of certain systems, and I plan on diving into the quantum physics of signals (ticks are quantized) and show how to make 50Hz clocks (twice as fast as the usual clock) and real 100Hz timers
4:59 does this mean that
If i put input F and A
It will output A
Will work like this
7 and 2
Yes, for F and A, the AND gate will output A, but for 7 and 2, which is respectively 0111 and 0010 in binary, the AND gate will output 0010, which is 2
Is a and gate that output the higher one with 2 input similiar to and gate exist
@@Cleacat it processes it bit by bit: the AND gate only outputs a "1" for the bits where both inputs are "1", the output of 2 in the previous example is a coincidence, if you want to compare values, then you could use memory banks to do that
I like the 4-bit counter it will make your brain blow cause when i used it with a piston on top its like the nunber puling 1 Press 2 and the left is Press 1 press 0 its cool
9:00 like the 1 is horizontal and 2 is verticals
Like the value "F,9"
Yes
The input on the right which has one blue dot is horizontal (X)
The input on the left which has two blue dots is vertical (Y)
I already know that thing
@@Cleacat great!
To create a sort of system in which I have motion sensors scattered around the forest and I want to create a control center that can identify the corresponding signal to identify the sensor, what do you recommend?
I would recommend wires or wire-through blocks to transport the signal to your control center, maybe you can put them underground and group them in the way you want it to be displayed
You may also be interested in this video by Symbadx37
th-cam.com/video/2XdXUZpXAUs/w-d-xo.htmlsi=mrOSuZMaCvMf8NNQ
@@SP4CEBAR okk thx
I've been wondering how to make some button or switch that opens a piston once, but can never be closed again?
Connect the output of an SR latch to your piston. Then connect a button to the "set" input and a button to the "reset" input of the SR latch. Press the "set" button and remove it (or hide it so that you can reset your map). When you press the remaining button the piston should open, and you can press it as much as you like but it won't ever close again
@@SP4CEBAR Thanks, I appreciate how after years and you're still active, literally the meaning of underrated
@@ArmorgurgussyCODM Appreciated!
This is very interesting.
I unsterstand something now about Logic And , Xor , Or gates
The fact that the NXOR gate doesn't exist is not that logic because it's the only inexistent combination of logic gates. But it doesn't make me anything because I never have to economise space when i do an electric system.
Great!
Could the memory bank be used to make things like calculators and computing stuff?
Yes, you can generate data to add, subtract, or multiply 4-bit numbers. Memory banks with such calculation data can be used to make 8-bit and 16-bit calculators.
To make a computer you'll also need RAM and registers. Luckily, a memory bank is a 4-bit RAM unit, so you can just use it for all memory related tasks.
And then, if I remember it correctly, you'll only need a program counter, and an instruction decoder, memory banks can take instruction codes as an input and turn certain wires on or off to activate the right calculation or logic processes.
In the future, I want to make videos about the process of making a CPU from scratch
2:57 0.2*5^(n-1)?
Can you make the video tutorial of oxygen not included automations? Not survival parts, just automation, solid transport and electrical parts. Because I need your short brief tutorial
I'm sorry,
I can't make a tutorial of a game I don't play
I'm still confusing with logic gates. Especially when I want to make adder and subtractor. In case I want to make a simple game that give a poin, then the poin can be exchange with item. So it would be adder when win the game and substract the poin when it exchange with item.
Calculating is all about breaking bigger calculations up into smaller calculations. For most calculations, you can build the method you use to calculate in your head as an algorithm: 836 + 975 = (8+9) x100 + (3+7) x10 + (6+5) = (1) x1000 + (7+1) x100 + (0+1) x10 + (1).
So to add two numbers, you need some component that can take two digits as its input, and add them together into a one digit sum output, and a carry output (usually this value is either zero or one). This component you can wire up to connect to each two digits of the same significance of the input digits. You can make such a component for adding binary numbers: the two binary inputs are fed into an XOR gate (one of the two is on) for the sum output, and they are fed into an AND gate (both are on) for the carry output
In Survivalcraft, you can fill a memory bank with certain data so that it can be used to add hexadecimal digits together, this is faster than doing this in binary
Here's some memory bank data you can use to perform calculations
4-bit Hexadecimal Addition digit 1:
0123456789ABCDEF123456789ABCDEF023456789ABCDEF013456789ABCDEF012456789ABCDEF012356789ABCDEF012346789ABCDEF012345789ABCDEF012345689ABCDEF012345679ABCDEF012345678ABCDEF0123456789BCDEF0123456789ACDEF0123456789ABDEF0123456789ABCEF0123456789ABCDF0123456789ABCDE
4-bit Hexadecimal Addition digit 2:
0000000000000000000000000000000100000000000000110000000000000111000000000000111100000000000111110000000000111111000000000111111100000000111111110000000111111111000000111111111100000111111111110000111111111111000111111111111100111111111111110111111111111111
4-bit Hexadecimal Multiplication digit 1:
00000000000000000123456789ABCDEF02468ACE02468ACE0369CF258BE147AD048C048C048C048C05AF49E38D27C16B06C28E4A06C28E4A07E5C3A18F6D4B290808080808080808092B4D6F81A3C5E70A4E82C60A4E82C60B61C72D83E94FA50C840C840C840C840DA741EB852FC9630ECA86420ECA86420FEDCBA987654321
4-bit Hexadecimal Multiplication digit 2:
00000000000000000000000000000000000000001111111100000011111222220000111122223333000011122233344400011122333444550001122333445566001122334455667700112233455667780011233455667889001223445667889A00123345667899AB0012344567889ABC001234567789ABCD00123456789ABCDE
Hexadecimal to decimal converter, DIGIT 1:
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345
Hexadecimal to decimal converter, DIGIT 2:
0000000000111111111122222222223333333333444444444455555555556666666666777777777788888888889999999999000000000011111111112222222222333333333344444444445555555555666666666677777777778888888888999999999900000000001111111111222222222233333333334444444444555555
Hexadecimal to decimal converter, DIGIT 3:
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111122222222222222222222222222222222222222222222222222222222
@@SP4CEBAR it's seems like 8 bit counter at mgblitz81 music to show track list isn't it? And then using XOR gates and AND gates (I used to learn this in Wikipedia call Half / Full adder) but it didn't work with hexadecimal
@SP4CEBAR dunno if u live in the US but unfortunately most curriculums before we adopted Common Core(2010s I think) taught us to memorize how to add/subtract/multiply/divide rather than explicitly teaching us different algorithms to use to calculate.
If I remember it correctly, the 8-bit counter in MGBlitz's music player is to select a track.
A half adder is a component that adds two binary digits together
The approach I use to add numbers in Survivalcraft adds two hexadecimal digits together
The way you break a large sum up into smaller sums that can be solved by one of the aforementioned components is the same
And of course, the NOT Gate inverts any signal it meets, turning a 0 into a 1 and vice versa.
I accidentally pressed a red button
It wrote "Subscribe" and it turned into a bell.
What to do if I pressed it?
run
@@SP4CEBAR Whaaaaa-----
Also , I cant upload videos , and I cant be a youtuber ,because i use now mobile data , but before August 2022 I made a video on my channel with a leather and fur farm , with pistons , a logic not gate and more stuff .
@Meeooooooww cool, maybe you could use McDonald's free wifi to upload videos (or Starbucks' free WiFi, or any other free WiFi place), just watch out for hackers who may be looking for devices with bad security on free WiFi networks, or who may pretend to be the free WiFi network
@@Meeooowing I'm sure there are places that offer free WiFi, some snackbars, restaurants, campings, hotels, schools, companies, touring busses, and ferry boats do. Alternatively, some internet service providers have a deal where users can buy more more mobile data (or unlimited mobile data) for a day
Cool video
Electricity is cool and I want learn it
But it's too hard to understand it
try watching part 1 it's way easier to understand, part 2 is built on the knowledge of part 1
th-cam.com/video/WIWj-lWQnWg/w-d-xo.html
How to make that hexadecimal value? click that (0:58)
A 4-bit signal consists of four binary signals (bits), each of these signals have a value assigned to it, all the values of the bits that are turned on added up make a value, there are 2^4=16 possible combinations of 4-bits, so the value can be displayed as a hexadecimal (16) value
Can you make a encoder and decoder
Encoder table:
A 101
B 11
C 011
Decoder table
101 A
110 B
011 C
Yes, you could do that with memory banks, in this case you can use the memory bank input with the single blue dot as the input, and the output as the output:
the encoding memory bank could have the data: 08A3 which can be translated to 0000 0101 0110 0011 in a D/A converter, you can access it by sending the values 1, 2, and 3 into the memory bank, my count here starts at 1 instead of starting at 0 for consistency with the next step
the decoding memory bank has the data: 00030000102 which returns zero when the input value doesn't have a code assigned to it, 1 when the input is 8, 2 when the input is A, and 3 when the input is 3
who need programs like NI multisim when we got survivalcraft
Indeed
Plss make tutorial on firework 🙏❤
Really? They are really easy to use.
Just open the creative inventory, go to the fireworks tab, and grab a firework.
If you're on mobile just hold the center of your screen, if you're on PC just hold and release right-click
If you want to know how to craft fireworks, pause the game and go to the receapedia
If I remember it correctly there are 8 different patterns of fireworks, which can each be high and not flickering, high and flickering, low and not flickering, or low and flickering, all these types of fireworks are available in 8 different colors
@@SP4CEBAR yaa thanks but I know about that..
I'm just asking about the dispenser firework and much more
@Cut Scenes That isn't hart either, place down a dispenser, put a firework in it, make sure the dispenser is in shoot-mode, place a button next to the dispenser, hit the button, enjoy
@@emagico3030 I once had an idea to use many dispensers with fireworks to make a cursor indicator for one of my computer screens, but it seems quite impractical.
But maybe I'll ever make a 3D screen using fireworks, that could be interesting
@@SP4CEBAR oh thanks
This guy is Mumbo Jumbo Alpha Release,ngl.
This game so ELECTRICAL
A whole professional is there one thing, will there be a possibility of Spanish subtitles?
Yes, you can use the auto-translate feature on TH-cam for now, until someone contributes spanish subtitles
Do I get punished for liking and subscribing to your channel in the game world?
Oh wow, I just thought it would be funny to trigger explosives
@@SP4CEBAR I think it would be better if you used fireworks
Yea, I could've done that
Do you know when you will get 1k
Yes, I check my subscriber count every now and then, it isn't growing that fast at the moment because I haven't made a video in a while
Survivalcraft electricity >>>>>>>>>>>>>>>>>>>>>>>> Minecraft red stone
Explosions
💥
18:51 I guess that's why my mom told me to never click the subscribe button because it explodes
What the hell is memory bank
-Literly every sc player ever
Definitely
Short answer: it's a book that a machine can read and write
Wow how smart 1000iq
Pls face reveal
f**k redstone
The redstone dust has vaporized
i subbed now ! subcriber +1
Thank you!
lets being freinds!
And of course, the NOT Gate inverts any signal it meets, turning a 0 into a 1 and vice versa.
And of course, the NOT Gate inverts any signal it meets, turning a 0 into a 1 and vice versa.