Modding by Kaupenjoe – Minecraft 1.19.2 Forge Modding Tutorial | TREE & WORLD GEN | #32

Video Information

Chop chop and let’s add custom trees and tree generation to Minecraft oh yeah we find ourselves back in each other once more and in this tutorial we’re going to be adding oh not only custom trees but also custom tree generation to our mod and this is gonna

Be well quite a little bit of a longer tutorial but bear with me it is going to be pretty good so we’re going to first of all start by adding the logs the woods the strip variants the planks the sapling and all of that so all of the

Blocks and for that we actually need a custom block so in our custom package we’re going to right click new Java class and this is going to be the mod flammable rotated pillar block now if this is insanity to you then I agree with you but this is actually what we’re going to

Need this is going to extend the rotated pillar block class this one right here let’s hover over this create Constructor matching super and in here we need to override four different methods first of all the is flammable method then we need the get flammability method we need to

Also overwrite the get fire spread method and then last but not least get fire spread speed that is it yeah there you go and then also the get tool modified State method so what do those do well obviously the is flammable method just says well is this you know

Particular block flammable or not and of course it is the get flammability is going to be five and the get fire spread speed here is also going to be five now where did those come from well this is basically the general values for other logs right so this is of course a log

Right the rotated pillar block right here going to be just like an oak log or a wood or a stripped log basically and you can actually look this up press shift twice and look for the fire block and if we go into this and at the very

Bottom here somewhere right here in the bootstrap method you can see we set the flammability of certain things and this is exactly the values that we have so you can see planks actually have 5 and 20 we’re going to figure out the planks in a moment same with the with

Logs here you can see there are five and five and that’s why I put the five and five in here and that’s gonna be fine and then when it comes to the get tool modified State method there’s a few ways that you can do this basically one thing you’re always going to check

For is whether or not if context dot get item in hand dot get item is instance of an ax item that’s usually always what you’re gonna have to do here and then you can go about this in a lot of different ways now I’m just going to

Make this a little bit more I would say hard coded but that’s going to be fine if you only add like two or three different log variants then that’s going to be okay if you add more than that I suggest possibly making a map here instead of just doing it like this so

What we have is we’re going to have a state that is mod blocks so if we are going to use a block and that’s going to be the red underscore Maple underscore log dot get which of course at the moment doesn’t exist yet but that’s okay we’re just going to finish the if

Statements and then we’re going to continue with this in a moment and this is going to be the wood mod blocks of course there you go right once again it doesn’t exist yet because of course we haven’t added it yet but whatever we’re gonna go back to this because we now

Have an error here and that’s exactly right sometimes you do want a deliberate error while you’re programming something so you don’t forget to go back and then you know then it’s all sort of crazy and you forget that so let’s go into the mod blocks class and actually register all

Of our blocks here so this is going to be a very interesting thing so let’s just take the let’s just take the sure let’s take the blueberry crop over here I think that that’s nope that’s not good either so let’s just do the jumpy block

Then there you go and then let’s get one of them and then we’re gonna copy that as well now all of the code as always of course is available to you in the description below get a password individual gist as well this is the mod flammable rotated pillar block and it’s

Going to not do a of but it’s going to copy the block behavior of block start Oak log there you go we don’t need the strength over here in theory we also don’t need this because I believe that the oak lock has this already but we’re going to be fine

We’re going to keep it like this for the time being and now we can duplicate this four times actually quite a few more times let’s actually do something like this so now we can actually copy this a few times so we have four different ones of this and

Then the log this is going to be the planks this is going to be the leaves and then this is going to be the sapling I believe those should be everything that we need so let’s continue here red maple wood and of course make sure to change the name here otherwise you will

Get an error and we’ll also change oak.wood so it is very easy to make a mistake here you know it can just happen right like it’s because it is always the same thing if you have many many many many different types of wood that you might want to add then

Um what I suggest you do is you you basically have to like take a look at another way of doing it because otherwise this is going to be Madness as you can clearly see right if you have to do this for every type of wood and let’s

Not even start with all of the other blocks that you would then add right like all of the planks and all of the stairs and fences and all that it is madness right so at that point you should probably try and see if you can find some other way

Of doing it regardless of that though we’re now only adding one you know one part of wood or one type of wood and also only one uh different 3 over here so this is now going to be a block over here and this is going to be

A leaves block very important that we change this around then also this is going to be the stripped Oak log yes this is going to be taken from the stripped Oak stripped oak wood now I don’t think that this is necessarily important I just like to have this you know

Separated properly I think it does make sense this is going to be the planks over here namely the old planks and this is going to be oak leaves there you go that is perfect now let’s first of all jump back into the mod rotated pillar block and there we go

Now we have this and now we need to return the new state so what is even going on with the get tool modified State method well basically this is called when you right click this particular block and then it’s going to check hey do we have a certain item

Mainly are we right clicking with an X item if we do then we want to turn the red maple log into the following State and that is mod blocks that stripped Maple log dot get that default state that and this is extremely important set value of axis

State DOT get value access basically if a block like points up right as a normal like tree that grows does right then that’s totally fine you right click it and that would be the default State however if the block is on its side and you right click then if we only return

The default block State here then it would all of a sudden like turn me up like the right way up and that is kind of weird this is why we actually need to return the proper value of the axis block property here as well and that

Would be fine now let’s just copy the return variable here and let’s just change this to the wood right here and that would be pretty much it now yes you would need to add those two if statements for every type of a log and script variant you have this is what I’m

Saying the best way to do this like long term is probably to just make a map in this class right just make a static map and just add the different blocks and the different strip blocks there and then use it right here shouldn’t be anything too crazy of

Course some Java knowledge is required but that at this point is probably going to be a normal thing going forward now the next thing the planks and the leaves right now would not burn this is because a normal block doesn’t burn so what we’re going to do is we’re going to make

