lorgon111 – Brian’s Gaming Videos! – Learning Minecraft Command Block Programming, Part 7 – Time delays

Video Information

Hello it is I dr. Bryan Oregon 111 and today I am the Mario maker it’s a me Mario get it I made Mario appear therefore I am the Mario maker and today in today’s episode of learning command blocks we are going to learn how to do how to make something

Like this make scripted events where things happen over time which will be interesting because up until now we’ve only learned how to either make a bunch of commands run all at once in a row like these command blocks that say ABCDE or make things run in a loop 20 times a

Second such as this command block right here that’s running after the purple but just get seeing loop over and over again what we haven’t learned to do is something you probably know how to do using kind of old-school redstone things like repeaters I could set up some

Repeaters over here and print this out and it says 1 2 3 4 5 but there’s a little bit of a delay in between each of those commands and so what we want to do today is move into the modern day into Minecraft 1.9 snapshots and figure out

How we can create a command a block that does the same thing that repeaters would do back in the day which is to create a delay between different commands so that I could do the same kind of thing over here and run this again and print 1 2 3

4 5 only with a delay among the commands and so we’re going to learn about that today so let’s get started potato chips I am back now in our learning command blocks world because that’s what we need to do some learning and to start things off I want to teach you guys about

Scoreboard tags which can be used to identify a particular entities in the world so as we’ve seen before I could summon an armor stand and we know from drawing the checkerboard and serpents each triangle we know that we can move things all around I could say teleport

@e type equals armored stand till the 1 tilde tilde in order to move it 1 to face the X direction just like that and it will teleport the armor stand which is pretty great but something you may be aware of that we haven’t really discussed before is if I

Were to summon another armored stand over here and then I were to run this command again teleport @e type equals armored stand till the 1 tilde tilde both of these armor stands are going to move because both of them match the entity selector in the command the santi

Type equals armor stand both of these entities are described by that entity selector and so we’re going to move both of them and so the question is suppose I only wanted to move this one but not that one how would I do it well there’s actually I mentioned when we first

Learned about entity selectors or bout @e a few episodes ago that it’s actually a very rich mechanism and there’s a number of different ways that we could do things for example I could say type equals armorstand r equals 2 to only find the our stands within a radius of 2 of where I’m

Standing and then this guy moves but that guy doesn’t because he’s too far away so that’s one way we can do things but what I really want to do is teach you guys about scoreboard tags because they’re very useful and versatile especially in programming and so let’s

Go ahead let’s summon up fresh armor stand and I’m going to give this armor stand a tag by saying scoreboard players tag @e type equals armor stand ad and we’ll call him Fred tag Fred added so basically if this armor stand has now been tagged with a tag Fred and what

That means is I could summon another R stand over here and then if I wanted to operate only on Fred I could update my entity selector in this teleport command teleport @e type equals R stand tag equals Fred to tilde 1 tilde tilde and only Fred moves and

Indeed now that I have the tag since that’s the only entity in the world that is tagged with Fred I don’t even need the type equals armorstand I could just say a tag equals Fred and we’ll only move this our stand over here and yeah you can have a number of different

Entities that have the same tag if you do have a group of entities that you want tag and so for example I could add a tag to this guy as well and have both these guys tagged Fred and move those two without moving this one the tag mechanism is very

Versatile but let’s describe it in a bit more detail in terms of exactly how to tag x’ are represented in the world of Minecraft next step let’s learn another new command called entity data which will allow us to see the data that’s associated with entities so I’m going to

Be summon an armor stand I’ve got a retag this our stand is Fred just as we did before but then I’m going to run entity data at E tag equals Fred to tell entity data to run in this guy open curly brace close curly brace and it’s

Going to print a bunch of gobbledygook on the screen the data tag did not change and then all the stuff over here and these are all of the bits of data associated with this particular entity this armorstand and there’s some interesting bits it here for example over my cursor invisible 0b and right

Over here you’ll see tags 0 Fred and so you’ll start getting a sense of how we just stored some data in that this entity saying that he was Fred and so entity data if you run it with just empty curly braces it just shows you what the current entity data is but we

Could go and change some of the entity data for example I could say invisible can I spell invisible : 1 and poof the armorstand is disappeared and if we take a look at its entity data entity data updated 2 it’s the same stuff except for invisible is now 1 and similarly if I

Ran the same thing again and said invisible 0 now it’s visible again because invisible has been converted back to zero and so entity data gives you a way to print out all of the data associated with an entity stored in its nvt data as well as make changes to some

Bits of it for example invisible and as we can see in here oops after you get off the screen as we can see in here in addition to invisible there’s actually an array of eggs and so we could use entity data to actually set up tags on one of these

Guys as well and so for example I could say tags and then arrays or in square brackets and let’s give them two tags this time let’s given the tag a and the tag B just like that and now it says this entity data has been updated and if

We take a look at where my cursor is tags the 0th entry is a and the first entry is B so now this guy has two different tags to identify him and as a result if I try to run this command again nothing happens because the

Command I just tried to run is looking for tag Eagles Fred and there’s nobody there but if instead let’s try to make him invisible if instead I say tag Eagles a invisible it turns the armorstand visible because he is tagged a and similarly I could make him uninvited

Goolsbee because he’s also tagged B and so basically any one of the tags will match in the entity selector at E tag equals whatever so long as that tag is among the many tags that a particular entity might have in its entity data then it will match that entity selector

For running commands and so as a result I could say teleport a D tag equals B tilde 1 tilde tilde and since this guy has the B tag he will be one of the entities that gets teleported one Square to the side finally you can put NBT data

In an entity when you first summon that entity we’ve actually kind of seen that before when we have summoned armorstands with no gravity and so I’m going to do tilde tilde v tilde and then I’m going to say no gravity : one in order to summon a

Fresh R stand that is going to hang in the sky but additionally I’m also going to give him a list of tags and specifically I’ll just give him one tag called floaties and so object successfully summoned sure enough there is an armor stand floating up here in

The sky and he’s been tagged with floaties as I summoned him which means all future commands I can go ahead and address him using the entity selector let’s do entity data @e with a tag and so I can say tag equals floaty as a way to address that particular entity whose

