Minecraft Modding Tutorial 1.18 | #2 – Blocks + Items

Video Information

Hello and welcome back to another tutorial today we’re going to be creating basic blocks and items as well as the creative tab and looking at tags and jsons let’s start by finishing up our main class so that we can start work on our blocks and items so the first

Thing we’re going to do is make a variable for the mod ids that we can access that from anywhere so let’s create a public so it could be access from anywhere static final string mod id and this is going to be equal to tutorial mod and this has to be

The same thing that you set up here so now whenever we want our mod id we can just get it from the main class next i just want to quickly make a creative tab to put all of my stuff in so let’s create a public static final

Creative mode tab and this is going to be called tutorial tab and let’s set this equal to a new creative mode tab and you can see this is going to give us an error so let’s hover over this and add a string argument and this

Is going to be our creative tab id i’m just going to put mod id because i’m only going to have one creative tab but you want this to be different every time you make a creative tab for the icon we’re going to have to create an item

First but i’m going to put at only in open this and write dist dot client if you have an import area you can now press ctrl shift o to import everything if you want to create another creative tab you can just copy and paste this down here change this name to like

Tutorial blocks or something and then you’re going to want to add something to the id because you don’t want these two ids to be the same but i’m going to delete that and now we can start work on our items so in our com.cy4.tutorial mod we’re going to

Right click on that go to new and click package and i’m going to write dot and then init and press finish and this is going to create a new init package now let’s right click on that and create a new class called item init and in here we’re going to create all

The items for our mod so next we’re going to need to create something called a deferred register and this is a register that just holds all of the items that we have in our mod and this is once again going to be public static and final so we need a deferred register

And you can press ctrl space to bring up the search window and if you press enter you’ll see that it defaults to something like this we can replace this with item because we’re going to be registering items let’s name the register items and let’s set it equal to deferred register

And then we can delete all this stuff dot create and then we want to select the second one over here and the first thing this is going to take is forge of registries dot items so we know that it’s an item registry and the next thing is going to be the

Mod id variable that we set before so let’s do tutorial mod which is the main class dot mod id and you can see that this isn’t imported so we can press ctrl shift o to import item and then select net.minecraft world item item and there we go next let’s create a function which

Will register our item so this is going to be private because we only need this in this class and it’s going to be static and we’re going to say that the t has to extend item and then we can press ctrl space and type registry object of t

So what’s happening here is that this method will have to return a registry object of something that extends item and now we can type register and in here we’re going to pass in a final string name which is going to be the name of the item and a final

Supplier of t called item and all we have to do in here is return items dot register name and item so now we can make our example item let’s create a public static final registry object of item and this is going to be called an example item and let’s set this to

Register the name for our item so this is going to be lowercase and we’re not gonna have spaces we’re just gonna have tabs let’s add a semicolon here and then we need a supplier for our item and to make a supply we can add brackets and

Then an arrow and then here we want to create a new item and this needs properties so we can hover over this and add our property to do that let’s create a new item dot properties and this is going to be the properties for our items

So after this we can add a dot and then add different properties so we can say no repair we can give it a rarity we can make it fire resistance we can add durability but the thing i’m going to do is do tab to add it to a creative tab

And then i’m going to select tutorial mod dot tutorial tab which is the tab that we created before so next in our tutorial mod i’m going to create an icon so i’m going to return a new item stack of item init dot example item dot get so

Now the icon for our creative tab is going to be the item and what we’re doing here is we’re getting the item which is a registry object of item and then we can get dot get which is actually returning the item variable and then we’re creating a new item stack

And passing it into the tab next we need to register our item init and for that we’re going to needs the mod event bus to do that let’s create an i event bus called bus and this is going to be equal to fml java mod loading context and you

Can press ctrl space dot get dot get mod event bus then we can do item init dot items so the deferred register and then we can register that to the bus and there we go now all the items will load into the game next we need to

Create textures and models for that item so in our source main resources let’s create a new package called assets dot and then your mod id so tutorial mod and in a couple of episodes i’ll show you how to automate all these jsons but for now we’re going to create them manually

So in here let’s create a new package called dot lang another new package called dot models dot item another new package called dot models dot block then another new package called dot textures dot item and a package called dot textures dot block and finally we’re going to add

One more package called dot block states there we go so let’s start off with the lang in here let’s create a new file called en underscore us dot json and this is the file which is going to give our item its name so let’s open brackets like this press

Tab and in here we’re going to do item dot tutorial mod so our mod id dot example item and this example item is the same as the one we put in the register function colon then more of these and then the name of our item so it’s going to be example

Item and that’s it for our lang file next let’s create the item model so under the models item let’s create a new file and this is going to be called example underscore item so it has to have that same name that we used in the register dot json

And then we’re going to once again open these and here we’re going to set a parent and this is the parent item model and this is just going to be item slash generated which is the standard item model next we need to give it a texture

To use so let’s create a new thing called textures and open brackets once again and we need a layer 0 which is the main texture and then we need to pass in a path for that texture and this is going to be tutorial mod colon item slash example item and

