it might be just edited out, maybe not. also, i've done some command stuff and the fact that you're writing small snippets of code at a time you really make way less mistakes
i can only assume its because its coding within a game so the coding is less likely to fail if you know what you are doing. ofc idk what the hell im talkin about but its the best i can assume
@@meekotheotter2801As a professional C developer, coding within minecraft is way harder and primitive, as essentially your tools are very limited and at times you have to design your own cpu within the game which didnt happen here but if it required any math it would. Yes you would have to design and build an entire cpu using what is essentially electricity circuits in game. The reason you're less likely to fail is because you only do sever lines per attempt and what he did here wasnt that difficult, it was for the most part cloning one thing to another place which then activates the command block that clones a bigger thing back. It is literally just displaying variables. Still that isnt easy compared to coding in actual languages, it is the equivalent of doing it in assembly language which if you have any knowledge in coding you'd know that its really impressive
@@Dummy226 I would push back a little on "designing a whole cpu" when using command blocks, even with doing math. It is, like you said, a lot more assembly like instead. Though yeah, it is definitely harder with the more primitive tools/commands. Timing can very often be a problem as well in a way that normal programing doesn't have (for the same level of computing).
The amount of young people learning computer science, on their own, IN MINECRAFT is insane. It's so amazing you can do these kinds of things in a game.
This video is so darn cool. I totally understood everything that happened and wasn't just watching the pretty colors (Also your painting was beautiful)
This video made me physically nauseous. Its not bad, I just can't believe you managed to finish it without tossing your entire pc in the dumpster. As a programmer, I could just FEEL the pain oozing through my screen. You're either a madman or a genius. I'm impressed, but also my condolencea
i love how half of the comments are in awe how something like this is possible and the other half is going insane, because there are other (easier) ways
literally so true, while i find the end product extremely fascinating and im absolutely in love with the in-computer editable pfp and be able to draw images and everything is quite nice and advance, the way he did that made me wanna pull my hair out since i've been doing commands for multiple and it could have been done with SO less commands the typing system alone took 831 commands, while the whole computer could prob be done in just the 100 command block area😭😭😭😭😭😭
You could use the new block display and text display entities, those have built in scale modifiers that you can use. All you need to do is create a custom block model for the cursor and for the text use a giant text display
For the clicking, you could have used the new interaction entity, which can detect right and left clicking. For the blocks, instead of detecting what block and running, you could have used command blocks so you can run the command directly, without the block detecting step. Everything else is absolutely brilliant and more than I could ever have the patience for. Cheers
Because for why seventeen yesterday, at least rampart destiny can squirtle on jigglypuffs; nevertheless tuesday's saucy grippers equate to cat mom cat daughter speed potato. At least creeble snoo bamboozle onomatopoeia schleeb~ jury duty, furry cooties, Hotel, Trivago @@dIancaster
@@dIancaster if he used command blocks with the commands already in it, it would mean that when they're copied, they immediately run. Therefore the step of having a different block and then checking what block it is, then running a command based on that, can be skipped
@@wackyanimations3326 no?? Literally as simple as doing the same method up until you have to decide what block it is, but instead of decoding, you don't have to if you just use command blocks. The decoder is running commands based on the block, so you can skip that step by using command blocks that are already loaded with commands. Still copy them over, and still delete them, but you don't need the detection phase.. source: I make command block and data pack creations all the time
Dude the spaghetti code wrestling in making all the menus and options must have turned your brain into syrup. If this doesn't go down in the Minecraft hall of fame I don't know what will.
Just a side note: In 8:51, when the /clone command said "The source and destination areas cannot overlap", You can actually "force" it to work by adding "replace force" at the end of the /clone command. The command will look like this: /clone x x x y y y z z z replace force Anyway, I am extremely impressed with your build! Keep it up!
This was a lot more entertaining than I had ever expected a Minecraft command block programming video to be lol. You made some really interesting ways to implement the features that you want. Also I can't believe it took you until testing the drawing picture part to make a backup
As someone who uses command blocks a lot, I was heavily impressed by this, I know I could probably do this if I put in the effort, it's just I haven't really been bothered to any big projects... So basically what I'm saying is kudos to you! I hope you keep up your high effort videos.
that is truly glorious, I can imagine this being a great little feature for any smp, a publically available computer that lets you post messages, and bears a great resemblance to discord.
This is absolutely AMAZING! It’s so well-made, and he explains it all so well! The only problem is that the title is really misleading- it doesn’t actually connect to discord. But anyways, great job!
@@Silverxlx wait imagine if you had a server with like ten people and gave everyone one of these.. if you set things up right couldn't you have an actually working one..
As someone who spent quite some time with command blocks back in the day this was awesome to watch because you made it with very begginer friendly commands and that is cool, because I never realised that they can be that OP
I would love to see two monitors like this in a world far away from each other on a server so you and a friend could message back and forth!! It'd require like a lot of work but could be really neat, esp if you only made it 2 monitors you'd need to replace each code block but the rest might fall into place "neatly"
Probably easy too code just adding another client end monitor He did state that he used /clone too copy old menus back in The other monitor would probably need a little more code for positioning and profile pictures too be accurate to real discord though
This is really cool! The title made me think it’d be a Discord bot you could add to a server that would actually let you send messages from Minecraft, but the end result is still impressive.
@@yelllovkitten Yes, but when you use WorldEdit's //fill, you can also use //undo if you make a mistake. It's also just generally a faster and more intuitive command to use
I know nothing about commands, but this is really impressive! You should make the receiving monitor functional as well, then both people would be able to message each other.
Main thing is you'd benefit from looking into the execute command more, since you could easily simplify a few things with minimal changes. Ie `/execute as @e[tag=cursor] at @s position ^ ^ ^i run tp ~ ~ z` with i being distance to monitor and z being the z coordinate of the screen, you'd merge the two armour stands into 1 line of code, without using stuff like raycast loops. Equally, you can do `/clone x1 y1 z1 X2 y2 z2 X3 y3 z3 force move` or something similar and it'll override the "designation cannot overlap" by physically moving the selected area. Very interested to see what else you end up doing!
You must be the smartest person I have seen in my life. Your video is perfect in every way possible. Good editing, amazing voice over, funny, actually explaining what you are doing and not making it over complicated. You sir are a legend
You could use: 1. Carrot on a stick item in player's inventory to detect if player is clicking. You also could make right click using that. 2. Use datapacks to make it. I already have moved from command blocks to datapacks, and they are... A lot better. Datapacks are edited in the text editor, not in weird 3D snake thingy, like command blocks. Plus, functions in datapack work basically the same as command blocks.
a few workflow improvements for you, because you seem to have forgotten some command options : - /fill has an option called "keep" that acts as "replace air" and also keeps fluids (water and lava) e.g. : /fill ~ ~ ~ ~10 ~10 ~10 minecraft:dirt keep - when trying to clone blocks, if "the source and destination cannot overlap" just use the option "force". You could also add "move" after force to remove the source blocks if needed. e.g. : /clone 10 10 10 20 20 20 15 15 15 force
you got my hopes up making me think you were actually gonna connect this thing to the real discord api somehow. Whoops. Guess it's not possible at the moment. Without using, like a datapack that does http requests.
Yo bro this is absolutely amazing! just a tip you could have used the interaction entity to detect actual clicks instead of sneaking but still this is crazy well done!!
Man, dude, it's great that you went out of your way to show the process of the command blocks and redstone. I appreciate it so much more, and it's a lot more satisfying to see the ins and outs of something like this.
did this is freaking INSANE, man your editing is unbelievable, which in addition to the literal creating of discord in minecraft, man you're next level also as a non-minecraft player, since when does minecraft have literal coding? as far as i knew this sort of thing was restricted to using redstone blocks and switches to basically simulate electrical circuits and PCB components, I had no idea you were able to actually type lines of code in, also have no idea what a code block is but I guess you attach your code to individual blocks? i struggled to keep up with the video as someone who knows nothing about Minecraft, let alone coding in minecraft lol
Believe it or not, when I accidentally pressed 6 on my keyboard when only started watching the video, it skipped me to 10:05 after which I immeditely put it back. But I was geniunely confused with that meme anime girl saying stuff around the video
@@ThatOneHacker305 true, but to actually achieve that, just tping it behind wont do the trick. You have to triangulate the posicion with referal of your angle and x position to do it, and that is a lot more complex than what you just proposed. Your idea doesnt align the cursor with it, scoreboard math (which isnt simple) does.
Cool video, usually not into command block stuff but this is pretty nice ^^ The thing you did with the hidden second screen is btw a real thing in software/hardware called double-buffering :D it exists to prevent tearing and flickering.
how far away could you make the two screens? could be cool on a server, especially with maybe more than 2 screens. imagine everyone has one in their base
Were you using WorldEdit whilst building? If you ever make a big mistake, you can type //undo to undo the edit; and //redo if you want to redo it, of course. It looks like it might work the same way with only the one /, if it wasn't WorldEdit. Just for your future reference :)
Lol, was looking for this comment. My guy knows how to build this incredibly complex contraption but doesn't know of the existence of //undo.. (or whatever the correct syntax is for the specific map editor in question)
@@fortniteog_yt8039 Well last time I played Minecraft there were no such thing as a vanilla map editor, not that obvious to someone oblivious to its existence. However if there is such a thing as an equivalent to //undo etc. my point still stands..
The absolute insanity of doing this with command blocks instead of functions, and not using WorldEdit for the building tasks... But in all seriousness, this is actually kind of nostalgic. It reminds me of when I was younger and started getting more proficient with command blocks, but still hadn't learned those kinds of tools. Though if you do happen to read this, and haven't switched over to functions yet, I can't recommend it highly enough. It basically takes the command blocks and puts them into text files that you run. You can do essentially all the same things and more, it's much easier to change, and performs a lot better.
Couldnt help but notice the cursor would be offset by sin(feta) towards center of screen in either axis Solution Detect if scoreboard changed On play position and rotation Tp armour stand too players position and rotation Move armour stand forward till x coords
Lmao pls sub today's my 18th birthday
ok
Sorry, I have already. Anyway Happy Birthday!
Yay!
Cool!!
bro whats the song at 11:18
Now, I've never worked with command blocks but, as a programmer, the amount of times your code worked first try is astounding
it might be just edited out, maybe not. also, i've done some command stuff and the fact that you're writing small snippets of code at a time you really make way less mistakes
@@niil047 you also do that in programming.
i can only assume its because its coding within a game so the coding is less likely to fail if you know what you are doing. ofc idk what the hell im talkin about but its the best i can assume
@@meekotheotter2801As a professional C developer, coding within minecraft is way harder and primitive, as essentially your tools are very limited and at times you have to design your own cpu within the game which didnt happen here but if it required any math it would. Yes you would have to design and build an entire cpu using what is essentially electricity circuits in game. The reason you're less likely to fail is because you only do sever lines per attempt and what he did here wasnt that difficult, it was for the most part cloning one thing to another place which then activates the command block that clones a bigger thing back. It is literally just displaying variables. Still that isnt easy compared to coding in actual languages, it is the equivalent of doing it in assembly language which if you have any knowledge in coding you'd know that its really impressive
@@Dummy226 I would push back a little on "designing a whole cpu" when using command blocks, even with doing math. It is, like you said, a lot more assembly like instead.
Though yeah, it is definitely harder with the more primitive tools/commands. Timing can very often be a problem as well in a way that normal programing doesn't have (for the same level of computing).
The amount of young people learning computer science, on their own, IN MINECRAFT is insane. It's so amazing you can do these kinds of things in a game.
Your definitely like 50 🔥🗣️🔥
@@Neodx2and your 5-
@@colechurch6785 you edited your comment and still used the wrong you're. you must be 5 too
@@II-oy7te and your a nerd💀
@@LETSGOGAMBLING-j6t and you're damn right about that. He must be 5 too trying to act cool.
This video is so darn cool. I totally understood everything that happened and wasn't just watching the pretty colors (Also your painting was beautiful)
Thank you
thank you
@@dxcvvxd no
@@DanGaming00 yes
@@UnIovable maybe
This video made me physically nauseous.
Its not bad, I just can't believe you managed to finish it without tossing your entire pc in the dumpster. As a programmer, I could just FEEL the pain oozing through my screen.
You're either a madman or a genius. I'm impressed, but also my condolencea
Facts 😂
Inaccurate. Isn't racist like real discord.
agreed
But it can be...
3RD
Nah, it does not have pedos
be the good you want to see in the world
i love how half of the comments are in awe how something like this is possible and the other half is going insane, because there are other (easier) ways
literally so true, while i find the end product extremely fascinating and im absolutely in love with the in-computer editable pfp and be able to draw images and everything is quite nice and advance, the way he did that made me wanna pull my hair out since i've been doing commands for multiple and it could have been done with SO less commands the typing system alone took 831 commands, while the whole computer could prob be done in just the 100 command block area😭😭😭😭😭😭
its obviously possible with command blocks
@@morzisthecommander5257 I don't see the issue when it's already figured out though ig
You could use the new block display and text display entities, those have built in scale modifiers that you can use. All you need to do is create a custom block model for the cursor and for the text use a giant text display
That is one of the first things i could see block displays being actually useful for something.
Block displays are very useful for map making, especially animations@@vencedor1774
Custom item model. Items have "Custom model data" that allows you to make custom models using resource packs.
@@cat_silly right but you can use a resource pack to change the normal model of a block too
@@vencedor1774 bro it’s literally the best thing every I can make custom ui custom images etc only with plugin
as a seasoned datapack/commandblock creator this is cursed in so many ways😭😭😭
really interesting to see the bizarre workarounds you made
LOL
I knowww LOL...the mouse ray cast was bizarre xD though it might actually be more performance efficient, strangely
i agree COMPLETELY. i myself am the same and the fact he doesn't use 1.20 interaction entities is making me CRINGE
yeah indeed, when you use a datapack I'd just make a raycast for the cursor, but the two armor stands is absolute genius workaround
@@MrGenie151 this was made in 1.19.4
bro knows every command 💀
10:26 tje music brings back so many memories
For the clicking, you could have used the new interaction entity, which can detect right and left clicking. For the blocks, instead of detecting what block and running, you could have used command blocks so you can run the command directly, without the block detecting step. Everything else is absolutely brilliant and more than I could ever have the patience for. Cheers
Explain how he could have sidestepped the need for block detection?
Because for why seventeen yesterday, at least rampart destiny can squirtle on jigglypuffs; nevertheless tuesday's saucy grippers equate to cat mom cat daughter speed potato. At least creeble snoo bamboozle onomatopoeia schleeb~
jury duty, furry cooties,
Hotel,
Trivago
@@dIancaster
@@dIancaster if he used command blocks with the commands already in it, it would mean that when they're copied, they immediately run. Therefore the step of having a different block and then checking what block it is, then running a command based on that, can be skipped
@@TheAnnyParker its unavoidable (the block detecting) sadly.
@@wackyanimations3326 no?? Literally as simple as doing the same method up until you have to decide what block it is, but instead of decoding, you don't have to if you just use command blocks. The decoder is running commands based on the block, so you can skip that step by using command blocks that are already loaded with commands. Still copy them over, and still delete them, but you don't need the detection phase.. source: I make command block and data pack creations all the time
Dude the spaghetti code wrestling in making all the menus and options must have turned your brain into syrup. If this doesn't go down in the Minecraft hall of fame I don't know what will.
me neither
Chungus 2
Just a side note:
In 8:51, when the /clone command said "The source and destination areas cannot overlap",
You can actually "force" it to work by adding "replace force" at the end of the /clone command.
The command will look like this:
/clone x x x y y y z z z replace force
Anyway, I am extremely impressed with your build! Keep it up!
bro what? 🥴
bro what? 🥴
@@jef_6987 We are dont know Any command We are Useless
@@jef_6987 /clone pos1 pos2 destination force
Exactly what I was gonna type
I NEED THIS MINECRAFT MAP
Now the youtubers can get GF from discord doing an challange of playing minecraft without leaving :D
Check the description it’s there
The Minecraft went from placing cobblestones and dirt to building a computer that works is crazy.
Came expecting to get clickbaited, and got clickbaited and shocked at the same time. Impressive work. This is basically ComputerCraft but in vanilla.
It actually is a datapack...
@@Windows_NT_Dude it's not
as a programmer, I find your work extremely underrated and funny
fun
Fun
This was a lot more entertaining than I had ever expected a Minecraft command block programming video to be lol. You made some really interesting ways to implement the features that you want. Also I can't believe it took you until testing the drawing picture part to make a backup
How has this guy only got 90K subscribers? Honestly I haven’t had this much fun watching a Minecraft TH-camr since like 2016
As someone who uses command blocks a lot, I was heavily impressed by this, I know I could probably do this if I put in the effort, it's just I haven't really been bothered to any big projects...
So basically what I'm saying is kudos to you! I hope you keep up your high effort videos.
6:05 And that, my fellow builders, is why WorldEdit was invented.
that is truly glorious, I can imagine this being a great little feature for any smp, a publically available computer that lets you post messages, and bears a great resemblance to discord.
it uses command blocks
This is absolutely AMAZING! It’s so well-made, and he explains it all so well! The only problem is that the title is really misleading- it doesn’t actually connect to discord. But anyways, great job!
True
Doesn't say that you can connect to discord, it says it can "run" discord.
Run them out business that is!
That's because you can't connect it to the internet
@@Silverxlx wait imagine if you had a server with like ten people and gave everyone one of these.. if you set things up right couldn't you have an actually working one..
@@opfu1237yeah...or here's a thought...chat already exists in minecraft
1 year from now you will probably be able to run games at 400fps on minecraft while your computer cant even make it 100fps itself.
i genuinely thought it was going to connect to the internet then to discord's website and ACUTALLY send messages in discord but it is what it is
0:13 had me dead 💀
DUDE TF 😭
How to join?
He***i X Inc lol
Nahhh
As someone who spent quite some time with command blocks back in the day this was awesome to watch because you made it with very begginer friendly commands and that is cool, because I never realised that they can be that OP
Picture 🚫
Pciture ✅ 5:31
Wow, the dedication! You're not lazy, you're smart
I would love to see two monitors like this in a world far away from each other on a server so you and a friend could message back and forth!! It'd require like a lot of work but could be really neat, esp if you only made it 2 monitors you'd need to replace each code block but the rest might fall into place "neatly"
Probably easy too code just adding another client end monitor
He did state that he used /clone too copy old menus back in
The other monitor would probably need a little more code for positioning and profile pictures too be accurate to real discord though
This is really cool! The title made me think it’d be a Discord bot you could add to a server that would actually let you send messages from Minecraft, but the end result is still impressive.
is there a video on it?
You cannot Build A Real World Server in minecraft its impossible
@@Emix_Emix unless you can actually code and use mods :nerd_face: tho if you mean vanilla... of course no
Its impossible lol if he did it bro would be a legend and a half
5:56
this is exactly why we break the whole "no mods" thing to use world edit.
There's a WE datapack, which is technically not a mod
@@Antiblue643datapacks are mods, just officially supported mods
there is a command in minecraft /fill
@@yelllovkitten Yes, but when you use WorldEdit's //fill, you can also use //undo if you make a mistake. It's also just generally a faster and more intuitive command to use
You don’t need mods
A video by kiddy kene 11 minutes ago? I love my life
Technicley 1 jour
@@ElfishDust no I saw this 11 minutes when it got posted not 1 hour
Minecraft only said "The only limit is your creativity"
0:13 I'm just curious now now I have to look
I would ASSUME you know about this, but 1.19.4 added interaction entities, so you could make it so you actaully click, not sneak!
If only interactions were multiplayer friendly 😔
Just gotta wait for someone to do this, but without command blocks.
Without commandblocks, in survival hardcor, blindfolded, without audio and using the keyboard with their feet.
@@vencedor1774 on a 5 second timer
There's probably a mod for an earlier version of Minecraft that adds in actual computers
@@DaysofKnight they meant with redstone
@@DaysofKnight yeah it is called OpenComputers
Math teachers:
😂😂😂😂
I wouldn’t be suprised if this man thinks in 4 dimensions
2:07 the laugh..
What about it lol
WHY IS IT SO CUTE 😭
@@M0r11_b0t IK LMAO i was wondering if you were thinking the same thing :P
lolol
@@M0r11_b0twhy does it sound like a FEMBOY?
6:24, thats why you use world edit bc //undo command exists
why is this man so underrated???
Your pfp matches your comment so well
lmao thats true@@RiskEdits
Lmao
I know nothing about commands, but this is really impressive! You should make the receiving monitor functional as well, then both people would be able to message each other.
Too much work, so many new edge cases, like if both of them are typing at the same time
Seriously hardworking, even watching the videos makes me tired
10:05 what makes this worse is the fact that when he zooms in on the profile picture, "yamete kudasai" translates to "please stop"
Main thing is you'd benefit from looking into the execute command more, since you could easily simplify a few things with minimal changes. Ie `/execute as @e[tag=cursor] at @s position ^ ^ ^i run tp ~ ~ z` with i being distance to monitor and z being the z coordinate of the screen, you'd merge the two armour stands into 1 line of code, without using stuff like raycast loops.
Equally, you can do `/clone x1 y1 z1 X2 y2 z2 X3 y3 z3 force move` or something similar and it'll override the "designation cannot overlap" by physically moving the selected area.
Very interested to see what else you end up doing!
3:06 that laugh tho 💀
You must be the smartest person I have seen in my life. Your video is perfect in every way possible. Good editing, amazing voice over, funny, actually explaining what you are doing and not making it over complicated. You sir are a legend
bot
pciture
if this the smartest person you've seen then idk bro
3:03 bro im supposed to be studying rn and this had me CACKLING😭😭
5:43 at this point after you slabbed the keyboard a laughed like a psychopath and can’t stop laughing still after 1 hour helppp
You could use:
1. Carrot on a stick item in player's inventory to detect if player is clicking. You also could make right click using that.
2. Use datapacks to make it. I already have moved from command blocks to datapacks, and they are... A lot better. Datapacks are edited in the text editor, not in weird 3D snake thingy, like command blocks. Plus, functions in datapack work basically the same as command blocks.
Or you could switch to mods!
The new interaction entities would also work for click detection
@@russianyoutube Nah
@@moofurg Yes. Even better
i think the point was it being vanilla, if you are doing datapacks might as well just do plugins
a few workflow improvements for you, because you seem to have forgotten some command options :
- /fill has an option called "keep" that acts as "replace air" and also keeps fluids (water and lava) e.g. : /fill ~ ~ ~ ~10 ~10 ~10 minecraft:dirt keep
- when trying to clone blocks, if "the source and destination cannot overlap" just use the option "force". You could also add "move" after force to remove the source blocks if needed. e.g. : /clone 10 10 10 20 20 20 15 15 15 force
1:44 got me bro...
@@SillyBoxCreature Same 😂
My mans is a genius
POV: ur taking an exam
you got my hopes up making me think you were actually gonna connect this thing to the real discord api somehow. Whoops. Guess it's not possible at the moment. Without using, like a datapack that does http requests.
This video is so underrated it needs 100k+ views
it just released...
Ow
Awesome video. First time I actually understood the command block magic at play. Also, what's the music at 11:18? I NEED to know
Electro swing by iluvmyclique
as a person that's fascinated with java problem solving, damn your thinking flow is smart
10:03 nah i was fr rolling on the floor 💀
You gotta pay respects. He did all of that without WorldEdit
Yo bro this is absolutely amazing! just a tip you could have used the interaction entity to detect actual clicks instead of sneaking but still this is crazy well done!!
Man, dude, it's great that you went out of your way to show the process of the command blocks and redstone. I appreciate it so much more, and it's a lot more satisfying to see the ins and outs of something like this.
8:25 i read it i like what you said in the map lol
did this is freaking INSANE, man your editing is unbelievable, which in addition to the literal creating of discord in minecraft, man you're next level
also as a non-minecraft player, since when does minecraft have literal coding? as far as i knew this sort of thing was restricted to using redstone blocks and switches to basically simulate electrical circuits and PCB components, I had no idea you were able to actually type lines of code in, also have no idea what a code block is but I guess you attach your code to individual blocks? i struggled to keep up with the video as someone who knows nothing about Minecraft, let alone coding in minecraft lol
5:48 this is why you use world edit kids
Believe it or not, when I accidentally pressed 6 on my keyboard when only started watching the video, it skipped me to 10:05 after which I immeditely put it back. But I was geniunely confused with that meme anime girl saying stuff around the video
Did anybody read the thumbnail? 💀💀💀
Bro he sus 💀
Wanna see mine?
Me lol😊
the thumbnail is so accurate 😭🙏
bro, can't even find correct words to say how amazing and shocking this is
Raycast? Nah! Make a projection of armor stand so it would look like cosine function.
haha I like the idea
Hey you're the villager guy
Hey you’re the villager guy
...2 verified comments with under 11 likes
@@TheDiamondHawkOfficial meh
for the cursor just use an armorstand with no gravity that teleports forward until it hits the screen
Actually, I think his solution was simpler
@@vencedor1774 but the mouse isn’t at where the cursor is pointing
@@ThatOneHacker305 true, but to actually achieve that, just tping it behind wont do the trick. You have to triangulate the posicion with referal of your angle and x position to do it, and that is a lot more complex than what you just proposed. Your idea doesnt align the cursor with it, scoreboard math (which isnt simple) does.
@@vencedor1774 but it works
Could you not just do a simple raycast and teleport the armor stand to where the raycast hits?@@vencedor1774
Imagine a world map of discord users and there is one tab on the screen "Users out of the map: 1"
The day isn't far when someone hires a Hitman by Minecraft
Honestly? Quite incredible.
The thumbnail💀
You got only 2 likes
best thumbnail ever
I'm neither a redstone or a command block guy, but all the logic made sense to me
Cool video, usually not into command block stuff but this is pretty nice ^^ The thing you did with the hidden second screen is btw a real thing in software/hardware called double-buffering :D it exists to prevent tearing and flickering.
how far away could you make the two screens? could be cool on a server, especially with maybe more than 2 screens. imagine everyone has one in their base
as far away as you want, as long as its loaded. its just a clone command
Put the pc and server for each in spawn chunck than were ever you want
6:08 when you stub your toe be like:
Were you using WorldEdit whilst building? If you ever make a big mistake, you can type //undo to undo the edit; and //redo if you want to redo it, of course. It looks like it might work the same way with only the one /, if it wasn't WorldEdit. Just for your future reference :)
Lol, was looking for this comment. My guy knows how to build this incredibly complex contraption but doesn't know of the existence of //undo.. (or whatever the correct syntax is for the specific map editor in question)
Hes litterly using minecraft vanille commands like /fill /clone, you couldve really seen it by watching closely
@@fortniteog_yt8039 Well last time I played Minecraft there were no such thing as a vanilla map editor, not that obvious to someone oblivious to its existence. However if there is such a thing as an equivalent to //undo etc. my point still stands..
The absolute insanity of doing this with command blocks instead of functions, and not using WorldEdit for the building tasks...
But in all seriousness, this is actually kind of nostalgic. It reminds me of when I was younger and started getting more proficient with command blocks, but still hadn't learned those kinds of tools. Though if you do happen to read this, and haven't switched over to functions yet, I can't recommend it highly enough. It basically takes the command blocks and puts them into text files that you run. You can do essentially all the same things and more, it's much easier to change, and performs a lot better.
This video is great. You also put a lot of effort into learning commands and building the computer.
So you download discord off of discord...
13:29 says he's not lasy proceeds to be lazy
Funniest part is that a version of megalovania is playing. Truly is a sans line.
Bruh what's next recreating the whole universe on Minecraft
you're late lol
10 months ago, chrisdacow build the universe in Minecraft.
6:11 man has never heard of //undo
//undo is world edit, he doesn't have world edit
//undo is an command on the world edit mod
Dude, you are a literal god.
4:58 is that billionaire detectives theme?
13:20
is that a sans undertale reference ?
Yes.. Yes it is. I played undertale before so I immediately realized that its undertale music
@@AverageGuamanian NYEH HEH HEH…. oh wrong Undertale character
Hey uhh papyrus… i burned the water
@@Frogkid1234 SANS, HOW THE FUCK DID YOU BURN THE WATER
1:49 i thought it was an ad break
Couldnt help but notice the cursor would be offset by sin(feta) towards center of screen in either axis
Solution
Detect if scoreboard changed
On play position and rotation
Tp armour stand too players position and rotation
Move armour stand forward till x coords
That Brian fart got me so bad😂😂😂😂😂😂😂😂
Ryan Trahan?
5:11 Bro wht💀💀💀💀💀
16:12 “kys” 💀
the edits make me laugh for no reason😢 i love how i can relate to u, new sub!
most underrated redstone and command block youtuber