1.20 Minecraft Forge Modding Tutorial – Blocks

Video Information

Foreign ladies and gentle ladies and welcome back to another Minecraft modding tutorial for Forge 1.20 in this tutorial we are going to be covering how we can make a block and add it to the game and yeah so let’s get started so the first thing we’re going to want

To do is come into our init package and create a new class this would be called I’m sure you can guess but Block in it just as our item in it was for items this is going to be pretty much exactly the same as our item in it

So we’re going to once again want a deferred register so a public static final deferred register let me just turn copilot off and that will be of type block instead of type item we’ll call that blocks and that is deferred registock dot create and we’ll pass in Forge Registries dot blocks

Then we need to once again pass our mod ID in here so tutorial Mod Dot mod ID is the constant note we created and then we just want to create the registry object so once again this is exactly the same as it is for items we’re going to do block

We’ll call this example underscore block is equal blocks.register let’s give it our name so once again no spaces no special characters etc etc just basic A to Z 0 to 9 underscores and colons uh not colons forward slashes and those are all the fine characters I

Think you can also have dots but you know if you’re putting characters like that then I don’t know what’s going on there and once again just same as items we just want a supplier instead of doing a new item we’re going to do new and you’ll see IntelliJ shows

Us all of the default block classes that we could use here so we’re just going to use a normal block for this tutorial in the future we’ll cover other ones and inside of here you’ll see just the same as items we need to give it some properties so it knows how it will

Function for example slipperiness and you know other things like hardness etc etc so we’re going to do block dot properties Dot off and then we can do Dot and we can pass it any of these different um things here so for example one thing you will probably want to do is

Maybe the map color right so the color that it shows up on a map and that will ask for a map color so map color dot and you’ll see all of the different map colors and now I’m just going to do color green because my block is going to be green

Let’s just put this on a new line and put these on a new line so we can train some more properties here we can also do stuff like destroy time or alternatively you can just do strength you have strength with a float and a strength with two floats

Least strength with two floats is the hardness so how long it takes to break basically and then also the explosion resistance so how resistant it is to explosives if we use the single float that will just put the same value for both so I’ll just do this one um we’ll say

Five for the hardness and maybe 17 for the explosion resistance and then we can get other properties I’m not going to go through all of these you can choose which ones you want most of them are fairly obvious we can actually do something fun now with 1.20 we can specify the instrument

That it should play for note blocks so you can say Note Block instrument and you have all these different instruments and you can also probably create your own let’s see what is this is it an enum it’s an enum can we make our own it doesn’t look like we can

Unfortunately not without a mixing anyways which is a bit of a shame but it’s it is what it is what else can we do that’s just a little bit fun maybe okay let’s talk about a light level because that’s something a little bit more complicated

So when we say a light level it asks for a two int function of a block state so this means that we have a block State and based on that block State you can provide an integer which is the light level so obviously 0 to 15. so basically

To do this you just do value which is the block state and then just give it a number so um five per example um I prefer to just name this state though so we know it’s the block State and obviously you can do something dependent on that state so you could say

States dot gets value for example and if you had stake properties which is something we’ll cover in a future tutorial you could say based on you know um whether it is on then you could say five or ten for example um obviously we don’t have that state so

We can just give it something default I’ll say 10 for this one and since we’re going to be covering loot tables we need to talk about that so that’s not as simple as just a loot table exists we have to make a loot table for all of our blocks that we want

To drop for something now I want this block to only be minable by iron pickaxes or above so we actually need to give it the property requires correct tool for drops and that basically means you have to have the correct tool before the before you can actually mine the block

So that’s a very important property that you might want to add and I believe also you can copy properties here instead of just doing them yourself so say for example I wanted to copy blocks dots anvil then that would copy the properties from the Anvil and then you can also add additional properties

On top of that or overwrite existing ones if you want to look at the vanilla blocks to see what they all are and their different properties you just come into this blocks class here and you’ll see every single block in the game so obviously it’s going to take a

Minute to load because there’s loads of them but you can just come through and you can see all of their different properties here all listed across like this for example you can supply like push reactions for Pistons so I could say push reaction push reaction Dot destroy right so if

It’s pushed by a piston it destroys the block a lot of these properties are new for 1.20 because they used to be in something called a material which would Define a lot of these properties but now they are all just part of the actual block properties which is great

But that’s pretty much it for the code once again as we did with the items we need to register this deferred register to the event bus so let’s come back into our main class and just the same with items we do Block in it dot blocks dot register bats now

Whilst we have registered a block here the thing is we don’t have an item for our block so a lot of people kind of when they start they assume that registering a block means your registering the item as well but you’ve got to remember that a block is

Completely unrelated to the item you can have a block without an item it doesn’t have to have an item think for example um let’s see what what blocks don’t have items in Minecraft for example um pumpkin stems or Melon stems right they don’t have an item they’re just a block so

We need to register a block item now generally I do this in my block in it however you can also do this in your item in it I think so that we know it’s an item let’s do it in our item in it and I think that’ll make a bit more sense really

So it’s really going to be exactly the same as before registry object but instead of of type item we’re just going to say of type block item now since block item just extends item we can still register it to this deferred register and that’ll be fine now I’ll just call this example

Underscore block and it’s got item is equal items dot register example underscore block and then a supplier of a new block item oh block item there we go let’s put that on a new line and inside of here you’ll see that it requires two parameters so it first requires the actual block

Which is fairly easy to do we can do block init dot example block now if you try to do that you’ll see we have an error and that’s because it’s asking for a block and not a registry object of a block so you see here this

Is a residue object of a block it’s not an actual block so if you recall as I talked about last time these registry objects are effectively A supplier so it’s like a supplier with a string inside of it so to be able to get the object from the supplier we just dot get