An anonymous class right here so we’re just going to after the closing parenthesis of the block Constructor we’re just going to put in the curly brackets here and then we can override the is flammable method and we’re going to overwrite the get flammability method and we’ll also overwrite the Z get

Fighter spread speed method and we’re just going to well basically put in what we need so this is true this is going to be five and this is going to be 20 for the planks and then what we’re just going to get is take both of the curly

Brackets here and we’re just going to do the same thing for the leaves now those are actually different those actually have a flammability of 30 and a spread a spread speed of 60 and there we go now our leaves and our planks should also you know burn totally fine that was

That’s that’s pretty good now that we’ve added this we can also now go on to the sapling here so we can see this is the sapling and there’s of course the red maple sapling this will take in a or this will be a new sapling block which actually is going to need another

Parameter here so what we’re going to do is I’m just going to put in a comma here and do nothing in here so I want the error here because we’re going to add the other thing right here in a moment that’s going to be the oak sapling and we can also actually delete

The requires all here that’s going to be fine and there we go and then we’re going to add this in a moment because this actually is already part of world gen a little bit so spawning a tree already has some moral gen in it but before we go into the world gen I

Actually want to copy over all of the different Json files and all that craziness for the block State and all of that now this is going to be a little bit crazy but no worries at all now all of those are of course as always available to you in the description

Below get up a password individual gists as well you can see there we go so those are these ones right for all of our blocks the leaves of the logs planks sapling the wood and the two strip variants we’ve added all of that and also the language of course let’s get

The translation in here as well there we go at this point this should not be anything crazy nothing that you haven’t seen before so there you go and then the models the block models are pretty insane we’re gonna look into the block States Json files in just a moment one

More time but the block model files are pretty insane so let’s just get those over all right so these are the block model files you can see 11 of them it is pretty freaking crazy like you can see there’s a lot of them and um overall they’re not complicated when you think

About it like the leaves of course just point to the leaves texture that’s nothing crazy here actually I believe here we do want to add the cutout as well so we want to add the render underscore type uh cut out I’m Gonna Leave This is how you should do it there

You go that’s also quite important and we also do want to add this to the sapling as well I believe that this is also not added there you go so we should add both of those and that will be fine as well that’s pretty good right and

Then for the rest of them I mean pretty much they’re just you know they just have the cube column over here and they always just point to certain textures nothing too crazy same thing really goes with the block States Json files the logs are a little more complicated but

Nothing that we haven’t seen before so they just have the access block State Property here with X Y and Z as their three values and they’d then just point to different textures a little bit as well or different models I guess as well as rotated around a little bit so

Nothing insane nothing crazy nothing that you shouldn’t understand at this point pretty much and then the item model files let’s get those over as well otherwise we won’t have any items in our inventory which is of course not quite what we are what we are hoping for so

Let’s just get those over as well and those are also just the same idea right they just point to back to the block model file and I believe all of them do except for the sapling that one just points to the actual texture in the block folder because while the texture

That is displayed in a sapling in this cross fashion is actually the same texture that is displayed in the inventory that is why we literally only have one texture for it so nothing crazy there let’s get the textures as well they’re all block textures and those are

Of course also all available to you let’s just get them the stripped variants and the normal variance should be seven of them and there we go so now the blue blocks textures are now the textures have been added the Json files have been added and we can proceed with

The first step of the world generation basically which is spawning the tree from the sapling itself so in our world package inside of the feature package we’re going to make a new package called 3 and instead of there we’re going to make a new Java

Class and this is going to be the red maple tree grower yes just making sure that we write 3 correctly there you go and this will extends the extends the tree grow abstract tree grower this is exactly right we’re going to hover over this implement the get configured feature

Method right here and that will be that now we’re actually going to make a deliberate error once again because we do need to first of all add the configured feature and then we can either basically return it here so in the mod configured features class the

First thing we want to do is we want to well add the red red maple as a new field right here so this is going to be a public static final registry object registry object of type configured feature configured feature question mark question mark and this is going to be

The red underscore Maple now I will be copying over the entire thing here because it is pretty insane however no worries we’re gonna go through line by line so this is gonna look quite like this so this is the entire thing so we’re gonna have a red maple equal to of

Course configure feature register right that we’ve seen this before right we’re just registering this particular registry object and this is called red maple fair enough then a supplier of a new configured feature of type 3 and then we need a tree configuration Builder over here and that is the thing that is quite

Interesting the first parameter here is a simple block save provider of the log this is going to be the block that is going to be displayed as your well trunk basically right this is going to be the trunk and then the straight trunk Placer

Is the type of what the type or or how this particular block is being placed down if we middle Mouse one click on this you can see there’s a trunk Placer class and if I click on it and press Ctrl H there’s different types of trunk

Blazers now you can make your own as well but it is quite complicated which is something that we’re not going to do here but it is possible in theory with some sufficient Java knowledge and some sufficient modding knowledge you should be definitely able to do this and then

The next one is the simple Block Set provider for the leaves so this is going to be the leaves now you could in theory add any Block in here you want yes you could make a gold tree with diamond leaves it would work in theory

Um I mean be my guests right try it out test out stuff that is always a great idea then we have the blob foliage Placer so this is the same idea as the trunk place or even millimus one click on this the foliage Placer class you can see different types of foliage places

Basically a different way of placing down the leaves in this case just taking the blob one with two zero and four as its parameters highly suggest just trying out the different uh the different numbers here you know try different numbers and then see what happens the two layers feature size is

Still a thing that is a little bit of a mystery to me I believe if I recall correctly this sort of determines how much how many trees can like spawn next to each other and like those things basically although I’m still not 100 sure because World gen as always and as

I’ve mentioned plenty of times before is quite the complicated Beast to manage whatever the case may be this is the configure feature that we now need to return right here so this is the configured actually mod configured features that red maple and I believe that this would be fine nope we actually