Hanging up in the sky and I could say for example no gravity : 0 and now gravity affects the sky and so basically by summoning entities with tags we immediately get a name or a handle or a way to address that particular entity and that is going to be very useful

Because it’s very useful to be able to act on a particular entity in the world rather than all the entities of a particular type I’m now in a fresh copy of the learning world because I want to show off what could go wrong when you don’t specifically address particular

Armorstands this is the sierpinski triangle drawer that we made last time and it’s just teleporting all armorstands under the assumption that this one armorstand who is kind of like the cursor of the drawing thing is the only armorstand in the world and so long as that assumption is true everything

Works fine but you may recall that we have other things that use armorstands in this world such as Z and so recall that I could use nudge Z in order to nudge these blocks over or to nudge them back and nudge Z works it’s pretty self-contained and works on its own but

If it’s the case that this thing is running and teleporting all armorstands all the time and I try to run a nudge Z at the same time which also uses armorstands then all manner of bad things might happen in this case it didn’t nudge things and I think something actually just happened above

Me in the checkerboard pattern over here can i replicate that we put some more blocks over here and try to run nudge Z again alright it did not move any of these blocks yeah and it did weird things the checkerboard up here so basically we completely broken uh Jersey

By virtue of the fact that this guy is teleporting all the armor stands in the world rather than just the armor stand that he is responsible for and so in terms of the best practice when programming with command blocks I would suggest for any entities that are going to be long-lived entities there

To be doing number of things with make sure you summon them with particular tags and then address them with those tags so that you don’t end up addressing all of the entities of a certain type in the world because doing so is very dangerous because it could interfere

With other mechanisms that are also operating in the same world so we’ve learned about scoreboard tags we’ve learned that we can summon an entity with tags in it already and we’ve learned that we can use entity data in order to see the all of the NBT data associated with a particular entity as

You might be able to guess and I think we possibly have seen a little bit in passing in the past in addition to entity data there’s also NBT data associated with blocks so for example if I sit down this command block that says hi I can have my

Cursor on this block and I can run block data and say tab tab tab to fill out three coordinates that my cursor is currently on and once again empty curly braces and it will behave just like entity data except on a block rather than on entity and here’s the entity

Data the data tag did not change condition Met is one auto zero custom name at powered command say hi you’ll recognize that one definitely XYZ coordinates control success count track output these are all the things associated with this command block and so if I change it to saying bye and I

Run this block data command again we will see that it now says command say bye and we can also update things just like we could with entity data we could update the entity data kind of in place with block data we can do the same thing

And so I could change the command to say hello and now I’ve updated the command associated with this block and if I right-click the peek inside it sure enough now it says say hello so entity data allows you to see and change the data associated with a particular entity

And block data allows you to see and change the data associated with a particular block so far when we’ve needed the summon entities for our various programming contraptions we’ve used armorstands and when i first introduced armorstands I talked about the various properties that they have that make them a good for doing at

Various command block programming for moving things around the world and it turns out in Minecraft 1.9 that they introduced another type of empty that’s actually a very useful for command block programming as well and it’s called an area effect cloud and so I’m going to summon an area effect cloud

Let’s do tilde to tilde to tilde and if I do that it says object successfully summoned and should be right here and you don’t see anything here and the reason is it’s not there anymore because area effect clouds actually have a duration they will expire after a

Certain amount of time and so let’s change things and say duration 100 which will be 5 seconds since ticks are 20 times a second it will last 100 ticks which would be 5 seconds so I’ll summon one of those guys up there but once again even though it should be asking

For 5 seconds we don’t see it and the reason we don’t see it is they’re also invisible by default they don’t have any kind of rendering thing by default but if you hold down f3 and press B that will change things so that you can see hitboxes on entities and it shows the

Direction that they’re facing and so once again that’s f3 + B to toggle its but basically this shows the hitbox of this armorstand and shows the direction that the armorstand is currently looking and so if I go ahead and try to summon that area effect cloud once again aha

There is here is the area effect cloud who’s looking this way but he only lasted for 5 seconds we gave them a duration of 100 and then you went away let me give them a duration of a thousand so he’ll last a longer time so

We can see I’m on the screen for a bit but area effect clouds like armorstands have a couple of properties that make them super useful for doing certain types of things one is they have no collision they can travel right through players can travel through them and mobs

Can travel through them there’s nothing to collide with they also don’t collide with blocks and so an area effective lab can like live inside of a block and that’s not a problem it’s still there just fine I can break the blocks all around it kind of doesn’t interact with

The world in that regard they don’t have gravity which means once you summon them in a certain place even if it’s in the sky they’re just going to sit there and they have this duration they have this age property which can be useful in and of itself to both to make them kind

Of go away after time as well as kind of like make them automatically counting ticks in the scoreboard our fifty seconds is expired on that guy and so he just went away but let me summon him again for a thousand ticks another fifty seconds and if I do I didn’t give this

Guy a tag when I just summoned him but I’m going to do entity data @e type equals area effects cloud with empty curly braces so we can see its data tags the data tag not change and so if we look through the data tags here at the

Very end I will see age 350 and if I run it again now age is 611 and so basically every tick disguise age is counting up now it’s up to 755 and so that just keeps counting up and up until eventually it reaches whatever we set as

The duration tag and I can see it right here duration 1000 and so basically once it reaches a thousand and it just did then the area effect cloud disappears because that’s what area effect flouds do what they actually do is they’re meant for setting up lingering potions so kind of

Like potion area of effect things where you could have you know like a poison cloud that was sitting here and if you walked into it you get poisoned and eventually would dissipate over a small amount of time but just like armor stands in terms of survival minecraft

Are kind of made for hanging hanging armor on them area effect clouds are made for lingering potions but if you are a programmer a minecraft command block programmer you don’t use entities for what they were intended for in survival minecraft instead you use them based on the properties that they have

And the fact that area effect clouds have no collision the fact that they float the fact that they automatically age and expire is very useful for a number of contraptions such as delays potato chips so let’s come back to this little Mario World and you’ll recall that we had some command