And then we need to provide the properties like we did before so just a new item dot properties and I don’t think we’ll put anything special on that I might in fact give it a Rarity as well just for funsies so we’ll do a rarity dot uncommon

And let’s put these well that should put that on a new line so that if in the future we want to add more properties we can and in fact I’ll do that that and then like that okay fantastic so that’s our block item and that will now automatically be

Registered that’s our block registered and that’s our block registry added to the bus fantastic so now we can move on to the resources so let’s do the same as we did before let’s come into our resources inside of our assets mod ID we can see that in the previous tutorial

We created this block States folder for us so this is what we’re going to be using today so we need to create a new file in here now this once again same with item this needs to be the same name as your block now we called ours example underscore block dot Json

Would be the name and inside of here this is fairly simple since we don’t have any special block States we want to First specify the variance which is an object and we just want the default variant so that means it’s just an empty string and that’s also going to be an object

Now in here we specify a model and that will link to our block model that we choose to use for this specific state so when it is an empty string here that just means this is the default state of that block so for example when I talk about States I’m talking for example

Um let’s think a furnace for example right it has four directions that it could be those are different states that’s known as I a direction property so that’s four states north south east and west additionally it has a property for whether it is on or off I think it’s actually

Ignited or something is the name of the property something like that oh lit there you go it’s called lit so you have those two states as well so that means you actually have eight possible different States since you have the four directions and the two um lit States

So this here is just the default State we don’t have any special properties that we’ve added so we just leave it blank okay then inside of the model we say first our mod ID so mine is tutorial mod colon then block forward slash and then whatever the name

Of our model would be so mine is just going to be exactly the same name I don’t want to get it confused with anything else so we just keep it the exact same name and that is our block State done now a lot of people will move this onto this same line here

Because that just keeps it a little bit cleaner but just just kind of show off more so what’s happening here I’m going to put it on separate lines so I’ll just go through this one more time first we are specifying the different block State variants now the

Only variant we have in our block is the default variant so because it’s default we leave it blank then this variant needs to specify the model property and we say that this is in our mod ID block and example block so this is referring specifically to assets

Because it is by default an asset and then our mod ID and then it knows it’s our model because we’re specifying the model property and it comes inside models and it looks for the folder of block which we have right here and then it looks for a file with this name right

Here example underscore block so let’s create that file for example underscore block dot Json and this is in models block so in here we just want the default model so first we need to specify same as we did with items we need to say what model this parents from

So ours is just going to be a normal block we don’t want anything really special with the model here so we can say the parent is block forward slash Cube underscore all now once again same as before generally the recent trend is to prefix this with

Minecraft codon so we’ll do that as well just to keep with the trend and consistency with Minecraft so what is happening in fact I’ll talk about that once we have finished this model um so we need to specify the textures same as before with the items now the texture we’re specifying for

This model is all and we’re saying that it’s equal to tutorial mod so our mod ID colon block forward slash example underscore block so whatever the name of our texture is okay let’s just go back through this again and I’ll go ahead and explain everything so first we specify the

Parent model this specifies the things such as the different shapes that make up the moral and also the different texture layers that you could have inside of that model say for example an anvil or a brewing standard may be a better example a brewing stand has a special model and it

Has multiple different textures in different places of that model so you may have in the brewing stand for example you may have base which would specify the base texture and you may also have something like um I don’t exactly know what they call it but it’s probably something along the lines of

Stand which specifies that texture too but for us since we’re going to be using Cube all that means it has the same texture for all of the sides of the model and they won’t differ between them if you wanted a different texture for different sides you would need to

Specify a different model here instead of cube all for that I would just recommend looking at vanilla models and seeing which which ones do that I’m sure there are vanilla blocks which have different textures on different sides so just go ahead into your assets in your Minecraft installation

Try and find the model you want and see what it parents off of then we specify the different textures that will be used inside of this model so Cube all only specifies one texture and that is the all texture and we’re saying that is a location of

Tutorial mod so by default once again this is an asset so it knows it’s inside of assets then it looks for tutorial mod our mod ID and then it looks for Block so it knows that once again this is a texture since we’re specifying it’s the textures so it looks inside of

Textures and then for the folder block as we’ve said here and then it looks for a file example underscore block so obviously we then need to actually have that texture so luckily I already have this two hand which I’ve once again stolen from my 1.19.3 tutorial

And that is my texture here same as before this needs to be a power of two so 16 by 16 is kind of the recommended size for a texture okay fantastic so that’s pretty much it but we need to talk about loot tables and also we need to do some stuff with tags

So let’s go ahead oh first let’s do our La all right Lang so let’s come into here and in here all we need to say is block dot tutorial mod but example underscore block and then we just say example block okay there we go that’s our Lang and

Also we need to do the model for the item that’s very important too think of for example sugarcane it looked like a normal item that places down a block so it has a different model so for that we need to do the item model now luckily since we’re doing just a

Normal kind of model we want ours to just look like a block in the hand we can just do it fairly simply really so once again this needs to be the exact same name as what you called your item in the block item registry so I just called mine example underscore block

And this is super simple so since we’re parenting off of our model that we specified here right we want this to be the exact same as our block model we just say parent colon tutorial mod colon block or slash example underscore block and this just means that it will

Use this model right here for the model of the item fantastic so that’s all we need for the Assets Now we need to create some data so we need to create a data pack by the way this is technically a resource pack right here this assets tutorial mod this

Is our mods resource pack it’s not a technical resource pack in the way that you cannot just turn it on or off but it is a resource pack in the same way that Minecraft has their own resource pack so we need to create a data pack which

Allows us to specify Loop tables and tags and things like that so let’s create a new fold folder or directory inside of our resources and we’re going to call this data not data that is a misspelling data there we go and inside of here we’re going to probably want multiple different

Directories we’ll start with just our mod ID so tutorial mod and inside of here we’re going to want to create a new file or a new folder my bad once again directory for looped underscore tables now obviously if you don’t want your block to drop anything then you don’t