This is just going to pick the example item texture that’s going to be located in textures.item over here so now we just need to add that item texture so here i’ve created our example item texture and this is a png file and it is 16 by 16 which is the standard dimension in

Minecraft you can make 32 by 32 but that is wrong and i’m not doing that so i’m just going to drag this file into our textures.item folder and click ok and there we go so now if we run the game and you can see that we have another creative tab

That isn’t actually named so we need to fix that but we have our example item now let’s fix the creative tab and start work on the block so to fix that we’re going to add a comma here and create a new thing called item group dot tutorial

Mod which is the id that we set in our creative mode tab and we’re going to set this equal to tutorial mod tab and that is it now let’s start work on the block in our init package let’s create a new class called block init and we’re going to go

To our item init and we’re going to copy the deferred register and let’s change the item to block the items to blocks and the items over here to blocks then we can press ctrl shift o to import net.minecraft.world.level.block.block next i want to get the deferred register

Of the items as well so let’s copy paste this start bit change the block to items change this to items and set it equal to item init dot item press ctrl shift o and import item and this is going to let let us register both blocks and items for our

Blocks in one class next let’s create a couple of functions let’s go to our item init and copy paste this over here and we’re going to change this item to a block and change this to blocks as well and we’re going to call this register block then we’re going to copy this and

Put it below and we’re going to change the register block to just register and we’re going to change a couple of things up we need to change this in our register block to something that extends t and we need to rename this to block like so then in

Here we need the the exact same thing with block and this is going to be a function of registry object of t and so we need to put a comma here supplier of something that extends item and this is going to be our item let’s press ctrl shift o to import java.util.function.function

Then we can remove this and we can say a registry object of t which is our object is going to be equal to register block of the name and the block then we do items dot register the name and item dot apply the block and then

We’re going to return obj and what this is going to do is register our block with the name of the block and register an item based on the block that is given now we can create a block so let’s create a public static final registry object of block and this is

Going to be our example block is equal to so we can either call register block if we don’t want to have an item associated with it or register if we do so i want an item so i’m going to use register and this is going to need the name once

Again so example block then we need a supplier for the blocks let’s create a new block like so and then we need to add an argument for the properties and inside the block we’re going to create a block behavior dot properties dot of and then we pass

In a material so i’m going to use material.metal because i’m going to have a metal block and a material color this is the color that will show up on the map so i’m going to set this to purple and that’s actually it now we need a

Function for the item so as you can see over here this function first takes a registry object for the block so let’s call this object and we’re going to create a function like so and this function is going to create a new item for that block and in here we’re going

To pass in new item dot properties like we did before and then this is the same thing as before so i’m going to set a tab for tutorial mod dot tutorial tab but this actually has to be a supplier so we need to add another one of these so now what

We’re doing is creating a block with this name then we’re giving it a block with a material of metal and a purple color on the map and then we’re saying that we’re going to create a new item over here which is going to be in our tutorial tab now we

Need to register our block in it and we want to make sure to do this after the items so let’s go to tutorial mod and under here all we have to do is add block init dot blocks dot register bus like so then we can save that and start

Making the jsons and the block is going to have a couple more jsons than before so let’s create our block state in our block states package let’s create a new file this is going to be called example block so the name we set before dot json let’s open some brackets and what the

Block state does is it chooses between different models based on the state of the block so let’s create a new thing called variance which is going to be a list of all the possible models so in our variance we can do any block state so this is for any different state of

The block we’re going to use the same model and that model is going to be tutorial mod colon block slash example block which is going to reference a model in our models dot block package now let’s create our models dot block so in models block let’s create a new file

And this is going to be called exampleblock.json and this is our block model so once again let’s open brackets and there’s a lot of different things you can do i recommend checking the minecraft wiki but we’re going to give this a parent which is going to be block slash cube

Underscore all which means all the textures are going to be the same on every side of the cube next let’s add the textures just like we did in our item model and instead of using a layered zero here we’re going to have all so all of the sides are going to

Have the texture tutorial mod colon block slash example block which is now going to reference the texture in our textures.block package and before we put the texture in let’s now edit our en dot u s dot json and in here we’re going to use block dot tutorial mod dot example block

Is going to have the name example block and there we go i’ve created our example block texture which is also 16 by 16 and you can see it over here so let’s drag that into our textures.block and there we go however before i can do

That i need to add a couple more stuff to the block so in our source main resources we’re going to create a new package and this is going to be data dot tutorial mod so here we have our texture pack and also we have over here a data pack in

Here let’s create a new package called loot underscore tables dot blocks and this has to be plural and in here let’s create a new file called example block dot json and we want to just make sure that it drops the default block when it’s mined so let’s create a type and

This is going to be of type minecraft colon block and then we have pools and this is going to be a list so we use square brackets and then we’re going to have one singular pool so let’s just open more brackets and this pool is only

Going to have one roll so let’s do rolls colon 1.0 comma and then we need the entries for this roll so let’s add another list and in here we only have one singular entry and this is going to be a type of minecraft colon item so we’re going to drop an item with

The name of tutorial mod colon example block so we would just want to drop our example block when it is mined and there we go that’s our loop table back in our block in it let’s give it a strength so after we set the color dot to purple

