TurtyWurty – Minecraft Modding Tutorial 1.15 | Custom Furnace(Part 1/2) – Episode 46

Video Information

Hey what’s going on guys titus here and welcome back to another minecraft morning show for version 1.15. in this tutorial i’m going to be covering how we can go ahead and create our custom furnace now this has been uh might i say a long awaited tutorial

And i do apologize for the delay i’ve just been trying to make it as efficient and best code as i can it’s probably still going to be perfect of course um but yeah so obviously for the first thing you need to go ahead and do is create our block

Class now obviously this needs to extend block and just have the default constructor and then we need to go ahead and create two properties for this this will be the facing property and the lit property so for the facing property that will be a public static final direction

Property i’m just going to call that facing and that can just be equal to block state properties dot horizontal facing and then we can create a public static final boolean property and we’ll call that lit and that’ll be equal to boolean property dot create just taking the name which i’m just

Going to put lit then we actually need to set the default state in the constructor and we can just do that by calling this dot set default state that takes in this dot state container dot get base state and then after that we can do dot with

It first takes in the property so the first one will be facing and then the value we want the default to be direction.north sure you import the direction from net.minecraft.util.direction not from the chunk palette thing and then we need another dot with this takes in lit and for the value it

Will just be false then we obviously need to override the has tile entity method make sure it is the one with the block state and in here we can just return true we obviously need the create tylency method in which we will return mod tile entity types

Dot example furnace dot get dot create then we need to make sure we override the method field state container so that we can actually add these properties to the block and in here we first need to call the super and then we need to add the other ones to the builder then

We just need to override the mirror method in which we will call state dot rotate and that’ll take in mirror.2 rotation and that takes in the facing then we need the rotate method for that we can just go ahead and copy this mirror method rename it to rotate and change

Mirror out to rotation and we can change state dot rotate to state dot with and then put in the facing and then instead of mirror index to rotate we just want to put rot dot rotate then since it is a furnace and the lit state we obviously want to emit a light

We can override the get light value method in here we want to return uh whether the state is lit and if it is we just want to call the super and else we just want to put zero and if you want you can just suppress this for deprecation

Then we obviously need to override the get state for placement method in here we can just return this dot get default state dot with now taken facing and context dot get placement horizontal facing dot get opposite and this just make sure it places it in the opposite direction to the way you

Are facing next we want to override the method on block placed by in which we will first call the super then we will check if the stack has a display name if it does have a display name we want to get the thailand’s t from the pos and then we need to check

If this tile is instance of our tile entity class which i’m going to call example furnace tile entity now if it is then we want to call tile dot set custom name and that will take in stack dot get display name and obviously we need to go ahead and cast tile

To our tile entity class now obviously we are doing this because we want it so if they rename the item in an anvil it will change the name in the inventory since that is what vanilla does if you don’t want to do that you can just completely remove this method

And ignore its existence next we want to override the method has comparator input override in which we will just return true because we want to be able to handle the comparator input ourselves and then we obviously want to override a git comparator input override and here we will return container.calc

Redstone and that will take in the tire lens t from the pos finally we need the animate tick method which will do all of the particles and stuff um i’m not going to go ahead and code that all out because that will take a while um the link for this little block of

Code will be in the description and it’s just for playing the sounds and spawning the particles uh obviously if you don’t want that or you want different sounds or something you can go ahead and change this how you want this just the vanilla furnace stuff next we need the on block activated method

First we will check if the world is not null and the the world is not remote the reason we are doing this is because of course we don’t want the world to be null and we don’t want it to be client-side so obviously checking that it’s not remote will mean that it is

Server-side if that is true uh we can get the tile entity from the pos and then we can check if that is an instance of our tile entity class if it is an instance we want to call networkhooks.opengui this will take in the player and then our tile and you need to

Make sure you put the pause at the end of ours you’ll get some strange errors later on now obviously this gives us an error because we need to cast the player to serve a player entity and we need to cast the tile to i named container provider

Now that we have done that we can just return actionresulttype.success and we also want to return actionresult type.success at the end now one last method we need is the unreplaced method here we first need to check if the state has a tile entity we also need to check if the state dot

Get block is not equal to the new state dot get block if both of those are true we want to call world in dot remove tire lens t then we want to get the thailand seat at the pause then we actually need to check if that is an instance of

Our tile entity if it is we can just create a field for that tile and then we can create a field for an item entity and then after that we can call furnace dot get inventory got two non-null list dot four each and here we can just do uh item

And let’s just rename this up here to item entity and then we can set item entity to a new item entity and then we can add that item entity to the world now we actually do need to go ahead and move this if statement below this code right here otherwise detail

Entity won’t actually be there when we attempt to do that now we can go ahead and close this class and we need to go ahead and initialize the block and the tile length t and obviously we can just do the normal stuff for that i’m not going to go over that too much

And then we can just do the tile entity which will be the same as all our other tile entities now obviously we’re going to have some errors here because we haven’t created our tile entity class so let’s go ahead and do that now obviously this class will just

Extend thailand’s t but it needs to go ahead and implement two things it needs to implement i typical tile entity and also i named container provider okay now the first thing we want in here is obviously the constructor and then we want the second constructor this one will just be a blank