Need to do this but I do want my block to drop something so I need to do this and then here we’re going to create another folder for blocks and then create a file or whatever our block is called so mine was registered as example underscore blocked so we just

Put that in here now it doesn’t actually need to be called your block name but generally that’s just best practice to keep your loot table the same name as your block so now we actually need to create a loop table now this is luckily fairly simple since

There is a great website known as misode.github.io and they have a bunch of different generators if we come to their main page you can see they have generators for tons of different things now we want a loot table so we’re going to use that and we’re going to give it a preset here

So I’m just going to preset off of something default like Acacia log and you can also default to 1.20 now what we’re going to want is we’re going to specify our item that we want to drop so for us we want to drop tutorial mode hold on example underscore block

And you’ll see that shows up as this little thing here I believe you can I thought there was a way to change the texture so it shows up as it actually is but apparently not so that doesn’t really matter um I believe you don’t actually have to

Specify the random sequence you can just leave that blank and that will use the world seed for your sequence however if you wish to specify your own random sequence you can do that that’s fine but I’m just going to leave it blank because it doesn’t really matter for a block

That only drops itself however obviously if you wanted it to maybe drop multiple different items you could say add another item here and it drops Stone maybe it drops um five Stone and only on a condition of a um check that it is raining and not thundering right you can do these

Different conditions and misload makes it really simple to actually do that but I’m not going to do that I’m just going to leave it kind of as the default and I’m going to copy it so we can press this copy button down here and then we can close this this will

Obviously be linked in the description by the way we can come back into IntelliJ and just paste it in now I’ll briefly just go through this I’m not an expert in Loop tables so I might not be have a perfect explanation but I will try my best to give a rough

Idea of what’s going on here so we’re saying that this loot tables type is just going to be using the block type we want this to only happen on a block not on say a chest opening or an entity dropping then we’re going to specify the different pools so these are the

Different kind of um a pull I guess I don’t really know a better way to describe this other than what it says it’s pools so it’s a different basically things that can drop from it so on the first pull which is this object here we say that this rolls once

And you can optionally supply the bonus rolls for how many times it may roll on a bonus now we just set this to zero because we don’t want a bonus roll then we specify the entries for these roles so our entry will just be the singular entry so it will always be this

But you could specify multiple entries and then that means it could pick either this or this depending on what it rolls as so our entry here is saying it’s a type of item and this is the name of the item that it will drop which if we go back

Into our item in it we can see is what we’ve registered our block item as we called it example underscore block prefixed with our mod ID of course example block and we’re saying a condition for this pool is that it will survive an explosion um so that’s just basically what most

Blocks do really when they drop their loot table they have a condition that makes sure it survives the explosion okay and that’s pretty much it for the loot table now what we will need to do though is we’ll need to specify some tags for Forge or more specifically Minecraft

So let’s come back into our resources let’s create a new directory this will be inside of data but this time it will need to be the Minecraft data so what we’re doing here is we’re modifying the Minecraft data pack so inside of here we’re going to want another directory for tags

And then another directory for blocks and then a nerva directory for minable and inside of here we’re going to want a new file and this will be this file will be called whatever tool you want to be able to be used to mine your block

So I only want my block to be mined by a pickaxe so I will call this pickaxe dot Json let’s say I wanted it to only be mined by a hoe I would call it ho.json etc etc you get the point so I’m going to leave it as pickaxe.json now inside of here

This is fairly simple really we first create the object as usual we specify that we don’t want to overwrite vanilla so we say that replace is false if you set this to true this will overwrite the vanilla pickaxe Json then you can say the values now this is

An array so we use square brackets and then we can just pass in whatever we want to add to this pickaxe Json so we just want to add our block so we say tutorial mod colon example underscore block fairly simple let’s say you wanted to add like a vanilla block here you do

Minecraft colon acacia underscore right it’s very simple that’s how that works and you would do the same for any other tools that you wanted to work you can add multiple tools as well you don’t just have to use you know um one tool for one block you could use

Multiple tools for the same block as well then let’s create the forge shall we so if we create another directory now this one will be board slash X or slash blocks and that’s inside of the data folder by the way and in here we can create a file for needs underscore never right

Underscore at all dot Json now this means that you would require a level of never right for this to work so once again it’s the exact same as kind of the pickaxe Jason really so we specified that we don’t want to replace vanilla or in this case we don’t

Want to replace Forge and we specify the values like this now this is only because we’re doing never right however if we want Iron which we do we do want iron in that case we would come into Minecraft tags blocks and create needs iron tool but for never

Right and I believe gold as well I believe is the other one these are Forge tags instead so that’s a little bit confusing but I will show you what I mean so let’s create a new file here in Minecraft tags forward slash blocks and inside of there we want needs

Underscore iron underscore tools dot Json let’s put the same thing in here so basically this gives you kind of a rough idea of how it works you have never right and gold inside of Forge tags and you have iron diamond stone wood inside of the Minecraft tag

I hope that makes sense uh if not I will re leave a document in the description that kind of covers this whole tool system and how it works uh it will talk about maybe like 1.16 or 1.17 I forget but don’t worry about that because it’s

Exactly the same as it would be in 1.20 that kind of thing hasn’t changed so that’s all well and good and theoretically this should all work now so what we’re going to do is we’re going to close these little files here now I’m actually going to remove the

Never right tool and as such remove this Forge directory because we’re not going to need that for now in the future we’ll be adding that back but not at this current moment so I’m going to delete that and I’m just going to leave the iron tool and I have just realized I’ve

Accidentally called it needs iron dot tool so that’s actually not going to work we need to make it iron underscore tool it’s little typos like that that you need to make sure you don’t have because that will cause it to not work but from that let’s go ahead and let’s

