I Made A COMPUTER In Survivalcraft 2
ฝัง
- เผยแพร่เมื่อ 10 ก.พ. 2025
- This 'computer' is a typewriter with a user interface (it doesn't have a CPU).
It has a resolution of 48x22 pixels which is enough to display 6x3 characters at a time.
It also has a scrolling function, so in total it can display 16 lines with 6 characters.
I worked on this project for about 150 hours, and I learned a lot while working on it.
Stay tuned for my next computer screen.
You can download version 1.0 of the map via this link:
sbc.createafor...
1:25 Why on earth did I type multiplication, of course I meant addition.
----------------------------------------------------------------------------------
----------------------------------------------------------------------------------
Download Survivalcraft 2
Full version -----------------------------------------------------------------
Windows 10 - www.microsoft....
Apple - itunes.apple.c...
Android - play.google.co...
Demo version --------------------------------------------------------------
Apple - apps.apple.com...
Android - play.google.co...
----------------------------------------------------------------------------------
----------------------------------------------------------------------------------
Music from the TH-cam Audio Library:
Dub Hub - Jimmy Fontanez/Media Right Productions
Game Plan - Bad Snacks
Endscene music from Jukedeck - create your own at jukedeck.com
Font by Sizenko Alexander - www.styleseven.com
----------------------------------------------------------------------------------
----------------------------------------------------------------------------------
Follow me on Instagram:
...
Join the SBC Discord server (this is not my server) to share your Survivalcraft builds and ideas:
/ discord
----------------------------------------------------------------------------------
----------------------------------------------------------------------------------
I have seen Minecraft God before but this..... *is the very first time I witness the existences of Survivalcraft God and feel safe to confirm to say this race exist* and also I personally think Survivalcraft electricity is already become beyond better than Minecraft Redstone sooner than expected!
Survivalcraft electricity is infinitely better than Minecraft redstone in every way imaginable
Great project! They need more engineer players like u
Absolutely amazing what you've done in Survivalcraft2!
Thank you!
i proud with you friend. you genius!
You did it great!!
GENUIS
hello Robson!
This dude is an Engineer at SurvivalCraft 2
Remember seeing your maps years ago, shocked to say the least 😅.
Awesome of how you can push SC2 Electricity to it’s potential!
😁
You are a Genius, congratulations my friend 👏🏻
Thank you very much!
This man is on another level
This is beyond words... You convinced me to learn CS one day!
Wow, it's awesome!
a real computer reads code and runs it, but this is a good example of what can be done in Survivalcraft
I may make a CPU one day
@@SP4CEBAR :0 I would like to see it, I am also making a CPU inspired by a 6502 microprocessor (Google translator)
Nice, good luck
browhat😱😱😱
WHAAT THE HEELL ,BRO THAT IS AWSOMB ,CONGRATULATIONS DUDE
Thank you!!
Well that makes my Christmas light and adventure map seem rather mundane
Everyone has got to start somewhere
U need more subs
If you download the world and export all furnitures, you get free sp4cebar logo styles and keyboard buttons
Your ideas are good but you need bigger team of people and make a bigger computer with real video card, processor, ram and so...
I have ideas how to do all of that but I am too lazy.
But that what you have done now is very impressive!
Thanks, I would like to work on a video processor and a CPU, but for me, it would be too hard to make them since I don't know their working in enough detail.
Also, Survivalcraft currently doesn't have online multiplayer so it may get pretty hard to work with a team.
However, I'm already working on a bigger display (192x128 res.). I posted some images of it on my Instagram.
The new display is capable of displaying text with support for as many custom characters as needed.
It is not capable of plotting graphs.
Best map forever
the eletricity of SC is best than minecraft eletricity, is compact and have an item for every logic gate and have the memory bank.
my dream is a functional multiplayer in SC
There is a mod that allows you to play multiplayer: The Survivalcraft Content Community discord server has information about it in #announcements (discord.gg/ewnkV4v (let me know if this link still works))
The mod itself could be downloaded here m.schub.top/com/mods/preview/663
Very nice!
If survival craft has multiplayer support like minecraft, i will host a server also, i love logic gates and i am an electrician myself.
Electricity in survival craft absolutely outclassed minecraft, much more complex and much more possibility much more efficient!
Cool!
Will you make multiple data text files and page navigation system in sbx-512 just like this beefy computer
That was my plan, yes
That is... if I once continue the project
Awesome, this map is so cool
Bruh
That is my account
@@takeo1832 who ?
U need more sub's right now this computer is much better than minecraft's computer their computer is complicated and your's its not i liked it so much keep up the good work.
Where I can download survivalcraft for pc?
You can download it via the Microsoft store
Underrated channel
Thank you!
THIS BONKERS IM JEALOUS
Survivalcraft 2 has so much more advanced electricity
the speed of survivalcraft computer 😳
Genius
Wow how did you do that 😮 I am making a music maker map but I don't think I could finish it because of the complexity of the circuits lol
Cool! My first map was a music maker too! You'll get used to the complexity. Usually, in the first design of something there's a lot of complexity that you didn't account for and that may make it messy. The next design is usually way more capable and organized.
Just compare this computer screen with the next version, and you'll see what I mean.
I wish I could work with you on this
I have been trying to make one but doesn’t know how electronic work in this game
I hope I'll have time to make a tutorial about the electronics soon
Impressive
great work
Great build!
When will be update?
I made a new display with a much higher resolution (there are pictures of it on my instagram)
So I don't think I'll be working on this project anymore
Ive made interactive furniture, switches between 4 same furnitures
Cool!
What is ALU?
What is GPU , CPU , RAM , ROM ?
RAM (or random access memory) is the fastest type of memory we have, but it requires power to hold the data.
ROM (or read only memory) is memory that is designed to be easily read, but it usually is hard to write, like burning CDs.
In a computer, RAM contains a list of instructions (a program), the CPU follows those instructions one by one, a very important part of the CPU is the ALU which is essentially a calculator.
To make a calculator, think of a big calculation, and think how you would break it up into multiple smaller calculations like:
23 + 56 = (2+5)x10 + (3+6)x1, or 23 x 56 = (2x5)x100 + (3x5)x10 + (2x6)x10 + (3x6)x1. These methods work with decimal numbers as well as hexadecimal numbers, and binary numbers. To multiply two hexadecimal digits together you could use a pair of memory banks full of hex multiplication data, and to multiply two binary digits together, you could use an and AND gate
a GPU is a different device that is intended to calculate the (game) graphics for your screen, so that your CPU can do other things, GPU's are getting more and more AI features lately: instead of running one sophisticated program at a time, a GPU runs many less sophisticated programs. To understand how to make one you need to understand the graphics you want to achieve:
if you want to make a 3D game (like Survivalcraft within Survivalcraft) one way to do it is by using matrix math to move, scale, and rotate 3D points that make up your 3D world, and then more matrix math to flatten these 3D points into 2D points from your player's perspective, these 2D points can be used to form triangles, these triangles can be turned into pixels, and these pixels can be displayed on the screen.
Other ways to achieve 3D graphics are: raymarching, raycasting, and raytracing
bro ur a genius
how many hours you build that
150 hours
you should try the Minecraft Create: Above and Beyond Modpack
I tried create. I like it, but I likely won't make create videos.
I once made a loop of resources that started with stone and would reach a bunch of devices and be turned into many different resources and then loop back to the start for another pass, but the conveyors would eventually get way too full and jam. It was fun though
I just want 16x16 LED (single/four) display tutorial.
Good idea!
Underrated
GENIUS!!!
survivalcraft2 should be popular ...
u are one of the best
genius
It’s awesome!
If there will be a multiplayer in Survivalcraft, I want to work with you. I am sure I am not so good as you, but I can still help.
Once online multiplayer added, I could set up a server and have a lot of people storm a safehouse to test how safe it is
@@SP4CEBAR Do you think it will ever be released?
@@alexcatsk if I remember it correctly the developer said that he would add multiplayeer once the game is "complete"
we don't know when he finds the game complete enough to add multiplayer
However, there are multiplayer mods being developed, these mods are already at a state where they are functional!
¿Podemos crear cualquier mecanismo particular, un microcontrolador, que migliori l'experienza nella sopravvivenza?
Probably, I mean, what isn't possible in Survivalcraft, you could make processors with calculators, memory units, and controllers, you can make displays with sprites and pixel memory or character memory, you can even make an array of 3D graphics calculating units
Survival craft has a better electric system so in theory you may be able to create a more advanced computer than in Minecraft
True
hi, what are the characteristics of the computer?
it can display three lines of text with six characters per line, with a resolution of 3x3 pixels for each character
ok
My brain exploded seeing this
🤯
@@SP4CEBARNow make it run doom
This is Awesome
Cool bro
can you make this in to map? i wanna play it...
There's a world download link in the description of the video
pretty epic
Sooo cool
I bet you to complete the game and a creative mode to it like a joy if I die and I want to explore the word just in the air you should activate th creative mode that's because I'm trying to complete the game
If you are trying to complete a Survival playthrough, make sure to always take food and campfires with you
I made my first memeory bank number displayer
But i want to make my first calculator in it
Cool
To make a calculator you don't have to use binary logic, you could use the following data inside your memory banks, you can then use these as building blocks to make calculations with larger numbers:
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
Thanks I will be working in them
I made my first Multiplication and Addition Calculator
How it works
It uses a counter only can turned to 0 and 1
1: multi
2 : add
I uss memory banks connecting to and gates to find out the number
Remember you said and gate display number lower
I use the and gate connecting to the detector taht sens f signal
And the memory banks connected to 2 counter
Those 2 counter are the input
IT REPEATS 2 SAME FOR THE BOTH DIGIT
and I also used your Hexa to Deci
So it dosent have letters that I don't understand in android calculator
go tutorial how make this computer
I finally did it!
Wow dude
Futuriste ick map , i have your map on survivalcraft 2 to, i Can play games or not?
This computer screen doesn't really support games, but in the future I want to make one that does
DID You made a better computer than the computer SBX-512
Yes, I designed a few more displays... I just need to assemble them
@@SP4CEBAR how long WILL it actually take
Depends, I've been procrastinating the installation of the new world edit which I need to assemble these displays, I've got all the information to install it, it just hasn't been a priority
@@SP4CEBARI tought you build it all manually
I built all mine manually because it's hard to find one
I have 1 sc 2.1 world edit app in my ohone
This impossible for me
Good
Hello you can drop link to download your map
The map isn't ready for release yet (no welcome signs and such), but sure I can make it ready soon.
@@SP4CEBAR you can drop me beta version plz to my gmail
I just released the current version of the map (link in video description).
@@SP4CEBAR thank but i cant to download it to android
You should be able to download it, did you install Survivalcraft from the Playstore?
MY SENSEI I NEED YOU
How to make this work
You need two things: 1. you need to generate the pixels that make up a character, with a,b,c,d, all the way until ,y,z and 0,1,2, until ,8,9
And 2. you need a way to memorize these pixels and display them
Next video: I rebuilt Intel 8086 in Survivalcraft...
Maybe :)
@@SP4CEBAR oh no
I know someone going to build a computer
Nice
You are the idea in survivalcraft I always searched for thank you making it came true,SP4CEBAR
Can you give me link?
Look in the description of the video
i download your workd by using link to file it easy
Good
Make End Of Support SBX I Computer 2019-2023
You mean because it's not being developed?
You still alive
Yes I am
@@SP4CEBAR When will the guide how to create a wireless connection in sc2(I hope this possible)
@@omgplayernumberone6579 good idea, I think I did make something like that a while ago, I used a dispenser that was up in the sky and filled with blocks, a single dispenser you could shoot for something like a hundred blocks, at the end of that, the next dispenser would pick up the item and shoot it up to the next dispenser which would shoot it forward again, At the end, pressure plates detected the items
What happens, if you put some gunpowder barrels around the computer..
Joke :)
I may do that at some point, it looks quite interesting
(I've got plenty of backups so I won't lose anything)
Better than Minecraft
Holy Fu**
Holy fungus
Gostei do PC
Thanks
And i can't even make a loop
Well you can, you just need to be patient with yourself: learning takes time
I GONNA HACK THE MAP AND LEARN ELETRIC HEXADECIMAL AND I GONNA MAKE WINDOWS 7000
Good luck with that!
can u teach me
\
I'm planning to make tutorials and such about it in the future, so stay tuned
Мой канал
Оставить их комментарий
Sorry I accidentally download a virus in this computer.
Oh no, it is running outdated software...
just for reach
Perhaps
This is the content from survival craft 😂 you downloaded it
Did I? Then find me a distribution older than this video, which was posted on the 26th of April 2019
I buy, how much do you sell for? 🫠
Serious?
Genius