Minecraft 1.15.2: Forge Modding Tutorial – Custom Tools (#7)

Video Information

Hey guys it’s Thomas here techno vision and welcome to the next episode of our minecraft modding tutorial series for 1.15 in this episode we’re going to be creating some custom basic tools and we can just get right into it so every tool in minecraft has what is called an item

Tier or an eye item tier which is essentially a material tier that has basic values like a harvest level the maximum amount of uses and efficiency speed based attack damages enchant ability all those different attributes are all put into an item tier and that is shared across all items like all iron

Items have an iron item tier so we’re gonna create a basic one of those for ourselves a custom one first and then we’re going to make our tools so in order to make that item to here we want to go to our package Explorer right click on tutorial or whatever you named

Your your mod here your mod folder package and we want to name this tools and this will house more stuff later but for now we’re just gonna right click new Java class and we want to make sure this is an enum not a Java class so once you

Have enum selected name this mod item tier you can also replace mod with the name of your mod like tutorial although it doesn’t really matter what you name it and add the two repositories okay so the first thing you want to do make sure this implements item tier and that is

Going to give us all of the methods so we can import class and hover over this implement methods and select all of them and hit OK so this is gonna let us get all these basic values that I was talking about earlier so we need to make

A couple items and you can make multiple over time but I’m just gonna show you how to make one I just seen your the process so first thing you want to type up here right in front of this semicolon or I guess we can get rid of this for

Now just so it’s easier to understand so first you want to type the name of your enum so this material that we’re gonna make this material tier is going to be the Ruby tier it’s basically gonna include everything that all Ruby tier Ruby tools rather are gonna have so I’m

Going to name it Ruby in all capitals add some parentheses here and it’s going to pass in a few so the first value is going to be the harvest level so the harvest level is essentially the level at which a tool needs to be to harvest a specific or so

For example diamond tools are able to mine diamonds but if you were to try and mine a diamond ore with say a wooden tool it doesn’t have a high enough harvest level to to mine those blocks same sort of idea so if you go to the website in the description here you will

See a MC creator wiki and I know we’re not using MC creator but this information here is really useful because it’s all in place and we can go to harvest level here and you can see these are the vanilla harvest levels so zero is would want a stone and so on so

I want my Ruby tools to act like diamond in terms of harvest level so we’re gonna put three as you can see there all right so three is our harvest level now next we want to put in the maximum amount of uses that a tool has so we can also go

Back to this link here and see that for vanilla items the where is it enchant ability number of uses here we go so diamond tools have 1561 uses that means after you use the the tool 150 1561 times the tool will break just because of durability so I want mine to

Be in between iron and diamond as you can see here so I’m gonna make mine 800 so 800 so that means that all Ruby tools will have about 800 uses in them now the next thing we’re gonna pass in is the efficiency this is how fast a tool mines

A block so again go to that link in the description and we can see the vanilla and efficiency values here iron is about 6 and diamond is 8 so if we want to be in between those two I would put mine as 7 and I think it has to be a float value

So putting 7.0 F so next we have to put the attack damage now this is really important this is the base attack damage so pretty much every tool that has this item tier is gonna have this as a base damage and then any damage values you add on top of this

Which you’ll see later on in a sec is gonna be added on top so to avoid confusion I would say the best thing is probably to set it as zero but it really depends on if you’re gonna have multiple item tiers here so just to sort of

Display this feature I’m gonna set this as three point zero F just so you guys can see what this does so that means that all Ruby tools are gonna have at least minimum three base damage and then I believe the second to last thing is enchant ability so if you don’t know

What enchant ability is these are the vanilla values right here essentially in Minecraft different tiers of tools like iron and gold and diamond all have different abilities to get high level enchants so you can see here that gold has 22 whereas diamond has about ten and

That means that gold has a much higher chance to get good valuable and chance then say something like diamond or stone so I’m gonna put mine as a little bit higher than diamond so diamond is ten so I’m gonna put twelve and that means that we’re gonna get some pretty good

Enchants hopefully if we were to put it in an enchantment table now this last value we can’t actually pass in just yet because we don’t have the item we’ll do it in a second but just know that this is the repair material and we will just put this note

Here just so we know to come back in a second it will give you an error while we wait but this is going to be the material that you use to repair these items and an anvil pretty much so before we you know come back to this repair

Material we need to make some data members and a constructor so we can actually pass all these things in so let’s first make a privates final int harvest level and we pretty much just need to do this with all the values so next one would be a private final int max pieces

Then a private final float this time efficiency privates final floats attack damage next one would be enchants ability so privates final int enchants ability hope forgot a semicolon their privates final and then the last one is a supplier actually for the repair material so we need a supplier parameterize around ingredients and

We’re just going to name this repair material all right and make sure you import supplier as well from Java util dot function it’s very important alright so inside of or the reason we’re making these final rather is because we don’t really want anyone to change them out

From outside the class is really no reason to but we do need to make it constructors so mod items here I mean to pass in all of these so int harvest level comma int max uses comma int efficiency comma oh sorry I believe that’s float float efficiency floats attack damage int and chance

Ability and then supplier ingredients repair material and then add some curly braces and inside of here last thing we have to really push through is that we need to assign the variables so this dot harvest level is equal to harvest level and we’re just going to be doing this pretty much for

All of them so this thought max uses is equal to max uses this dot efficiency is equal to efficiency this dot attack damage is equal to attack damage this dot and chant ability Oh enchant ability there we go I knew something was off there is equal

To enchant ability and then last one is enemy repair this dot repair material is equal to repair material okay so we’ve assigned all the variables we need to make sure that we have a semicolon on the end of this enum here and last thing we need to do pretty much

Before we get to repair material is we need to set up all of these what do they call it methods so first our get max uses is just going to return what you would assume the max sees is then efficiency is gonna return an efficiency attack damage it’s going to return an

Attack damage harvest level harvest level and so on enchant ability and chance ability and for the repair material it’s going to be the repair material dot get so that we get the actual ingredient we can come up here and file save all now to get this repair

Material we actually need to create the item first which sounds a little weird because we’re actually using this class to create an item that we use to create this class I know super weird but just follow along and I promise it’ll make a little bit more sense so go to your

Registry handler class and we’re gonna create a new section down here called slash slash tools and this is gonna hold all of our tools they are just items but they are going to use a different class than just item so we’re gonna create our first tool which is a sword and we’re

Gonna do public static final registry objects and this is going to be parameterized around sword item because it is a sword sword item and the name is going to be Ruby underscore sword as you would expect this is gonna equal items dot register now we’re gonna pass in the

Name first so Ruby underscore sword pretty much same thing we’re used to comma except this time instead of just passing in a base class we’re gonna actually make the item right in this class so it’s gonna be a lambda statement so two parenthesis a dash and

An arrow and a curly brace or I guess we don’t need to clearly brace this time because we’re just creating a new sword item so bring this privacy down to the second line because it is gonna be a lot of code and it’s going to go off screen

If you don’t so we’re going to create you let me get rid of this thing there we go noose or item and this is gonna pass in I think it’s for different values or three values and then just the properties so first thing we need to

Pass in this sort item is the the actual tear this is what we just made in our mod item tear so mod item tear dots Ruby you can see it right there dot Ruby comma and then next we need to pass in is the damage so this is how much damage

The sword is gonna do to a to a mob or a player now remember if we go to our mod item to you here we have this attack damage right this is the base attack damage so anything damage you add here any value is going to be added on top of

The space damage so because this is three if we were to put for example two for this value you can see it pops up attack damage in what this means is it’s going to be adding two to the base damage here of 3 for a total damage

Amount of six now you might think well two plus three is five yes that’s true but all items have a base attack damage of one I know this is like really crazy to follow but just think of it like this so base items have an attack damage of 1

Plus the base damage which is equal to in this case three plus the added damage which in our case is two that’s what we’re setting here so hopefully that makes a little bit more sense the one is automatic by vanilla minecraft this 3 here is what we set here as a base

Attack damage and you can set that to whatever you’d like and the added damage is what we’re setting over here in our registry handler class with the item so I’ll just delete this but hopefully that makes a little bit more sense so setting this to two will actually cause

This sword to do six damage every time it hits which I believe is only about three hearts in Minecraft because you divide it by two now the next value is going to be the attacks this is also honestly just as confusing and I really don’t know why it’s this

Way but all items and Minecrafts for whatever reasons start with a base of attack value of four and this is like a pre 1.8 sort of combat so there will be no cooldown if that’s what you want then you can just leave this as 0.0 F but in

My case I do want to cool down because I want the vanilla cooldown mechanics for 1.15 if you don’t know what I’m talking about I’m talking about how when you hit something with a sword it takes a second for it to sort of get ready to attack

Again so what you actually have to do is subtract from the main value of for the base value so if I were to actually type in negative two point four F into this this value here attack speed what this is doing is subtracting two point four

From the base value of four so again all the type is appear four is the base minus two point four so what we’re getting here when we set this value as negative two point four is an attack speed of one point six and that’s actually the vanilla attack speed I

Think of all Swords if I’m correct or at least all iron swords so just remember that if you want a cool down on your sword or your tool you have to subtract from before and I believe if you set it I mean setting it to zero like zero point zero that will

Just you know have no cooldown if you set it to something like 1 or like five or something I don’t actually think that’ll do anything but you’re free to try that if you’d like so I’m gonna set a cool-down with negative two point four comma and then last thing we need to set

Is the properties so we can just type new item properties group and we’re gonna set the group here to our tutorial tab this is that custom tab you made or you can set it to a vanilla tab whatever you’d like and I should mention when you’re making these tools this is

Actually this tool is finished but if you want to add new things to it new interesting properties you could do after this dot group method dots and you could check out all the other properties you can set for example you could set know repair this would make it so that

You cannot repair this item in a and an anvil which is super interesting and there’s a few others you can actually make your tool a food item if that’s you know for whatever reason something you wanted and there’s a few others in here but for now I’m just

Going to keep it like this because this is all I need so we’ve finished our sword item and what we need to do is go back to mod items here and set our repair material to that actual sword item and we can do that by making a lambda statement with

An arrow and a curly brace and inside of these curly braces we’re actually gonna type return return ingredients dots from items and inside of here we’re gonna pass in the registry handler dots and then a ruby sword and then dot gets so you might be wondering in a semi-colon

Of course you might be wondering why are we passing in our sword into this value so you can pass in any of the items that use this this tear and the reason this kind of makes sense basically we’re getting the ingredient of this this item here this tool and that way the game

Sort of knows what item to use in the anvil to repair you know to repair your your tools I know that’s a little confusing but just think of it like Oh a ruby sword needs another like ruby item to repair so that’s what it’s it’s getting here is that another ruby item

All right so we’re actually done with our mod item to you here if you wanted to add new tears you can see we’re using this Ruby tear right here mod item tear doc Ruby if you wanted to add new unique tears you could just copy this paste it

Below and then just rename it to like something new like court if you wanted like a courts here and then you could literally just rename all or sorry not rename you could change all of these values here just make sure that instead of a semicolon you add a comma after the

Ones above that way this is included in the the actual class but we’re not going to make a second one but just know that’s how you make a second one and then if you have like a second tier when you made a new item you could do instead of

Rubi dots and you can see there’s quartz so you can suck quartz instead we’re gonna keep ruby but just you know that’s what you would do get rid of this enter in the comma into a semicolon all right so we have our sword here next thing you

Need to do is actually create some Jason’s so if we go into our resources assets tutorial models item we can see we have our Jason’s from the previous tutorials what you want to do is go to the description of this video go to the second link or I believe it might be the

Third it will take you to a paste bin this is the the Jason you need so copy it all right click copy and then you want to right-click on item new file and again name this exactly what you have here Ruby underscore sword Jason hit enter add to the repository and you can

Just paste this in and the only thing you need to change is the mod ID into your mod ID like this tutorial and the item name again the item name is just what you’ve got right here Ruby underscore sword you can just copy that and paste it in alright so this is

Pretty much it for the JSON you can actually see if we open up our Ruby Jason it’s pretty much exactly the same except instead of item generated it’s item handheld and that’s because it’s a handheld tool so we’re actually done all we need to do is add the texture and I

Guess add the name but that’s not super important so go to your desktop here and I actually have some tools here but you want to make a texture for your your sword name it exactly what you have named here Ruby underscore sword and open up your minecraft modding folder

Tutorial mod source main resources assets tutorial textures items and inside of here just drop it into there and we can close out here and you can actually see in our textures folder have Ruby underscore sword and we can go to laying as well yen underscore us JSON

And we can just copy this item give up here make sure to add a comma because we are adding a new entry and instead of item that’s tutorial Ruby it would be item Dell tutorial Ruby underscore sword because again this name here should match with this one right

Here this name we set and we want to set this name to ruby sword okay so file save all and i believe if we launch the game now we should have our sword in the game so i will see you in a second inside of the game

Okay so we’re inside of the game and if we go to our creative inventory and go to our custom tab there is our sword and it does say ruby sword and thankfully we can actually see the attack speed and the attack damage and it is 6 and 1.6

Exactly what we wanted and sets and we can test this out with a spider here so it should do there we go three hearts we can see that right there so it should take about four hits or three hits to kill and you can see here that when we hit our our sword

It does have that cooldown it’s taking a second there and it does have the same cooldown as something like a diamond sword you can see same length cooldown as our ruby sword here and I do believe yeah you can see here it’s exactly like a diamond sword in like stats except it

Is a little less effective it has one less damage but again you can see that it is working so we do have a perfectly working sword that’s custom alright so that’s pretty much all you need to do to create a custom tool but I’m going to go through all the different tool types

Just so we can see them for example purposes but just to know that it’s pretty much the same process so we can actually copy this whole two lines here and then right below paste it in and instead of sword item we’re gonna make a pickaxe next so it would be pickaxe item

We can rename Ruby underscore sword to Ruby underscore pickaxe same with this name here instead of underscore sword underscore pickaxe and instead of sword item it would also be again a pickaxe item and this also takes in the same value so you can actually leave all this

The same if you want or change it up I want my pickaxe to do much less damage the sword so I’m gonna said it’s a zero and that will cause the pickaxe to have a damage value of four because again we’ve got that base damage of three plus

The vanilla damage of one so that will give us a damage of four and for the attack speed we’re gonna set this to negative two point eight so that it has a less or sorry a higher cooldown and that’s pretty much it you’ve got your Ruby pickaxe we just need to make the

Jason we can copy the Ruby underscore sword Jason and paste it back in and just name it Ruby underscore pickaxe refactor add and instead of Ruby underscore sword just name it Ruby underscore pickaxe and we should also add the what is it called the PNG the texture so dota minecraft modding

Your mod source main resources assets mod ID textures items and I’m going to throw all of them in there right now just because I don’t want to keep coming back to this folder but you’re just gonna throw them all in there again making sure that the names of the the

PNG files are the exact same as the name of your item and they should pop up there we go oh they did pop up so we also want to go to ian’s underscore us Jason once again copy this line paste it below change from sword to pickaxe and changes

To pickaxe there we go so if we file save all this will now actually make a pickaxe in the game so once again just to show if we go to our custom tab we do have the Ruby pickaxe here again it does show the attack speed and attack damage

And let’s just go into game mode survival real quick this is like a regular pickaxe so it doesn’t do very well against dirt or against wooden objects and it does have that cool down we can see where it takes a while to come up but of course it is going to

Work super well stone objects things that a pickaxe normally would do very well breaking so our pickaxes work and let’s go do the rest of the items okay so hopefully you’re sort of seeing that this is pretty much the same process just repeated so we’re gonna do speed around

This time I think we’re gonna do three or four objects at once now just so we can really get through this so copy this and let’s make a paste below instead of pickaxe items and this next one is gonna be a shovel so it’s gonna be a shovel item rename pickaxe to

Shovel rename pickaxe once again to shovel and then again shovel item and the values are gonna stay mostly the same I want the attack damage to be 0.5 F and I want the attack speed at this time to just be negative 3.0 and we can keep the

Rest the same then we’re gonna make another entry this time you guessed it an axe axe item rename pickaxe to axe once again same thing renamed axe and axe item now this damage value I’m gonna keep this sort of vanilla we’re gonna make this damage value 5 because we do

Want it to be higher than the sword at least if we’re keeping with vanilla trends but the cooldown is going to be much higher with negative 3.1 cool down and then I think last one is a hell so we can create a hoe item and again instead of pickaxe hoe instead of

Pickaxe here we put home and then lastly instead of pickaxe item hoe item and a hoe actually is the only tool that has a different constructor so instead of there’s no attack speed I believe it’s just oh sorry there is a tax speed there’s no damage value so you can get

Rid of this damage value here just have our mod items here our attack speed and the the Builder the tap so for our tax speed I’m gonna put negative one point out because that’s what most of Anila hoes are I believe so that’s pretty much it

For all of these these items now we just need to make all of their Jason’s so once again you can copy the sword JSON copy paste it in and instead of sword we’re gonna call it now let’s do shovel next and add to repository once again instead of sword shovel file save all

And then we’re just gonna keep doing this for every item so instead of sword next is the axe and we can rename a sword axe in here as well and then one more instead of store we’re gonna put Howe and instead of sword again put home

Okay so if we close all these files here close close close we should have now for Jason’s a sword pickaxe a shovel and axe and a hoe so every tool type in the game now and we have all of the textures as well remember you put those in earlier so

Last thing to do is just go to en underscore us Jason and once again we need to make more of these entries instead of pickaxe we want shovel and we need this to shovel as well instead of pickaxe here we’re gonna put X and X again and then lastly our

Hoe there we go yeah Ruby home alright so and remember no no comma on the last entry here so that’s pretty much it for all tools I think yeah so and if you want to clean this up by the way I’m gonna keep it like this and the github

Repositories you can see it better but you can actually move this back up if you’d like to have everything on one line and then move them all together oh that brought me all the way out there we go there we go so you can organize it like that if you’d like them all

Together I just so it’s easier for you to see all of them but yeah let’s run the game and check them out and once again we’re in the game let’s open up our tab and there are items the axe the shovel the hoe and let’s really quickly just test them out by

Going to game-mode survival so the hoe does what a hoe does I guess um in Minecraft the axe is going to work on wood there we go and you can see that it obviously doesn’t work on like grass as well and the shovel is just gonna you

Know do what a shovel does so all of our tools are working perfectly and you now have some custom tools in the game and that is gonna wrap things up for the video today thanks guys so much for watching I hope you learned a lot and make some really cool tools and once

Again I really hope you check out this wiki page down here I’ll leave a link to it it has so many great vanilla values that you can use as well as this damaged page which will show you all the different damage values and base damage values as well as attack speeds that you

Can sort of mess around with yourself but other than that thanks guys so much for watching and I will see you in the next episode

This video, titled ‘Minecraft 1.15.2: Forge Modding Tutorial – Custom Tools (#7)’, was uploaded by TechnoVision on 2020-07-06 06:00:28. It has garnered views and [vid_likes] likes. The duration of the video is or seconds.

Learn to code a Minecraft mod from scratch in this complete tutorial series! In this episode, we create some custom tools, each …

  • Uncover the Thrills of Minewind Minecraft Server!

    Uncover the Thrills of Minewind Minecraft Server! Welcome to a world of endless possibilities in Minecraft! Join a server where friends with different skills come together to explore the unknown world. From building starter cottages to diving deep into caves, the adventure never ends on Minewind Minecraft Server. Experience the thrill of survival with a touch of vanilla in a modern Minecraft realm. Join us as we embark on a journey unlike any other, where danger lurks around every corner and teamwork is key to success. Watch as players like Oli and Zee navigate through treacherous caves, encounter mysterious entities, and build stunning structures that will… Read More

  • Join Minewind: Where You Can Build Your Own Burj Khalifa!

    Join Minewind: Where You Can Build Your Own Burj Khalifa! Join Minewind Minecraft Server Welcome to Newsminecraft.com! If you are a fan of Minecraft tutorials like the one you just watched on how to rebuild the Burj Khalifa, then you will love the Minewind Minecraft Server! Why Join Minewind? Experience a unique and exciting Minecraft gameplay Engage with a friendly and active community of players Participate in epic building projects and challenges Explore vast and diverse landscapes Enjoy regular events and competitions How to Join Minewind To join the Minewind Minecraft Server, simply open your Minecraft game and enter the server IP: YT.MINEWIND.NET Get Started Today! Don’t miss out… Read More

  • Skyblock Nightmare: Minecraft Horror Mods

    Skyblock Nightmare: Minecraft Horror Mods The Terrifying World of Minecraft Horror Mods Imagine being trapped in a world where every corner holds a new horror waiting to strike. This is the reality for players who dare to download Minecraft horror mods. One such mod, featuring Herobrine, the Cave Dweller, the Mimic Dweller, and the Pale Hound, promises a night of terror like no other. Herobrine: The Legendary Entity Herobrine, the infamous figure rumored to haunt Minecraft worlds, is a central character in this horror mod. Players must navigate the world while constantly on edge, knowing that Herobrine could appear at any moment. His eerie… Read More

  • Join Minewind Minecraft Server for Ultimate PvP Action!

    Join Minewind Minecraft Server for Ultimate PvP Action! Welcome to Newsminecraft.com, where we bring you the latest and most exciting news from the world of Minecraft! Today, we stumbled upon a fascinating video titled “ИЕРИХОН! МАШИНА ДЛЯ УБИЙСТВ?!! #lifehack #minecraft #майнкрафт” that got us thinking about the endless possibilities and adventures that await in the Minecraft universe. While the video may not be directly related to Minewind Minecraft Server, it showcases the creativity and ingenuity of Minecraft players. And what better way to unleash your creativity and explore new horizons than by joining a vibrant and dynamic Minecraft community like Minewind? With a dedicated IP address of… Read More

  • Join Minewind Server for Custom Skins & More!

    Join Minewind Server for Custom Skins & More! 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 a fun YouTube video titled “How To Change Your Minecraft Skin Clothes | Leigh Tutorial (Tagalog)” by Leigh Tutorial. In this video, Leigh Tutorial shares a tutorial on how to change your Minecraft skin clothes using paint.net. While this video may not be directly related to Minewind Minecraft Server, it showcases the creativity and customization options available in the Minecraft community. So why should you join Minewind… Read More

  • Becoming Ben 10 in Minecraft with Incredible Addon

    Becoming Ben 10 in Minecraft with Incredible Addon The Exciting World of Minecraft Addons: Becoming Ben 10! Exploring the Possibilities In the vast universe of Minecraft, players are constantly finding new ways to enhance their gaming experience. One such way is through addons, which allow for the incorporation of new characters, features, and abilities into the game. One particularly exciting addon is the Ben 10 addon, which enables players to transform into the powerful alien hero Ben 10. Unleashing Your Inner Hero With the Ben 10 addon, players can take on the role of Ben Tennyson and harness the incredible powers of his alien forms. From the… Read More

  • River Run: Minecraft’s New Showcase, Part 1

    River Run: Minecraft's New Showcase, Part 1 In my Minecraft world, a river flows, With bridges and boats, the beauty it shows. Creative mode allows me to create, A peaceful oasis, a perfect escape. The water glistens, the sun shines bright, As I build and explore, my heart takes flight. Check out my video, see the work I’ve done, Appreciate the effort, under the sun. Stay tuned for more, in this showcase series, Minecraft magic, no need for theories. Neutral_Mob, bringing joy and fun, In this blocky world, where dreams are spun. Read More

  • Join Minewind Minecraft Server for an Amazing Digital Circus Experience!

    Join Minewind Minecraft Server for an Amazing Digital Circus Experience! Welcome to NewsMinecraft.com! Are you a fan of Minecraft Note Block covers like the one from “RAG DOLL” by Chi-Chi? If so, you’ll love the immersive and exciting experience waiting for you on Minewind Minecraft Server. Join a vibrant community of players who share your passion for creativity and music in the world of Minecraft. With no mods or programs, Minewind offers a pure and authentic Minecraft experience where you can unleash your creativity and build amazing structures with friends. Imagine the thrill of creating your own musical masterpieces using Note Blocks, just like the talented creators behind the… Read More

  • Defeating the Great Ur-Ghast in Twilight Forest

    Defeating the Great Ur-Ghast in Twilight Forest Minecraft: Defeating the Great Ur-Ghast of the Twilight Forest Welcome to a thrilling Minecraft adventure! In this video, we will delve into the captivating world of Minecraft, a sandbox game that has captured the hearts of millions of players worldwide. Introduction: If you are a fan of building, exploring, surviving, and adventuring, Minecraft is the perfect game for you. With charming pixelated graphics and endless gameplay, you can create your virtual world and embark on epic journeys. Features: Build Your Dream Home: From a small cabin to a grand castle, unleash your creativity in constructing your ideal abode. Explore… Read More

  • Crafting Chaos: Tinker World SMP

    Crafting Chaos: Tinker World SMP Minecraft Madness: A New Smelter Emerges in Tinker World SMP Setting the Stage In the world of Minecraft, where creativity knows no bounds, Music Free Gaming embarks on a new adventure in Tinker World SMP. With a bamboo farm at the ready, our protagonist sets out to construct a smelter array that promises to revolutionize their gameplay. Building the Dream As the rain falls outside, the stream kicks off with a mix of excitement and uncertainty. Plans for a simple smelter evolve into a complex array of furnaces, hoppers, and mine carts. The goal? Efficiency and automation at its… Read More

  • Dunnys Duke’s Insane 1.20 Update! Rickey’s Base Tour & Epic Creeper Farm!

    Dunnys Duke's Insane 1.20 Update! Rickey's Base Tour & Epic Creeper Farm!Video Information welcome to 2b2 the oldest Anarchy server in Minecraft established in December 2010 2 b2t has become a legendary realm where chaos Reigns Supreme with no rules and No Boundaries players are free to explore build and survive in a world where the only limit is their imagination prepare yourself for a journey like no other where danger lurks around every corner and Only the strongest most resourceful players can Thrive welcome to 2 b2t where history is written by those brave enough to venture into its unforgiving landscape I never slow up no I don’t take I… Read More

  • EPIC MINECRAFT SMP BETA TEST – JOIN NOW! 🔥

    EPIC MINECRAFT SMP BETA TEST - JOIN NOW! 🔥Video Information This video, titled ‘MINECRAFT SMP BETA TEST STREAM | !discord’, was uploaded by Ben Esherick on 2024-02-11 15:24:16. It has garnered views and [vid_likes] likes. The duration of the video is or seconds. Join the discord if you want to be here for the public release! Read More

  • Insane Minecraft Astral Enclave Build!! 🔥 #shorts #trending

    Insane Minecraft Astral Enclave Build!! 🔥 #shorts #trendingVideo Information This video, titled ‘Minecraft- Astral Enclave Build #shorts #minecraftshorts #minecraftchallenge #trending #gaming’, was uploaded by Gamer on 2024-04-05 00:00:15. It has garnered 9 views and 0 likes. The duration of the video is 00:00:11 or 11 seconds. minecraft minecraft shorts minecraft animation shorts herobrine minecraft but ethobot minecraft funny daisy minecraft meme minecraft challenge moobloom minecraft dancing moo bloom jj and mikey minecraftshorts skibidi toilet dancing cow moo bloom polish cow minecraft pokemon funny pomni funny shorts minecraft mod roblox mrbeast aphmau steve alex minecraft memes skibiditoilet digitalcircus monster school minecraft zombie family monster school alex doctor steve… Read More

  • Insane Voiceover by Me on Alan Becker’s Act-Fire Nodes

    Insane Voiceover by Me on Alan Becker's Act-Fire NodesVideo Information okay where are we going oh my gosh where are we going ow ow ow where what is that Mom’s home hi Dad wait what ow dad why are you being so mean uh you terrible I hate you Dad chill there you go take fire oh now he’s dead uh oh how’s that oh oh ouch chill that’s not what I meant I didn’t ow okay okay I’m not your father I’ll never be I’m swimming I’m are you okay Dad I’m okay La okay we’re fighting why are you fighting me stop don’t kill me please… Read More

  • The Most Mind-Blowing Minecraft Mod Ever!

    The Most Mind-Blowing Minecraft Mod Ever!Video Information This video, titled ‘Minecraft’s INCREDIBLE Mod’, was uploaded by Knav on 2024-03-26 20:33:05. It has garnered views and [vid_likes] likes. The duration of the video is or seconds. Distant Horizons really is an INCREDIBLE mod and I can’t wait for what the future holds for it. My Discord! Read More

  • Mind-Blowing Tiny Minecraft Base Build!

    Mind-Blowing Tiny Minecraft Base Build!Video Information today we’re building the smallest space in Minecraft where with my admin tools and mods my goal is to fend off my friends from ever reaching the interior prize but they can go tiny too so what tiny defenses will I be making stay tuned to find out okay Nesta I’ll be back in 2 hours go why are you so big all right so this is a normal Minecraft base and this is going to be my Minecraft base going from Level zero all the way to level five so luckily level zero is done and to… Read More

  • Twisted Cheaters Unleashed: Ad8mZ vs Steve & Ace

    Twisted Cheaters Unleashed: Ad8mZ vs Steve & AceVideo Information This video, titled ‘uncut tw(team of cheaters) inspired by steve and ace’, was uploaded by Ad8mZ on 2024-03-24 21:54:08. It has garnered 176 views and 7 likes. The duration of the video is 00:06:18 or 378 seconds. Hello 😀 Ignore that: #montage #combotage #hive #best #bestplayer #minecraft #pvp Welcome to my channel, on this hive youtube channel I post plenty of content on the minecraft bedrock featured server called the hive, this server also goes by the names of, hive, hive games, the hive, hive minecraft, hive bedrock, hiveme, hive mc. On the hive bedrock edition server I… Read More

  • HorizonsReborn – Semi-Vanilla SMP Whitelist 16+ 1.20.1 Discord

    Welcome to HorizonsReborn! We are a semi-vanilla Java Minecraft Server similar to Hermitcraft with a small, mature, and friendly community. Our focus is on community projects and events. Community and Discord We have a Discord server for communication outside of the game. Whitelisted players receive event notifications and can hang out in Voice Chats. New Players If you’d like to join our community, please feel free to join our Discord server. Links: Photos | Discord Read More

  • Heroes Multiverse (Fisk Heroes Server)

    Heroes Multiverse (Fisk Heroes Server)Heroes MultiverseHeroes Multiverse is a Fisk Heroes server that is amplified with technology, and quests. Featuring mods like Ae2, Custom NPCS, and the Thermal Series, you’ll be experiencing the full thrill of being a hero.With several quests to choose from and play with, to several heroes, villains, and characters to create, you won’t be empty handed.Mods ListAe2Armourer’s WorkshopBible CraftBig ReactorsCarpenter’s BlocksChiselCNPCS+Deco CraftExtra UtilitiesFisk HeroesTinker’s ConstructThe Thermal Series (Dynamics, Expansion, Foundation)Server FeaturesCampaign story-line Side QuestsTime Travel100+ Characters to play withStrong EconomyIntense survival experienceBoss FightsMultiversal Clashesand more..Heropacks FeaturedDHHPJMCTNamelessSabri EnhancedSecret HeroesScarred HeroesSoul IndustriesStellarUHPWhat are you waiting for? Come join us and play with… Read More

  • Minecraft Memes – Thinking about crafting that diamond sword 🤔🤨

    Looks like this meme is definitely a critical hit! 12 out of 10, would laugh again. Read More

  • Creepers: Notch’s Oops or Masterpiece?

    Creepers: Notch's Oops or Masterpiece? In the world of Minecraft, where Creepers roam, A happy accident, not created alone. Notch, the creator, made a mistake, But turned it around, for Creepers’ sake. Vertical pigs, turned into green, With faces so friendly, yet unseen. Dynamite inside, ready to blow, The iconic Creepers, now we know. So next time you see them, don’t be afraid, Just remember the story, how they were made. A twist of fate, a coding mishap, But now they’re beloved, in every map. Read More

  • Magic or just lag? #minecraft #lol

    Magic or just lag? #minecraft #lol “Maybe it was magic, or maybe it was just a really good cheat code in Minecraft. Either way, I’m impressed!” Read More

  • Terrifying Secret in Cave – Minecraft PSX

    Terrifying Secret in Cave - Minecraft PSX Minecraft PSX PS1 MCSX: A Haunting Modpack Experience Step into the eerie world of Minecraft PSX PS1 MCSX, a modpack that brings back the nostalgia of old Minecraft Beta and Alpha versions with a creepy twist. This haunting version of Minecraft for Playstation 1 is haunted by the infamous Herobrine Creepypasta, perfect for fans of horror and spooky atmospheres. Exploring the Creepy World As players delve into this modpack, they will encounter a more aged and sinister version of Minecraft, reminiscent of the early days of the game. The environment is designed to give off a spooky vibe, making… Read More

  • Join Minewind Server for Endless Fun! #minecraft #gaming

    Join Minewind Server for Endless Fun! #minecraft #gaming Why You Need to Join Minewind Minecraft Server Welcome to NewsMinecraft.com! Are you a fan of Minecraft? Looking for a new server to join and explore? Look no further than Minewind! While watching a recent YouTube video titled “100 O’YINCHI YURA DAVRIGA TUSHIB QOLISHDI! / 1-qism #minecraft #uzbekcha #tarjima,” it became clear that the excitement and thrill of playing Minecraft knows no bounds. The sense of adventure, creativity, and community that Minecraft offers is truly unparalleled. Minewind Minecraft Server, with its IP YT.MINEWIND.NET, provides a unique and immersive gaming experience for players of all levels. Whether you’re a seasoned… Read More

  • Ultimate Minecraft Story Mode Walkthrough

    Ultimate Minecraft Story Mode Walkthrough Minecraft: Story Mode – A Legendary Adventure Unfolds The Tale of the Order of the Stone In the vast universe of Minecraft, the legend of the Order of the Stone endures as an undeniable truth. Four heroes – Gabriel the Warrior, Ellegaard the Redstone Engineer, Magnus the Rogue, and Soren the Architect – once defeated the fearsome Ender Dragon, cementing their place in history. But as time passes, new challenges arise, and a new story begins. An Epic Quest Unfolds Embark on a perilous journey across the Overworld, through the Nether, to the End, and beyond in this five-part… Read More

  • Rev Arco reveals SHOCKING secrets in MineCraft SkyBlock!

    Rev Arco reveals SHOCKING secrets in MineCraft SkyBlock!Video Information well hey there everybody happy Monday welcome to another episode of Minecraft Mondays it’s great can’t wait it’s awesome why is my zoom not working oh uhoh uhoh oh h h h oh I just found found that I have things and stuff that’s kind of what is this do oo ah ooh ah anyways hey guys welcome we’re here we’re going to be uh checking out a fun mod pack called Arcane Isles and as you can see I have a couple things added to it as well first of all I’m happy to be here thank… Read More

  • Terrifying Jinn Encounter in Minecraft

    Terrifying Jinn Encounter in MinecraftVideo Information गाइज मैंने अभी अपनी इन्वेंटरी देखी और यह देखो मेरी इन्वेंटरी के अंदर एक चुड़ैल आई हुई है मैं तो चुड़ैलों से बहुत डरता हूं गाइज मैं इस चुड़ैल को फेंक देता हूं लेकिन फेंकने से अच्छा मैं इसको यहां पे तस्वीर में टांग देता हूं इससे मैं अपने दोस्तों को भी डरा सकता हूं वैसे अब काफी रात हो रही है मैं सो जाता हूं ए फ्यू मोट्स लेटर और यह आवाज़ें कैसे आ रही है और एक सेकंड भाई व चुड़ैल तो मुझे मारने के लिए आ रही है आप लोग चैनल को सब्सक्राइब करो नहीं… Read More

  • “EPIC ATTACK on Political Minecraft Server!” #politpig

    "EPIC ATTACK on Political Minecraft Server!" #politpigVideo Information только что обосновали Москву на нашем сервере в то время как Северная Италия и Римское царство установили мир А вот эшкере готовится к завтрашней войне против всей Азии Заходи на полит БИК и строй свою Империю This video, titled ‘НАПАДЕНИЕ НА СТРАНУ на ПОЛИТИЧЕСКОМ сервере майнкрафт #politpig #политическийсервермайнкрафт #впи’, was uploaded by Scubthree on 2024-04-28 11:00:41. It has garnered 11972 views and 531 likes. The duration of the video is 00:00:14 or 14 seconds. #minecraft #minecraft #minecraftserver #politics #server #politmine #politmine #manulcraft #java #VPS #java #military #minecraftserver #manulcraft #military #political #vminecraft #politminecraft review #mine #politicalserverminecraft #history #militarypoliticalserverminecraft #minecraft… Read More

  • Buying Everything My Girlfriend Builds Challenge! 😱🔨 – Minecraft

    Buying Everything My Girlfriend Builds Challenge! 😱🔨 - MinecraftVideo Information today we’re doing whatever you build you get so if someone builds a Nintendo switch like this I have to buy it for them but whatever I build they have to buy for me and graci unfortunately you’ve got to go first and you only have five minutes to build what you want so go go go hurry up oh Lou she’s building she’s building what do you think it is uh uh I think it’s a um it’s a dog it’s a dog looks like a Iron Golem but really weird what are you guys talking about… Read More

  • Boost Your FPS with These Minecraft Pocket Edition Mods 🚀

    Boost Your FPS with These Minecraft Pocket Edition Mods 🚀Video Information i h Ere ek so mation ul and ep so first part ide 9 part 9 ide 9 part ide 9 part ect s ur ot em ot 3D ame so AB ame CH so ide ire ur eld ot eg u ul u ow F F ur ul . so Ere part ORT part and Fire ur K so ust 3D em agna to comment se me so AB H Ere m m ame h FS h h FPS urm 0 and u ek ur T ur AB ign ignia ur ul so AB baat kte ha… Read More

  • Insane Witch Challenge in gameBAR Minecraft!

    Insane Witch Challenge in gameBAR Minecraft!Video Information a heralder of sorts emerges from between the two Thin trees by the opening to the clearing this place desecrated enough even without new hellish intervention an assembly with Arcane importance minerals far from home talisman’s idling Li in the windless closing offering aspirational beoning to ears unseen soaking the draping cloth of the sister witch’s black robes was a do bisected insides outlined in diarrheal scatterings of fur and blood in hideous amalgam at the center of it was a black scroll laying Softly on a dry spot by an intestine the man was moving as if… Read More

  • ALIEN GAMERS DOMINATE 2050! Watch NOW! #viral

    ALIEN GAMERS DOMINATE 2050! Watch NOW! #viralVideo Information [Applause] [Music] [Music] pulled up to the set when I heard that brutal sound of the base start to feel like I’m dreaming man should have seen that look on my face This video, titled ‘2050 Vs 2023 #trendingshorts #trending #viral #shorts #minecraft’, was uploaded by X GOOD GAMERS on 2023-12-20 04:29:36. It has garnered 3052 views and 68 likes. The duration of the video is 00:00:24 or 24 seconds. 2050 Vs 2023 #minecraft #shorts Yoooo 🤘 what’s up buddys Welcome To my YouTube channel I Hop you look like a short video 📷 please 🙏 Support me… Read More

  • Insane Minecraft Speedrun with Ultimate Fusion Abilities!

    Insane Minecraft Speedrun with Ultimate Fusion Abilities!Video Information okay guys today I’m playing Minecraft speedrunner versus Hunter but I can fuse items so I can take different items and combine them into each other and I have these checkpoints all around the map where I can get these crazy items from fusing them I have a pet B right here a fireball Cannon a glowing staff a golden brush a glass plate and there’s just so many cool items I can fuse what do you mean by fuse items Andy what kind of items can you fuse well I can take two items and I can… Read More

  • CalebsStuff420-Minecraft hide away parody ft. @bismuthnickel

    CalebsStuff420-Minecraft hide away parody ft. @bismuthnickelVideo Information so this say m away I’m currently recording this in a good room um to YouTube this took a lot of pain this took my T tears to make um hope you enjoy me singing here we go oh wherever you are you know I will look for you you know I to you oh the Sun Mo it don’t matter what you do you know I to you can’t believe in all this time I’m for you soon you’ll be at home shine give it Li I’m for it I’m for it and I can’t let you… Read More

  • Team BaerCraft’s Modded SMP Servers

    Creators & Community Creators & Community A warm, diverse, and open Discord & Minecraft community that welcomes everyone and is the home of the Minecraft modpacks BaerCraft, Trash Panda Craft, and PokeASub plus their official multiplayer servers. We host additional Minecraft servers, such as a rotational server that rotates community-voted modpacks every 3 months. Our community talks about a lot of other games and topics! Both developers are experienced and active in development, creating new content for players. Our staff is knowledgeable and informative, providing the best help and support. We aim to offer unique and customized content in our… Read More

  • DecimalSMP season ONE live now !

    DecimalSMP season ONE live now !1.20.1+ | We’re a semi-vanilla SMP server with only a few QOL Spigot plugins, welcoming all JAVA players (currently) to join and have a wonderful time! The server’s very new, so no one has anything better than Diamond yet! Come and secure a great headstart while you still can! This server is home to a welcoming and blossoming community, as well as a strong staff team dedicated to making your experience better!- active staff ! – active players !- we have had over 500 unique players join the server in less then 3 days of up time ! – content… Read More

  • Minecraft Memes – Map Room Struggles: I Always End up with a 3X3 Wall

    It’s not a repost, it’s just a highly sought-after meme with a high score! Kind of like finding diamonds in Minecraft. Read More

  • Crafty Zoonomaly Duo: Minecraft Monster Mayhem

    Crafty Zoonomaly Duo: Minecraft Monster Mayhem In the world of Minecraft, a tale to be told, Of Ngao and Kemy, a couple so bold. Zoonomaly zoo monsters, a sight to behold, In the game’s vast world, their story unfolds. With creamy textures and sneaky moves, They roam the land, in their own grooves. A playful duo, causing mischief and fun, Their adventures in Minecraft, never done. So like, share, and subscribe to Ngao’s channel, For more zany antics, in this digital panel. Let the rhymes flow, in this gaming spree, As we dive into Minecraft, wild and free. Read More

  • Nightmare Dweller is LIT AF! 🔥

    Nightmare Dweller is LIT AF! 🔥 Nightmare Dweller in Minecraft is so terrifying, even the Enderman is like “Nope, I’m outta here!” #minecraft #minecraftmemes #shorts Read More

  • Discover German Culture on Minewind Minecraft Server

    Discover German Culture on Minewind Minecraft Server Welcome to NewsMinecraft.com! Today, we’re diving into the world of German culture through the lens of Minecraft. In a recent YouTube video, Monday Morning takes us on a journey to learn about May Day traditions in Germany. Through the power of gaming and language learning, Monday Morning immerses viewers in a unique cultural experience. As we watch Monday Morning build a maypole in Minecraft, we can’t help but feel the sense of community and tradition that comes with this holiday. From the colorful signs to the intricate details, every aspect of the maypole reflects the rich cultural heritage of… Read More

Minecraft 1.15.2: Forge Modding Tutorial – Custom Tools (#7)