Do want to do get a holder.get that should be okay and then that will be fine now in the mod blocks class we can now say a new red maple tree grower and now actually all of our errors should be gone and everything should in theory already work at least for while placing

Down the sapling and then having the tree spawn so for the time being what we’re going to do is we’re going to go into the game for the first time see if our sapling actually grows and then we’ll continue and actually also then spawn our tree inside of the world via

Custom tree generation but first of all let’s look at the sapling all right we found this in Minecraft again and there we go we can see the well different blocks all have been added including the sapling so let’s take the sapling over here let’s get some bone meal and in

Theory if we set it down and we both it should grow at some point there we go now the leaves will Decay over here that is actually completely expected it because we’re going to fix that in a moment as well but overall that is pretty awesome indeed now the the actual

Sapling itself should also grow with time so if we just do the following if we just change the game rule do tick no do a random random tick speed and we’re just gonna increase this to a ridiculous degree there you go it also grows automatically

And then also all of the leaves Decay up pretty fast as well so there you go and that is pretty awesome so the sampling works now let’s go on to the World Generation right first of all to fix the decaying leaves you have to go to the

Data folder to Minecraft and add another block over here or a block tag rather and that is going to be the logs tag logs.json let’s just get the way that a tag file looks and here we’re just going to add all four different types of logs

So it’s gonna look kind of like this there we go the log the wood the stripped variants and then now the leaves will not Decay anymore now we’ll continue with the world generation so for our custom World gen we’re going to need a lot of things and that is work we

Have one configured feature right here right now and we’re gonna be able to convert this to to speak into a place feature that place feature is going to be made into another configured feature and that configured feature is then going to be made into a last place

Feature which is then going to be referenced once again in a custom where is it right here biomodifier and that will then spawn so first of all we then now need the new place feature and that is the checked one now I will be copying

This over but no worries at all all of this is available to you in the description below GitHub a password individual just as well as always and you can see it actually isn’t that complicated is of course a registry object of placed feature it is called red maple checked and we’re registering

A new place feature right here called red maple checked all right making a new place feature referencing the red maple mod the configured feature red maple this is the one that actually spawns the tree and we’re making it so that it can only spawn where the red maple sapling

Will Survive now this is actually extremely important because otherwise your block will or your tree will just spawn anywhere including in side of the like inside of other trees so you might have like two or three trees stacked on top of each other because uh you know it doesn’t check for the sapling

Survivability and that is why this place feature is actually quite important and now we’re gonna take the place feature that we’ve just made right here and we’re going to well convert it so to speak into another configured feature that is the red maple spawn and you can

See once again a configured feature this time of random feature configuration and this has a weighted Place feature list here and what this basically does is well fifty percent of the time where he’s choosing the red maple checked and another 50 of the time we’re also choosing the red maple checked I’m

Unsure why I have to do this but I do have to do this otherwise it doesn’t work so it’s very strange so once again if anyone has an idea on how to basically skip this step please do feel free to leave me a comment down below otherwise you just have to take this

Step and there you go and now on to the last placed feature luckily which is the red maple placed and we’re gonna see see it actually is not that crazy this is the gold so you can once again see his redmi replaced here and there’s a place

Feature it uses the red maple spawn that we’ve just made this one right here and then it has a tree placement and this is extremely important of count extra and this number in particular is very important so what the these numbers mean is that it spawns three three different

Trees and then it has a ten percent chance of spawning two more trees now what’s important is this chance right here is very particular and with very particular I mean that when you have this chance it has to be one divided by it sorry one divided by the chance so

This would be ten percent has to be a an integer right so you can put in 0.1 that works you can put in point two that also works so you can put in 0.25 because that’s that that also works what you cannot put in for example is something

Like four or five because that is not going to be an integer and then you will get an an error I don’t know why this is made so weirdly because if we look into the count extra this is basically what happens here right so this this whole thing basically does exactly that it’s

It checks whether or not the when you divide by this particular float that you get an integer out of it so please make sure to get an inch out of it otherwise you will get an error it looks kind of like what does it look like it will say

Chance data cannot be represented as a list weight if you get this it means that your chance right here is wrong I this is very strange to me but it is what it is whatever the case may be though we now have the placed feature so we can go into the tutorial mode

So data folder tutorial mode Forge biomodifiers if you’ve already added this via the origin that would be great and then let’s just copy over one of them that’s going to be the add this is the add red maple and what we’re going to do is we’re

Going to add this to how about we add this in the planes biome I think that does make sense right so we’re going to use the forge tag is underscore planes and then the feature we’re going to use is the red underscore Maple underscore placed of course referencing the name

Right here and with that I mean this one right here you can also just copy it making sure that this is correct and then this is also important this is now digital underscore decoration there we go and that would pretty much be everything that we need to do now of

Course yeah I don’t know like quite a few steps of course but regardless of that that should be pretty much all that we need so let’s go into the game make a new world and see if it works as I’ve said be sure to make a new world right

Here so let’s just create this of course you’re gonna get the warning again and then let’s see if we can find our custom trees inside of the plane’s biome very interesting stuff all right Francis back in Minecraft and I mean there we go the trees are already spawning here this is

Probably a plane’s biome of course right there you go it is a planes biome and our trees are spawning and you can see well the numbers basically shake out to be exactly this I highly recommend as always just playing around with the numbers a little bit taking a look at

The vanilla classes for the trees and then you’re gonna find some other ways of spawning them as well but yeah there you go this is pretty much how to add a tree and custom tree generation to Minecraft right and that concludes this tutorial right here I hope you found

This useful and you learned something new and I’ll see you all in the next tutorial so yeah