We can add a dot and then we can give it a bunch of different stuff we can make it emit light we can make it have no collision etc i’ll cover this in detail in the next episodes but we’re going to do dot strength and this is going to be its

Blast resistance and how difficult it is to mine i’m going to set this to 3.0 f but you can play around with this number if you’d like to let’s also give this a sound type so let’s do sound type dot metal and this is just some basic stuff that

We can do once again i’ll be covering more of this in the next episode once again in our data package let’s create a new package and then we’re going to delete everything up until data and here we’re going to do data dot minecraft because what we want to do is

Edit the tags for which blocks are minimal with an x and which are minimal with a pickaxe so let’s do data.minecraft.tags.blocks and press enter in here let’s create a new package called dot minable and in here we’re going to create a new file called pickaxe

Top jason and you can change this to ho axe or shovel but i’m just going to leave this as pickaxe and we want to set replace to false because we want to keep all the vanilla stuff that’s in the game already then let’s add our values and

This is going to be a list so let’s put in some value i’m going to add our tutorial mod example block and if you want to add more values you can just add a comma and add more lines like so but i only have one block so i’m just going to leave

This for now so now our block is only minable with a pickaxe and you can do the exact same thing for different tools you just have to rename the file over here and we made a small mistake in the block init class this item actually needs to be a block item

So let’s press ctrl shift o to import that and before the item.properties we need to add the block which is going to be object dot get like so and finally we need to create an item model for our block as well so that knows how to render in the inventory so

Let’s create a new file called example block dot json and this is going to be a bit shorter than the item model for an item because all it’s going to have is the parent for our block model so our parent is tutorial mod colon block slash example block so that’s just

Going to set our item model to be the same as our block model and in our block init i’m going to add dot requires correct tool for drops and then to set the mining level in our data we’re going to create a new file and we’re going to

Click on blocks and call this needs iron tool dot json and you can set this to whatever you want so needs diamond tool or needs stone tool but i’m just going to copy everything from our pickaxe.json and paste it in here and that is it now

We can run the game and in the game we can see that we have our example block and you can mine it with a pickaxe but if you mine it with an axe it won’t actually drop and the same goes for stone tools there you go that’s going to do it for

This video if you need any help join the discord the link is in the description along with the source code and textures used in this video in the next episode we’re going to cover advanced blocks and items so that’s custom classes for the blocks and the items as well as block

Properties and block states thank you for watching and i’ll see you next time

This video, titled ‘Minecraft Modding Tutorial 1.18 | #2 – Blocks + Items’, was uploaded by Cy4’s Modding on 2022-01-03 12:50:01. It has garnered 51567 views and 1156 likes. The duration of the video is 00:20:47 or 1247 seconds.

Hallo! Blocks, Items, Creative Tabs, JSONS, Textures, Tags…. wow. xD

(ɔ◔‿◔)ɔ ♥ ~ expand me

C://Help/ Discord: https://discord.gg/x9Mj63m4QG Or comment on this video!

C://Source_Code/ https://github.com/Cy4Shot/Modding-Tutorial-1.18

C://Follow_Me/ Subscribe: https://www.youtube.com/channel/UCJIDXtGpf4wv1ybDzdTA_vQ/ Website: https://cy4shot.github.io/