Constructor where we call this and that takes in our module entity types to example furnace then we need to go ahead and add the unimplemented methods now for the create menu let’s just go ahead and rename some of these so let’s make these all final and then

Let’s rename them so this one is the window id this one can just be the player in and the last one can just be the player in in here we obviously need to return our container class and that takes in the window id the player inventory

And this now we need to create a bunch of name methods to handle the name handling now if obviously if you don’t want it to change the name of the inventory based on the name of the item stack you can leave all the methods i am about to create

And just use this get display name method as the name first method we need to create is a setter for the custom name so that’ll be a public void set custom name now we’re taking an itext component which will be the name and in here we can just do this.custom name is

Equal name now obviously we need to go ahead and create a field for this custom name so that will just be a private i text components then we can create a method to get the name so that would just be a public i text component get name in here we will return

This.custom name is not equal to null now if it’s not we can return this.custom name else we can return this.getdefaultname then we need to create this getdefaultname method and that will just be a private itexcomponent name and in here we can just return a normal text component so that can be a string

Or a translation or any of the other millions that there are now in the get display name method we can just return this dot get name finally we can create a getter for the custom name and we can annotate this with nullable now let’s just go ahead and override the

Read and write methods in the right method we just want to return compound but before that we need to call super.right now let’s first deal with the custom name so we can check if the compound contains so if compound dot contains in here we’ll take

Custom name and this will just take in a value of constant dot mbt dot tag string then if it is we will set this dot custom name to itexcomponent.serializer dot from json and that will take in compound.getstring and that will take in custom name in the right method we first want to

Check if this dot custom name is not equal to null if it’s not we can do compound.put string and in custom name we will put itex component.serializer.2.json now let’s go into the tick method and handle what we want to do every tick so the first thing we’re going to do

Every tick is create a boolean called dirty now the reason we are creating this boolean is because we don’t want it to mark dirty every tick we only want it to mark dirty when it needs to mark dirty and what do i mean by mark dirty i i’m

Always some of you may not know so mark dirty basically tells it to write and read from disk so it doesn’t actually do it it just tells the game to do it however it is quite an expensive uh operation in actually calling it so cooling does some expensive stuff afterwards

Obviously reading and writing is quite expensive and you only want to do that when you need to so after that we need to go ahead and check that the world is not null and that it is not remote and the reason we need to go ahead and do that

Is because obviously we want it to only happen on the server side we only want server side logic and then obviously since we are marking dirty that will go ahead rewrite it to disk and then it will read it and then the client will also get the info

In here we first are going to check if the block is powered now the reason i’m doing this is because eventually i’m going to be changing this furnace so it uses energy but currently i just want to check if it is powered by redstone so this furnace is not going to have

Fuel obviously if you want it to have fuel instead of checking it’s powered you check if it is a fuel item uh in that slot and you can just look at the normal furnace code for that if you wish so to check if it’s powered i’m just going to check if

This dot world dot is block powered and that takes in this dot pause if that’s true then we will do all the logic here so we’ll first check if the recipe is not null and we’re going to do that by creating a method called get recipe so this will be a

Private method and it will return our recipe class which we created in the previous video on recipes so it’ll be a private example recipe and we’ll call that method get recipe and that takes in an item stack stack so this will just be the input that we are checking if it is

A valid input so we first obviously need to check if it’s null if it is now we just want to return no in which case we just want to go ahead and annotate this with at nullible if it’s not null we want to create a set of eye recipe and i’m

Just going to call this recipes and that is going to be equal to a method called find recipes by type now this will take in our recipe serializer init dot example type and then it will take in this dot world now if we needed this recipe

On the client side we would just get rid of this.world but since we are doing all the logic on the server side we just need to put in the world so that it has the world and then we’re going to loop through all the eye recipes

In the recipes and then we are going to cast that to our recipe and then we are going to check if recipe dot matches and we are going to check if that matches a new recipe wrapper that takes in this top inventory which we obviously haven’t created yet

And it will take in this stock world if it does match we just want to return the recipe and if it doesn’t match so if it comes out of this for loop and it hasn’t returned the recipe we just want to return no now obviously we need to create this

Find recipes by type method now we just need to make sure this is static and that it is public in here we want to check that the world is not equal to null now if it’s not we want to do world.getrecipemanager.getrecipes.stream.filter dot and in the predicate we want to check if

The recipe type is equal to the inputted recipe type and then dot collect and that will take in the collectors dot to set now if that world does happen to be null we just want to return collections dot empty set now we just want to duplicate this method

This will be the client one so we can just add the at only in desktop client annotation and we can get rid of the world here and we can create a client’s world using minecraft.getinstance.world now obviously if you wish you can just go ahead and suppress that

Which i am going to do now we are going to create a public static set of item stack and this is going to be called get all recipe inputs and this will take in an eye recipe type and the world and here we will first create a set of

Items stacked and we’ll call that the inputs and that’s going to be equal to a new hash set then we’ll create a set of eye recipe and we’ll call that the recipes and that will be equal to find recipes by type that takes in the type and the world

Then we’re going to loop through all the recipes in the recipes and in here we’re going to create a non-null list of ingredient and we’ll just call that ingredients and that is going to be equal to recipe dot get ingredients and then we’ll loop through all the ingredients