Run the game so once again grab your configuration if you don’t have it go into the Gradle Forge Gradle runs ground client double click it and that will run and I’ll see you in the game all right so we are in the game now I’ve already tested

Everything I just wanted to make sure it worked um but if you do slash give at s tutorial mod example block then you’ll see that gives us the block and you’ll see it has the Rarity like we specified on the item properties and if we place it down you’ll see it has a

Light level you can see there’s a light around there just in case you cannot see that we’ll do time set night and you’ll see that has a light level now what else did we do I think we specified jump or something what else did we

Specify if we have a look in our block in it we can see that we specified a map color which was specified a push reaction so let’s find an instrument so let’s go test those so let’s grab that subscriber piston piston and we’ll go ourselves a redstone block

Boom and boom you can see that it breaks it perfect that’s exactly what it should do because we said apist reaction of destroy and we should also see that if we give ourselves a map yeah you can see that area has increased it’s only a little

Bit darker since we only sell it to Green but that does actually work and the other thing was instrument so if we grab a note block there we go and if we place this down now I don’t have audio turned on so hopefully that is playing the correct instrument I’ll only find

Out when I’m editing this um what did we actually set it to we set it to banjo so this should be playing a banjo instrument right now um I’m very much hoping this is working but I’m sure we’ll see later it should do there’s no reason it wouldn’t really

And then let’s test uh breaking so we said it should break with an iron pickaxe or higher so let’s test that with a stone pickaxe and what it should do is not drop anything correct and I’ve already tested a diamond shovel to check that that doesn’t drop I’m not going to do it

Again because it took forever so we’ll just get rid of those and we should see it does drop with an iron pickaxe which it does fantastic so yeah that’s pretty much it um if you had any problems with this tutorial be sure to join the Discord which is linked in the description it’s

Not just for modding health of course we have other stuff going on in there as well so come join come and hang out and get help with any modding issues that you have and that will be linked in the description and obviously if you found this tutorial

Useful or enjoyed it then please do be sure to smash that like button and subscribe so you know when I release the next one which will be on Creative tabs and getting these items in a creative tab because it’s really annoying to have to slash give them every single time

And uh yeah I’ll see you in the next tutorial good bye

This video, titled ‘1.20 Minecraft Forge Modding Tutorial – Blocks’, was uploaded by TurtyWurty on 2023-06-15 17:30:04. It has garnered 1928 views and 59 likes. The duration of the video is 00:37:43 or 2263 seconds.

In this video, I show you how to create our first block and create its loot table!

In the next video, we will create a creative tab and add our items to it as well as how you can add your items to vanilla creative tabs too. Remember, if you have any problems, please join the discord that is linked below!

Links: Patreon: https://www.patreon.com/turtywurty Discord: https://discord.gg/BAYB3A38wn Github: https://github.com/DaRealTurtyWurty/1.20-Tutorial-Mod

Learn Java Links: https://java-programming.mooc.fi/ https://www.codecademy.com/learn/learn-java https://docs.oracle.com/javase/tutorial/

Java Support Server: https://discord.gg/GzvQjhv

Misode (Loot table website): https://misode.github.io/