This video, titled ‘Minecraft 1.19.2 Forge Modding Tutorial | TREE & WORLD GEN | #32’, was uploaded by Modding by Kaupenjoe on 2022-09-27 13:59:56. It has garnered 6514 views and 118 likes. The duration of the video is 00:23:38 or 1418 seconds.

In this Minecraft Modding Tutorial, we are adding custom trees and custom tree generation to Minecraft 1.19.2 in Forge.

== SUPPORT ME ON PATREON == ▶️ https://www.patreon.com/Kaupenjoe

== ASSETS & DOWNLOAD LINKS == GitHub Repo: https://github.com/Tutorials-By-Kaupenjoe/Forge-Tutorial-1.19/tree/32-treeAndGen Gist: https://url.kaupenjoe.net/yt435/gist Assets Zipped: https://url.kaupenjoe.net/yt435/assets

== 25% OFF FOR GAMING SERVERS == ▶️ https://www.bisecthosting.com/Kaupenjoe

== TAKE A LOOK AT MY COURSES WITH COUPON CODES == ▶️ NEW Forge Modding with Minecraft 1.20.X: https://url.kaupenjoe.net/CourseForge120X ▶️ Learn Forge Modding with Minecraft 1.18: https://url.kaupenjoe.net/CourseForge118 * ▶️ Learn Fabric Modding with Minecraft 1.18: https://url.kaupenjoe.net/CourseFabric118 * ▶️ Complete and Roblox Lua Game Development: https://url.kaupenjoe.net/RobloxCoupon *

== SUPPORT ME ON PATREON == ▶️ https://www.patreon.com/Kaupenjoe

== SOCIALS == Discord: https://discord.com/invite/yqxykanpWf Personal Twitter: https://twitter.com/Kaupenjoe

Instagram: https://url.kaupenjoe.net/tutorials/instagram Facebook: https://url.kaupenjoe.net/tutorials/facebook Twitter: https://url.kaupenjoe.net/tutorials/twitter TikTok: https://url.kaupenjoe.net/tutorials/tiktok Written Tutorials: https://url.kaupenjoe.net/tutorials/blog

== LICENSE == Source Code is distributed under the MIT License. Additional Licenses for other assets can be seen below or in the accompanying CREDITS.txt on download.

== ADDITIONAL CREDITS == Outro Musik by Kevin MacLeod: “That’s a Wrap” Kevin MacLeod (incompetech.com) Licensed under Creative Commons: By Attribution 3.0 http://creativecommons.org/licenses/by/3.0

== AFFILIATE DISCLAIMER == * Some of the links and other products that appear in the video description are from companies which I will earn an affiliate commission or referral bonus from or are my own products. This means that if you click on one of the product links, I’ll receive a small commission or additional kickback without any additional cost for you. This helps support the channel and allows me to continue to make videos. Thank you for the support!