And in here we’ll loop through all the stacks in ingredient dot get matching stacks and then we can call inputs.add stack finally we can just return inputs now let’s go back to our tick method and in here we can do if this dot get recipe and that’ll

Take in this dots inventory dot get stacking slot zero the reason we are checking the zero slot is because that is the input slot and we just need to check if that’s not equal to null if it’s not we want to check that the current smell time is not

Equal to the max smelt time if it’s not e if it’s not equal we want to increment this current smelt time and then we can set dirty to true because we have changed a value now let’s just go ahead and create this current smelt time and this max

Smelt time and i’m just going to set that to 100 ticks but you can set that to however long you want the smelting to take obviously you don’t have to set it to a constant you can make it based on your different items uh however you want to do that but uh

I’m just going to do it like that now if it is not equal to the max smelt time then that means it has finished and then we can set the current amount time to zero we can get the output from this dot get recipe and that will take in this

Dot get stacking slot obviously that will take in zero because we want to get it from the input slot and then we will call dot get recipe output then we can call this.inventory.insert item this will take in the count which is just one then it will take in the output so we

Can call output.copy and then whether we want to actually simulate it which we don’t want to simulate it we want it to actually happen then we can decrease the stack size in the input slot and then we can set dirty to true at the end of the tick method we

Can check if dirty if it is we can just call this stock mark dirty now i would guess that you have all noticed by now this inventory variable does not exist um and i’m not crazy we are going to create it now now we are going to be using item

Handlers for this inventory since that is the way you are meant to do inventories but in the past i’ve been using i inventory which let’s just say is not the best uh choice of things to do so i’m going to create a private example item handler now in the constructor we want to

Set that and we’re going to set that to a new example item handler and that’ll take in the size of the handler which will be two now let’s just go into the read and write methods and let’s go and read and write some stuff so first we need to read my inventory

And we can do that by creating a non-null list of item stack and that will be the inventory and that will be equal to non-list dot with size that takes in this dot inventory dot get slots and then item stack dot empty then we want to call item stack helper dot load all

Items that takes in compound and inventory then we want to do this.inventory.set non-null list and that takes in the inventory finally we can set the smelt time to compound.getint and that takes in the name of the compound which will just be current smelt time now in the right method we can just call

Item stack helper dot save all items this takes in the compound and this.inventory.2 non-null list and then we can do compound.putin this takes in the name which is just the current smell time and the value will be this.currentsmailtime next we can create a method to get the inventory

And that will return an i item handler modifiable then we need the synchronization methods which i’m just going to copy in um you can find these in the description or from my github whichever one you find easiest and then we need to override the get capability method

In here we can just return capability item handler dot item handler capability dot or empty now take in cap and lazy optional dot off and that takes in a supplier of this.inventory now obviously we have a load of errors because it doesn’t know what the example item handler is so let’s go into

Our util package and let’s go ahead and create this class this is going to extend item stack handler in here we first want the constructor and this takes in an int size and an itemstack.stacks and then we can just call super of size and then we want to loop through the

Stacks dot length and we want to do this dot stacks dot set now taking the index and then stacks of index this way we are setting the stacks to an actual uh stacks that we put in then we want a clear method so that would be a public

Void clear in here we once again want the same for loop however instead of it being stacks dot length it will be desktop get slots and instead of stacks of index it will be item stack dot empty and then we want to call this dot on contents changed

Now for time’s sake i am once again going to ask you to copy these in from the description obviously you can type them out as you want but i’m going to copy in the rest of the methods as that will save us a lot of time they’re pretty self-explanatory what they do

So i’ll just quickly go through them this one checks if the handler is empty this one just decreases the stack slice stack size in the given slot by the given count this one removes a stack from the given slot this one converts all these slots to a non-null list

And this one sets it to a non-null list and this one converts it to a string so now if we go ahead and import that in here we should see all those errors should clear up and we should be left with the container error now in the block class uh you do

Actually need to go ahead and cast furnace dot get inventory to the item stack handler and i also realized i made a stupid mistake of creating the item entity field before and which obviously you can’t lose it’s the wrong scope so you just need to go ahead and

Actually create that field in here which isn’t too much of an issue i’ve just gone and imported it and fixed all the errors here i forgot to put a dot build taken in null which gave me a stupid little error and all those little things so this is actually going to be the

End of episode one of the furnace tutorial and in the next one i’ll do both the container and the guide class hopefully in the same tutorial so yeah if you guys did enjoy this tutorial please do smash your face into that like button and subscribe if you really enjoyed please do be sure

To share it and uh yeah i will see you guys in the next video good bye well they said everybody not to panic remain calm well i don’t know there’s two rats fighting over food you tell me how the world’s looking right now they were told to wait in line

At the grocery store and go two at a time and they said it let’s throw down right here right now big right jab there from the little rat on the left the big round on the right has the advantage right now you can see him using his hands he’s

Trying to grapple him as he hops on top of the counter he’s got an angle now children watching at home turn your heads this is not ratatouille this is ratatouille on crack the x-rated version both trying to just get a piece of cheese at the market and now it’s turned into

An all-out warfare the little rat is on top and it looks like he slams him down on the ground and he repeatedly slams him down