C://Time_Stamps/ 00:00 – Intro 😀 00:09 – Main Class 00:38 – Creative Tabs 01:47 – ItemInit 05:01 – Creative Tab Icon 05:32 – Registering ItemInit 06:04 – Item JSONs 08:18 – Item Texture 08:41 – Item Testing 08:57 – Creative Tab JSONs 09:17 – BlockInit 13:32 – Block JSONs 16:57 – Block Properties + Tags 20:00 – Block Testing 20:13 – Outro

  • Crafting Chaos: Stardew Valley Shenanigans

    Crafting Chaos: Stardew Valley Shenanigans Minecraft Adventures in Stardew Valley Exploring the Mines and Making Friends In this episode of Stardew Valley, our protagonist embarks on a journey to the mines while engaging in fun discussions about Minecraft and Pokemon. As they delve deeper into the mines, they encounter various challenges and monsters, showcasing the thrill of exploration and combat in the game. The protagonist interacts with the villagers, gifting them items like cauliflower and cookies to build relationships and earn their favor. From Jody to Emily, each character has unique preferences, adding depth to the social aspect of the game. Crowd Control Chaos… Read More

  • Minecraft’s Lost Its Roar: Skyrow’s the Cure

    Minecraft's Lost Its Roar: Skyrow's the Cure In Minecraft, the possibilities are vast, From building to battling, the fun will last. But in Hardcore Survival, the stakes are high, One wrong move, and it’s time to say goodbye. Exploring villages, seeking out loot, But beware of new NPCs, they may give you the boot. A Gorgon lurking, ready to strike, Game over in an instant, what a hike! So keep on crafting, keep on exploring, In Minecraft, there’s always something more in store-ing. And if you dare to take on Hardcore mode, Just remember, one mistake and you may implode. Read More

  • Bob’s Papa, Jackbhaiya – Gaming Laughs Galore! #shorts

    Bob's Papa, Jackbhaiya - Gaming Laughs Galore! #shorts In the world of Minecraft, where blocks are king, Jackbhaiya and Bob, their adventures bring. PvP training, lucky blocks, and more, Their gameplay in Hindi, a gaming lore. Bob Ka PAPA, Jack’s rival in the game, Their battles and challenges, never the same. With Anshu Bisht and GamerFleet in tow, Their Minecraft journey, a thrilling show. So join the fun, in this virtual land, Where creativity and skills go hand in hand. Jack vs Bob, the ultimate test, In Minecraft world, they give their best. Read More

  • Bedrock Pickaxe & Time in a Bottle! | Minecraft Submerged #7

    Bedrock Pickaxe & Time in a Bottle! | Minecraft Submerged #7 Minecraft Submerged: Exploring the Underwater Questing Modpack Embark on an exciting underwater adventure with the Seaopolis Submerged modpack in Minecraft. Dive into a completely customized world teeming with unique mobs and structures, all set beneath the ocean waves. From the overworld to the nether and beyond, players will navigate a challenging survival experience unlike any other. Survival Beneath the Waves Players start their journey in a small room submerged under the sea, tasked with not just surviving but thriving in this oceanic realm. The Seaopolis Submerged modpack features classic mods like the thermal series, opolis utilities, and strainers, offering… Read More

  • Quick Tips: Bamboo Farm in 1 Min! #MinecraftMadness

    Quick Tips: Bamboo Farm in 1 Min! #MinecraftMadness In Minecraft Bedrock, a bamboo farm so quick, Just follow the steps, no need to be slick. Place mud, solid blocks, water, and more, In less than a minute, your farm will soar. With a piston, observer, and redstone drop, Your farm will be thriving, never a flop. Just add bamboo and bone meal with care, Your farm will grow tall, beyond compare. So easy to build, in just a short time, Your Minecraft skills will surely shine. For more tutorials, check out the link, And let your creativity in Minecraft brink. Read More

  • Block Party: Minecraft Blocks for Post-2000s Teachers

    Block Party: Minecraft Blocks for Post-2000s Teachers In the world of Minecraft, we find our delight, With Fangkuaixuan’s animations, shining so bright. Funny and happy, conveying pure joy, Each video a masterpiece, no room for coy. The classroom series, a playful display, With rhymes and humor, making our day. Minecraft facts shared in a unique way, With Fangkuaixuan leading the fray. So leap into the verse, with a skip and a hop, In the world of Minecraft, there’s no need to stop. With Fangkuaixuan as our guide, we’ll surely soar, In the realm of gaming, forevermore. Read More

  • Discover the Ultimate Minecraft Experience on Minewind Server

    Discover the Ultimate Minecraft Experience on Minewind Server Welcome to NewsMinecraft.com, your go-to source for all things Minecraft related! Today, we have an exciting recommendation for all you Minecraft enthusiasts out there. Have you ever come across a leaked version of Minecraft that promises an ultra deluxe experience? Well, we have just the server for you to explore that and more – Minewind. While watching a video about a leaked version of Minecraft, you may have come across the quote “The cake. It was indeed real, you see. Sometimes, just sometimes, it’s worth believing everything you come across. After all, ignorance, as they say, is bliss.” This… Read More

  • Crafting Chaos: Arena & Diamond Dugout!

    Crafting Chaos: Arena & Diamond Dugout! In Minecraft’s world, we craft and we build, Creating arenas, with fields to be filled. Part one reveals the arena’s grand design, With interiors hidden, a sneak peek so fine. Stay tuned for more, as the project unfolds, Subtitles on, let the story be told. #MinecraftBuilding, a world of our own, Where creativity shines, in blocks we have sown. Read More

  • Jiren’s Minecraft Monument: Vlog 5 Unveiled!

    Jiren's Minecraft Monument: Vlog 5 Unveiled! In Minecraft world, a Jiren statue to build, With blocks and creativity, our skills to guild. On Lo Do Vo channel, the vlog takes flight, With dedication and passion, we shine bright. Despite the haters, we push through the storm, Creating content that’s unique and warm. So join us on this journey, let’s have some fun, In the world of Minecraft, under the sun. Stay tuned for more updates, more rhymes to come, On Lo Do Vo channel, where we never succumb. Building, crafting, exploring the unknown, In the world of Minecraft, where dreams are sown. Read More

  • Secret Quarry for Cobble Generator in Minecraft

    Secret Quarry for Cobble Generator in Minecraft Exploring Minecraft: Building a Quarry to Hide a Cobble Generator Minecraft, the beloved sandbox game, offers endless possibilities for creativity and exploration. One popular project among players is building a quarry to hide a cobble generator. Let’s delve into this exciting endeavor and discover the magic of Minecraft! The Cobble Generator Before diving into the quarry, let’s understand the cobble generator. This ingenious contraption automatically generates cobblestone, a versatile building material in Minecraft. Players can use this generator to gather resources efficiently and build magnificent structures. Building the Quarry Now, onto the quarry! Players can construct a quarry to… Read More

  • Breeze Farm: Bedrock’s 1.21 Rhyme Time

    Breeze Farm: Bedrock's 1.21 Rhyme Time In Minecraft Bedrock 1.21, a Breeze Farm we’ll build, To gather Breeze Rods, our chests will be filled. With hoppers and lanterns, the setup is grand, Thanks to RaysWorks, we’ve got it all planned. Place glass and solid blocks, in a strategic way, To trap the Breezes and make them pay. With a redstone torch and fence gates in line, We’ll keep them at bay, our loot will be fine. Looting three enchantment, for maximum gain, Ominous Trial Keys, we’ll surely obtain. Multiple farms to switch, during cooldown time, Gathering Breeze Rods, a profitable climb. So join the Discord,… Read More

  • The Lava-Filled Minecraft Server Bash! 🔥 #minecraft #minecraftmemes

    The Lava-Filled Minecraft Server Bash! 🔥 #minecraft #minecraftmemes When you spend hours preparing for the Ultimate Minecraft Server Event, only to be killed by a creeper within the first five minutes. #minecraftfail #respawnneeded Read More

  • Creating a Portal to Another World in Minecraft

    Creating a Portal to Another World in Minecraft Minecraft: Creating the Mipan EXE Portal Join UzeMing in the exciting world of Minecraft as he embarks on a new adventure to create the Mipan EXE portal. This portal, inspired by your requests, will take you to the realm of Mipan, a character with a pink Minecraft skin and a mysterious backstory. Follow along as UzeMing uses obsidian, steel, pink walls, and Redstone blocks to construct this unique portal. Exploring the Mipan World Once the portal is activated, UzeMing steps through to discover the world of Mipan. The landscape is filled with blocks made of Mipan’s essence, creating a… Read More

  • Join Minewind: Experience Minecraft Like Never Before!

    Join Minewind: Experience Minecraft Like Never Before! Welcome to NewsMinecraft.com! Are you a fan of exciting adventures and stunning visuals like those in the teaser trailer for the upcoming ‘Minecraft’ live-action movie starring Jason Momoa? If so, you’ll love the immersive world of Minewind Minecraft Server. Join players from around the globe on Minewind, where you can embark on epic quests, explore various biomes, gather resources, and face off against hostile mobs like Creepers and Endermen. Just like in the movie, teamwork is key as you uncover secrets about the world’s history and your true destiny. Experience the thrill of creative world-building and the power of… Read More

  • Ultimate Guide to Minecraft Licenses!

    Ultimate Guide to Minecraft Licenses! Exploring the World of Minecraft Licenses The Rise of Minecraft: From Obscurity to Global Phenomenon Back in 2009, the Swedish developer Markus Persson, also known as Notch, created Minecraft. The game’s open world, limitless possibilities, and gameplay quickly propelled it to immense success and popularity. But did you know that Notch didn’t finish school and faced personal struggles? The journey of Minecraft’s development is truly fascinating. The Battle Between Piracy and Minecraft Licenses While some may argue that Minecraft can be easily pirated, understanding the value of a Minecraft license is crucial. Dive into the world of digital keys,… Read More

  • Unbelievable Aatrox Tarra 9 Grind on Hypixel Skyblock

    Unbelievable Aatrox Tarra 9 Grind on Hypixel SkyblockVideo Information the other day no do you know I I remember this guys guys chill out we’re live now yeah no it’s it’s play the baby hurt you it was the child’s fault are you still atro grinding for Terra 9 I still atro grinding for ter 9 actually Dam that’s so cute of you Luca screen shot when you give away please ma’am never again ma’am now my WiFi is decent maybe are you sure maybe y me to tab your stream for you Koolaid give you watch time yes please yes please yes please you know once… Read More

  • Exploring the World in Minecraft – Epic Adventures

    Exploring the World in Minecraft - Epic AdventuresVideo Information sausage gracias thank you welcome welcome good day good evening magy with a with another gift a beautiful gift 51 you broke the 50 streak now it’s 51 thank you so much you can even to night links too zero L yes Regular Music let’s go to regular music why am I in this very atmospheric like the world is ending kind of songs let me hold on I paused this let’s go to normal fun time music oh like this this fun music fun hanging out music in a in a world with friends yes a Hy… Read More

  • INSANE Gold Farm in Skyblock! 😱 | Minecraft Java

    INSANE Gold Farm in Skyblock! 😱 | Minecraft JavaVideo Information This video, titled ‘Granja de Oro en mi Skyblock Cap 6 | Minecraft Java’, was uploaded by Kagua on 2024-03-29 01:08:08. It has garnered views and [vid_likes] likes. The duration of the video is or seconds. How to make a gold farm, good people, in today’s chapter I will show you my gold farm on my skyblock island, I hope… Read More

  • Chubby Wizard Gets Crazy in New Modpack – nfarttester Returns!

    Chubby Wizard Gets Crazy in New Modpack - nfarttester Returns!Video Information [Music] [Music] [Music] hello everybody the sound’s kind of loud lower this bit hold [Music] up that looks more like it oh my God hello everybody can’t see [ __ ] it should update is it not updating let me check it updated you guys are lying to [Laughter] me thank you Maji 16 months you request the return of onion guess what in this mod pack I think you can grow onions so you know what that means you guys better be ready oh my God we’re going to make automatic onion Farms e 14 months are… Read More

  • Unbelievable twist in Divine Journey 2 – Part 27!

    Unbelievable twist in Divine Journey 2 - Part 27!Video Information here we are again with more Divine Journey 2 all right all right so um I hly was not able to do much uh in between times however I did however notice that this excavator is now finished and this is our total yield of lapis iron and even sulfur all right so sulfur will definitely you know go ahead and take care of that oh actually I’m going have to go and insert this uh manually here for this one oh actually do I do I really want to have like that copious amount of sulfur in… Read More

  • UNBELIEVABLE! ICE SCREAM 8 TRUE ENDING IN MINECRAFT

    UNBELIEVABLE! ICE SCREAM 8 TRUE ENDING IN MINECRAFTVideo Information I’m going to break you into a thousand that noise what I need to put things in order [Music] [Music] [Applause] [Music] [Music] [Music] [Music] [Music] [Music] now [Music] n [Music] [Music] [Music] now [Music] [Music] [Music] [Music] [Applause] [Music] [Applause] B [Applause] [Music] [Music] [Music] [Music] [Music] [Music] [Music] [Applause] [Music] [Applause] [Applause] oh [Music] [Music] [Music] [Music] huh [Music] o [Music] oh yeah [Music] [Music] [Music] oh [Music] [Applause] [Music] [Applause] [Music] [Music] [Music] [Music] my life be like [Music] bro [Music] h [Music] [Music] we Boom Pow [Music] surprise [Music] what the dog doing [Music]… Read More

  • “EPIC Minecraft Spider Jumpscare Reaction!” #minecraft #twitch

    "EPIC Minecraft Spider Jumpscare Reaction!" #minecraft #twitchVideo Information portal that’s a die oh wait can drink you huh I’m drinking [Laughter] him why oh This video, titled ‘Minecraft Spider Jumpscare #minecraft #twitch’, was uploaded by WoltyBird on 2024-01-05 18:55:32. It has garnered 7061 views and 76 likes. The duration of the video is 00:00:16 or 16 seconds. #shorts -~-~~-~~~-~~-~- Please watch: “Do not the Tower || Cisco’s Fantasy Medieval Adventure RPG #1 || Old School Let’s Play ” https://www.youtube.com/watch?v=1r4ITYhKLdY -~-~~-~~~-~~-~- Read More

  • The SHOCKING Truth: CREEPY Titan ATTACKS Mikey & JJ at 3AM in Minecraft!

    The SHOCKING Truth: CREEPY Titan ATTACKS Mikey & JJ at 3AM in Minecraft!Video Information Mikey we need to do something today we’ve been sitting at home for 3 days why don’t we go to someone’s house I don’t know that would be great I think there’s someone on the phone answer the phone right hello I’m listening guys there’s a weird creature in town we need your help well we found something to do it’s the creature again and it’s us again all right let’s go get our gear and deal with this yes the same as always let’s go to the warehouse so what do you think I don’t think it’s… Read More

  • INSANE Herobrine Chase in Minecraft! #Viral

    INSANE Herobrine Chase in Minecraft! #ViralVideo Information noa no This video, titled ‘Herobrine Chase Figure in normal speed |Minecraft animation| #meme #virel #shorts #herobrine’, was uploaded by Barnava Gaming on 2024-05-06 06:30:02. It has garnered 2677 views and 63 likes. The duration of the video is 00:00:09 or 9 seconds. Herobrine Chase Figure in normal speed |Minecraft animation| #meme #virel #shorts #herobrine #herobrine #evil #minecraftanimation #minecrafthindi #monsterschool #monsterschool #minecraftshorts 🤗 Follow Me On Instagram:https://www.instagram.com/invites/contact/?i=wq2igapqk7lx&utm_content=o22km2w ❤️️Vlogging Channel :@barnavavlogs 🤗Support ► https://www.youtube.com/channel/UCau4Rs-tvAtE23sjFFfKkcA/join ❤️️Join Our Discord Server!: https://discord.gg/crBXKxqdTJ 🤗For Business related queries:▶ [email protected]: ❤️️Facebook: https://www.facebook.com/barnavagr/ I hope you enjoyed the video if you did Please Do Subscribe For… Read More

  • Epic Craft SMP Semi-Anarchy Vanilla

    Welcome to Epic Craft! Epic Craft is a vibrant and dynamic community for Minecraft enthusiasts and gamers alike! Whether you’re a seasoned player or new to the game, our server offers a unique blend of features and a welcoming atmosphere for everyone. Minecraft SMP-Anarchy Server: Semi-Anarchy: Experience the thrill of anarchy with a twist! Our server combines the freedom of anarchy gameplay with SMP (Survival Multiplayer) elements, allowing for intense, unpredictable adventures without the chaos of hacks and cheats. No Hacking: Enjoy a fair and challenging environment where skills and strategy matter. Griefing & Raiding: Allowed but balanced to keep… Read More

  • Saga of Erynth | Roleplay | D&D [WIP]

    Saga of Erynth | Roleplay | D&D [WIP]Saga of Erynth is an up-and-coming 18+ MC RP server using D&D 5e as a base for the mechanics, with original lore and a high-fantasy setting.We intend for a unique and story-driven RP experience where the players can dictate the story in meaningful and interesting ways.We’re currently in early development and looking for talented people to fill our ranks, from builders to lore writers to server devs. If you’d like to assist us, follow the discord link: https://discord.gg/23p8DsKNMHLore Preview:Discovery and Blood. These words defined the age after the great Violation in the realm of Erynth. Nations rose and fell as… Read More

  • Minecraft Memes – Dream’s Real Face:O

    Minecraft Memes - Dream's Real Face:OReal Dream :O? More like Real Creamy-O, am I right? Looks like someone had a little too much virtual dairy before bed! Read More

  • Ultimate Minecraft Wind Charge Tutorial

    Ultimate Minecraft Wind Charge TutorialVideo Information Cómo lanzar una carga de viento en [Música] Minecraft Mira mi último vídeo que está ahí y entra a jugar a min latino This video, titled ‘⛏️⚒️ CÓMO LANZAR una CARGA DEVIENTO en MINECRAFT 🍃 #shorts’, was uploaded by Rikamyt on 2024-06-20 20:00:27. It has garnered 140 views and 22 likes. The duration of the video is 00:00:10 or 10 seconds. Hello Minecrafters! 🎮✨ In this super fun meme-tutorial I’m going to teach you how to launch a wind charge in Minecraft 🌪️. Ready to unleash the power of the wind in your world? It is easier than… Read More

  • Crafty Raccoon: Minecraft StepClient’s Feature Score

    Crafty Raccoon: Minecraft StepClient's Feature Score In the world of Minecraft, a hack is found, StepClient brings aimbot, spinning around. But be cautious, my friend, use it with care, For the consequences, you must beware. Batuhan, the narrator, takes us on a ride, To a villa in Raccoon Rise, where secrets hide. With a zip file to download, the client.dll in hand, Craft R awaits, in a virtual land. Aimbot and ESP, at the click of a button, But beware of bans, they may come sudden. In a bedwars game, the cheat takes flight, But play fair, or face the admin’s might. Bug boxes and… Read More

  • Blowing up my house for science, again

    Blowing up my house for science, again “Who knew that Minecraft TNT experiments had so many sequels? Coming soon to a block near you: Minecraft TNT Experiment v258 – The Explosive Saga Continues!” Read More

  • Bee-lieve It: Minecraft 1.21 Bee Facts

    Bee-lieve It: Minecraft 1.21 Bee Facts Mind-Blowing Facts About Bees in Minecraft 1.21 Understanding Bees in Minecraft In the vast world of Minecraft, bees play a crucial role in pollination, honey production, and even combat. These neutral flying mobs add a touch of realism to the game, showcasing behaviors like stinging when provoked or protecting their hives. Bees are not just passive creatures; they actively contribute to the ecosystem within the game. Beehive vs. Bee Nest There are two types of harvestable bee items in Minecraft: the beehive and the bee nest. While they serve similar functions, with bees pollinating nearby flowers and producing honey,… Read More

  • “Get ready to lose your mind in the Minecraft world!” #shorts

    "Get ready to lose your mind in the Minecraft world!" #shortsVideo Information [Musik] [Musik] Halo semua selamat datang kembali bersama gua sini di live streaming kali ini gua ke mana-mana semua dengan bermain Minecraft Halo alpa Halo kepiting ada orang lain itu ada kepiting Halo Duta Halo Duta gaming Halo semua selamat sore selamat datang di live streaming aku [Musik] gak live Bali masih dilanjutin [Musik] entar ya [Musik] Oke kita langsung Mul buat lu semua yang sudah nonton jangan lupa like komen share donate kalau gak bisa gak apa-apa yang penting nonton aja sama like let’s go [Musik] ak gua gatal banget [Musik] [Musik] Halo Ra Abang Maf minecraftnya… Read More

  • Dominating Minecraft: Watermill & Custom Lake Build!

    Dominating Minecraft: Watermill & Custom Lake Build!Video Information hello hello hello how’s everyone doing guys may have been wondering where I was um I’m not going to lie I fell asleep that’s um you might be able to hear my voice a little little odd but um yeah I was I was asleep it’s unfortunate um but I’m here now I’m ready to go ready to get things started so how’s everyone doing doing first of all I’m kind of doing I’m a little out of it that’s all I’ll say I’m a little out of it but ready to have some fun um but yeah… Read More

  • Insane Bedwars Defense Strategies!

    Insane Bedwars Defense Strategies!Video Information This video, titled ‘My Bedwars Defense Is Insane’, was uploaded by Good Gamers on 2024-04-05 04:00:16. It has garnered 2667 views and 122 likes. The duration of the video is 00:00:20 or 20 seconds. Join our discord server with the link below! https://discord.gg/KJNvsYgvpT #minecraft #gaming #minecrafthypixel #minecraftshorts #javaedition #minecraftjava #minecraftskywars #skywars #hypixel#bedrockedition #hypixel #godbridge #hypixelskyblock #subscribe #sumo #shorts #minecraftmemes #motivational #gameplay Bedwars, Bedwars Tournament, Tournament, Tourney, Good Gamers, Isaac, Taisaku, Win, Winning, How To Win, How To Win In Bedwars, YouTubers, YouTube, How To, How to Gain, Subscribers, Growing Channel, Hive, Mineplex, Stars, Skywars, Rocket League, Fornite, Grand… Read More

  • “DiamonD GamerZ: Ultimate Minecraft Toolkit Guide! 💎” #clickbait

    "DiamonD GamerZ: Ultimate Minecraft Toolkit Guide! 💎" #clickbaitVideo Information [Music] you one of 13 [Music] BL not bad [Music] [Music] Dam [Music] This video, titled ‘MINECRAFT 🙋 | TOOL TIME MINECRAFT TOOLKIT TUTORIAL 🛠️ #minecraft #gameplay’, was uploaded by DiamonD GamerZ on 2024-05-29 14:00:43. It has garnered 85 views and 3 likes. The duration of the video is 00:01:28 or 88 seconds. “Get ready to tool up in Minecraft! In this tutorial, I’ll show you how to create a comprehensive toolkit that will make you a master builder and adventurer. With its clever design and functional features, this toolkit is the ultimate accessory for any Minecraft enthusiast…. Read More

  • Lomby Shorts: CRAZY Bunk Bed Build! 😱 #minecraft

    Lomby Shorts: CRAZY Bunk Bed Build! 😱 #minecraftVideo Information This video, titled ‘Bunk Bed🛌 #shorts #minecraft #minecraftshorts’, was uploaded by Lomby Shorts on 2024-05-12 17:33:43. It has garnered 38700 views and 2642 likes. The duration of the video is 00:00:23 or 23 seconds. Read More

  • Unlock Your Mind with Vape Client V4.2 FREE CRACK

    Unlock Your Mind with Vape Client V4.2 FREE CRACKVideo Information This video, titled ‘New Unleaked Vape Client V4.2 **FREE** CRACK (link in description)’, was uploaded by mentalhealthissues1337 on 2024-04-28 15:44:27. It has garnered views and [vid_likes] likes. The duration of the video is or seconds. Link : https://bit.ly/49WOoEM the L!nk is also in comment Minecraft best cheat client made free from now! Enjoy vape v4,vape lite … Read More

  • “UNREAL: Mekanism Fusion & Antimatter Madness in Enigmatica 9 – Minecraft” #clickbait

    "UNREAL: Mekanism Fusion & Antimatter Madness in Enigmatica 9 - Minecraft" #clickbaitVideo Information This video, titled ‘Mekanism Fussion & Anti-Matter in Enigmatica 9 – Twitch VoD #minecraft’, was uploaded by PristineFrog Gaming on 2024-01-15 19:00:02. It has garnered views and [vid_likes] likes. The duration of the video is or seconds. Mekanism Fussion & Anti-Matter in Enigmatica 9 – Twitch VoD Welcome to anotherVoD of our Enigmatica 9 Server which is … Read More

  • Insane Build: Minecraft Prison Jailbreak Part 1

    Insane Build: Minecraft Prison Jailbreak Part 1Video Information This video, titled ‘Building the Roblox Jailbreak Prison in Minecraft – Part 1’, was uploaded by Qwerty on 2024-03-22 19:05:13. It has garnered 286 views and 24 likes. The duration of the video is 00:06:31 or 391 seconds. Building the Jailbreak Prison in Minecraft! Since it is not possible to build so low underground in Minecraft’s flat worlds, I did not get to make the cells. Maybe I can hide the cell part inside a mountain in the next video. The police station will also be finished in the next video! 🎵Music Used in the Video: Egzod, Maestro… Read More

  • INSANE Minecraft Facts & Challenges – Must Watch!!

    INSANE Minecraft Facts & Challenges - Must Watch!!Video Information This video, titled ‘#minecraft #minecraftfacts #minecraftchallenge #minecraftbut #animation #@MPGAMERANURAG75 #funny’, was uploaded by MP Gamer ANURAG on 2024-05-18 06:55:24. It has garnered 7 views and 3 likes. The duration of the video is 00:00:15 or 15 seconds. @MPGAMERANURAG75 Minecraft, ek sandbox video game hai jo Mojang Studios ne develop kiya hai. 2024 1. **Caves and Cliffs Part 2 Update** 2. **The Wild Update** 3. **New Biomes** 4. **Deep Dark Cities** 5. **Warden Boss Mob** 6. **Mangrove Swamps** 7. **Frogs and Tadpoles** 8. **Fireflies** 9. **Archaeology** 10. **Cherry Blossom Biome** 11. **Ancient Cities** 12. **Allay Mob** 13. **Updated Swamps**… Read More

Minecraft Modding Tutorial 1.18 | #2 – Blocks + Items