Chapters: 0:00 – Intro 0:25 – Registry class 0:50 – DeferredRegister 1:30 – RegistryObject 2:45 – Block Properties 8:45 – Registering the registry 10:00 – Registering a BlockItem 12:30 – Blockstates 16:00 – Block Model 20:00 – Texture 20:35 – Translation files 21:10 – Item Model 22:50 – Data directory 23:15 – Loot tables 28:40 – Harvest Level/Tool Tags 34:00 – Testing 36:50 – Outro

  • Ultimate Mod Elevator Build Challenge

    Ultimate Mod Elevator Build Challenge Building an Elevator with Create Mod in Minecraft Embark on a creative journey as you witness the construction of a magnificent elevator using the Create mod in Minecraft. This project is part of a 30-day challenge that showcases the endless possibilities of this innovative mod. Unleashing Creativity with Create Mod The Create mod revolutionizes the way players interact with Minecraft by introducing a plethora of mechanical elements. From conveyor belts to gearboxes, this mod empowers users to engineer complex systems limited only by their imagination. Constructing the Elevator In this video, the skilled builder demonstrates the step-by-step process of… Read More

  • Crafty Queries: Minecraft Q&A Part 2 Encore

    Crafty Queries: Minecraft Q&A Part 2 Encore Welcome back to the world of Minecraft, where the blocks are stacked and the adventures never lack. Last month was a whirlwind, with updates galore, New mobs, new blocks, and so much more. You asked, we answered, in Part 2 of our Q&A, So sit back, relax, and let’s dive into the fray. From Discord to Patreon, we’ve got links to share, Join the community, show us you care. Shoutout to Gnocchi for the awesome skins, And to Planetgirl for the voiceovers that always win. So keep those questions coming, don’t be shy, We’ll keep spinning rhymes, reaching for… Read More

  • Steve’s Minecraft Mayhem: A Twisted Tale

    Steve's Minecraft Mayhem: A Twisted Tale In the world of Minecraft, where blocks reign supreme, Twisted Steve was a player, living his dream. A master of survival, crafting with ease, Exploring the depths, unlocking mysteries. But one fateful day, a darkness did loom, A sinister presence, shrouded in gloom. Twisted Steve felt a chill down his spine, As he ventured deeper, in the mines. Monsters lurked in the shadows, ready to strike, But Twisted Steve was fearless, his skills alight. With sword in hand, he battled through, Defeating each foe, his courage true. But as he delved deeper, the truth did unfold, A secret so… Read More

  • Build the Burj: Minecraft Magic, 1:1 Scale

    Build the Burj: Minecraft Magic, 1:1 Scale In the world of Minecraft, where creativity reigns, We’re rebuilding the Burj Khalifa, no time for complaints. With WorldEdit in hand, we’ll build it 1:1, Every block in place, under the virtual sun. Follow us on Instagram, for more Minecraft fun, The.minetects, where the building’s never done. With music from NCS, our soundtrack to create, As we craft and build, our imaginations take the bait. So join us in the world of blocks and pixels, Where creativity flows, like digital crystals. Rebuilding the Burj Khalifa, a monumental task, But with teamwork and rhymes, we’ll complete the task. Read More

  • Frankenstein Storage: Tinker World Finale

    Frankenstein Storage: Tinker World Finale In the world of Minecraft, where creativity thrives, I’m finishing up my storage, with Frankenstein vibes. Join me on Tinker World SMP, where the fun never ends, As we craft and build, with our virtual friends. Music Free Gaming, a channel for all, Where Minecraft reigns, and we answer the call. Support me with tips, subs, or some merch, And let’s build together, on this digital perch. Join the Discord, for a chat and a laugh, Where the community gathers, on this creative path. Follow the rules, keep it clean and kind, And let’s explore Minecraft, with a creative… Read More

  • Villager Kidnapping for Profit!

    Villager Kidnapping for Profit! The Dark Side of Minecraft: Villager Kidnapping for Profit Within the vast world of Minecraft, players often find themselves exploring various ways to accumulate wealth and resources. One unconventional method that has gained popularity is the act of kidnapping villagers for profit. While this may sound like a dark and morally questionable practice, it has become a humorous and entertaining aspect of the game for many players. The Villager Economy In Minecraft, villagers are non-player characters (NPCs) that inhabit villages and offer various trades to players. These trades can range from simple items to rare and valuable resources. By… Read More

  • CURSED & DANGEROUS: Minecraft 1.21 Update

    CURSED & DANGEROUS: Minecraft 1.21 Update Welcome to the Exciting World of Minecraft Survival! Exploring the New 1.21 Update In the latest episode of the GAMERKSB07 channel’s Minecraft Survival series, Episode 8 takes us on a thrilling journey into the newly released 1.21 update. This update is not just about adding a few new features; it introduces a mysterious curse that adds a whole new level of danger and excitement to the game. Building a Nether Portal One of the main highlights of this episode is the daring mission to build a Nether Portal. Viewers get to witness the resource gathering, crafting process, and the… Read More

  • Boss Battle Bonanza: Minecraft’s Wither War

    Boss Battle Bonanza: Minecraft's Wither War In this Minecraft tale, we face the Wither Boss, Crafting our gear, no room for loss. Strategizing our moves, ready to fight, With every swing and arrow, we aim for the light. Building the Wither, the tension grows, Our hearts beating fast, as the battle shows. Fighting with all we’ve got, no time to rest, Dodging its attacks, putting our skills to the test. But oh, a hole in the ground, a surprise indeed, The Wither’s power, making us plead. With lagging issues, the fight gets tough, But we push through, showing we’re rough. Finally, the Wither falls, our… Read More

  • Herobrine Saves Baby Girl from Bad Pillager

    Herobrine Saves Baby Girl from Bad Pillager Help Herobrine Save the Baby Girl from the Bad Pillager in Minecraft Embark on an epic adventure in Minecraft as you join forces with Herobrine to save the innocent Baby Girl from the clutches of the menacing Bad Pillager. The stakes are high, and only your quick thinking and strategic skills can tip the scales in favor of justice and heroism. The Quest Begins As the story unfolds, Herobrine, the legendary figure in Minecraft lore, calls upon you to aid in the rescue mission. The Baby Girl, a symbol of innocence and hope, is in grave danger, held captive… Read More

  • Wojtrix Snipes Pedro

    Wojtrix Snipes Pedro The Exciting World of Minecraft Exploring the vast and creative world of Minecraft is an adventure like no other. From building magnificent structures to surviving against dangerous creatures, there is never a dull moment in this popular game. Building Your World In Minecraft, players have the freedom to build anything their imagination desires. From towering castles to intricate redstone contraptions, the possibilities are endless. The only limit is your creativity! Surviving the Night When the sun sets in Minecraft, the world becomes a dangerous place. Hostile mobs like zombies and skeletons emerge, ready to attack unsuspecting players. To survive,… Read More

  • “Đỉnh cao của Minecraft: Cười ra nước mắt 🤣” #minecraft #meme

    "Đỉnh cao của Minecraft: Cười ra nước mắt 🤣" #minecraft #meme When you spend hours creating a masterpiece in Minecraft while in a caffeine-induced frenzy, only to realize you forgot to save and it all disappears in a blink of an eye. #RIPmasterpiece #caffeinefail 😂🎮☕️ Read More

  • Sneaky Modern Underground Minecraft House

    Sneaky Modern Underground Minecraft House Minecraft New Underground Modern House🏠 Welcome to our Minecraft channel! If you enjoy our content, don’t forget to subscribe for more exciting tutorials and builds. In this quick #shorts video, we will show you how to construct a stunning underground modern house in Minecraft. Let’s dive into the world of creativity and design! Building the Best River House Follow along with this simple tutorial to create a cozy and functional home by the river. This build is perfect for beginner players looking to enhance their Minecraft experience. With a few easy steps, you can have your very own river… Read More

  • Ultimate Minecraft Roleplay – Episode 84 – Orion Empreendimentos – Unlock Secrets Now!

    Ultimate Minecraft Roleplay - Episode 84 - Orion Empreendimentos - Unlock Secrets Now!Video Information Boa noite galera como é que vocês mano De boa de boa boa noite boa noite boa noite Vamos que vamos gente a tem muita coisa para fazer ainda mano é Empreendimentos não tem jeito fala Magic Ghost seja bemvindo Valeu pelo follow hellam why What is the vage oh fala Fox como é que você tá fala Fox de boa de boa é a primeira vez que eu vejo aqui pode me passar um leve resumo então Fox eu faço Live de Minecraft role Play no servidor G role Play maior servidor de role play do Brasil… Read More

  • Strange Mods in Minecraft 1.21 Tricky Trials Update

    Strange Mods in Minecraft 1.21 Tricky Trials UpdateVideo Information I am the D and this is your daily dose of Minecraft and the 1.21 update is also now out for our first clip player not Josh is starting to hate the game and to be fair I don’t blame him if this happened to me I would hate the game as all and yeah it looks like Bedrock Edition is ready for hardcore player Eland really wanted to make a circular hub for his home but the Minecraft generation had other plans for him because only one block behind the wall was this [Music] and to be… Read More

  • 🔥JOIN THE PARTY – EPIC MINECRAFT GAMEPLAY! #minecraft

    🔥JOIN THE PARTY - EPIC MINECRAFT GAMEPLAY! #minecraftVideo Information Minecraft но я добрый часть пять всем песина с вами пати И сегодня я буду добрым в раю эти овечки могли упасть но я построю им забор теперь эти овечки могут спокойно здесь ходить потому что здесь всё огорожено Вау смотрите там Кит летает я сейчас нахожусь в каком-то здании и вот этот вот ангел сказал мне ему помочь Что ты хотел Помоги мне посадить дуб О что просто посадить дуб И всё да ты очень доба Я бы хотел чтобы это сделал Ты О’кей хорошо так видимо мне надо посадить дуб сюда и сюда Спасибо тебе за… Read More

  • Unbelievable Minecraft Build Hacks! #gigachad

    Unbelievable Minecraft Build Hacks! #gigachadVideo Information This video, titled ‘MINECRAFT BUILD HACKS #minecraft #minecraftshorts #gigachad#shorts’, was uploaded by BlazeBell on 2024-04-08 14:33:19. It has garnered 2535 views and 29 likes. The duration of the video is 00:00:33 or 33 seconds. MINECRAFT BUILD HACKS #minecraft #minecraftshorts #gigachad#shorts Read More

  • Ultimate Epic Battle: Defeating Dragon in Hardcore Minecraft

    Ultimate Epic Battle: Defeating Dragon in Hardcore MinecraftVideo Information hello and welcome everybody Welcome to my new series so basically how the series is going to work is it’s going to go down into uh sort of a thing where I am not stopping until I die and as you can see from my hot bar I’m in hardcore but you’re probably wondering what’s the challenge I mean Hardcore Minecraft is easy what I’m doing is I will be adding a mod every single episode until I die and the mod is up to you guys so basically you just comment down what mod you want to… Read More

  • Monster School: Zombie vs Squid Game Doll – DON’T CHOOSE WRONG!

    Monster School: Zombie vs Squid Game Doll - DON'T CHOOSE WRONG!Video Information This video, titled ‘Monster School : Zombie x Squid Game Doll DON’T CHOOSE WRONG – Minecraft Animation’, was uploaded by GA Animations on 2024-02-29 09:03:10. It has garnered views and [vid_likes] likes. The duration of the video is or seconds. Monster School : Zombie x Squid Game Doll DON’T CHOOSE WRONG – Minecraft Animation https://youtu.be/-niGeL_yMUo Hello! Read More

  • Insane Minecraft World Tour on MTR Server!!

    Insane Minecraft World Tour on MTR Server!!Video Information [Music] everything all right we should be good to go I need to play me big operators you’re already big operators oh what’s good everybody welcome back to the stream we are back again we’re not doing a short stream this time for this series I believe I’ll stick to the normal format how’s everyone doing though it has been a while got some uh new stuff going on here I need to change this skin I’m sorry I I can’t do this I can’t do this bro we found the perfect place to start though big man… Read More

  • SHOCKING SERVER CRASH HACK! LIQUIDBOUNCE NEXTGEN

    SHOCKING SERVER CRASH HACK! LIQUIDBOUNCE NEXTGENVideo Information [Music] go [Music] n raining on the floor with my favorite slot if you touch your sh your neck gets SC they someka they some crack I don’t give a this is how we party in the Russian Club This video, titled ‘SIGN SERVER CRASH EXPLOIT | LIQUIDBOUNCE NEXTGEN’, was uploaded by xyz1337 on 2024-03-25 21:00:37. It has garnered 1200 views and 20 likes. The duration of the video is 00:01:16 or 76 seconds. hypixel skywars,skywars,hypixel,minecraft skywars,hacking,hacking in skywars,hacking on hypixel,ranked skywars,minecraft skywars hypixel,hypixel hacking,shmeado hypixel skywars,skywars hacker,hypixel hacker,hypixel sky wars,hypixel hacks,how to be good in skywars,hacker compilation… Read More

  • Insane DC2 Skibidi Pobre 9! Crazy Wind Landscapes

    Insane DC2 Skibidi Pobre 9! Crazy Wind LandscapesVideo Information This video, titled ‘(dc2) skibidi pobre 9 FULL’, was uploaded by WIND FROM THE LANDSCAPE on 2024-05-10 21:51:33. It has garnered 7 views and 0 likes. The duration of the video is 00:00:46 or 46 seconds. new threat found #skibiditoiletmeme #skibditoilet #minecraft #skibidibopyesyesyes #animation Read More

  • ChabCraft-Civilizations

    ChabCraft-CivilizationsWelcome to ChabCraft, a realm where strategy, politics, and faction warfare converge to create an unparalleled gaming experience. Immerse yourself into a world where every move you make shapes the course of history. Immerse yourself in the complex web of alliances and rivalries, where diplomacy and cunning are your most potent weapons. Non-Whitelisted, Join Our Discord! 104.168.46.196 Read More

  • Fabulous Miners SMP Whitelisted Java Bedrock 1.20.X

    Welcome to our Minecraft Server! If you’re looking for a fun and non-toxic gaming experience, you’ve come to the right place. Our server has been up for a month and we’re welcoming new players to join our community. Server Features: Enhanced vanilla gameplay – sethome, tpa Leveling system – unlock perks/commands Unique fishing system – new fish without custom resource pack Auto-replanting harvester hoe Player-driven economy – server shop and chest shops Collect mob heads – a fun challenge Join us on Discord to start your application: https://discord.gg/fabulous Read More

  • Dragonia Gaming

    Immerse yourself in a unique and personalized survival experience at Dragonia Gaming! Our server offers a perfect combination of classic Minecraft elements with advanced and custom features to provide an unmatched gaming experience.🔨 Custom CraftsDiscover a world full of new possibilities with our personalized crafts. From powerful weapons to useful tools, there will always be something new to create.🛠️ Advanced and Complex SystemsAt Dragonia Gaming, we have implemented advanced systems that will challenge even the most experienced players. Are you ready to master all our systems?👾 Custom EnemiesFace unique and challenging enemies you won’t find anywhere else. Each battle is… Read More

  • Minecraft Memes – My game is straight-up busted

    Minecraft Memes - My game is straight-up busted“I keep trying to dig straight down in Minecraft but I just end up falling into my own grave. Maybe I need a new strategy.” Read More

  • Creepy Craft: 3AM Sleep Turns Strange

    Creepy Craft: 3AM Sleep Turns Strange In Minecraft’s world, strange things occur, At 3am, the game takes a dark turn. Ngao’s sleep disrupted by eerie sights, A tale of fear in the dead of night. The video captures the spooky scene, With Ngao’s reactions, both real and keen. The audience watches, hearts aflutter, As Minecraft’s mysteries start to stutter. Ngao’s channel, a hub of fun and fright, Where gaming and storytelling unite. With each new video, a fresh delight, In Minecraft’s realm, where day turns to night. So hit like, share, and subscribe with glee, To join Ngao’s world, where all can see. The magic… Read More

  • Minecraft block battle: The Hottest Showdown! 🔥😂 #shorts #trending

    Minecraft block battle: The Hottest Showdown! 🔥😂 #shorts #trending When you’re in a Minecraft block battle and you accidentally hit your friend instead of the enemy, and suddenly it’s a battle of who can say sorry the fastest 😂 #friendlyfire #minecraftproblems Read More

  • Ultimate Guide: Free 24/7 Minecraft Server Creation 2024!

    Ultimate Guide: Free 24/7 Minecraft Server Creation 2024! Creating a Free and 24/7 Open Minecraft Server – Complete Tutorial 2024! Are you ready to dive into the world of Minecraft with your very own server that’s accessible 24/7? In this tutorial, you’ll learn how to set up your own Minecraft server for free, ensuring endless gaming fun with your friends! Why Choose Mega Hosting? When it comes to hosting your Minecraft server, Mega Hosting offers some fantastic benefits: 100% Free with No Hidden Fees: Enjoy hosting your server without any costs. 24/7 Guaranteed Uptime: Your server will always be available for you and your friends to play… Read More

  • Mikey and JJ discover secret chocolate factory in Minecraft!

    Mikey and JJ discover secret chocolate factory in Minecraft!Video Information This video, titled ‘Mikey and JJ open a CHOCOLATE FACTORY in Minecraft ! – Maizen’, was uploaded by Mikey World on 2024-05-23 20:00:29. It has garnered 7153 views and 47 likes. The duration of the video is 00:16:52 or 1012 seconds. Mikey and JJ open a CHOCOLATE FACTORY in Minecraft ! – Maizen This is not an official Maizen channel, we make fan videos with Mikey and JJ. Our channel is exclusively for fans of Maizen. We’re not trying to impersonate his personality, we just want to add new and interesting stories to his characters. We hope you… Read More

  • Minecraft 1.12.0/1.20.4: See All Crafts with JEI

    Minecraft 1.12.0/1.20.4: See All Crafts with JEIVideo Information This video, titled ‘COMO ver TODOS los CRAFTEOS en Minecraft 1.12.0/1.20.4 – JUST ENOUGH ITEMS (JEI)’, was uploaded by Canal Héroes on 2024-03-08 18:30:46. It has garnered 747 views and 30 likes. The duration of the video is 00:02:14 or 134 seconds. Hello everyone and welcome to a new video on this channel, in today’s video we bring you a quick review of a Minecraft mod, this mod allows you to see all the crafting available in Minecraft, anyway, I hope you like it and bye. INSTAGRAM LINK 😎: https://www.instagram.com/elsaibort90/?igshid=YmMyMTA2M2Y%3D OTROS LINKS: ✅comic Building😎: https://www.webtoons.com/es/challenge/building-/list?title_no=542809 ☑️comic The Forgotten… Read More

  • SECRET MINECRAFT COLLAB: YOU WON’T BELIEVE WHAT HAPPENS! #viral

    SECRET MINECRAFT COLLAB: YOU WON'T BELIEVE WHAT HAPPENS! #viralVideo Information This video, titled ‘Майнкрфат Сейчас покажу #viral #майнкрафт #minecraft #gaming #memes #videogames #video #gamer’, was uploaded by ILYA x ISMA on 2024-03-06 13:15:00. It has garnered 6805 views and 175 likes. The duration of the video is 00:00:38 or 38 seconds. Sign up for a free trial English lesson in Minecraft with your parents, here is the link: ➜ https://clck.ru/38Rffc #shorts #minecraft #minecraft Sign up for a free trial English lesson in Minecraft with your parents, here is the link: ➜ https://clck.ru/37iV9U Subpishis ➜ https://clck.ru/37zNxn Our social network social network https://dronio24.com ➜ https://dronio24.com SUBSCRIPTION MOTION GRAPHICS FOR VIDEO… Read More

  • BaconBoy’s Insane Minecraft PS4 Gameplay 🔥

    BaconBoy's Insane Minecraft PS4 Gameplay 🔥Video Information This video, titled ‘Minecraft: Bedrock Edition – Gameplay Walkthrough Part 1 (PlayStation)’, was uploaded by BaconBoyYT on 2024-04-19 15:24:00. It has garnered 79 views and 6 likes. The duration of the video is 00:04:53 or 293 seconds. Minecraft: Bedrock Edition – Gameplay Walkthrough Part 1 (PlayStation) Minecraft is a 2011 sandbox game developed by Mojang Studios and originally released in 2009. The game was created by Markus “Notch” Persson in the Java programming language. Following several early private testing versions, it was first made public in May 2009 before being fully released on November 18, 2011, with Notch… Read More

  • Insane RLcraft Gameplay! First time players? #minecraft

    Insane RLcraft Gameplay! First time players? #minecraftVideo Information This video, titled ‘Is this everyone’s FIRST RLcraft experience? #minecraft #rlcraft #shorts’, was uploaded by RCgames on 2024-03-19 19:00:12. It has garnered 423 views and 7 likes. The duration of the video is 00:00:34 or 34 seconds. Hey, how are you? —————————————————————————————————- Check this out : Twitch – https://www.twitch.tv/rcgamesss Discord – https://www.discord.gg/3TaHuKN TikTok – https://www.tiktok.com/@rcgamesss Become a member – https://www.youtube.com/channel/UC6TG2eCuSPxEbDqNFMEGjDw Business inquiries – [email protected] —————————————————————————————————- #minecraft #rlcraft Read More

  • Lost in Minecraft: Where’s the End Update?

    Lost in Minecraft: Where's the End Update?Video Information This video, titled ‘Mojang, Where is the End Update?’, was uploaded by Minecraft Detective on 2024-04-03 18:27:25. It has garnered 34714 views and 1200 likes. The duration of the video is 00:09:05 or 545 seconds. This video shows how Minecraft hasn’t released an update for the end in over 9 years, and if the end update could come after the recent 1.21 update #minecraft #minecraftend #minecrafthardcoremode Music Used : Infraction: Storyteller – https://youtu.be/GEXlG_fQrbg?si=or3uVkfRdnIWjP8a Life Goes On -https://youtu.be/L1sVDPjLd1c?si=1c8oVwtHA88HCPIZ Story – https://youtu.be/WGPArLvbARk?si=gyF531Sg8zUdKfV “Cold Cinema” by Cold Cinema https://bit.ly/3wROUWM “Wings Of Inspiration” by Cold Cinema https://bit.ly/46OJAQZ Read More

  • Bearman3600 Exposes Insane Minecraft Strategies

    Bearman3600 Exposes Insane Minecraft StrategiesVideo Information This video, titled ‘The Worst Ways To Play Minecraft | Bearman3600’, was uploaded by Bearman3600 on 2024-02-23 18:00:06. It has garnered 540288 views and 30787 likes. The duration of the video is 00:34:41 or 2081 seconds. Today I take a look at some of the best reasons to fucking end it all featuring a variety of different computers, consoles, and other devices. Thank you for your patience with my uploads if you actually watch them. I often have little time to record or edit videos, so I try to spend as much time as I can working on… Read More

  • Insane Challenge: Surviving on SCULK ONE BLOCK with Maizen

    Insane Challenge: Surviving on SCULK ONE BLOCK with MaizenVideo Information This video, titled ‘JJ And Mikey Survive On SCULK ONE BLOCK In Minecraft – Maizen’, was uploaded by Maizem on 2024-05-31 13:00:03. It has garnered 3574 views and 16 likes. The duration of the video is 00:41:09 or 2469 seconds. JJ And Mikey Survive On SCULK ONE BLOCK In Minecraft – Maizen This is not an official Maizen channel, we make fan videos with JJ and Mikey. Our channel is exclusively for fans of Maizen. We are not trying to impersonate his personality, we just want to add new and interesting stories to his characters. We hope you… Read More

  • EPIC Mother’s Day Minecraft Surprise!!

    EPIC Mother's Day Minecraft Surprise!!Video Information This video, titled ‘Mothers’ Day Minecraft Showcase!!!’, was uploaded by ChaChaYourVmom on 2024-05-13 09:59:46. It has garnered 681 views and 99 likes. The duration of the video is 01:57:45 or 7065 seconds. Explore your own unique worlds, survive the night, and create anything you can imagine! Minecraft is a 2011 sandbox game developed by Mojang Studios and originally released in 2009. The game was created by Markus “Notch” Persson in the Java programming language. Come home to my Discord! https://discord.gg/ma-mas-house-1150624776566620292 You, too, can be an elite for only $0.99/month! Join my channel: https://www.youtube.com/channel/UCXwpLFOlJTROLn_26LQQVRA/join If you’re struck by the… Read More

  • Alinea SMP | Whitelisted | Proximity Voice Chat | 1.21 | Vanilla Compatible | Extra Enchantments | Launched Today | New World

    Alinea Minecraft Server Alinea Come join Alinea, a 1.21 SMP Minecraft server offering a Vanilla-like experience with added features. Whitelisted for protection, custom enchantments, food skewers, proximity voice chat, and more. Join our Discord server to apply and start playing today! VANILLA+ SMP – Join with a Vanilla client and enjoy all features except proximity voice chat. To join, apply for our whitelist in the #whitelist-application channel on our Discord server. Application includes an interview and rule review. Feature Spotlight Proximity Voice Chat – Use Plasmo Voice to talk in-game. Food Skewers – Try new foods like veggie skewers. Extra… Read More

  • Minecraft Memes – Minecraft Community Overload!

    Well, I guess the meme is scoring pretty high despite its humble beginnings as just a joke title. Minecraft memes are definitely a force to be reckoned with! Read More

1.20 Minecraft Forge Modding Tutorial – Blocks