This video, titled ‘Minecraft Modding Tutorial 1.15 | Custom Furnace(Part 1/2) – Episode 46’, was uploaded by TurtyWurty on 2020-08-22 15:30:23. It has garnered 4562 views and 91 likes. The duration of the video is 00:26:41 or 1601 seconds.

Hey guys, I’m back with another video. In this video, I am going to be covering how we can add a custom furnace.

My Discord Server: https://discord.gg/d5cGhKQ Episode 45: https://youtu.be/Ri0Mqv_FXA4 My GitHub: https://github.com/DaRealTurtyWurty/1.15-Tut-Mod Tutorials I will be doing: https://trello.com/b/LNQlC0l1 A Free Java Course that I would really recommend: https://www.udemy.com/course/java-tutorial/

animateTick method: https://pastebin.com/AZcNcib7 TileEntity Synchronization methods: https://pastebin.com/hamu66ja ExampleItemHandler class: https://pastebin.com/egYyc6tQ

Minecraft Forge 1.15.2: https://files.minecraftforge.net/maven/net/minecraftforge/forge/index_1.15.2.html

  • Join Minewind Minecraft Server for the Ultimate Survival Experience!

    Join Minewind Minecraft Server for the Ultimate Survival Experience! Welcome to the ultimate Minecraft experience! Are you tired of the same old servers and looking for something new and exciting? Look no further than Minewind! Join a vibrant community of players from around the world on this epic Minecraft server. With a focus on survival gameplay and exciting events, Minewind offers a unique and thrilling experience for all players. Whether you’re a seasoned Minecraft pro or just starting out, there’s something for everyone on Minewind. Join the fun today by entering the server IP: YT.MINEWIND.NET in your Minecraft client. Immerse yourself in a world of adventure, creativity, and… Read More

  • Sneaky Survival: Episode 11

    Sneaky Survival: Episode 11 Minecraft Survival Adventure: Building Fortresses and Exploring the Unknown Challenge of Construction 🛠️ Izazov Gradnje: In this episode, our Minecraft adventurers tackle the monumental task of constructing a massive fortress. Through skilled building techniques and strategic planning, they strive to achieve the perfect balance between aesthetics and functionality. Forest Expedition 🌲 Šumska Ekspedicija: Venturing deep into the forest in search of rare resources, our team explores the most efficient techniques for gathering wood and other essential materials to enhance their survival skills. Perils of the Dark Caves 🌌 Napast u Tamnim Pećinama: Delving into the dangers and rewards of… Read More

  • Are You a YouTuber? Minecraft Shenanigans!

    Are You a YouTuber? Minecraft Shenanigans! Minecraft YouTubers Unite! Join the adventure with a group of talented Minecraft YouTubers as they explore the vast world of blocks and possibilities. From epic builds to thrilling survival challenges, these content creators bring the game to life in exciting ways. Let’s meet the members of this dynamic group: Coleman Follow Coleman’s channel for creative building projects and entertaining gameplay. Talley Join Talley on thrilling survival missions and engaging multiplayer sessions. Solo Experience Solo’s unique perspective on Minecraft with a mix of tutorials and let’s play videos. WindSword Embark on epic adventures with WindSword as he tackles dungeons and… Read More

  • Minecraft Mysteries Unveiled: Secrets Old Players Missed

    Minecraft Mysteries Unveiled: Secrets Old Players Missed In the world of Minecraft, secrets abound, From hidden temples to mushrooms that astound. Digging down, finding treasure in the ground, With diamond armor and swords that are renowned. But beware of traps, lurking in the dark, One wrong move, and you’ll miss the mark. So light up the way, with torches bright, Navigate carefully, through the night. And when it comes to schoolwork, don’t delay, No excuses for not writing, come what may. Headaches won’t save you, from the task at hand, So grab your pen and paper, and take a stand. In the realm of Minecraft, adventure… Read More

  • Block Bedrock Rocks, Mobs Flock, Who’s on Top? Minecraft Showdown!

    Block Bedrock Rocks, Mobs Flock, Who's on Top? Minecraft Showdown! In the world of Minecraft, a battle unfolds, Block Bedrock faces all mobs, bold and cold. With each swing and each strike, the story’s told, In the rhythm of rhymes, the tale unfolds. From Creepers to Endermen, they all come near, But Block Bedrock stands strong, without fear. In the heat of the fight, the truth is clear, Block Bedrock reigns supreme, that much is clear. So gather ’round, let the story be told, Of Block Bedrock’s might, brave and bold. In the world of Minecraft, where legends are sold, Block Bedrock stands tall, a sight to behold. Read More

  • KosmiKrime Minecraft: Animated Intro Madness

    KosmiKrime Minecraft: Animated Intro Madness In the world of Minecraft, where blocks reign supreme, KosmiKrime is the name of the game, a true gamer’s dream. With an animated intro, two years in the making, This Hardcore adventure is sure to be breathtaking. Join us on June 1st, for the grand debut, Witness the epic journey, with a crew that’s true. Subscribe to the channel, don’t miss a beat, As we dive into Minecraft, with skills that can’t be beat. Join our Discord community, where mischief is abound, We’re up to no good, causing chaos all around. Follow us on Twidder, for updates and more,… Read More

  • Minecraft Hacks in 2 Minutes or Less!

    Minecraft Hacks in 2 Minutes or Less! Unlocking Minecraft Hacks with Meteor Client Are you ready to take your Minecraft gameplay to the next level? Look no further than the Meteor Hacked Client! In this guide, we’ll walk you through how to download and install this powerful tool in under 2 minutes. Let’s dive in! What is Meteor Client? If you’re familiar with Minecraft hacked clients like Wurst, LiquidBounce, Raven B+, and Aristois, you’ll love Meteor Client. This free and open-source client is designed to enhance your Minecraft experience with a range of features and functionalities. Plus, it’s regularly updated to ensure compatibility with the latest… Read More

  • Crafting a Monster Bear Portal in Minecraft

    Crafting a Monster Bear Portal in Minecraft The Mysterious World of Minecraft: Creating the Monster Bear Portal Introduction In the vast universe of Minecraft, where creativity knows no bounds, players often delve into the realm of crafting portals to explore new dimensions and encounter unique creatures. One such intriguing portal is the Monster Bear portal from the Zoonomaly game. Let’s embark on a journey to discover how to create this portal and encounter the fearsome Monster Bear. Unveiling the Monster Bear The Monster Bear is a creature shrouded in mystery and terror within the Zoonomaly game. Resembling a grizzly bear, this anomaly possesses a slender body… Read More

  • Orange Touch of Death in Minecraft

    Orange Touch of Death in Minecraft Minecraft: The Adventure of Avoiding Orange Color Introduction In a recent Minecraft video titled “Minecraft ama TURUNCU RENGE DOKUNURSAM VİDEO BİTER,” the player embarks on a unique challenge where touching the color orange would end the video. Let’s dive into this thrilling adventure filled with twists and turns. The Challenge Begins The video kicks off with the player surrounded by orange hues, setting the stage for a suspenseful journey. The goal? To avoid any contact with the color orange while navigating through the Minecraft world. Seeking Diamonds Amidst the orange landscape, the player’s primary objective is to find diamonds…. Read More

  • CSGO甩手舞 ft. 方块人

    CSGO甩手舞 ft. 方块人 Minecraft: Exploring the World of Blocky Adventures Embark on a journey through the pixelated universe of Minecraft, where creativity knows no bounds and adventures await at every turn. Dive into the world of blocks, monsters, and endless possibilities as you explore the vast landscapes and build your own unique creations. Meet Blocky Xuan: The Mastermind Behind Minecraft Shenanigans Blocky Xuan, the creative genius behind a myriad of Minecraft animations, brings humor and joy to players worldwide. With a knack for storytelling and a passion for spreading happiness, Blocky Xuan’s animations are a must-watch for any Minecraft enthusiast. Discover Blocky… Read More

  • EPIC Meta Dragon transforms Nickelback hit!

    EPIC Meta Dragon transforms Nickelback hit!Video Information [音楽] あOG [音楽] 3 [音楽] Tお [音楽] This video, titled ‘Photograph Noteblock Cover (Nickelback)’, was uploaded by Meta Dragon on 2024-05-27 15:46:52. It has garnered 100 views and 2 likes. The duration of the video is 00:02:14 or 134 seconds. I made Photograph by Nickelback in Minecraft, just… ignore the chorus, ok? I can’t do electric guitar strumming. Credit to Nickelback for the song, watch the original: https://www.youtube.com/watch?v=BB0DU4DoPP4&ab_channel=Nickelback Read More

  • Brabantia Factions Roleplay Addons Bedrock Economy “

    Welcome to a New Kind of Factions Immerse yourself in a worldwide RP experience with over 60 participants. Explore 8 unique kingdoms, each with a special ring tied to their destiny. Your ambitions and actions will shape the world and its story. Sample Story and Lore: Discover the intertwined fates of races and their mystical rings: Three rings for the kings of man, showcasing their might in war. Two rings for the elves, embodying harmony and loyalty. One ring for the dwarfs, shining bright in the moonlight. One ring for the half-elves, promising prosperity and growth. The last mortal ring,… Read More

  • Minecraft Memes – MONKEY?! REALMERS, SPILL THE TEA!

    Minecraft Memes - MONKEY?! REALMERS, SPILL THE TEA!I guess that monkey face is just monkeying around in the Minecraft world! Read More

  • Super Chests: Minecraft’s OP Quest

    Super Chests: Minecraft's OP Quest Yo, thanks for watching, hope you had fun, In the world of Minecraft, we always run. The chests were super OP, giving us a thrill, But in the end, we defeated the dragon with skill. The Gamerz09, bringing you the best, In Hindi, he puts all his gaming to the test. From villages to cities, we explored it all, And in the end, we saw the dragon fall. So hit that like button, leave a comment too, And don’t forget to subscribe, we’ll bring more for you. Until next time, stay tuned for more play, Goodbye for now, have… Read More

  • The dog is OP in Minecraft 🐶🔥

    The dog is OP in Minecraft 🐶🔥 Well, of course the dog is the best in Minecraft – they’re always there to help you dig up bones and chase away creepers! Who needs a pickaxe when you have a loyal pup by your side? 🐶💎 #MinecraftDogGoals #WoofWoofMiningCo Read More

  • Kurdoplayz: Minecraft Fog Fun

    Kurdoplayz: Minecraft Fog Fun Minecraft Vom Nebel: A Dive into Horror Exploring the Mysterious Modpack Elias, a small YouTuber known as @dzeliqs, has created a chilling Minecraft modpack called “Vom Nebel.” In this horror-themed adventure, players will encounter a variety of terrifying monsters lurking in the shadows. A Portal to the Unknown As Elias and a friend venture into the game, they stumble upon a mysterious portal that resembles the End portal but with a sinister twist. Uncertainty looms as they debate whether to enter and discover the fate of their base. A Leap of Faith After some hesitation, Elias takes the plunge… Read More

  • Ultimate Minecraft Challenge for Beginners

    Ultimate Minecraft Challenge for Beginners Explorando los Desafíos de Minecraft para Principiantes ¡Hola, aventureros de Minecraft! En este video, vamos a explorar lo desafiante que puede ser Minecraft cuando eres un principiante. Desde sobrevivir la primera noche hasta encontrar recursos esenciales, descubrirás los obstáculos y las estrategias necesarias para superar los retos iniciales del juego. Hablaremos de cómo manejar el hambre, evitar mobs peligrosos y construir tu primer refugio seguro. Si eres nuevo en Minecraft o simplemente quieres recordar esos primeros pasos difíciles, este video es para ti. ¡No te lo pierdas y suscríbete para más contenido épico sobre Minecraft! 🚀🎮🗺️ Superando los Retos… Read More

  • RELAXING Minecraft: Building EPIC Mage Tower!

    RELAXING Minecraft: Building EPIC Mage Tower!Video Information start streaming [ __ ] sending us your video oh now I’m live do I believe you this time YouTube I don’t know if I believe you this time YouTube If I am live then this is the most confusing start to a video ever for anyone this is waiting for me what are you doing YouTube what the [ __ ] is happening are we live am I alive do I hear myself talking I don’t Jesus Christ are we live ah there’s me am I alive what the [ __ ] is happening okay that was… Read More

  • ULTIMATE Hardcore Minecraft Adventure

    ULTIMATE Hardcore Minecraft AdventureVideo Information s ding welcome back to another s lad stream I’m getting the music s lad what are we doing today today we’re playing Minecraft and that’s it what nice guys actually you forgot there’s a gimmick we’re on Hardcore so if we die it’s just like real life oh no dang it but don’t worry guys I’m the strongest server on this SMP so no you’re the strongest server on this SMP you’re not the oh strongest player on this smv so don’t worry yeah yeah what’s up we got wait guys I’m going try to do a… Read More

  • Gyld is BACK! Insane PVP on GriefTool! 🔥🔥

    Gyld is BACK! Insane PVP on GriefTool! 🔥🔥Video Information так ну в общем Ребятки всем Здорово С вами я наверно первый видосик За столь большой промежуток времени я решил записать всего именно на гриф наверное хочу поиграть сейчас на гриф немножко поснимать тут как бы попробовать тут но много людей которые играют нормальных ну всё короче ребят погнали получается сейчас получается тут р в чат Пит какой там РП Это скорее всего сейчас будет закрытый Мне кажется я уверен Ну как бы да как бы вот тут у нас тропа челика убьём я лук не взял да О гень я взял Стрелы но я не взял лук… Read More

  • Insane Minecraft Skyblock with ZOONOMALY MONSTERS! 🤯

    Insane Minecraft Skyblock with ZOONOMALY MONSTERS! 🤯Video Information hi it’s TV and today we’re doing a very ordinary Sky Block oh but what about that guy what guy what is that honeycom I have no idea what that is uh how do we get out of here uh well I I mean we just have to play Sky Block and uh he’ll stay over there yeah yeah I mean it’s not like it can come closer or anything like that so I think we’ll be safe wait what’s he doing wait what no no he’s building towards us he’s evolving he’s EV he’s building towards us… Read More

  • Ultimate Crop Farming Trick in Minecraft PT5 | TRS2

    Ultimate Crop Farming Trick in Minecraft PT5 | TRS2Video Information [Applause] [Applause] h [Music] [Music] uh h [Music] [Music] [Music] h [Music] h ER rs2 says here [Music] [Music] h huh h This video, titled ‘Friends SMP Survival in Minecraft PT5 | Building crop farm | TRS2’, was uploaded by TRS2 on 2024-03-05 12:37:55. It has garnered 8 views and 6 likes. The duration of the video is 00:03:39 or 219 seconds. Next EP gonna get the Ender Dragon! =================================== 📦Resource Packs: 🏞Complementary Shader Download: https://www.curseforge.com/minecraft/customization/complementary-shaders 🥊Armor gloves Download: https://www.curseforge.com/minecraft/texture-packs/armor-gloves Enjoy…!! =================================== ➕Follow Me: 📱TIKTOK: https://www.tiktok.com/@trs2yt 📷Instagram: https://www.instagram.com/trs2yt 🐤Twitter: https://twitter.com/TRS2YT Enjoy…!! =================================== #trs2 #minecraft #survival #villager #farm #smp Read More

  • Minecraft Madness with Joaquin – You won’t believe it!

    Minecraft Madness with Joaquin - You won't believe it!Video Information oh my goodness oh my God oh my goodness oh my god oh where did I put that torch right here how did I do that okay I suppose y’all okay so I suppose anyone who’s in this stream right now has read the title and we’re just going to uh play some Minecraft yeah so I have a couple little goals in mind for today’s stream in this Minecraft world um first thing I need to do is I need to gain the Cobblestone just like the amount of cobblestone to build a mob farm one of… Read More

  • SWAG LEGEND dominates Minecraft world!!

    SWAG LEGEND dominates Minecraft world!!Video Information This video, titled ‘MY MY WORLD 😍 IN MINECRAFT 😎 #1’, was uploaded by SWAG LEGEND on 2023-12-26 12:23:28. It has garnered views and [vid_likes] likes. The duration of the video is or seconds. trending #viral #minecraft #games MY MY WORLD IN MINECRAFT The “About Me” Gaming Channel “I’m just your … Read More

  • Saving My Dog with Epic Revenge 🐶🔥 #minecraft

    Saving My Dog with Epic Revenge 🐶🔥 #minecraftVideo Information This video, titled ‘Saving My Dog and Take Revenge 😔 #minecraft #gaming #viral #trending #shorts #memes #music’, was uploaded by Smaze King on 2024-05-04 16:30:02. It has garnered 49158 views and 1580 likes. The duration of the video is 00:01:00 or 60 seconds. LIKE AND SUBSCRIBE. For More Amazing Videos. Also Thanks for Watching. Inspired from! @SB737 @TechnoGamerzOfficial @GameBeatYT @GamerFleet @dream Tagss. #PUBG gaming #gaming #fast gaming#best gaming #pubg mobile #mobile gaming#eyeshot master #revenge#pubg king#top kills # minecraft #gta 5 #ipad gaming #ipad 9gen#ipad 8gen #android gaming#clutch gaming#1v4 game #pubg pro player#pc pubg #shooting games #fighting games#killing games#fast… Read More

  • Insane Minecraft IQ – Trapping Experts Exposed!! 🤯 #shorts

    Insane Minecraft IQ - Trapping Experts Exposed!! 🤯 #shortsVideo Information This video, titled ‘Minecraft: Traps at Different -69999 iq (Worlds Smallest Violin) 🤔 #shorts’, was uploaded by Cytech Gamerz on 2024-01-14 07:30:00. It has garnered 5664 views and likes. The duration of the video is 00:00:51 or 51 seconds. Minecraft: Traps at Different -69999 iq (Worlds Smallest Violin) 🤔 RELATED QUERIES:- world’s smallest violin minecraft the smallest violin in the world world’s smallest violin minecraft sounds world’s smallest violin 1 hour minecraft are you a fast talker test world’s smallest violin twi shorts singing world’s smallest violin world’s smallest violin on violin minecraft most dangerous trap i blow… Read More

  • OneCraft Semi-Vanilla Survival Java 1.2.5 Nostalgic Economy Old Version

    Welcome to AlphaCraft! Join our nostalgic survival server running on Java 1.2.5. Use the /register command and start playing today! Server Details: IP: oc.alphacraft.fun:25575 Discord: Join us on Discord Website: alphacraft.fun Version: 1.2.5 Read More

  • ContinentalMC | Earth, Movecraft, Towny, Wars, Custom Content & More! | RESETTING

    ContinentalMC | Earth, Movecraft, Towny, Wars, Custom Content & More! | RESETTING-=ContinentalMC=-With a 1:500 Scale map of the Earth, in Minecraft!We are a small, but growing server! We’d love to have you with us!Some of our features include:Custom items: Grappling hooks, Grenades, Custom Recipes, Custom materials, Custom Textures & More!Movecraft: Create your own moving ships and aircraft!Economy! Create shops to sell items, and play the server to gain in-game money!Vehicles: Craft small, but quick planes!Towns & Nations! With the ability to make them completely neutral!Wars (Economy only! No losing your builds!)Capture-Zones with hourly materials!Machines & Factories! Automate material production, Crafting & More!Partial Keep-Inventory, Keep your Tools & Armor, but lose resources!Limited… Read More

  • Minecraft Memes – Swamp Wood Heist!

    Looks like this meme is branching out into new territories with that high score! Read More

  • Skyblock S.O.S.: My Minecraft World’s Close Call! #shorts

    Skyblock S.O.S.: My Minecraft World's Close Call! #shorts In the world of Skyblock, I nearly met my end, A close call that almost made me descend. Random items spawning every 15 seconds, oh my, The challenge is tough, but I’ll give it a try. On my YouTube channel, the video is out, Subscribe for more content, without a doubt. Twitch, Discord, TikTok, all the addies you need, Join the fun, let’s plant the gaming seed. Dio, the streamer, the YouTuber, the pro, Inspired by DreamSMP, putting on a show. Minecraft, reactions, vlogs, and more, Dio does it all, with content galore. So come along, join the fun… Read More

  • Hot Wi-Fi Door Physics in Minecraft 😂

    Hot Wi-Fi Door Physics in Minecraft 😂 “Why does the physics door have better Wi-Fi than my actual house? I guess even Minecraft knows the struggle of bad internet connection!” 😂 #firstworldproblems #minecraftwifi Read More

  • Ultimate Minecraft Fail Compilation

    Ultimate Minecraft Fail Compilation Welcome to the Minecraft Community Server! Join the Bedrock Community Are you a Bedrocker looking for a new adventure? Join the new Community Server hosted by @goutshiblack. The server is running on version 1.20.81, offering a fresh experience for all players. How to Join Join the Discord server: Discord Link Accept the rules of the server. Read and accept the server information. Enter your in-game name in the server registration. Once a green checkmark appears, you’re whitelisted and ready to start your journey. Have fun exploring and building in this new Minecraft community! Music and Support All the music… Read More

  • 10 Commandes Minecraft Que Tu Ne Connais Pas!

    10 Commandes Minecraft Que Tu Ne Connais Pas! Les 10 Commandes Puissantes de Minecraft 2024 Dans cette vidéo, tu vas découvrir 10 commandes très peu connues mais vraiment puissantes. Il est fort probable que tu ne connaisses pas ces 10 commandes, alors n’hésite pas à partager ton score sur 10 dans les commentaires à la fin de la vidéo. Commençons sans plus tarder avec le numéro 10. Numéro 10 – Commande de Décoration Cette commande ajoute des décorations lorsque tu tires avec un arc. En activant la commande, il te suffira de prendre un arc et de tirer une flèche. Tu verras une trainée stylée derrière la… Read More

  • MINECRAFT LIVE: Twich Nywoz SURPRISED us with insane plot twist!

    MINECRAFT LIVE: Twich Nywoz SURPRISED us with insane plot twist!Video Information o attend je te tu tu me tapes ok je te ki Tap Tap tapi tapi le truc ah mais c’est recu V V personne le drop je c’est bon je suis sur lui c’est bon je te B tu es en train de me baiser tu es en train de me baiser il va crever il va crever il va crever je suis vas-y b b toi vas-y B attends attends ok jou à qu serveur plot.mcb.fr serve de T quelquun vois quelqu’un de la non c’est bon Arte Dr par que Dr je l’ai déjà fait… Read More

  • Insane Luck on Live Stream!

    Insane Luck on Live Stream!Video Information [Music] [Music] [Music] [Music] [Music] [Music] oh yo so I’m still kind of sick right now all right my stream late is just checking for a second also the thumbnail was just a practice thing I was making also apparently I was like practicing in lobbies and apparently main par is also in my Lobby that makes sense I’m in versus one hold up let me get a drink like usually there’s at least one YouTuber in this Lobby I just hopped in lobby one and then M joined and he’s like here he’s probably streaming or something… Read More

  • EPIC SHOWDOWN: Herobrine VS Entity303! – Minecraft

    EPIC SHOWDOWN: Herobrine VS Entity303! - MinecraftVideo Information This video, titled ‘Herobrine VS Entity303 #mobs #shorts #minecraft’, was uploaded by Mr.Trools ff on 2024-06-02 11:18:40. It has garnered 10056 views and likes. The duration of the video is 00:00:31 or 31 seconds. Read More

  • 🔥Hive Live & Play CS:GO With Fans!! JOIN NOW🎮

    🔥Hive Live & Play CS:GO With Fans!! JOIN NOW🎮Video Information yo hello hello chat how are you all on this fine day what’s good yo film fil star welcome welcome welcome welcome hold up let me just set set up something real quick um oh my God what oh I’m sorry okay I’m sorry about this okay hold up um yo yo yo yo hi hi hi hi hi hi yes yes hi yes hi hi hi suchu hi fstar welcome welcome um okay should I start should I start or should I wait a little bit more let’s just play a game of SkyWars why not right… Read More

  • EPIC LEGO Minecraft Adventure with Ярик #lego #minecraft

    EPIC LEGO Minecraft Adventure with Ярик #lego #minecraftVideo Information [Music] [Music] a This video, titled ‘LEGO Minecraft: Witch’s Hut #lego #minecraft #legominecraft #ярикlegominecraft’, was uploaded by Ярик Lego Minecraft on 2024-03-27 05:48:40. It has garnered 5250 views and 180 likes. The duration of the video is 00:00:14 or 14 seconds. Read More

  • Insane 20K Minecraft Challenge: Chicken vs TNT Trap!

    Insane 20K Minecraft Challenge: Chicken vs TNT Trap!Video Information This video, titled ‘🤔Will the chicken survive from this TNT trap?😱 ( spirits ) #minecraft #minecraftpe #viralvideo’, was uploaded by 20K MINECRAFT CHALLENGE DAILY on 2024-01-17 14:10:37. It has garnered 2544 views and 51 likes. The duration of the video is 00:00:36 or 36 seconds. 🤔Will the chicken survive from this TNT trap?😱 ( spirits ) #minecraft #minecraftpe #viralvideo Hi everyone, welcome back to our channel. In this video, We’re going to show you topic covered in video Share, Support, Subscribe!!! Subscribe: Discord : Youtube: Twitter: Facebook: Instagram: About : 20k minecraft challenge is a YouTube Channel, where… Read More

TurtyWurty – Minecraft Modding Tutorial 1.15 | Custom Furnace(Part 1/2) – Episode 46