TechnoVision – Minecraft 1.15.2: Forge Modding Tutorial – Custom Armor (#8)

Video Information

Hey guys it’s Thomas here we took no vision and welcome to the next part of our Minecraft modding tutorial series for 1.15 in this episode we’re going to be creating a custom basic armor set and this process is very similar to tools so if you did okay on that video then you

Should be fine here it’s just a lot more values that you need to sort of understand and research before you really make your armor set but we can get right into it so the first thing you want to do just like with tools is we need to create a custom material type

Just like tools every armor set full set has a a material tier that it draws from to get it to values like how much damage it reduces the durability and stuff like that so we need to make one of those and we can come over to our main package

Here tutorial right click new create a new package and we want to name this just armor and just like with tools this will hold more stuff later on but for now it’s just gonna hold our our tier that we’re gonna make so inside of your armor package here you want a new Java

Class and make sure it’s an enum not a class and in this enum we’re gonna name it mod armor material I know see why in a second but add that to the repository now first thing in this class to do is to make sure it implements eye armor

Material so what this is doing is getting all of the methods from eye armor material and that’s what we’re calling it mod armor material because it’s just an extension of the interface here so hover over this red line and make sure you hit implement methods and that’s gonna get all of these methods

Here that we can hit okay on and they’ll all get set up in the class here now we have to set these up ourselves because a lot of them are just going to return basic values like zero or null so that’s what we’re gonna do right now now the

First thing we want to do before we actually you know set up these values is make sure that they’re assigned to variables so let’s create some data members we can get rid of this semicolon here so first data member we need is a max damage array so we can type private

Oh that’s not useful private private static final int array and this is going to be named it’s static so all capitals max underscore damage underscore array we want this to equal a new integer array and we’re actually just gonna add some values in line here so just create

Some curly braces and we want the first value to the 11 the second value to be 16 the third value to be 15 and the last value be 13 and I will explain what these values mean a little bit later because they’re not gonna make much sense now but essentially each slot in

This array is going to represent a different armor piece in your set so I believe and this could be incorrect but I believe this is the helmet here then chest plate leggings and then the boots and each one of these values is going to determine the base level for your

Durability for those pieces and we’ll be adding some more to that later so just keep that in mind but the next value we need is a private final string name this is just the name pretty standard then we need a private final integer and we’re going to name this max damage factor now

We’ll be sending this later and these will all be read because we haven’t created the constructor yet but we’ll do that later the max damage factor is going to be essentially multiplied into these values to determine the durability of the piece so that’s what that is used

For next one we need is a private final integer array and this is going to be the damage reduction amount array you can name it whatever you’d like but I think that’s the most clear and this is essentially going to be very similar to this except instead of durability it’s

Going to hold the the armored slots that each piece gives you so if you know that little bar above your health bar the armor slot bar this is going to determine later on how many slots in that bar it fills up we can move on to the next one so private

Final int and chance ability just like last time with our tools every piece has an enchant ability value to get rare and chance then we also need this is different for the first time I don’t think we’ve ever seen this private final sound event I’m rich gonna name the

Sound event now this is gonna be what determines what sound plays in the game when you equipped your armor so it doesn’t have to be the basic armor sound it can be something crazy if you want but we can set that later next one is going to be a private final floats and

We’re gonna call this toughness and this value is going to affect this value right here it’s going to essentially take these values up a notch depending on how high you want to set this toughness it just increases the protection overall and you can set this

To zero to disable it as well and then the last one I know there’s so many data members with last one is privates final and just like with our tools you need a supplier ingredient ingredient and we’re going to name this repair material just like last time and we can make sure to

Import supplier from Java util dot function and this is gonna essentially be the just like last time the material that you use in an anvil to help repair your items okay so now we can make our constructor then we can just call it mod armor material and this is gonna pass in

All these values except for the static one so string name int max damage factor int array damage reduction amount array we’re literally if you if you are following just copying these values right here bear with me sorry there’s so many int and chance ability then I’m gonna make a

New line just so you guys can see it on screen sound event sound events comma floats toughness comma supplier ingredients and we’re just going to name that repair material like last time and then add some curly braces and last thing we need to do with these data members is just

Assign them so again we’re repeating all of this like from the tools episode this thought name is equal to name this dot max damage factor is equal to max damage factor and so on and so on this dot damage reduction amount array is equal to damage reduction amount array

Um this dot enchants ability is equal to enchant ability this dot sound event is equal to sound events this stock toughness is equal to toughness and the last one this dot repair material is equal to repair material alright so that should get rid of most of the errors now

We do need to make our enum but we can do that right now I think I guess well we’ll come back to these later let’s do our enum first so just like with the tools that we made you’re gonna make a new enemy types

Or every or an enum value I guess is the correct term for every single armor set so for our Ruby set we’re gonna have one enum called Ruby that affects all of the Ruby armor pieces that we’re gonna make so we’re just gonna call this Ruby and

We’re gonna pass in all the values that we set here pretty much I know it’s a lot but we gotta get through all of them so first value name is not just a standard name like the name of your item it’s actually gonna affect the name of

Your layer and we’ll talk about layers later but layers are essentially the the texture for what like goes on your body if with armor so you want this to be your tutorial mod ID so access your mod ID from your main class and then just

Add with a plus sign a colon and then the name of your tier here in lower case so in my case is Ruby so I’m just gonna put Ruby in the lower case and what this is gonna do write a comma there what this is gonna do is make sure I’ll just

Write it out so you can see it that the pathway to your layer which will deal with much later on we haven’t even talked about that yet is gonna be Ruby underscore layer underscore one and Ruby underscore layer underscore two so it’s affecting this value right here if you wanted you could

Make this Ruby underscore armor and that would make these the path to this Ruby underscore armor underscore layer but I don’t think that’s necessary because it isn’t a folder called armor so we kind of know it’s armor so I’m just gonna leave it to Ruby alright so that’s the

Name and the next thing we need to do is the max damage factor now again this is what is multiplied into this array to set the durability so just for some examples irons max damage factors 15 diamonds is 33 we’ve got gold at 7 and I

Believe leather is 5 so and also chain is the same as iron’s 15 so what this means I’ll just get out my calculator real quick whatever you set here just for example let’s say let’s say our head our headpiece our a helmet here so our

Helmet has a max damage array a value of 11 so if we set this to 15 we can do 11 times 15 to see that our helmet is gonna have a durability of 165 so that’s kind of how you determine what the the durability is and we’ll do this equation

Later on and with get durability but just know that that’s what this value is doing and these values don’t have to be these base values don’t have to be what I’ve said here this is what vanilla minecraft has but if you want you could set them to whatever you’d like but I

Would recommend leaving them like this just so it’s it follows Vanilla’s mechanics alright so 15 is the the iron max damage factor I want mine to be between 15 and 33 because that’s between iron and diamond so I’m gonna make mine like 25 all right so the next one we

Have to do is the damage reduction amount array this is going to be an inline array some new integer array and we can just instantiate it in the line with some curly braces and we need four values again one for each armor piece so the first piece is going to be your

Helmet and each value in this like I said before is going to be what how many armored bars you get on your on your character how how much your armor protects you so I’m gonna set the helmet is to the leggings is the second one I know it’s kind of confusing you to

Think the chest plate would be the second one but it’s actually the leggings I’m lugging this is gonna be five I’m gonna make the chest plate six and the boots too so what this is gonna do is have it be so that if you equipped the Ruby helmet you’ll get a single bar

Of of armor because all these values are going to be divided by two in the game so you basically all these values divided by two is gonna be what’s in the game for your armor protection value if I were to equipped a chest plate I would

Get an armor value of five divided by two which is like 2.5 or so so I know that’s six but you know it’s close to that number so that’s sort of what you’re working with here for reference this is the base armor values for iron so and I believe diamond is a little

Just a little bit higher than this for a couple so that’s sort of something you can play around with yourself next value is the enchant ability again this just affects how rare the enchants you can get with your with your items in an enchantment table I’m gonna set mine to

18 just so it’s a little better than the tools but it’s you know pretty similar to what most of the vanilla ones are I believe diamond just ten and gold is 22 just for reference all right so next is the sound event I’m gonna make a new

Line here so that we can see it on the screen so to get a sound event you want to type sound events dots and then you’ll see all these different sounds again this is the sound that plays when you equipped the armor with your your right hand so let’s just make it item

Underscore underscore armor equips generic Farmar underscore equipt underscore or generic there we go so this is just the generic item armor equip sound there are ones for unique types that you can make and we’ll be talking about custom sounds later but for now I would just probably set it to

The generic sound so it’s you know simple now the next one and arguably the one that has the most effect on protection is toughness now toughness is very confusing at first because when I first learned about toughness I was like what’s the point it doesn’t really seem to do much but it

Actually is very important so toughness basically takes all these values here and just ramps them up another tier so if we were to set this toughness value to like 2.0 F what this would do is it wouldn’t multiply these values by two in fact these are gonna actually remain the

Same these values but the protection you’ll receive from these values is going to increase dramatically so what diamond does is it actually keeps very similar values to what iron has in terms of its damage reduction amount array but its toughness is set to two and that’s why it’s so much better

Than iron so I’m going to set this to zero actually and by setting it to zero we can actually disable this from our armor and make it so that there is no toughness factor and just for reference I believe every single item or every single armor set in the game doesn’t

Have or has a toughness of zero or does not have any toughness at all basically except for diamond and maybe nether right in the new version so yeah just keep that in mind it’s just diamond that really has toughness I believe but I’m gonna set mine to zero because I don’t

Want it and but just know that the higher this number is the the more the armor will protect you and the next and final argument to pass in is the repair material and we can get this just like last time with a lambda statement so making a quick lambda statement there

With an arrow and we want to curly braces because we are going to return an ingredient return ingredients dots from items and then we want to get the item you used for the most part to craft these items so registry handler Dodd’s Ruby gets and make sure that you add a

Semicolon at the end of this line as well and a semicolon at the end of this you know now just to sort of clarify what this is doing this is setting the item that you use to repair in an anvil in vanilla minecraft you can put iron

Ingots in an anvil to repair iron tools and armor and what we’re setting here is saying you can use rubies for the same purpose for Ruby tools so that’s what it’s doing I did mess up in the last video with tools by saying that you set this to Ruby underscore sword that was

Incorrect vanilla minecraft does that for you anyway so make sure you set this to whatever is like the main ingredient in your crafting recipe for for your your armor piece and same for tools as well alright so our enum is actually completely done so all we have to do now

Is set these methods so for durability we’re gonna have to do a little bit of math it’s not too hard but we do need to multiply the max damage array slot by the max damage factor just like we talked about earlier so we can do that

By getting the max damage array and then accessing the slots in dot get index and we want to multiply this value with them multiply symbol by this dot max damage factor and again just one more time to explain what this is doing is multiplying this value right here this

Max damage factor by each corresponding value in this this array here alright so next is the get damage reduction amount this is just gonna be this dots damage reduction amount array and then we’re just gonna get the slot index so slot in dot get index and now for enchant

Ability this one’s super easy just this ton chance ability you don’t even need to add the this it’s just sort of good coding practice I guess for sound event or get sound events same thing this tile get sound events or I guess just sound events we don’t need to use the method

And then for a repair get repair material same thing this dot get repair material or repair material I keep wanting to say gets don’t do that get the the variable and then dot gets because this is we need to get the ingredient we don’t want the supplier

Now forget name we’re gonna do this dog name and forget toughness we’re just gonna do this dot toughness just like last time okay and last thing you need to do is make sure that this is only access to client side otherwise you might have some issues so to do that

Just add add symbol only in and then in some parentheses we want this dot client and make sure that you import dist as well as only in there we go so that’s going to make sure we only access this value client side and now we are actually completely done with our mod

Armor material class and remember that if you want to add new materials here for new armor sets all you have to do is copy this line right here paste it down below change the name of something else like quartz or whatever your new armor set is and then change all of these

Values accordingly as you see fits but yeah that’s it for the the material so now let’s head over to our registry handler class and right below tools we’re gonna make a new section here just called armor and this is same sort of thing like last time just a lot of busy

Work we’re gonna have to make five or sari for armor items each individually and it’s very similar to what we did with the tools and you’ll notice that this class is getting kind of cramped if you feel like you have too many objects in this class feel free to make multiple

Classes for your items you can have a full class dedicated to armor another one two tools I’m just putting them all in one class so you can see them but just know that you’re totally free to do that and it’s actually preferred I think but let’s get started so public static

Final registry objects and again this is going to be parameterized around armor item because it is an armor item and the first room we’re gonna make is our Ruby underscore helmet this is gonna equal items dot register and we’re gonna have to pass in the name just like last time so ruby underscore

Helmet a comma and then a lambda statements with a quick arrow and I’m just going to come down to a second level here just so it stays on screen but we need to create a new armor item and this is gonna pass in three arguments first one is going to be the

Material which is what we just created and we can access that by typing mod armor material dot and then you will see all of your armor materials there for our case we’re using rubies so click Ruby comma and then the next argument is going to be the the slot type so this is

What type of armor piece it is so you can access this by doing equipment slot type equipment slot type dots and you’ll see there’s chest feeds head and leggings as well as main hand and off hand for now we’re going to be focusing on these four so first one is gonna be

Head because we are doing a helmet here and that’s gonna make sure that this piece only is allowed to go in the helmet slot and then the last argument we need to pass in is just like last time our group so new item properties dot group and then we’re just going to set

It to our tutorial tab or whatever your main class and your custom tab is or again I’m just gonna repeat this one more time if you want to do vanilla tabs you can just do item group dot and then access of vanilla tab but I’m gonna do

My custom one all right so this Ruby helmet is done and we just need to do this three more times with the three other armor pieces so let’s copy this paste it below let’s it’s gonna all going to be armor items regardless of what type they are so keep that the same

But we want to change the name here for Ruby helmet to ruby chest plate and then same here change this to chest plate and last thing we need to change is the equipment slot type to chest and then again repeat the same process but four legs so ruby underscore leggings and

Then same here instead of helmet we want leggings and instead of equipments law type dot head we want dots legs and then one final one for the boots change helmet see boots change how many here two boots as well and of course we change head to feet all right so our

Actual items are done now we just need to make the J sons to assign the texture and then add the textures and do bare with me because this is going to be kind of a long process there’s a lot of stuff to go through so first thing we want to

Do come over to your resources folder assets your mod ID and then go to models open that up an open item now this these items are just like regular minecraft items so you can actually just copy your Ruby item Jason and rename it but I did

Include in the description a link to a paste bin that has just you know the JSON so in case you haven’t made an item yet that’s what you can use but I’m just going to copy our Ruby item here Ruby Jason paste it in and just I’m going to name it

Ruby underscore helmet refactor and add and make sure that you change the name here of course from Ruby to ruby underscore helmet and make sure your mod ID is correct as well now we need to do this for pretty much every single armor piece so copy Ruby helmet paste change

It to Ruby chest plate and add and then again change helmet to chest plate and the same thing paste again change it to leggings refactor add and then change helmet to leggings and then final one we have to paste an item and change helmet again to boots your

Factor add and then finally change helmet to boots alright so now we have in our our models Don item we have our Ruby helmet or Ruby chest plate Ruby leggings and Ruby boots all for Jason’s and they should all have their corresponding names all correct

Inside of him ok great so we can close all these files save all now we need to do the textures so there’s two types of textures for our armor I mean come to the desktop here and you’ll see that well we have the regular item pieces

These are what you’re gonna see in your hand and your inventory for like the helmet the chest plate the leggings the boots just standard minecraft items and you can make these just like you’ve made every other regular microphone 16 by 16 the second texture type is going to be the layers now these

Layers are what you see on your character in game when you equip the armor and same with mobs I believe so this is going to follow a very special format that you need to keep pretty much the same otherwise it’s not going to work so or it will look weird pretty

Much so what you can do if you have never worked with these before is you can either get them from the base vanilla minecraft files and just edit them that way or you can come to the description and I’ve got two links one to each imager post that has a a

Template here that basically just outlines what you need to color in and the rest will be transparent so just fill in these blank spots with whatever you want and that will be your armor piece in the game armor layer one is going to be the head chest and boots and

Armor layer two is just going to be the leggings I’m pretty sure that’s the case so yeah in case those are helpful check those and to make sure that all of your Ruby items here are named again exactly the same name that you have here and you

Want this is very important you want your layer one here the one with the helmet and the chest plate and the boots you want to make sure that’s equal to the name that you set in your armor material right here it has to be this name underscore layer underscore one and

Then same thing with this one for the leggings that name you set underscore layer underscore two very very important so once you have these all created go to your microphone a folder tutorial mod source main resources assets tutorial textures items and you want to drag all

Of your item textures in and go back to textures and we want to create a new folder in here in textures and you can do this in IntelliJ if you want and we want to name this folder models and instead of models we’re gonna create another folder called Armour and inside

Of this folder so it’ll be textures models armor you want to drag in your two layers and we can see this in IntelliJ if we come back here let’s go open up textures here so now when we’ve got items we’ve got all of our Ruby items here and then we’ve also got our

New folder called models and we’ve got our Armour folder here and inside of there is our two layers our Ruby layer one and a Ruby layer two alright so those are all done now all we need to do is set the the language so open up your

Lang en underscore Uwe saw JSON and we can just copy one of these items here on a comma and create a new entry item dot the name of your mod ID and then of course the name you sets where is it right here Ruby underscore helmet so Ruby underscore helmet

And of course you want this to be helmet and we can just like literally copy and paste this four times and then change it every time so chest plates hopefully you’re getting used to the rhythm of this it’s pretty much the same process as making any normal item just with a

Few extra steps and then boots and we can change the names as well chest plate review leggings and Ruby boots okay so we can file save all and now if we run the game we should see our custom armor set inside the game alright so we’re inside of the game now

And we can go to our creative inventory go to our custom tab and there are items our Ruby helmets Ruby chest plate Ruby leggings and a ruby boots and we can go to a survival mode here game mode of survival and we can put on these items

Just like any regular item and I don’t know if you can hear the sound let’s turn it up a little bit just in case you can but if you equip this armor piece there should be a noise hopefully you heard it if not I’m not too big of a

Deal but it should be working fine the noise and as you can see we do have a the exact amount of armor slot pieces above our our health bar here that we set in the the code so it is working perfectly and we can test it out really

Quickly by just spawning a spider here I’m just having an attack us a few times and you can see it is definitely protecting us as much as say you know an armor an iron armor set wood so that is working great and I can just kill the

Spider a must when you want to test is our armors a little bit damaged here we can take it off go to a an oval here put one of our pieces in and if we put some rubies in you can see that we can repair our armor with the rubies so just like

Vanilla mechanics you have a custom armor set now really quickly before the video ends I just wanted to mention that I will be linking another MC creator wiki article in the description I know we’re not using MC creator but this wiki just like with tools is so helpful

Because it really shows all the parameters in one place and gives you some foundational knowledge so I highly recommend checking if you were a little confused when you were trying to make your mod armour material type alright so that’s gonna do it for this video thanks guys so much for watching I

Hope you learned a lot about armor sets and I will see you guys in the next episode

This video, titled ‘Minecraft 1.15.2: Forge Modding Tutorial – Custom Armor (#8)’, was uploaded by TechnoVision on 2020-07-09 23:40:17. It has garnered 18330 views and 649 likes. The duration of the video is 00:29:50 or 1790 seconds.

Learn to code a Minecraft mod from scratch in this complete tutorial series! In this episode, we create a custom armor set, each with some unique material properties.

— Important Links —

● Armor Item JSON: https://pastebin.com/cgjqrfSy ● Armor Layer 1: https://imgur.com/a/sxoYnc3 ● Armor Layer 2: https://imgur.com/a/GAxwBha ● Armor Properties: https://mcreator.net/wiki/how-make-armor

● Discord: https://discord.gg/ZsB3Eha ● GitHub Repository: https://github.com/TechnoVisionDev/Minecraft-1.15.2-Modding-Tutorial.git

— Music —

● Chill Out Media – Minute Mix

— My Channel —

● Subscribe: http://tinyurl.com/zbc7mwy ● Instagram: https://www.instagram.com/tomm.peters ● Twitter: https://twitter.com/TechnoVisionTV

#minecraft #modding #tutorial

  • Crafting Fireworks: Minecraft’s Explosive Delight!

    Crafting Fireworks: Minecraft's Explosive Delight! In Minecraft, fireworks can be a delight, Craft them with gunpowder and colors so bright. Customize your rockets with stars in hand, Upgrade for longer flights, across the land. Choose any dye, make them your own, Craft with care, let your creativity be shown. Launch them high, watch them soar, In the sky, a spectacle to adore. So there you have it, the secret’s out, Making fireworks in Minecraft, there’s no doubt. With colors and stars, let your imagination take flight, In this blocky world, where everything’s just right. Read More

  • Herobrine’s Creepy Minecraft Encounter

    Herobrine's Creepy Minecraft Encounter The Terrifying World of Minecraft Mods Exploring the vast world of Minecraft can be an exhilarating experience, but for those brave enough to delve into the realm of mods, a whole new level of terror awaits. One such mod that has been sending shivers down players’ spines is the terrifying horror mod that introduces Herobrine and the Cave Dweller. Herobrine: The Mysterious Entity Herobrine is a legendary figure in the Minecraft community, often described as a ghostly presence that haunts players in the game. With his glowing white eyes and eerie demeanor, encountering Herobrine can send chills down even… Read More

  • Can Knarfy Break Minecraft’s Potato Update?

    Can Knarfy Break Minecraft's Potato Update? Minecraft’s Poisonous Potato Update: A Chaos Trip Introduction Minecraft’s April Fool’s update this year introduced the Poisonous Potato update, bringing a whole new level of chaos to the game. The update centered around Poisonous Potatoes, adding a quirky twist to the gameplay. Exploring the Update The update featured a variety of new elements, including Poisonous Potato blocks, toxic mobs, and unique items like the Potatish Great Staff of the Peasant. Players could venture into the Potato dimension, encountering potato-themed structures and creatures. Breaking the Game In an attempt to push the update to its limits, our protagonist embarked on… Read More

  • Craft a Pickaxe Quick & Slick: Minecraft’s Trick

    Craft a Pickaxe Quick & Slick: Minecraft's Trick In the world of Minecraft, where creativity thrives, Crafting a pickaxe is how a player survives. Gather some sticks and materials strong, To make a tool that will last long. Wood, stone, iron, or diamond so rare, Each pickaxe has its own flair. For Netherite, use a Smithing Table with care, To create a pickaxe beyond compare. So follow these steps, don’t be shy, Craft your pickaxe and reach for the sky. In the world of Minecraft, where adventures unfold, Your pickaxe will be worth its weight in gold. Read More

  • Block-breaking Shenanigans: Minecraft Episode 1

    Block-breaking Shenanigans: Minecraft Episode 1 Minecraft One Block Series: A Thrilling Adventure Begins! Welcome to Livestargamingz’s Minecraft One Block series Episode 1! Join the excitement as the journey unfolds in this thrilling gameplay. Dive into the world of survival, resource gathering, and exploration as Livestargamingz takes on the challenge of surviving in a single block environment. Key Points: Survival one block map Minecraft one block challenge Exciting gameplay elements Resource gathering and crafting Exploring the One Block World: In this episode, Livestargamingz embarks on a quest to mine blocks and expand the limited space available. With the appearance of pig spawns, the challenge intensifies… Read More

  • Ultimate Minecraft Power Punch!

    Ultimate Minecraft Power Punch! Minecraft: The Journey – Exploring Bow Enchantments In the latest episode of Minecraft: The Journey, bugmancx delves into the world of bow enchantments. From Power to Flame, Punch, and Infinity, the new enchantments offer exciting possibilities for survival in the game. Power V, Flame I, Punch II, and Infinity I Bugmancx crafts multiple bows and heads to the enchanting table to discover the enchantments awaiting him. With Power V, Flame I, Punch II, and Infinity I, he creates the ultimate bow for his adventures. The combination of these enchantments provides him with a powerful weapon to combat the mobs… Read More

  • Uncover the Hidden Thrills of Minewind Minecraft Server!

    Uncover the Hidden Thrills of Minewind Minecraft Server! Welcome to NewsMinecraft.com! Are you a fan of thrilling Minecraft adventures? Do you enjoy exploring new mods and experiencing heart-pounding gameplay? If so, you need to check out Minewind Minecraft Server. With an IP address of YT.MINEWIND.NET, Minewind offers a unique and exciting gaming experience that will keep you on the edge of your seat. Imagine delving into a world filled with mystery and danger, just like the YouTuber in the video “I NEVER Knew It Was There !!! #Minecraft #mod #modded #new #gaming #funny #scary #stalked.” With a variety of mods and gameplay options, Minewind provides endless opportunities… Read More

  • Join Minewind Minecraft Server for Epic Battles like Gojo vs Sukuna!

    Join Minewind Minecraft Server for Epic Battles like Gojo vs Sukuna! Are you a fan of intense gaming showdowns like Gojo vs Sukuna in Minecraft? If so, you need to join the Minewind Minecraft Server for an experience like no other. With a vibrant community of players and endless possibilities for adventure, Minewind is the perfect place to test your skills and immerse yourself in the world of Minecraft. Join us today at YT.MINEWIND.NET and see what all the excitement is about. Subscribe now and let the gaming fun begin! #minecraft #gaming #playgame #player #minecraftserver #adventure #community #subscribe #minewind Read More

  • Unleash Your Inner Superhero on Minewind Server!

    Unleash Your Inner Superhero on Minewind Server! Are you a fan of Minecraft and superhero adventures? If so, you’ll love the action-packed world of Minewind Minecraft Server. Join a community of players who are as creative and daring as the superheroes in the YouTube video “J’ai Construit une BASE SECRÈTE de SUPER-HÉROS pour Me Cacher De MES AMIES sur Minecraft!” Immerse yourself in a thrilling virtual world where you can build secret bases, explore hidden treasures, and embark on epic quests. Experience the excitement of Minewind server by connecting to YT.MINEWIND.NET. Dive into a modern, upbeat, and dynamic Minecraft server where the possibilities are endless. Join… Read More

  • Join Minewind Server for Ultimate Minecraft Survival!

    Join Minewind Server for Ultimate Minecraft Survival! Welcome to NewsMinecraft.com! Are you a fan of Minecraft house tutorials like the one you just watched? If so, you’ll love the Minewind Minecraft Server. Join a vibrant community of players who share your passion for building, survival, and creativity. Experience the thrill of crafting your own unique structures, exploring new worlds, and collaborating with fellow gamers. Whether you’re a seasoned player or just starting out, Minewind offers something for everyone. Ready to dive in? Simply enter the server IP: YT.MINEWIND.NET in your Minecraft client and start your adventure today. Don’t miss out on the fun – join Minewind… Read More

  • INSANE!!! EP9 KeraZ EXPLORES Nether & End – Minecraft Hardcore

    INSANE!!! EP9 KeraZ EXPLORES Nether & End - Minecraft HardcoreVideo Information in the last episode we’ve got these totems of undying we also have few more but this episode I was thinking of I actually don’t know we’re just going to play and kind of see what happens cuz I have no idea before I start press the record button of what to do so yeah first we have we still have hero The Village from last episode when we did the raid and go the totems so we should get some trees right here oh my I L should get these trees right here I love flying elro… Read More

  • “EPIC SURVIVAL SERVER 🔥 N21 DESTROYS MONSTERS IN FARLIGHT 84” #shorts #minecraftlive

    "EPIC SURVIVAL SERVER 🔥 N21 DESTROYS MONSTERS IN FARLIGHT 84" #shorts #minecraftliveVideo Information [संगीत] आ [संगीत] और [संगीत] [संगीत] और [संगीत] हम [संगीत] बा आपको रजिस्टर करना पड़ेगा न कर जी आई एस रजिस्टर उसके बाद कुछ भी अपना पासवर्ड रख देना जसे मैं हेलो हेलो सा वेलकम स्म थक य सबिंग हैंग कि हेलो थक यर सब्सक्राइब जो देख रहे हो फटाफट लाइक करके थोड़ा सपोर्ट कर देना जो जो जॉइन होना चाहते हो आईपी कॉपी पेस्ट करके जवाइन हो जाना और डिस्ड का लिंक भी है तुम डिस्ड में भी जवाइन हो सकते हो ये लोग कालू हा क्यों नहीं दो तीन दिन से ठंड के वजह से उना… Read More

  • EPIC Job Change Quest in Minecraft! – Gingershadow Solo Mod Ep 5

    EPIC Job Change Quest in Minecraft! - Gingershadow Solo Mod Ep 5Video Information you get the Eris beat down from episode 11 trust me I know I’d get my but I’d still want to run the ones all right well here join the guild I’ll help you get the quest so we can all go this this guy this this guy this guy wants me to join this Quest so badly it’s the scaled so badly it’s crazy yeah so all work together look I’m like a I’m like a I’m like a private contct ctor right you can you can hire you literally get paid being in the guilds and… Read More

  • Minecraft: Herobrine transforms cow into a beautiful maiden!

    Minecraft: Herobrine transforms cow into a beautiful maiden!Video Information This video, titled ‘Herobrine turned cow into a Girl – Monster School Minecraft Animation #minecraft #shorts’, was uploaded by SHXDOW GAMING on 2024-02-10 01:59:00. It has garnered views and [vid_likes] likes. The duration of the video is or seconds. Read More

  • Ultimate Egg Wars Strategy Revealed! | MineBlox Episode 1

    Ultimate Egg Wars Strategy Revealed! | MineBlox Episode 1Video Information I’m back I’m back guys [Applause] okay oh chill [Music] chill [Music] what [Music] oh Ready 2 one oh oh oh oh oh chill oh chill oh chill oh chill yes one that’s not don’t [Music] know oh chill oh chill oh Chill by by by by by [Music] oh you are going to die I going to die I going to die I [Music] [Music] wait pause pause I can’t run okay last [Music] one wait wait wait xtag bro chill okay [Music] sh he three two one oh chill okay okay okay okay chill chill oh… Read More

  • APHMAU STRUGGLES AT 3AM – RosePies Minecraft Madness!

    APHMAU STRUGGLES AT 3AM - RosePies Minecraft Madness!Video Information what is this oh no look the have my own Aon need help guys please help me like the video subscribe the channel and I help the ELO and Aon I’m coming I’m coming no problem no problem F and Aaron okay okay open chest nice very good gun very good guns okay okay Alo and Aon I’m coming I’m coming no problem guys please like the video like the video okay what what is this oh no she give the tallet okay okay okay nice very good very good guys very good very good congratulations ah congratulations… Read More

  • CoronaCraft Survival SMP Semi-Vanilla 18+ Dynmap Discord 1.20.4 Whitelisted Voice Chat

    CoronaCraft SMP Community Join our community-based SMP with over 100 members worldwide! We welcome all players to our diverse and inclusive server. Why Join Us? Content creator and technical player friendly Existing server running for almost 4 years Custom Advancements, Shopping District, and more Regular server events, giveaways, and community projects 24/7 server uptime with plugins for security Ready to Play? Visit our website here or join our Discord here. See you in-game! Read More

  • ShlonkMC

    ShlonkMCShlonkMCA player run SMP with elected leaders, who adopt the server rules and manage the server.Engage in Politics, Economies and War.Build a city, open a shop or join a nationFind out more about the server through our discord:ShlonkMC Discord (Link)Apply to join the server here:ShlonkMC Application Form (Link)To join the server you must apply using the link above.If you apply, your application will be reviewed by a commitee of players, and if accepted we will contact you and whitelist you.If you have any questions, please DM me on discord at the9fed Read More

  • Minecraft Memes – Minecraft Memes: We get it, move on

    Minecraft Memes - Minecraft Memes: We get it, move onWow, this meme really needs to calm down before it starts demanding a higher score like a diva! Read More

  • Hot Minecraft Shenanigans 🔥

    Hot Minecraft Shenanigans 🔥 “Why did the creeper break up with his girlfriend? Because she couldn’t handle his explosive personality!” #minecraft #minecraftshorts #minecraftmemes #memes #meme #memesdaily Read More

  • Experience the Thrills of Attack on Titan in Minewind Minecraft Server

    Experience the Thrills of Attack on Titan in Minewind Minecraft Server Welcome to Newsminecraft.com, where we bring you the latest and most exciting news from the Minecraft community. Today, we want to talk about an incredible video that showcases the Attack on Titan mod in Minecraft. The video titled “ATTACK ON TITAN IN MINECRAFT 1.20.5 | Shingeki no Craft | Fanfo” is a true masterpiece that brings the popular anime to life in the Minecraft world. While watching this video, you can’t help but be amazed by the attention to detail and the creativity that went into creating this mod. From the villages walls to the custom names of the… Read More

  • Crafting a Spooky Tree in Minecraft

    Crafting a Spooky Tree in Minecraft Building a Spooky Tree in Minecraft Are you ready to add a touch of spookiness to your Minecraft world? Follow along as MegRae_MC takes us through a tutorial on how to build a spooky tree that will give you chills! Getting Started The tutorial kicks off with MegRae_MC guiding viewers through the process of building the base of the spooky tree. Using various blocks and techniques, she demonstrates how to create a twisted and eerie trunk that sets the tone for the entire build. Adding Texture As the tutorial progresses, MegRae_MC shows viewers how to add texture to the… Read More

  • INSANE MINECRAFT ADVENTURE: Chilling in The Burger SMP

    INSANE MINECRAFT ADVENTURE: Chilling in The Burger SMPVideo Information This video, titled ‘chilling in Minecraft (The Burger SMP)’, was uploaded by link1253 on 2024-04-19 23:59:50. It has garnered 303 views and 2 likes. The duration of the video is 02:02:55 or 7375 seconds. I don’t know what I am doing here sooooo let’s see where this goes….Subscribe Like and share if you like horror games 🙂 if you want to donate here https://streamlabs.com/link1253link It is Appreciated here is my discord server for anyone https://discord.gg/7EPjn5BMrA here is the Dark Link Alliance server join this at https://discord.gg/snCbGnTc Read More

  • The Ultimate Pokemon Adventure

    The Ultimate Pokemon AdventureVideo Information This video, titled ‘Roblox and Minecraft’, was uploaded by PokéMomma & PokéSister on 2024-02-17 05:49:03. It has garnered 65 views and 1 likes. The duration of the video is 04:50:52 or 17452 seconds. Who knows join our discord server here https://discord.gg/zxczyJKUhR Read More

  • Spaceantiquity – Tiny Secret Pool Discovery!

    Spaceantiquity - Tiny Secret Pool Discovery!Video Information This video, titled ‘SMALLEST MINECRAFT POOL’, was uploaded by Spaceantiquity on 2024-01-11 12:00:07. It has garnered 394837 views and 42369 likes. The duration of the video is 00:00:52 or 52 seconds. Thank you for watching this Minecraft video, if You enjoyed the video make sure to leave a like and subscribe, it doesn’t take a lot of effort for you and it helps me a lot 🙂 ↓↓↓↓ FOLLOW ME EVERYWHERE ↓ ↓ ↓ ►TWITCH: https://www.twitch.tv/spaceantiquity ► INSTAGRAM: https://www.instagram.com/spaceantiquity/ ► MY DISCORD: https://discord.gg/UVaw9tMvBH SpaceAntiquity does another Minecraft challenge, a Minecraft, But challenge, but not Minecraft, But You Can’t… Read More

  • Insane Treasure Seed in Minecraft 1.20!

    Insane Treasure Seed in Minecraft 1.20!Video Information This video, titled ‘MINECRAFT 1.20 – SEED LOTADA DE TESOUROS NO SPAWN PARA COMEÇAR A JOGAR (MCPE, Xbox, Playstation, PC)’, was uploaded by Hey Vordex on 2024-03-10 21:15:01. It has garnered 13924 views and 994 likes. The duration of the video is 00:11:22 or 682 seconds. Hey guys! In this video you will see a great seed with lots of treasures at the spawn point to play in the new Minecraft 1.20 update – Trails and Tales. Seed: 17796549881887457 #Minecraft Our social networks: https://www.instagram.com/rennanvordex https://www.instagram.com/ronnanvordex Follow us on our other social networks: ➡ https://www.instagram.com/heyvordex/ ➡ https://twitter.com/HeyVordex So, did… Read More

  • Minecraft’s Insane Orbital Spider Adventure!

    Minecraft's Insane Orbital Spider Adventure!Video Information This video, titled ‘New beginnings with a new game!! | MINECRAFT – 01’, was uploaded by Orbital Spider on 2024-04-03 18:47:34. It has garnered 103 views and 5 likes. The duration of the video is 00:38:25 or 2305 seconds. Heyyyo! Im back, and I’m starting my comback with the game that made the biggest comback of all – Minecraft!! Forgot to do a proper outro for this video (guess it’ll take some getting used to again lol) so I’m gonna add that if you like the video, you know what to do and I’ll see you very soon…. Read More

  • “Insane MC School Pranks! Hilarious Minecraft Animation” #clickbait #shorts

    "Insane MC School Pranks! Hilarious Minecraft Animation" #clickbait #shortsVideo Information This video, titled ‘monster school Mischief in school life minecraft animation #minecraft #animation #viral #shorts’, was uploaded by Sqisik MC on 2024-01-03 12:10:00. It has garnered 7217 views and 374 likes. The duration of the video is 00:00:54 or 54 seconds. Read More

  • Ruski Exposed! Is he insane?? #minecraft

    Ruski Exposed! Is he insane?? #minecraftVideo Information This video, titled ‘Is he crazy for saying this?? #minecraft #smp #crazy #stream #dream’, was uploaded by Ruski on 2024-04-13 22:26:07. It has garnered 418 views and 5 likes. The duration of the video is 00:00:20 or 20 seconds. Read More

  • Cataclysm BOSS Takeover in SteamPunk Minecraft EP32!

    Cataclysm BOSS Takeover in SteamPunk Minecraft EP32!Video Information This video, titled ‘SteamPunk Minecraft Modpack EP32 I’m the Cataclysm BOSS Now!’, was uploaded by ChosenArchitect on 2024-04-23 16:00:34. It has garnered 16530 views and 926 likes. The duration of the video is 00:31:30 or 1890 seconds. Welcome to SteamPunk which offers a captivating Minecraft modpack experience, boasting a range of features to enhance gameplay. Explore new biomes, structures, and dungeons in a meticulously crafted world, with fortified strongholds awaiting conquest. Encounter never-before-seen bosses and mobs, and master diverse skills, magic, and technologies. With immersive visuals and innovative game mechanics, including built-in shaders and new dimensions to explore,… Read More

  • Insane Minecraft TADC Drawing Challenge (Episode 4)

    Insane Minecraft TADC Drawing Challenge (Episode 4)Video Information This video, titled ‘TADC, but I draw it in the MINECRAFT style (episode 4)’, was uploaded by Caivig on 2024-02-14 19:46:30. It has garnered 909 views and 1 likes. The duration of the video is 00:08:42 or 522 seconds. Thank you so much for watching, you can watch even more interesting videos here – https://www.youtube.com/playlist?list=PLbyAZN3NXCU4hRqYqNB9vM4usKxeKKVnG Hello, friends! I Caivig! I create funny videos with different characters. My channel differs from similar ones in that I create videos with a special approach: first, using Adobe After Animate, I draw characters and various elements, and then Adobe After Effects, animate… Read More

  • PremiumMC.Net

    PremiumMC.NetName: PremiumMC Server IP: PremiumMC.Net Version: 1.16.5 Discord Link: https://discord.com/invite/4U837tqs2u Who Are We?     We are PremiumMC! Our server brings alot to the table. We offer Towny with many different plugins to make it a unique experience for everyone! Make new friends here in our server, all of our members are friendly and love to meet new people. Lots to explore with over 220 new custom enchantments that bring in a whole different type of pvping. Get Legendary Loot from beating our custom dungeons with custom Bosses. Be inspired by our community builds and take part yourself and meet new friends… Read More

  • ProsperGaming SMP | Vanilla 1.20.4 | SMP | DiscordSRV | Dynmap | Streamer SMP | Voice Plugin | No Whitelist | Inspired by Hermitcraft | Coreprotect | Age Limit 16+ | Crossplay Enabled | Java & Bedrock

    Welcome to our Minecraft SMP Server! We have created a thriving Minecraft vanilla SMP server within our gaming discord community. Join us for regular streams, roleplay, major build projects, and a welcoming community. Seeking Builders and Players If you enjoy being part of a fun, chill, and active community similar to hermitcraft, then this server is for you! Show off your building skills and your creations may even be featured in our next season’s trailer. Rules and Guidelines We keep things simple – just be mature and respectful towards others. We do not tolerate disruptive behavior. Our server is mostly… Read More

  • World of Life and War

    World of Life and WarLife and War is a multiplayer server owned by the YouTuber MATTCASTGAMING where you can fight in wars, protect the leader of your nation, or join the simple way of life and become a farmer, own a shop or even pizzeria! Work hard and maybe even buy a mansion! We have awesome mods for the server and even sports cars! Join the discord for the extra mods to join!Life and War YouTube Read More

  • Minecraft Memes – “Warning: Do NOT Open – Highly Spicy!”

    I guess clicking that link is like playing Russian roulette with your Minecraft game! Read More

  • YASIN CRAFT: The Hottest Minecraft Memes🔥

    YASIN CRAFT: The Hottest Minecraft Memes🔥 “When you spend hours building an epic castle in Minecraft, only to realize you forgot to put a door on it and now you’re stuck inside like a clueless Sim.” #minecraftproblems 😂🏰🚪 Read More

  • Indian Bikes Driving 3D Gameplay Update

    Indian Bikes Driving 3D Gameplay Update Minecraft Mode Big Update in Indian Bikes Driving 3D Gameplay Exciting news for Minecraft fans! The popular game is getting a big update that will introduce new features and enhance the overall gaming experience. But that’s not all – this update will also bring a unique twist by incorporating Indian bikes driving in 3D gameplay. Let’s dive into the details of this upcoming update! New Features and Enhancements The Minecraft update promises to deliver a host of new features that will keep players engaged and entertained for hours on end. From new biomes and creatures to enhanced graphics and… Read More

  • Join Minewind Minecraft Server for the Ultimate Survival Challenge!

    Join Minewind Minecraft Server for the Ultimate Survival Challenge! Welcome to NewsMinecraft.com! Are you a fan of challenging yourself in Minecraft like Raido Gamerz? If so, you’ll love the Minewind server. Imagine surviving not just 100, but 150 days in a world full of surprises and adventures. Join a community of dedicated players who push the limits of what’s possible in Minecraft. Experience the thrill of exploring new lands, battling fierce mobs, and building your own unique creations. Connect with fellow gamers on Minewind without any limits or boundaries. The possibilities are endless, just like Raido Gamerz’s 150-day survival journey. Ready to take on the challenge? Join us… Read More

  • EPIC Minecraft 1.21 Update Features!

    EPIC Minecraft 1.21 Update Features! Welcome to the Minecraft 1.21 Update Review! Welcome to our comprehensive review of the Minecraft 1.21 Update! Get ready to dive into the exciting new features, enhancements, and changes that this latest release brings to the beloved sandbox game. Exploring the New Features In this video, we take a close look at all the additions and improvements introduced in Minecraft 1.21. From new mobs and blocks to gameplay tweaks and optimizations, we’ve got you covered with everything you need to know about this update. New Additions One of the highlights of the Minecraft 1.21 Update is the introduction of… Read More

TechnoVision – Minecraft 1.15.2: Forge Modding Tutorial – Custom Armor (#8)