Blocks here that were behaving kind of like repeaters and now it’s finally time to take a look inside this command block and see exactly what it’s doing it is summoning an area effect cloud one block over in the z direction with a tag n ticks later and an age of negative 8 and

Somehow this is making these commands run and sequence after a little bit of delay and the somehow isn’t magic I guess you could call it magic but really what it is is it’s these command blocks right here so I have a command that’s running a loop over and over again and

It is running these three things let’s take a look what they do the first one says tag every entity that is n ticks later and I can’t remember if we’ve seen this in scoreboard commands before but at the very end of the scoreboard command you can look for specific NBT

Data and it will only affect entities with that NBT data and so we’re going to tag everyone whose tags and n ticks later and whose age is exactly negative 1 that is an age value that’s exactly that as we count up we’re going to add

The tag end ticks later done and then at every n takes light are done entity we are going to say block data Auto one B and then execute it at that same entity we’re going to say a block data Auto zero B and that’s going to turn on and

Off a command block at that location and so basically we have an area effect cloud that I’ve given a negative age so it’s starting at negative 8 and kind of counting up towards zero and right before that area effect cloud expires it’s going to get a new tag and as a

Result then these blocks are going to see that new tag and cause Auto one B to be toggled on a particular command block and you may recall there’s down here needs redstone and always active I turn to always act this will say 5 and needs redstone versus always active the NBT

Commands are auto zero and auto 1 which we can see looking at the block data so if I do block data tab tab tab to look at the NBT data inside this command block we will see that is currently auto zero B zero and it’s just a byte and so the B

Just means bytes but in any case it has an auto value of zero if I toggle it to always active and then I take a look at its block data everything else is the same but now Auto is one B and so always active it means Auto one and needs

Redstone oops means Auto zero and so basically toggling between Auto zero and Auto one is the same thing as toggling between needs redstone and always active and whenever you set an orange command block to always active that actually runs the command you see each time I’ve

Turned it to Auto one or always active it’s going and actually saying 5 in the chat and so now you probably have a good sense of how this mechanism works basically I’m going to run this command and it is going to say 1 and then summon

An area effect clad with an age of negative 8 area effect clouds automatically age their age increases by one every tick so eight ticks later eight 20th of a second later this thing will dissipate but before it does seven ticks later it will get up to an age

Score of negative one and then this logic will kick in and it will execute at the location of the area effect cloud which is inside this block it will then execute Auto 1b and auto zero B which will quickly switch this guy on and off

Which will cause him to say 2 and then make this one run which summons a new area effector out over here and a few ticks later this one will wake up and say three and summon an area effect go out inside this block and so that is how

We can kind of emulate what repeaters give us with command blocks but they’re much more flexible because repeaters if you know how repeaters work they only give you kind of four time settings 1 2 3 & 4 with these we can use any number that we want and so for example if I

Wanted to wait 5 seconds between 1 & 2 I could say age minus 100 and 100 ticks is 5 seconds so now it’s gonna say 1 and then it’s going to wait for 5 seconds before this area effect cloud disappears and then say 2 3 4 5 and the other ones still

Have the short delay that they used to have before and you’re probably noticed on the screen that there’s these crazy particle effects area effect clouds give off particle effects that particle effects if their age value is less than their wait time we didn’t take a look at

Wait time but it defaults to zero and so we’ve got negative ages but I think it’s actually kind of cool to see the particle effects so you can see where the area effect clouds are and how they’re kind of like moving through the system or expiring in the system and the

New ones get summoned but the long and the short of it is by adding these four blocks into your world that just look for area effect clouds with an age of negative one and then cause the corresponding blocks to get black theta toggled between 1 and 0 you can

Basically create kind of repeater delays inside command block chains but then wake up the next orange in order to kind of start a new chain of commands and we can do that then in order to run all kinds of cool scripted behaviors where things take place

Over a certain amount of time such as our Mario maker over here where we’re summoning a zombie wearing certain pieces of armor who takes some time to walk around the corner and simultaneously we have a bunch of blocks that play sounds in order to play different notes at a certain kind of

Frequency and amount of time in between them in general in the early episodes of these programming tutorials learning command blocks I’m going to focus more on the programming and less on the Minecraft but I know people will be curious about this and so in order to

Play this music I am using the play sound command in each one of these orange blocks to play a particular note and you can change the particular note that they’re playing make the note sounds you know lower or higher in frequency by changing one of the

Parameters over here you can look at the details of how the play sound command works but basically it’s just playing individual notes and then there are certain delays for ticks between these two eight ticks between these two eight ticks between these two there’s a long delay between

The next 16 ticks between the last two notes of this little Mario riff but that’s all it is it’s a bunch of play sounds separated by a number of these different delay blocks that are all exactly the same except for they have different age numbers right here at the

End and then inside a world where we have these command blocks that are always running and so that’s how the music goes and this just kills all the entities in the world but what we have over here that summons Mario and has him come around the corner and talk to us

Basically summons zombie at a particular location no AI means he’s not going to try to walk around by himself silent means he’s not going to make any noise or like zombies always do tags Mario so that we can address him and then a bunch of armor items leather

Boots leather leggings of a certain color leather chest plate of a certain color and a skull damage value three means a player head skull owner sethbling the guy you may know looks kind of like Mario they’re often confused in public and then once again we’ll wait for three ticks and we will

Teleport him as 0.5 blocks to the side and we’ll wait for three more ticks and we’ll tell affordable point five blocks to the side and we’ll wait for three more ticks and teleport him 0.5 blocks to the side and it just so happens that that is kind of a good speed of movement

Of slowly teleporting a zombie that it just kind of looks like he’s walking towards you and whenever you teleport a zombie or some other walking entity while they’re kind of along the ground the game as it’s rendering it just kind of like automatically does that walking animation so it looks like he’s walking

Over and then at some point he makes a right turn over here because there’s part of the teleport command that we haven’t learned about there’s two other numbers you can give one is degrees in this direction and so we started out at 0 degrees then he turns to 90 degrees