== HASHTAGS == #Minecraft #MinecraftModding #MinecraftTutorial #Kaupenjoe

  • BLOCKS BETRAYED HIM… 😮

    BLOCKS BETRAYED HIM... 😮 The Controversial Changes in Minecraft In the world of Minecraft, where creativity knows no bounds, even the smallest changes can spark controversy. Recently, a player named Jappa made waves by updating the textures for version 1.14. Among these changes were the cauldron and potion maker, which left many players scratching their heads. The Texture Changes With the update, the cauldron and potion maker received a new look. Previously flat and simplistic, these items now sported a more intricate design. While some players appreciated the update, others found it unnecessary. Confusion Among Players One of the main points of contention… Read More

  • Ultimate Minecraft Meme Compilation

    Ultimate Minecraft Meme Compilation Minecraft: A Compilation of Popular Memes by Fang Kuang Fang Kuang, a prominent creator in the Minecraft community, is dedicated to providing child-friendly content that avoids any elements that could potentially harm their health and safety. About Fang Kuang Fang Kuang, known as 方块轩, is a creator in the Minecraft realm who specializes in crafting humorous and entertaining animations to spread joy. As the only official channel for Fang Kuang, any videos related to him on other channels are considered unauthorized copies. Content Offerings Fang Kuang’s channel features a daily dose of original and exciting videos, ranging from funny… Read More

  • Khaby’s Crafty Laughs: Minecraft Mayhem!

    Khaby's Crafty Laughs: Minecraft Mayhem! In the world of Minecraft, where blocks reign supreme, Khaby plays with style, like a viral meme. His moves are smooth, his jokes are quick, In the gaming world, he’s quite the pick. From building castles to mining ore, Khaby does it all, and then some more. With each new update, he’s on the ball, Crafting new adventures, for one and all. So if you’re a fan of Minecraft fun, Join Khaby’s world, and let the games begun. With laughs and rhymes, he’ll keep you entertained, In the world of Minecraft, where creativity is unchained. Read More

  • Join Minewind: Where Survival Strategy Meets Adventure

    Join Minewind: Where Survival Strategy Meets Adventure Welcome to NewsMinecraft.com! Are you a fan of strategic and safe gameplay in Minecraft? If so, you need to check out Minewind Minecraft Server. With a focus on player interaction and survival, Minewind offers a unique and exciting experience for all Minecraft enthusiasts. Imagine exploring a vast world filled with challenges and opportunities, all while connecting with other players from around the globe. On Minewind, you can build, mine, and survive in a community-driven environment that encourages creativity and teamwork. Whether you’re a seasoned player looking for a new adventure or a beginner eager to learn the ropes, Minewind… Read More

  • Discover Farlands on Minewind Server! Join Now!

    Discover Farlands on Minewind Server! Join Now! Welcome to Newsminecraft.com, your go-to source for all things Minecraft! Today, we want to talk to you about the exciting world of Minewind Minecraft Server. But first, let’s take a look at this intriguing YouTube video titled “DE ESTA FORMA IRÉ A LAS FARLANDS!🌍 #minecraft #minecraftgameplay #farlands.” In this video, we see the player embarking on a journey to the Farlands in Minecraft. The sense of adventure and exploration is palpable, and it’s clear that the player is having a great time pushing the boundaries of the game. If you’re someone who loves pushing the limits and exploring new… Read More

  • Mastering Minecraft: Cave Adventures

    Mastering Minecraft: Cave Adventures Minecraft Adventures: Mining Coal, Wood, and Exploring Caves Embark on a thrilling Minecraft adventure as we delve into the depths of caves once again. But before we can brave the darkness, we must gather essential resources like coal and wood to light our way and fend off the lurking monsters. Mining Coal for Light and Fuel Coal is a valuable resource in Minecraft, serving as both a source of light and fuel. By mining coal deposits scattered throughout the world, players can craft torches to illuminate their surroundings and smelt ores to create tools and armor. Key Point: Always… Read More

  • Join Minewind: Where Noobs and Hackers Thrive Together!

    Join Minewind: Where Noobs and Hackers Thrive Together! Welcome to Newsminecraft.com! Today, we have an exciting new video to share with you all. In this video, SAND and KAYDNN compete in a build competition in Minecraft. But, there’s a twist – KAYDNN is secretly cheating with hacks and a remote! Will SAND find out KAYDNN’s secret? Watch the video to find out! Today, we are exploring the world of Minecraft in a whole new way. While we usually focus on Roblox, we wanted to try something different and dive into the creative world of Minecraft. We hope you enjoy this new video style as much as you… Read More

  • Crafting Chaos: Minecraft Studios PS4 Launch

    Crafting Chaos: Minecraft Studios PS4 Launch In the world of gaming, where stories unfold, Gammers Cave Tech, a treasure trove to behold. From PCs to consoles, all brands in sight, Ayaz Khan’s the man to make your gaming world bright. With home delivery and nationwide reach, Gammers Cave Tech is here to teach. For all your gaming needs, big or small, Just give them a call, they’ll handle it all. So support them, like, share, and subscribe, In the world of gaming, they truly thrive. Ayaz Khan, the man with the plan, Making gaming dreams come true, across the land. Read More

  • Join Minewind Minecraft Server for an Epic Gaming Experience!

    Join Minewind Minecraft Server for an Epic Gaming Experience! Welcome to Newsminecraft.com, where we bring you the latest and most exciting news from the world of Minecraft! Today, we want to talk to you about the incredible Minewind Minecraft Server. If you’re a fan of Minecraft animations like the one you just watched, then you’ll love the immersive and exciting world of Minewind. With a vibrant community of players from all around the world, Minewind offers a unique and thrilling gaming experience that you won’t find anywhere else. From epic battles to creative building challenges, there’s always something new and exciting to discover on Minewind. So why should… Read More

  • Crafting Chaos: Minecraft Part 2

    Crafting Chaos: Minecraft Part 2 Exploring the Thrills of Minecraft: Part 2 – Building a New House Embark on a thrilling adventure in the world of Minecraft as we delve into the exciting realm of building a new house. From crafting the perfect abode to surviving the dangers of the blocky landscape, there’s never a dull moment in this epic journey. Building the Foundation As our intrepid players set out to create their new house, they carefully select the ideal location, taking into account factors like proximity to resources and strategic advantages. With a clear plan in mind, they begin laying the foundation, choosing… Read More

  • Minecraft Memes – Minecraft Memes: Expert Editing

    Minecraft Memes - Minecraft Memes: Expert EditingWhy did the creeper break up with his girlfriend? Because she blew up at him too much! Read More

  • Hot Minecraft Memes: Creeper Pick-up Lines

    Hot Minecraft Memes: Creeper Pick-up Lines “Why did the creeper go to therapy? Because it had too much TNTsion!” 😂 #minecraftmemes #gaming #memes #funny Read More

  • Join Minewind Minecraft Server for a Heartfelt Gaming Experience

    Join Minewind Minecraft Server for a Heartfelt Gaming Experience Welcome to NewsMinecraft.com! Are you a fan of Minecraft videos filled with adventure, challenges, and unexpected twists? If so, you’ll love the latest YouTube video titled “Minecraft But I only have one heart.” This video takes viewers on a thrilling journey as the player navigates through the game with just one heart, facing obstacles and seeking diamonds along the way. While watching this entertaining video, have you ever wished you could experience similar adventures in Minecraft yourself? Well, now you can! Join the exciting world of Minewind Minecraft Server and embark on your own epic quests, challenges, and discoveries…. Read More

  • Ultimate Minecraft Zelda Adventure Finale

    Ultimate Minecraft Zelda Adventure Finale Minecraft Zelda Adventure: A Thrilling Journey Exploring a Unique Adventure Map In a thrilling Minecraft adventure, our protagonist embarks on a journey through a captivating Zelda-themed map. The adventure unfolds in a world filled with mystery and challenges, offering a unique gaming experience. Discovering New Realms As the journey progresses, new realms and dungeons reveal themselves, each presenting its own set of obstacles and puzzles to overcome. From icy landscapes to fiery volcanoes, the map is rich in diverse environments that test the player’s skills and wit. Unraveling Secrets and Quests Throughout the gameplay, our hero encounters various characters,… Read More

  • Unlocking Level 444 Secrets in Minecraft Skyblock!

    Unlocking Level 444 Secrets in Minecraft Skyblock!Video Information all right uh sorry about that I need to do that real quick so I could go ahead and download that VOD so I can eventually upload it wait what that [ __ ] not offline go offline oh my god dog dog this video was 30 minutes also hold on give me a second now the stream ain’t bugged I uh I ended it and started it real quick so um um what is it [ __ ] is it I did that so I could uh you know uh download the VOD make it easier um… Read More

  • Toilet VS Minecraft: Epic Battle!

    Toilet VS Minecraft: Epic Battle!Video Information 3 2 1 go [Music] [Music] [Music] is [Music] VPP This video, titled ‘Skibidi Toilet VS Minecraft BATTLE! part 2’, was uploaded by Skibidi?!Boom! on 2024-03-02 20:15:02. It has garnered 8435 views and 23 likes. The duration of the video is 00:00:47 or 47 seconds. Skibidi Toilet Vs Multiverse BATTLE 🫡💥⚡️ SUBSCRIBE ! Thanks for watching❤️❤️ Like and subscribe! 🥹🥰Skibidi Toilet is a series of viral YouTube Shorts uploaded on the DaFuq!?Boom! channel on YouTube. The series depicts a battle between the Skibidi Toilets ✅✅ ……………………………………………………. #skibiditoilet #skibidibopyesyesyes #skibididj #skibiditoiletbattle #skibiditoiletmeme #skibidibop #skibididop #skibidimeme #dance #horror #60fps #4k… Read More

  • Unbelievable Minecraft Secrets – Dolanan Gayeng Discovery

    Unbelievable Minecraft Secrets - Dolanan Gayeng DiscoveryVideo Information catat Ini buat ujian besok anak-anak harus aku tulis biar besok dapat nilai bagus guys sok racin Dih Ih kenapa kau melemparku fokus belajar agar dapatnya bagus bantu like dan subscribe agar dapat nilai bagus teman-teman NK ah loh kok gak kelihatan Hah pak guru kenapa nyontek dapat nilai F Wah aku dapat nilp ye This video, titled ‘DAPAT NILAI APA YA #minecraft #gameplay #shorts’, was uploaded by Dolanan Gayeng on 2024-01-14 05:00:19. It has garnered 11696 views and 876 likes. The duration of the video is 00:00:34 or 34 seconds. #minecraft #gameplay #shorts #skibiditoilet instagram : https://www.instagram.com/dolanan_gayeng/… Read More

  • Epic Minecraft Adventure with MY BROTHER!

    Epic Minecraft Adventure with MY BROTHER!Video Information व वर्ल्ड [संगीत] 2000 लेटर प्लांस बनाने के बाद यहां पर मैं क्राफ्टिंग टेबल क्रिएट कर लेता हूं क्राफ्टिंग टेबल के बाद थोड़ी हमें स्टिक्स की जरूरत पड़ेगी स्टिक्स बना लेते हैं यहां पर चार स्टिक बना ली है यहां पर एक एक्स ले लेते हैं एक्स के लिए हमें थोड़ी और प्लक्स चाहिए होंगी यहां पर मैंने प्लक्स ले ली अब यहां एक एक्स करता हूं माइनिंग मतलब नीचे डीप माइनिंग करता थोड़ी कॉबल स्टोन तोड़ने के लिए तो मैंने क्राफ्टिंग की नहीं भाई यहां पर हमें कॉबल स्टोन चाहिए बहुत जरूरत है हमें उसकी तो यहां… Read More

  • INSANE TWIST: Frosty Minecraft Endermite Encounter! 🔥

    INSANE TWIST: Frosty Minecraft Endermite Encounter! 🔥Video Information YouTubers be like Minecraft but if I see an endermite the video ends all right so we spawned in the most normal spawn ever okay we got to make this more interesting oh my gosh no way we spawned in a cheese biome this is so awesome all right I don’t even know why I did this let’s just get out of here okay let’s just go to creative mode oh my gosh no way is this an obsidian biome I haven’t seen one of these in Forever ooh a chest oh my gosh how convenient I got… Read More

  • 🔥HOTTEST JAVA MINECRAFT SMP LIVE HINDI!🔥 JOIN NOW!

    🔥HOTTEST JAVA MINECRAFT SMP LIVE HINDI!🔥 JOIN NOW!Video Information हेलो मोक्स प्रो भाई लाइव आ तो गया आ गया ब्रो लाइव आ गया अच्छा तुम भी लाइव हो ठीक [प्रशंसा] [संगीत] गा जल्दी जल्दी से आ जाओ मेरे फोर की वाचिंग अच्छी है [संगीत] अरे सही है ब्रो मेरे में तीन की आ रही है गा जल्दी जल्दी से जवाइन कर लो यार माफ्ट का न्यू सर्वर र सो रहा है गा जल्दी जल्दी लाइक एंड सब्सक्राइब कर दो और आ जाओ जल्दी से जल्दी जल्दी जवाइन कर लो गाइस इसमें तो मैं ही खेल रहा हूं और कोई खेल नहीं रहा नहीं भी नहीं इस अंदर… Read More

  • UnWarmed Reveals Insane Drag Click Tape Trick! #hypixel

    UnWarmed Reveals Insane Drag Click Tape Trick! #hypixelVideo Information This video, titled ‘Drag Click Tape Tutorial For Minecraft #hypixel #dragclick’, was uploaded by UnWarmed on 2024-03-23 09:52:14. It has garnered 14632 views and 461 likes. The duration of the video is 00:00:47 or 47 seconds. Drag Click Tape Tutorial For Minecraft #hypixel #dragclick #minecraft #hypixelbridge #pvp Discord : https://discord.gg/dCj6YraZqN Background Music : Dancin is What to do ╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗ ║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣ ╠╗║╚╝║║╠╗║╚╣║║║║║═╣ ╚═╩══╩═╩═╩═╩╝╚╩═╩═╝ Found This Desc From Cruh And Cheetahh I am gonna just copy paste half of this from a Cruh video for keywords Jirz doing the latvian strat block hit on minecraft the bridge while cruh explains… Read More

  • “I’M LEAVING Minecraft Servers! 😱” #shorts #MinecraftPunkMagic

    "I'M LEAVING Minecraft Servers! 😱" #shorts #MinecraftPunkMagicVideo Information I’m so tired of everyone saying S&P servers are so boring like that’s just not true on mindwave you’ll never get bored we have custom armor hundreds of quests and an amazing community and the best part is that we’re available on all devices so come join today This video, titled ‘I’m actually getting TIRED of most servers #minecraft #minecraftmeme #minecraftserver #shorts’, was uploaded by PunkMagic_ on 2024-05-19 15:00:38. It has garnered 10625 views and 327 likes. The duration of the video is 00:00:14 or 14 seconds. I’m actually getting TIRED of most servers #minecraft #minecraftmeme #minecraftserver #shorts… Read More

  • Insane New Minecraft Cobblemon Update!

    Insane New Minecraft Cobblemon Update!Video Information it’s no surprise cobon has slowly been taking over the world of Pokémon Minecraft mods with its blockier looking monsters that better fit the Minecraft aesthetic and unique updates that feel as carefully crafted and Polished as official Minecraft releases kobon has managed to Stand Out by showing us how this mod can do so much more than just adding Pokémon into Minecraft but ever since I started playing it people in the comments have been asking for one feature in particular that would instantly make battles feel way more Dynamic so did they finally do it well… Read More

  • Blue Moon Network

    Blue Moon NetworkWho are we? We are a java (premium) and bedrock minecraft server that prides ourselves in having a close, inclusive, and welcoming community. The server was created in April 2020 and we released to the public in July 2020 and have been going strong ever since. We have a regular playerbase ranging from 10-30 people or more depending on the time of day. We also have 2200+ people in the discord! What do we offer? We currently are a survival based network! We have two different survival servers to offer; Neptune and Saturn survival. Neptune survival has a more “modded”… Read More

  • Swift Network – Semi-vanilla Network SMP, Lifesteal, Survival 1.20

    Tired of boring singleplayer games or looking for a new server to play on? Swift Network may be the perfect fit for you! We are dedicated to providing the best possible gaming experience for all players. Available Gamemodes: In the Survival server, build, relax, and team up with others to go on adventures. In the Lifesteal server, every kill earns you a heart while every death costs you a heart. Be careful, as dying results in a 24-hour ban! Useful Links: Discord Server Trailer Server Features: Balanced economy for new players Land claims to protect your property Player shops for… Read More

  • Minecraft Memes – “Who TF turned on RTX?!”

    Looks like someone cranked up the graphics so high, even the Ender Dragon is impressed! Read More

  • Grudge Mod in Minecraft: Survive or Hide, Fear Inside

    Grudge Mod in Minecraft: Survive or Hide, Fear Inside In Minecraft’s world, a new mod appears, The Grudge, a ghost girl that brings fears. With long black hair and a white dress so stark, She haunts and curses, leaving a mark. Emerging from folklore, she crawls and she creeps, Her presence in the game, chilling and deep. With allies in tow, other entities to chase, In this haunted world, there’s no safe space. But fear not, brave player, for you hold the key, To survive and thrive, in this eerie spree. Craft your tools, build your base with care, Face the ghost girl, if you dare. So leap… Read More

  • Vaporeon habla español en Minecraft! #lol 🥵

    Vaporeon habla español en Minecraft! #lol 🥵 “Vaporeon puede hablar? ¡Claro que sí! Pero solo en el idioma de los Pokémon, así que prepárate para aprender un nuevo idioma si quieres tener una conversación con él. #VaporeonLinguist #PokemonTalk” 😂🌊 Read More

  • Escape to Minewind: The Ultimate Minecraft 1v1 Experience!

    Escape to Minewind: The Ultimate Minecraft 1v1 Experience! Are you looking for a new and exciting Minecraft experience? Look no further! Join the Minewind Minecraft Server today and immerse yourself in a world of endless possibilities. With a dedicated community and unique gameplay features, Minewind offers an unparalleled gaming experience for players of all skill levels. Experience the thrill of survival in a challenging environment where every decision counts. Build, explore, and conquer alongside fellow players as you navigate through the vast landscapes of Minewind. With regular updates and events, there’s always something new to discover on the server. Ready to join the adventure? Simply enter the… Read More

  • Ultimate Minecraft Trial Chambers Seed 1.21

    Ultimate Minecraft Trial Chambers Seed 1.21 The Best Minecraft 1.21 Trial Chamber Seed Are you ready to explore the latest Minecraft update? Look no further than this incredible Minecraft 1.21 trial chamber seed! With six trial chambers waiting for you at spawn, this seed is packed with adventure and excitement. Let’s dive into the details and uncover the wonders that await you in this new Minecraft world. Exploring the Spawn Point Upon spawning in this seed, you’ll find yourself in a lush forest surrounded by a plains biome and a beautiful meadow. Venture into the plains biome to discover a village perched on a mountain,… Read More

  • Insane Transformation: Floki Pranks Friend as Among Us Impostor!

    Insane Transformation: Floki Pranks Friend as Among Us Impostor!Video Information all right so I secretly joined my friend’s Minecraft SCP server and today I’m going to prank him as SCP 5167 as you see the T screen I change name to SCP 5167 so whenever I kill him whenever I do anything it will actually tell him that it was done by SCP 5167 now most of you guys already saw the thumbnail right and I want you guys to guess in the comment section down below what video game is the character from now I had no idea that the freaking impostor from Among Us is actually… Read More

  • Master Arcane Engineering – Ep. 43

    Master Arcane Engineering - Ep. 43Video Information all right everybody welcome back to another episode of uh create Arcane engineering brought to you by our wonderful server hosting sponsor Apex hosting if you’re interested in the lightning is just ominous going on as I intro if you’re interested in grabbing a service you can set off lightning with your friends um check them out links in the description use our codes get 25% off your first month of Hosting play a mod pack play vanilla Minecraft power world anything you can think of that’s within what’s available uh so thanks to them for sponsor ring… Read More

  • Insane PvP Showdown: SpookyKitten vs bobtujan

    Insane PvP Showdown: SpookyKitten vs bobtujanVideo Information This video, titled ‘Crystalpvp: SpookyKitten vs bobtujan’, was uploaded by Ai_24 on 2024-05-02 14:00:16. It has garnered 1159 views and 27 likes. The duration of the video is 00:00:16 or 16 seconds. #shorts #minecraft This is minecraft java or bedrock 1.12.2 or 1.20.1. crystal pvp with a client, hack client such as 3arthh4ck, earthhack, Flora Client, Phobos, Future, RusherHack, Impact, Blackout, M3dC3t, Mio Client, MioClient, Wurst, Trollhack, Meteor Client, LavaHack, ThunderHack Recode, ThunderHackPlus or some other client! It’s allowed to hack or use utility clients on server like crystalpvp.cc, 6b6t.org, 2b2tpvp.net, 5b5t.org, 0b0t.org, 8b8t.me, 9b9t.org, 2b2t.org or some… Read More

  • Insane Minecraft Parkour Skills Pt 18 | CRAZY!

    Insane Minecraft Parkour Skills Pt 18 | CRAZY!Video Information [Music] [Music] make This video, titled ‘Minecraft Parkour Pt 18 | #18 | @WeekendG0 | #edit #minecraft #mcparkour #gaming #shorts’, was uploaded by Weekend Gamer on 2024-04-27 08:54:29. It has garnered 459 views and 13 likes. The duration of the video is 00:00:38 or 38 seconds. Hello Guys please dont forget to like, share, and Subscribe this video and comment me Links: YouTube: https://www.youtube.com/channel/UCZ5TrGI4n6fetehT4fLtA2w Subscribe: https://bit.ly/WeekendGamer Discord: https://bit.ly/WeekendGamerDiscord And wee thanks for watching this Video About me: I want to become a gamer and a big content creator on youtube and me weeeeeee keep watching and thanks for… Read More

  • INSANE 1 CPS SPEED in Minecraft! JocosoCar’s Hilarious Bedwars Adventure

    INSANE 1 CPS SPEED in Minecraft! JocosoCar’s Hilarious Bedwars AdventureVideo Information Okay está el rojo y el gris hay que tener cuidado muchachos rompemos cama no se da cuenta no se da cuenta ven ven [Música] ven no no hice un montón de ccks no no no no no van romper la cama no muchachos No Rosita no Rosita tiene cama sí Bueno vamos a su cama rompemos la AC ostia se enojó mi causita e brother no no me hagas esas cositas esas cositas no me gustan Okay no This video, titled ‘MINECRAFT A 1 CPS #shorts #minecraft #hycraft #bedwars #texturepack#humor’, was uploaded by JocosoCar on 2024-03-20 16:00:39…. Read More

  • INSANE! Hasan1250 Şakir’s Christmas Monster School 🎄🎅🏻⛄

    INSANE! Hasan1250 Şakir's Christmas Monster School 🎄🎅🏻⛄Video Information This video, titled ‘minecraft monster school merry christmas 🎄🎅🏻⛄ 2024’, was uploaded by Hasan1250 Şakir on 2024-01-03 04:42:42. It has garnered views and [vid_likes] likes. The duration of the video is or seconds. Read More

  • Ultimate Minecraft Parkour Serenity – Mind-Blowing Pixel Art (PPL Request)

    Ultimate Minecraft Parkour Serenity - Mind-Blowing Pixel Art (PPL Request)Video Information This video, titled ‘Satisfying Minecraft Profile Pixel Art ( PPL Request YT ) Part 3,422’, was uploaded by Relaxing Minecraft Parkour on 2023-12-26 10:52:45. It has garnered 3284 views and 239 likes. The duration of the video is 00:01:01 or 61 seconds. Satisfying Minecraft Profile Pixel Art ( PPL Request YT ) Part 3,422 #minecraftpe #algorithm #artist you can get your short request video and post on your youtube channel mentioned me. if you also want to make your profiAle, just comment and then like the video. Please be patient if it takes a long time but I… Read More

  • INSANE REVOLVER GUN MOD – Skippy Addon in Minecraft #short

    INSANE REVOLVER GUN MOD - Skippy Addon in Minecraft #shortVideo Information This video, titled ‘3D Gun Mods REVOLVER GUN Addon in Minecraft (Realistic Weapon) #short’, was uploaded by Skippy Addon on 2024-02-20 00:58:24. It has garnered 1265 views and 24 likes. The duration of the video is 00:00:07 or 7 seconds. Arath’s guns add-on credit all to owner of addon support addon creator By: ArathNidoGamer credit addon creator support YouTube channel ArathNido https://youtu.be/MtBUxrXb0Nk like subs comments ⏬DOWNLOAD LINK BELOW⏬ ⛔ Important Keywords; ⛔ insare warfare addon, MCPE 3D GUNS ADDON, Modern warfare addon, Modern warfare, BlockOps addon, gun addon, addon mcpe 3d guns, mcpe 3d guns addon, 3d gun… Read More

  • “EPIC LEGO Minecraft Speed Build – Creeper Ambush!” #lego #minecraft

    "EPIC LEGO Minecraft Speed Build - Creeper Ambush!" #lego #minecraftVideo Information [Music] [Applause] [Music] [Applause] [Music] a This video, titled ‘LEGO Speed Build 21177 Minecraft The Creeper Ambush #lego #minecraft #animation #minifigures’, was uploaded by LEGO Shorts on 2024-01-09 16:07:19. It has garnered 2489 views and 50 likes. The duration of the video is 00:00:14 or 14 seconds. Read More

Modding by Kaupenjoe – Minecraft 1.19.2 Forge Modding Tutorial | TREE & WORLD GEN | #32