Which is looking this way and then the other number is degrees in this direction up and down and at the end if we take a look at this little scripted series I have when he’s talking to you he kind of nods his head it kind

Of looks down and looks up and so if we go over to the end of this sequence over here we’ll see some more teleport commands oops where yeah we went from 90 zero which is looking directly this way to 90 20 which is still this direction

And this axis 90 degrees but then 20 degree down angle so we went from 20 to 0 to 20 to zero in order to make him not his head a couple of times as we said it’s a me Mario so I’m not going to explain kind of all the full details of

Those commands but hopefully that gives you a sense of what’s going on and how just by being able to teleport an entity around and have delays between different commands that run between different oranges that start other chains we can do all kinds of interesting things in terms of scripting little animations and

Making little cutscenes here in Minecraft so I encourage you to go nuts with this kind of programming now you might try this yourself and discover that some things aren’t working as expected if I grab an empty impulse command block and say say hi currently needing redstone and I say a

Block data of that block to auto 1 B which should turn it to always active and cause it activates block data updated but it did not say hi there is currently a bug I’m currently in a 15-week 37a you can see at the top of the screen there is a bug in command

Blocks where the first time they are used they didn’t work properly by set redstone next to it actually let me turn it back to needs redstone if I set redstone next to it to activate it like that and now it says hi in the chat and then break the Redstone now this command

Block will work and so if I do this block beta command boom it says hi and now every time I try to toggle from auto zero to auto one from needs read stoned always active it will work properly and say hi but in order to get it working the first time

You have to do something my recommendation to you to avoid this bug this is a bug that Mojang knows about and Sarge says he’s fixed it and so the next snapshot is should be fixed but what I recommend to you is when you first get a command block when you first

Get an impulse command block set it down on the ground put redstone next to it to activate it once then throw away this empty command block that you have in your inventory and instead control click on the sky which will now be a command block with MBT it’s still going to look

You know empty in terms of all its other fields but now it’s going to be in the working state as opposed to the broken state that it is when you first put one down in the world and so just use this command block build with anywhere you’re

Going to build or if you discover that one of your command blocks appears to be broken just set some redstone down in it when it’s in need redstone state so that it activates for the first time and yeah I won’t go into the details of the bug

But it’s a simple bug and it should be fixed in a future snapshot but in any case that’s important for any time you’re trying to activate blocks with Auto 1b because that’s when the bug actually occurs potato chips if you want to add this delay mechanism in your own world it’s

Really simple we just need a purple followed by three greens with the commands that are here scoreboard players tags @e tag equals n ticks later add antics later done for anybody whose age is negative one and then for anybody tagged with n ticks later done block data Auto one B and

Then black data auto zero B is all that you need just always running in a competing loop and then anytime you want to introduce a delay if we take a look at the white command up on the top some an area effect out tilde tilde tilde one

Or more generally in the area of the block that we want to wake up after some time passes tag it with n ticks later and give it an age of negative and however many ticks later you want things to run negative eight was my little

Example right here and so we can see it actually working in an example over here where if activate the orange block at the top it will run this first chain the first three command blocks the orange one is empty but it will say say something but after two seconds someone an area effect

Cloud tilde tilde tilde one will summon an area effect cloud down inside of this orange block right here that will wake up and time at negative 40 40 is 40 ticks is two seconds since it’s 20 ticks a second is how fast minecraft runs command box and so at two seconds later

This orange one will be activated and then say something else and so if I run this it’ll say say something but after two seconds say something else and that’s all there is to it in terms of doing things with delays so to sum things up we learned about four major

Things today first we learned about tags we learned ways that you could tag an entity so that you could refer to a particular entity in the world rather than all the entities of that type in the world we learned about entity data that one could use on an entity both to

Just kind of print to the screen all of its entity data associated with an entity as well as to update some bits of entity data then we learned the block data command which like entity data goes and prints out the data associated with the block or allows you to update the

Data associated with the block but works on blocks like command blocks rather than entities like armorstands and finally we learned about a new entity called area effect cloud that like armorstand which has a number of advantages and certain programming things area effect to out has a number of advantages in certain programming

Things as well especially related to aging and delays and we used area effect clouds to make our delay mechanism and I’m holding a diamond sword right here I don’t know this is something that I showed off in creative mode but yeah if you are just trying to swing your fist

To gesture at things you will break them but they’ve made it in creative mode such that if you swing a sword at things it doesn’t break them and so when I want to gesture as I’m talking at blocks I will hold the sword so that I can gesture at these signs without actually

Breaking them but I’ll go ahead and break them now as well as this block apparently in any case that’s all for today I hope is always that you guys are having a great day and I will see you again soon for more learning mBLAQ’s bye-bye but wait there’s more

I probably told some lies in this episode but I think this episode is long enough already for today so obviously there go forth I’m not going to give an explicit homework assignment but if you like making music you can always try to do something similar to what I did with the

Play sound if you like animating mobs you can try to do that but I’d encourage you to play around with just trying to make certain events happen on kind of scripted delays because there’s a lot of fun things that you can do until then see you next time

This video, titled ‘Learning Minecraft Command Block Programming, Part 7 – Time delays’, was uploaded by lorgon111 – Brian’s Gaming Videos! on 2015-09-16 13:00:30. It has garnered 66633 views and 1149 likes. The duration of the video is 00:33:53 or 2033 seconds.

Mario maker incoming! 😛

I’ll teach you Minecraft command block programming! This series will help you learn step-by-step using the 1.9 snapshots of Minecraft for PC.

Today we cover time delays, which enable us to make ‘scripted scenes’ where events unfold over time.

This episode covers – scoreboard tags, added via ‘scoreboard players tag’ commands – the /entitydata command, for inspecting and changing the NBT data associated with an entity – summoning entities with initial tags – entity selectors using tags: @e[tag=blah] – the /blockdata command, for inspecting and changing the NBT data associated with a block – the AreaEffectCloud entity, another useful entity to summon – a tiny mechanism to utilize an AreaEffectCloud as a ‘delay timer’ to activate a chain in the future after N ticks Using these features, I show off how I animated ‘mario’ and played the music.

Teaching programming to a wide audience is a challenge. I’ll try to go at a slow, detailed pace that most viewers can follow. If you know a topic well, you might want to watch at 1.5x or 2x speed to skim.

Teaching complicated subject matter is a challenge. During an episode, I sometimes do ‘handwaving’, or tell white lies or lies of omission, for simplicity to teach beginners. At the end of each epsiode, I’ll have a segment where I try to clear up the lies I know I told, going into more gory detail.

Subscribe for more videos & tutorials here: https://www.youtube.com/user/lorgon111

This playlist: https://www.youtube.com/playlist?list=PLHYAYMSbpcvulT34yXXN6SjTgpi0bOgka

Follow me on twitter @lorgon111 : https://twitter.com/lorgon111

  • Join Minewind: Where Starter Houses Become Epic Builds!

    Join Minewind: Where Starter Houses Become Epic Builds! Welcome, Minecraft enthusiasts! Are you looking to enhance your building skills and create stunning structures in the world of Minecraft? Look no further than Minewind Minecraft Server. With a vibrant community of players and endless possibilities for creativity, Minewind is the perfect place to showcase your building talents. Imagine taking the skills you learned from tutorials like “How To Build A Starter House In Minecraft” and applying them in a dynamic multiplayer environment. On Minewind, you can collaborate with other players, participate in building competitions, and explore a vast world filled with unique creations. Join us at Minewind Minecraft… Read More

  • Top Minecraft Island Seeds 1.20/1.21!

    Top Minecraft Island Seeds 1.20/1.21! The Best Minecraft Island Seeds You Need for 1.20/1.21! 🔥 (Java/Bedrock) Discover the Top 3 Island Seeds for Minecraft 1.20/1.21 In the vast world of Minecraft, finding the perfect island seed can make all the difference in your gameplay. The latest update has brought forth some of the most powerful and beautiful island seeds that will take your Minecraft experience to new heights. Unleash Your Power with Super Over Powered Seeds Are you ready to dominate the game like never before? These Super Over Powered island seeds for Minecraft 1.20 and 1.21 will give you the ultimate advantage, making… Read More

  • Sneaky Portal Prank on Upin & Ipin in Minecraft

    Sneaky Portal Prank on Upin & Ipin in Minecraft Minecraft Adventures with Kak Ros (Upin & Ipin) Embark on a thrilling Minecraft journey with Kak Ros from the beloved Upin & Ipin series! Join the fun and explore the magical world of Minecraft with these exciting portals. Donation Opportunities Support the creators and their endeavors by donating through Saweria. Every contribution helps in bringing more amazing content to life! Community Engagement Connect with like-minded gamers and fans on Discord. Share tips, tricks, and experiences while immersing yourself in the Minecraft universe. Customize Your Experience Personalize your Minecraft gameplay with the UzeMing skin. Stand out in the virtual world… Read More

  • Vanilla Minecraft: Descending Back to Hell

    Vanilla Minecraft: Descending Back to Hell In the depths of hell, I journeyed anew, With Minecraft news, all rhymed and true. No changes to vanilla, just mods for fun, Exploring the nether, under the sun. I faced off with mobs, in a blaze of fire, Searching for fortresses, my heart’s desire. Endermen angered, pigmen attacked, But I survived, my skills intact. With Nanachi by my side, a skin so fine, I braved the dangers, in the nether’s spine. Now back in the overworld, safe and sound, Reflecting on adventures, that I found. So here’s the tale, of my Minecraft quest, In rhymes and rhythms, I… Read More

  • Ultimate Minecraft Boss Mods!

    Ultimate Minecraft Boss Mods! Minecraft’s Most Insane Boss Mods! Are you ready to take your Minecraft gameplay to the next level with some epic boss mods? Look no further! Here are some of the most insane boss mods that will challenge your skills and keep you on the edge of your seat. Mutant Beasts One of the standout boss mods is Mutant Beasts, which introduces giant mutant creatures that will put your combat abilities to the test. From massive spiders to towering zombies, these beasts will keep you on your toes as you fight for survival. Mutant More [Bonus Mod] If you’re looking… Read More

  • Ultimate Minecraft Base Showdown

    Ultimate Minecraft Base Showdown Minecraft Secret Base Logic: NOOB vs PRO Welcome to our latest Minecraft video, where we explore the concept of secret bases through the lens of a noob and a pro player! In this epic showdown, we will witness the different strategies and tactics used by both players to create the ultimate secret base. The Battle Begins Watch as the noob player fumbles and struggles to build a basic shelter, while the pro player effortlessly constructs a complex and well-hidden base. Will the noob player be able to catch up and outsmart the pro, or will their lack of experience… Read More

  • Join Minewind: Where Survival Minecraft Gets a Boost! 🏹 #minecraft

    Join Minewind: Where Survival Minecraft Gets a Boost! 🏹 #minecraft Welcome to NewsMinecraft.com! Are you a fan of Minecraft and looking for a new server to join? Look no further than Minewind! With an exciting and dynamic community, Minewind offers a unique gameplay experience that will keep you coming back for more. Join us at Minewind server by entering the IP YT.MINEWIND.NET in your Minecraft client and start your adventure today! Don’t miss out on the fun – join Minewind now and see what all the hype is about! Read More

  • Transforming into a Red Wolf in Minecraft

    Transforming into a Red Wolf in Minecraft The Red Lang Transfur in Minecraft 300 days after the last animation, a new chapter unfolds in the world of Minecraft. Mr. White, alongside his wife Pink Justice, ventures into the unforgiving environment of the ocular forest on planet Melosator. Their goal? To establish a company producing scarlet drugs and flake, pushing the boundaries of innovation. A New Frontier As they navigate the challenges of the forest, Mr. White realizes the harsh reality of their endeavor. To adapt, they downscale their operations and secure jobs as regional managers for White Walnut and Pink Justice, a local corporation. The Birth… Read More

  • Crafting Chaos: Minecraft Meets Exam Eve

    Crafting Chaos: Minecraft Meets Exam Eve In the world of Minecraft, I’m the news reporter in rhyme, Crafting updates with humor, each one a good time. From new mobs to blocks, I’ll keep you in the know, With a spin and a grin, I’ll make sure it’s a show. So leap into the verse, where the truth takes wing, In every pulsing line, let the story sing. I’ll keep it fierce and funny, engaging and light, With Minecraft facts to share, each one a delight. From Cube Xuan to Classroom Series, I’ll keep you entertained, With rhymes that ignite, each update explained. So follow along,… Read More

  • Back in the Scary German Underground

    Back in the Scary German Underground Exploring the Depths of Minecraft in German Learning German Through Minecraft Adventures Embark on a linguistic journey with Monday Morning as they delve into the world of Minecraft to teach German through comprehensible input. By merging language learning with gaming, Monday Morning creates an engaging and immersive experience for learners. Through observation and interaction, players can absorb new vocabulary and phrases while having fun. Join the Discord Community for Practice For additional practice and support, Monday Morning offers a Discord server where learners can interact with fellow German enthusiasts. Whether you’re a beginner or advanced learner, the community provides… Read More

  • Unlock Aether NOW! No Obsidian Needed – Modded Minecraft

    Unlock Aether NOW! No Obsidian Needed - Modded MinecraftVideo Information greetings humans it is I Bay zipster and today I’ll be showing you how to get to the Aether dimension in modded Mindcraft without the need to find diamonds or mine obsidian step one your typical start punch trees for wood make a pickaxe mine Stone mine coal step to find iron three minimum for one bucket but I recommend finding as much as you can to make more optionally find flint but I forgot to this run so instead you’ll me try a different way to ignite the portal step three find a lava pool preferably on… Read More

  • “SazerStreams: Join Now for Nonstop Lifesteal Fun!” #minecraft #smp

    "SazerStreams: Join Now for Nonstop Lifesteal Fun!" #minecraft #smpVideo Information कैंडल लाइट हैज गन आउट सम वे विन एंड सम वल लूज नथिंग मच एल्स टू से थ आ सर्चिंग फॉर समथ डर क्लोज न साउ टेक लक ए आ एला स्ल आ प् स्लो ड स्लो डाउ स्लो डा [संगीत] स्लो कैंडललाइट है गन आउट सम विल विन एंड सम ल लूस नथि मच एल्स टू से थ आ सर्चिंग फॉर समथि क्लो न साउ टेक अ ल आ [प्रशंसा] स्ल प् स्लो ड से उ से उ से [संगीत] उ कैंडललाइट हैज गन आउट सम वल विन एंड सम वल लूज नथिंग मच एल्स टू से… Read More

  • Krish Gets Scared By Minecraft Monster 😱

    Krish Gets Scared By Minecraft Monster 😱Video Information लोगों को बताऊं यार ये वीडियो एंड ही नहीं हो रही है मैं कर ही नहीं पा रहा यार ये भाई पागल भाई पागल पागल पागल ओके हम आ चुके हैं एंड पोर्टल में एंड पोर्टल में आ चुके हैं हम पोर्टल में घुस तो गए थे मुझे लग रहा था हम दूसरी विलेज में आ जाएंगे लेकिन इस बार हम अलग ही एंड पोर्टल में आ चुके हैं एंड पोर्टल में हम यहां पर आ चुके हैं और यहां पर मुझे कुछ तो गड़बड़ अब यहां पर लग रही है वेट व्हाट यहां पर गाइज एक घर… Read More

  • Shocking Makeup Tutorial: DON’T Mine at Night 💄🌙

    Shocking Makeup Tutorial: DON'T Mine at Night 💄🌙Video Information don’t mind at night I know you’re looking at that cave and you’re feeling kind of Brave go to bed you’ll be all right don’t mine at night there’s nothing This video, titled ‘Don’t mineee at nighttt #makeup #makeupartist #viral #fyp #minecraft #makeuptutorial #meme #funny’, was uploaded by PorcelainxDoll on 2024-05-25 01:30:52. It has garnered 332 views and 61 likes. The duration of the video is 00:00:10 or 10 seconds. Read More

  • Mikey & JJ Transform into T-Rex in Minecraft Attack!

    Mikey & JJ Transform into T-Rex in Minecraft Attack!Video Information [Music] good morning Mikey how did you sleep what are you doing there good morning JJ I thought you’d sleep the whole day as usual I’m just looking at what we can do with our resources and what can we do let’s take a walk around the village hm what is it there there seems to be a seller selling something let’s go there soon and see what he sells mhm Hi man we saw your poster there what does it say here buy a plane hi guys I’m selling a plane that you can buy and fly… Read More

  • Building EPIC PandaLand in 1 Block – EP. 5 #Minecraft

    Building EPIC PandaLand in 1 Block - EP. 5 #MinecraftVideo Information [Music] I [Music] so [Music] yeah [Music] [Music] [Music] [Music] oh [Music] [Music] hey [Music] [Music] you [Music] no [Music] a This video, titled ‘Making a PandaLand in Minecraft One Block [Episode : 5] #minecraft #trending #viral #viralvideo’, was uploaded by GamingSupro009 on 2024-03-04 12:35:18. It has garnered 11 views and 1 likes. The duration of the video is 00:05:51 or 351 seconds. Making a PandaLand in Minecraft One Block [Episode : 5] #minecraft #trending #viral #viralvideo minecraft house minecraft game minecraft house ideas minecraft videos for kids minecraft video minecraft house design minecraft live minecraft song minecraft… Read More

  • Fabelized

    FabelizedWelcome to Fabelized, your ultimate destination for all things Minecraft! Dive into a world of endless possibilities and unleash your creativity with our vast collection of exclusive items, skins, and accessories. Whether you’re a seasoned builder or just starting your adventure, Fabelized has everything you need to elevate your Minecraft experience to new heights. Explore our meticulously curated selection of skins, ranging from fierce warriors to adorable creatures, and find the perfect look to express your unique style. Enhance your gameplay with our premium plugins, and texture packs, designed to immerse you in stunning new worlds and enhance every aspect… Read More

  • Aether Earth – Semi-Vanilla Factions SMP PVP

    Welcome to AetherEarth! Features: 1:1500 Scale Earth Map LifeSteal Fully Customized Shop Towny Make your own Vehicles (MoveCraft) Cross-play Welcoming Community Professional Staff Will you make peace or will you start the next world war? Join to make history! Join us on Discord Read More

  • AND Factions

    AND FactionsServer launches on July 10th, 4pm CET!OGFactions is a server dedicated to bringing back the nostalgic feel of classic faction servers. Where items are actually valuable, and players must grind to achieve them – there’s absolutely ZERO way to buy any kind of in-game advantage.The server is run by 2 seasoned MCPVP veterans who are committed to prioritizing gameplay and fun above all else.Discord: https://discord.gg/gCXuvCA4rh Read More

  • Minecraft Memes – Which one have you tried tho? 🔥

    I’ve tried them all, and let me tell you, I still can’t figure out how to mine diamonds without accidentally falling in lava every time! Read More

  • Brick by Brick: Minecraft Cherry Blossom Garden 21260 Review

    Brick by Brick: Minecraft Cherry Blossom Garden 21260 Review Leap into the verse, where Minecraft sets disperse, Cherry Blossom Garden, a colorful burst. Sniffers and bees, in a world of blocks, Building terrain, with colorful rocks. The build quality, a bit on the flimsy side, Bees falling apart, a fragile ride. But play value shines, with sniffers and trees, A Minecraft world, full of possibilities. Build experience, colors bright and bold, Inspiration for terrain, stories untold. A set for children, to create and play, A display piece, in a colorful array. Playability, with sniffers and bees, Accessories galore, for hours of ease. A set for kids, to explore… Read More

  • Minecraft Meme: Hot and Spicy!

    Minecraft Meme: Hot and Spicy! “Why did the creeper break up with his girlfriend? Because she couldn’t handle his explosive personality!” Read More

  • Survival Minecraft Server Sneak Peek: MineCity

    Survival Minecraft Server Sneak Peek: MineCity Welcome to MineCity: A Preview of Our NEW Survival Minecraft Server! Hello everyone, welcome to the exciting world of MineCity! Our brand new survival Minecraft server is packed with amazing features and bonuses that will keep you entertained for hours on end. Join us as we explore all the incredible elements that make MineCity a must-visit destination for all Minecraft enthusiasts. Features of MineCity At MineCity, players can expect a wide range of features that set our server apart from the rest. From custom-built structures to unique gameplay mechanics, there’s something for everyone to enjoy. Here are some key… Read More

  • Minecraft PS3 in 2024: What’s New?

    Minecraft PS3 in 2024: What's New? Minecraft PS3 Edition in 2024: A Look at the Exclusive Features Minecraft PS3 Edition, launched in 2014, holds a special place in the hearts of many players. Despite no longer receiving updates, this edition continues to offer a unique gaming experience. Let’s delve into the world of Minecraft PS3 Edition in 2024 and explore its exclusive features. Exploring the Game Upon entering the game, players are greeted with the familiar interface of Minecraft PS3 Edition. The last update, version 1.13, sets the stage for a nostalgic journey through this beloved edition. Players can customize their experience by choosing from… Read More

  • Insane Minecraft Bom magic tips! 😵😵 #viral #shorts

    Insane Minecraft Bom magic tips! 😵😵 #viral #shortsVideo Information This video, titled ‘Mincraft Bom magic😵😱।‌ #minecraft #viral #shorts #nf Minecraft tips #trending’, was uploaded by NF Mincraft Tips on 2024-01-14 13:11:20. It has garnered 2466 views and 101 likes. The duration of the video is 00:00:24 or 24 seconds. Mincraft Bom magik😵😱।‌ #minecraft #viral #shorts #nf Minecraft tips #trending Read More

  • Ninja7087 vs Haunted Minecraft Seeds

    Ninja7087 vs Haunted Minecraft SeedsVideo Information हेलो हेलो हेलो गाइस वेलकम टू अनदर वीडियो और आज की इस वीडियो के अंदर मैं आ चुका हूं रर सीट ट्राई करने एज यू नो आज की वीडियो का टाइटल तो पढ़ ही लिया होगा तुम लोगों ने तभी तो वीडियो लगाई होगी तुम लोगों ने तो आज की इस वीडियो के अंदर सॉरी वो थोड़ा एरर आ गया था और मैं बोल रहा था कि आज हम लोग टेस्ट करने वाले माफ्ट हरर सीड्स व माफ्ट के अंदर सो लेट स्टार्ट और इस वीडियो में एंड तक बने रहना और मैं तुम्ह एक ऐसा सीड भी… Read More

  • Insane Minecraft Survival Secrets on My Realm 😱

    Insane Minecraft Survival Secrets on My Realm 😱Video Information [Music] is [Music] [Music] [Music] [Music] [Music] [Music] what up guys what up welcome to the stream how are you guys doing today on this fine evening um I appreciate every single one of you guys coming down to the stream we are live um give me a hello hello yep I can hear you Y sound good hello yep I can hear you good okay can I pick where we’re Landing today yeah so I’m going to turn this down to almost an extreme and then put this back on all right I’m going to pick closer… Read More

  • Mind-blowing Aether and Twilight Forest..? 🌳😱 #viral

    Mind-blowing Aether and Twilight Forest..? 🌳😱 #viralVideo Information This video, titled ‘ESSE VÍDEO É PRA VOCÊ :AETHER & TWILIGHT FOREST🌳 🤔🤔😆 #shorts #viral #minecraft’, was uploaded by Slinky_ J.E on 2024-01-15 16:32:03. It has garnered views and [vid_likes] likes. The duration of the video is or seconds. THIS VIDEO IS FOR YOU: AETHER & TWILIGHT FOREST #shorts #viral #minecraft #modsminecraft. Read More

  • HoneyPuu joins me in a wild Minecraft adventure!😱🔥

    HoneyPuu joins me in a wild Minecraft adventure!😱🔥Video Information Minecraft wir haben Minecraft Chat gehen wir gerne rein so ich war hier im Haus W geh das habe mich erstmal bedient dass ich nicht verrecke me ich komme auf den Server und sofort B be me wichtig aber ich werde ganz normal anfangen ich werde mir von von von kein irgendwas holen geh den Talk ja ich w irwohl kommen muss jetzt V drücken hallo hallo hallo B aber Luft hallo hörst du mich war hallo hört mich nicht muss in die Gruppe kommen oh kracht hallo hörst du mich ja hörst du mich gut den ist… Read More

  • Insane Mods To Boost 1.20.4 Minecraft Survival!

    Insane Mods To Boost 1.20.4 Minecraft Survival!Video Information what’s up everyone it’s JT GT here and I am back hopefully for a while school and work has been a lot but I’m here to bring you guys 10 mods because I felt like I haven’t done mods in a while and let’s just get right into the first mod so as I’m walk into the area for the first mod uh my world got corrupt I tried to fix it for 2 months and I could not get it to work so sadly I had to go through and I’m just rebuilding everything but it seems… Read More

  • Kiara conquers Minecraft in 1 day! Sheep everywhere!!! #MythOneBlock

    Kiara conquers Minecraft in 1 day! Sheep everywhere!!! #MythOneBlockVideo Information [Music] feel it rush through me [Music] we feel it R feel it through me [Music] [Music] oh honey [Music] in there you know to kind of be like yo serious [ __ ] being in Japan at that time right like people weren’t messing around you know that’s the vibe that I got wait sorry I think I need to do a quick intro cuz I just switched to the gaming uh screen go for it K you guys may have already been seeing me on on K’s stream I was just you know chilling and uh… Read More

  • Insane Game Hacks 😱 – Add Blocks in Minecraft #shorts

    Insane Game Hacks 😱 - Add Blocks in Minecraft #shortsVideo Information This video, titled ‘Minecraft But You Can Add blocks #shorts#herobrine #tacnogamerz #minecraft #minecraftenderdragon’, was uploaded by Unlimited Gaming 😎 on 2024-07-05 10:30:19. It has garnered 8211 views and 236 likes. The duration of the video is 00:00:10 or 10 seconds. Minecraft But You Can Add blocks #shorts Cradit : @ORANGEEYT 🗿 video made by – @LEGENDDEVILS minecraft,minecraft challenge,minecraft but,beating minecraft,minecraft but challenge,minecraft manhunt,minecraft mod,minecraft facts,minecraft manhunt but,manhunt minecraft,minecraft op,minecraft mods,cursed minecraft,minecraft hardcore,minecraft but every block multiplies,minecraft challenges,insane minecraft,minecraft uhc but,blessed minecraft,op minecraft,minecraft pvp,minecraft uhc,minecraft funny,tapple minecraft,minecraft speedrun Read More

  • INSANE ROBLOX GAMING: Spider Man 3 SHORTS!

    INSANE ROBLOX GAMING: Spider Man 3 SHORTS!Video Information This video, titled ‘Marvel’s Spider Man 3 #roblox #gaming #minecraft #shortvideo #shortsfeed #shorts #gameplay #games’, was uploaded by Robokidspk on 2024-06-05 17:36:22. It has garnered views and [vid_likes] likes. The duration of the video is or seconds. Hello! Welcome to Channel ! I decided to record my gameplay. I hope you all friends will find this relaxing and enjoyable. I will try … Read More

  • LacoCraft

    LacoCraftServidor Nuevo! de 1.8 en adelante! Modalidades: SkyWars: On Practice: Off BedWars: off Proximamente mas modalidades!! Entra ya con tus amigos!! ny2.tect.host:1319 Read More

  • Broomstix SMP Creative Semi-Vanilla 1.20.6 Claims Classic Bedrock-Java FlyOnSundays DynMap CustomEnchants PetTeleport

    Server Information Java & Bedrock IP: play.broomstix.net Default ports Discord Join our Discord server with voice channels Online In-game Map Explore our world: https://map.broomstix.net/ Features Backwards compatibility with the latest Minecraft version Cross-play between Bedrock and Java Hard difficulty and custom enchantments Unique gameplay features like teleporting mobs and free fly on Sundays ProtectionStones for land claiming, bartering economy, and no grief Main PvP arena with keep inventory Random teleportation in overworld and nether In-game messaging, homes, player teleportation, and Minecraft-Discord integration Responsive staff, voting ranks, rewards, server shops, public market, and tutorial warps Read More

  • Minecraft Memes – pov friend steals your diamond (ik, savage)

    Minecraft Memes - pov friend steals your diamond (ik, savage)Looks like your friend is about to learn the hard way that diamonds aren’t just a girl’s best friend, they’re a Minecraft player’s best friend too! Read More

  • Cave Craze: Minecraft’s Dark Daze

    Cave Craze: Minecraft's Dark Daze In Minecraft, fear of the dark, we delve, Exploring caves, finding treasures, oh what a spell. From planting fences to mining coal so black, Every adventure, every challenge, we never lack. With each swing of the pickaxe, we uncover a sight, A giant cave, a hidden gem, shining so bright. From finding food to battling foes, In this pixelated world, our journey grows. So let’s craft, let’s mine, let’s build with glee, In Minecraft, the possibilities are endless, you see. So join me in this blocky land, where dreams take flight, And together, we’ll conquer the day and the… Read More

  • Minecraft Drug Dealer Meme

    Minecraft Drug Dealer Meme “Why did the Minecraft pharmacist go out of business? Because all his potions were just water bottles with food coloring!” Read More

  • Tax Evasion Tricks in Minecraft

    Tax Evasion Tricks in Minecraft Minecraft Adventures: Nearly Evading Taxes Introduction In a thrilling Minecraft adventure, fosforus embarks on a quest to evade taxes in the virtual world. Armed with determination and a stack of potatoes, he sets out to make money and pay off his dues to the IRS. Starting Small Fosforus begins his journey by planting a humble potato farm and venturing into the mines to gather resources. Along the way, he encounters a traveling merchant, seizes an opportunity, and sets his sights on making a profit. Exploration and Discovery As the days pass, fosforus explores the vast world of Minecraft, raiding… Read More