Cy4’s Modding – Minecraft Modding Tutorial 1.16 | 8.0 – Containers + GUIs

Video Information

Hello and welcome back to another tutorial in this tutorial we’re going to be starting work on the display case block by creating the block tile entity gui and container so let’s start by creating all the packages that we need in our parent package we’re going to create another new package

Called dot client dot gui and click finish in our common package we’re going to create a new package called dot container and in our core package we’re going to create a new package called dot util in our util package we’re going to create a new class called client event plus subscriber and

In here we’re going to add an add mod dot event bus subscriber then we need to pass in the mod id so let’s do mod id is equal to tutorial mod dot mod id then we need to set the bus equal to bus dot mod and then we need to set the value

Is equal to dist dot client then we can import bus and then we can create an at subscribe event public static void client setup and we’re going to pass in an fml client setup event event and this class is going to be used for binding our gui to our container but we

Can do that later next under init let’s create a new class called container types init and in here let’s create the deferred registry for our container so we can go into our tile entity types in it and copy all of this and let’s paste it in here this time

Instead of tile entity type will have container type let’s replace this tile entity type with container types and instead of tile entities let’s do dot containers let’s import that and there we go now in our block package let’s create a package for our display case block right now i’m going to copy

Everything in our quarry block and replace the quarry block with the display case block and make sure this extends block and then let’s import net.minecraft.block to block however we can change the tile entity type to display case tile entity type which we haven’t created yet but we will in a second

Next let’s overwrite on block activated first of all we’re going to check if the world in is remote and if it isn’t remote then we can open a gui otherwise we can just return this and let’s add suppress warning deprecation let’s get the tile entities we can do tile entity te

Is equal to world in dot get tile entity pos and now we can check if the tile entity is a display case style entity so let’s do fte instance of display case tile entity which is a class that we haven’t made yet then we can do network

Hooks dot open gy then we need to get the server player entity so we can just cast our player to a server player entity And then we need our providers so we can just cast our tile entity to this and finally we can just pass in the position so now we need to create our tile entity but first let’s register the block in our block init class so let’s just copy our quarry change this to display

Case change this to display case and change this to display case block then we can import display case block and now our block is in the game so now let’s create our tile entity in our tiler entity types init let’s copy the quarry and instead of quarry tile entity we can do

Display case style entity and let’s also replace the one down here instead of blocking it dot quarry you can do blocking it dot display case and instead of quarry tile entity we can do display case tile entity type and instead of register quarry we can register

Display case and now we can create our tile entity class so under t let’s create a new class called display case tile entity and this is going to extend lockable tile entity and now we can add our constructor and then just super and then we can also add another constructor

Where we’re going to call the other constructor of tile entity types init dot display case tile entity type dot get now if we save this and go to our tile entity type we can import our display case tile entity which will fix the error in here if we

Go to our display case block we can also import this and that’ll fix the arrow there and now we just have an error here actually let’s change the lockable tile entity to a lockable loot tile entity and then we can add unimplemented methods inside of get size inventory which is

Going to return one and now we need to get a non-null list of item stack called items let’s create a protected non list of items stack called items is equal to non null list dot with size and then the size is going to be one and we can just fill it with empty

Item stacks so we can do item stack dot empty now this one is the number of slots that we’re going to have and so is this so actually let’s just create a private static int slot and set it to one and then we could just use slots in here and slots in there

Now to get items we can just return this dot items and to set items we can do this dot items is equal to items in to get the default name we’re going to return a new translation text component and in here we put the string so i’m going to do container dot plus

Tutorial mod dot mod id plus and then we can do dot display case and that’s just so that we can fill out the lang file next in create menu we’re going to return a new display case container which is a class that we haven’t created yet of id and player and this

Then we can override the write function and the read function which is going to allow to save our item to the world so first of all we can do super dot write compound to write all the necessary stuff to the compound and then we’re going to check

If it hasn’t already written to the compound and if it hasn’t then we can do item stack helper dot save all items and then we can just pass in the compounds and items and then we can just return our compound and when we want to read from our thing

We’re first going to read all the necessary data then we’re going to do this dot items is equal to non null list dot with size and we’re going to do get size inventory and then item stack dot empty and then we can just load all the items so we can check if

This dot check loot and read mbt and if it doesn’t then we can do item stack helper dot load all items mbt and this dot item now we need to create our display case container so in our container package we can create a new class called display case container

Then we can go back into our tile entity and import that now to fix this error we’re going to make this extend container and we can import container from the minecraft one then let’s add our constructor and add unimplemented methods then we’re going to create a public final display case tile entity

Te and a private final i world cos callable which is going to be can interact with callable and then we can remove this constructor then let’s add another constructor and this is going to take a final int window id a final player inventory player inventory and finally a final

Display okay style entity te then we can super off of container type init dot display case container type dot get and then window id and now let’s create our display case container type in container types init let’s create a public static final registry object of container type of display case

Container and this is going to be called display case container type and that set it equal to container types dot register and under the name display case and now we need a supplier and then let’s create a supplier and for the supplier we need an i forge container type

Dot create and then we need a container factory which is just display case container new however now you can see that we need a new constructor for a display case container type so let’s copy all of this but instead of that we need the final packet buffer

And let’s call it data now this should fix our error and our container types in it but instead of this we need to call our other constructor and to do that we need a method which gets the tile entity from the data that we have here so let’s do a private static display

Case tile entity get tile entity and this is going to take our final player inventory player inventory and our final packet buffer data now for both the player inventory and the data we need to check that they’re not nulls so let’s do objects dot require non-null player inventory and then we

Need to pass in a message here in case it is a null so let’s just say player inventory cannot be null now let’s copy this again and this time do it for our data and now let’s put packet buffer cannot be no and now we can actually get

Our tile entity so let’s create a final tile entity called t and let’s set it equal to player inventory dot player dot world dot get tile entity at data dot read block pause and now we can check if the tile entity is an instance of display case tile entity which should

Always be true then we can return a display case tile entity of te and if it doesn’t return that we can throw a new illegal state exception which should never happen and we can just say tile entity is not correct and now we have our get thailand c so

Now we can call it in this constructor so let’s just do this window id player inventory and then get tile entity to play inventory and data now we need to fill out this top constructor and then here we can do this dot t

E is equal to t e and then this dot can interact with callable is equal to i world was callable dot of and then we can do t e dot get world and d dot get pause and that should fix the errors now we need to create our slots

So first of all let’s create our main player inventory and this is going to require some very specific numbers to do with our gui so let’s create our for loop let’s create int row is equal to zero and while row is less than three we can do row plus plus

And now in here we need to create another for loop so for int column is equal to zero column is less than nine column plus plus and now we need to do this dot add slot and let’s create a new slot and then let’s just add our player inventory and let’s import net.minecraft.inventory.container.slot

And then let’s do column times row times 9 plus 9 then let’s do 8 plus column times 18 then comma 166 minus then we can open some brackets 4 minus rho and then after the brackets times 18 minus 10 and then we can add a semicolon then let’s add our player hot bar

Then we can copy this for loop with the column over here then let’s do this dot add slot new slot player inventory because this is our slot in our inventory then we can just do column then 8 plus column times by 18 and then 142. and that’s our inventory

Those will be the slots for basically any gui and then let’s add our tile entity which is just one line so we can do this dot add slot new slot and then we can cast a tile entity to our i inventory and then we can do 0 80 35

And that’s it for all of our slots then in can interact with we can return is within usable distance of our callable player in and block dot init.displaycase.k and finally in our container we need to override transfer stack and slot in order to get our slots to work

So first let’s create an item stack called stack and it’s going to be equal to item stack dot empty next let’s create a slot slot and let’s set it to this dot inventory slots dot get index let’s check if slot doesn’t equal null and it has a stack in it and if it

Doesn’t then we’re just going to return stack however if it does we can create another item stack let’s just call this stack one and let’s set it to slot dot get stack and then we can just set stack to this copy of the original stack one afterwards we

Can check if the index is less than 36 and if it is we can also check that we can’t merge item stack stack one and then we need the size of the inventory which is going to be the slots variable in our display case tile entity so let’s just make that

Public there we go and let’s do dot slot and that’s at this dot inventory slots dot size and if that is true we’re going to return an empty item stack otherwise we’re going to check if we can’t merge this again but this time we can do 0

And display case dot slot and we need to make sure that the first false here is set to true and if that is true then we can also return item stack dot empty otherwise we can check if stack one dot is empty and if it is we can do slot dot put stack

Item stack dot empty and otherwise we can do slot dot on slot change and that’s it for this function and our container now we need to create our screen so let’s rename this client.gui that we made earlier to client.screen for better organization now in here we can create a new display case screen

And let’s make this extend container screen of our display case container and let’s add the constructor then we can add unimplemented methods which is just draw the background layer and this class won’t be used on the server so we can add an only in annotation of dist dot client

Let’s import only in and now we can add our gui resource let’s create a private static final let’s call this display case gui and this is going to be a resource location display case gui it’s going to be equal to a new resource location of tutorial mod

Dot mod id and then we can pass in textures slash gui slash display case which is the path that our gui is going to be in and then we need to add a dot png on the end because this is a png file then in our constructor we can set this dot gui

Left to zero this dot gui top to zero and we can set this dot x size to 175 and this dot y size to 201 and those are our dimensions of our texture then we can override the render function and instead of this to do we can do this dot render background

Afterwards we can call super dot render and then we can do this dot render hovered tool tip then we need to draw our gui container foreground layer and we’re going to do this dot font dot funk 2 4 3 2 4 8 b and this function hasn’t been mapped

Yet but we can just pass in our matrix stack then we can pass in this dot player dot get display name then we can get the x position of our inventory as a float so we can do this dot player inventory title x and then do the same thing with the y

And then for the last variable we can put four two one oh seven five two and that is actually it now in our background layer we can do render system dot color for f and then we can just pass in one f in every single value and then we can

Add a suppress warnings deprecation then we can do this dot minecraft dot texture manager dot bind texture and then we can pass in our display case gui now that we’ve done that we need to calculate where we want to render it so let’s create an

Int x and we already have an in text let’s change this to mouse x and mouse y which is what it actually is we can change it to this dot width minus this dot x size divided by two and then we can copy this change this to into y

And this to height and y size and then we can do this dot b l i t the matrix stack x y then 0 0 this dot x size and this dot y size and that is it for our screen now we need to bind our screen in our client event bus

Subscriber screen manager dot register factory container types init dot display case container type dot get and for our screen we do display case screen colon colon new and finally we need to register our container types in it so let’s go to tutorial mod and under here we can do container types init dot

Container types dot register bus and that is actually it i’m not going to be creating the model in this tutorial but we are going to fill in the texture this texture is going to be in the github in the description so under textures let’s create a new package called dot gui

So i already have my texture prepared and i’m going to drag it into gui and make sure it’s called display underscore case.png however i made two small mistakes this here was a multiplier this should just add column and row and down here i had index is less than 36

I don’t know why but that this should just be display k style entity dot slot and now if we run the game we should see a very weird looking block but if we place this down we can open it and we can place stuff inside it

And take stuff out in the next episode we’ll be going over a custom block model for this and after that we’ll be creating tile entity renderer to render the block that’s inside of it however that’s going to do it for this episode the source code is in the description

And so is my discord thank you for watching and i’ll see you later

This video, titled ‘Minecraft Modding Tutorial 1.16 | 8.0 – Containers + GUIs’, was uploaded by Cy4’s Modding on 2021-02-27 13:04:45. It has garnered 17530 views and 267 likes. The duration of the video is 00:20:17 or 1217 seconds.

this is a long one lol

(ɔ◔‿◔)ɔ ♥ ~ expand me

C://Links/ GUI Texture: https://bit.ly/3uBRcnn

C://Follow_Me/ Subscribe: https://www.youtube.com/channel/UCJIDXtGpf4wv1ybDzdTA_vQ/ Website: https://mcmodding.club/tutorials/

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

C://Source_Code/ This Episode: https://github.com/Cy4Shot/ModdingTutorial1.16/tree/main/8.0-Containers%2BGUI All Episodes: https://github.com/Cy4Shot/ModdingTutorial1.16/

  • Speedrunning Minecraft: Can I Beat It in Time? | Ep.1

    Speedrunning Minecraft: Can I Beat It in Time? | Ep.1 Minecraft Adventures with a Time Limit Embark on a thrilling Minecraft journey with yoyo pintos in their latest series, where time is of the essence! In this episode, yoyo pintos dives into the world of Minecraft with a unique twist, adding an element of urgency to the gameplay. Let’s explore the exciting highlights of this episode! Exploring New Horizons As yoyo pintos ventures into the vast landscapes of Minecraft, viewers are treated to stunning visuals and intricate details of the game world. From towering mountains to lush forests, every corner holds a new adventure waiting to be discovered. The… Read More

  • Block Bonanza: Episode 2

    Block Bonanza: Episode 2 Welcome Back to Minecraft: Exploring New Blocks and Features! After an eight-year hiatus, diving back into Minecraft can feel like stepping into a whole new world. The game has evolved significantly, offering a plethora of new blocks, features, and adventures for players to explore. Let’s delve into some of the exciting changes that have taken place since your last Minecraft adventure! Discovering New Blocks One of the most noticeable differences upon returning to Minecraft is the abundance of new blocks available for construction. From vibrant terracotta blocks to shulker boxes for storage, players now have a wide array of… Read More

  • Wheel Chooses My Minecraft House!

    Wheel Chooses My Minecraft House! The Wheel Decides: Building a Minecraft House Exploring the world of Minecraft can lead to endless possibilities, especially when it comes to building your dream house. In a recent video, a Minecraft enthusiast decided to let fate take the reins by using random generators to determine the design of their new home. This unique concept was inspired by popular content creators like LDShadowlady, Dangtaht’salongname, and lilsimsie. Embracing Randomness With the help of random generators, the player relinquished control over the design process, allowing chance to dictate the style, layout, and features of their Minecraft house. This approach added an… Read More

  • Lucky Island Adventure: Minecraft Madness

    Lucky Island Adventure: Minecraft Madness In the world of Minecraft, where blocks reign supreme, I’m your news reporter, crafting rhymes like a dream. From Lucky Islands to battles in the night, I bring you the updates, shining bright. With each new video, I spin a tale, Of adventures and challenges, without fail. So join me in the game, let’s have some fun, In the world of Minecraft, under the sun. From Kra’s server to Crystalix’s domain, We explore the lands, without disdain. Facing zombies and skeletons, with sword in hand, Together we’ll conquer, across the land. So subscribe, like, and share with glee, For… Read More

  • Colorfobia en Minecraft Invertido

    Colorfobia en Minecraft Invertido Minecraft Inverted: A Colorful Challenge Imagine playing Minecraft with all the colors inverted – a truly unique and challenging experience! In this video, the player explores the game in a whole new light, facing obstacles and adventures like never before. Let’s dive into this colorful journey! Exploring the Inverted World The player starts by activating color filters to invert the colors, creating a visually striking environment. As they gather resources and navigate through the world, the inverted colors present a new set of challenges. Dark areas appear bright white, requiring the player to adjust their gameplay strategy. Delving into… Read More

  • Defeating the Great Ur-Ghast in Twilight Forest

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

  • Teammates’ Minecraft Mayhem: House Boom #shorts

    Teammates' Minecraft Mayhem: House Boom #shorts In this Minecraft SMP, my teammates were sly, They blew up my house, oh my, oh why? It all started with a quest for enchanted books, But things took a turn, they gave me strange looks. Mango, the baddy, with a mischievous grin, He had a plan, a way to win. So off to spawn, with good intentions in mind, Little did I know, trouble I’d find. Read More

  • Level up your Minecraft experience on Minewind Server!

    Level up your Minecraft experience on Minewind Server! If you’re looking for a new adventure in the Minecraft world, then look no further than Minewind server. With its exciting gameplay and unique features, Minewind offers a fresh experience for all players. Join the fun and explore the vast world of Minewind by connecting to the server at YT.MINEWIND.NET. Don’t miss out on the opportunity to be part of this amazing community and embark on new adventures. Happy mining! Read More

  • Join Minewind Server for Automated Building – Say Goodbye to Manual Construction!

    Join Minewind Server for Automated Building - Say Goodbye to Manual Construction! Welcome to NewsMinecraft.com! Are you tired of manually building houses in Minecraft? Well, we have the perfect solution for you. After watching the video “自动搭建房子!懒人的福利,再也不用自己手动搭建房子了!” you’ll see just how easy it can be to have a house automatically built for you. Imagine the convenience of having a fully constructed house without the time-consuming manual labor. That’s exactly what you’ll experience on Minewind Minecraft Server. Join us today and witness the magic of automated building. Simply enter the server IP YT.MINEWIND.NET and start exploring a world where building houses is a breeze. Don’t miss out on this innovative and time-saving… Read More

  • Crafty Particles: Minecraft’s Tiny Delight

    Crafty Particles: Minecraft's Tiny Delight In Minecraft, particles dance and play, Adding flair to the game in a magical way. From cherry blossoms to lava’s glow, Each particle tells a story, as we all know. They follow us around, two-dimensional and light, Guiding us through the game, shining bright. From breaking blocks to Redstone’s glow, Particles add depth to the world we know. So next time you play, take a moment to see, The beauty of particles, setting your mind free. In Minecraft’s world, where creativity reigns, Particles add a touch of magic, no chains. Read More

  • Minecraft Memes – I made something epic…

    Minecraft Memes - I made something epic...Looks like the meme builder really crafted a masterpiece with that score of 17! Read More

  • Minecraft Mayhem: Blood God, Ice Emperor, Techno!

    Minecraft Mayhem: Blood God, Ice Emperor, Techno! In the world of Minecraft, where legends are made, Technoblade’s journey, in rhymes, we’ll parade. From the Blood God’s realm to the Ice Emperor’s throne, His adventures in verse, with seeds of his own. In the Aether Collection, he seeks the divine, With plushies and mods, his fans intertwine. From Sky Block to Potato Purgatory’s plight, Techno’s quest for glory, in the day and the night. A structure encounter, a portal to find, Villagers fall, as Techno’s path winds. On his way to the Kingdom of God, he strides, In Minecraft’s vast world, where his legend abides. So listen… Read More

  • Don’t make me angry… I’ll block you! 🔥

    Don't make me angry... I'll block you! 🔥 When someone messes with your Minecraft world and you have to resist the urge to unleash your inner Ender Dragon. #dontmakemeangry #minecraftstruggles Read More

  • Join Minewind Minecraft Server for a Lag-Free Experience!

    Join Minewind Minecraft Server for a Lag-Free Experience! Welcome to NewsMinecraft.com! Are you tired of dealing with connection issues while trying to play Minecraft? We’ve all been there – getting kicked out of the game due to a lost connection can be frustrating. But fear not, we have a solution for you! In a recent YouTube video titled “how to fix connection lost minecraft,” the creator provides some helpful tips on resolving connection issues in Minecraft. By changing the DNS server, using Command Prompt to renew your IP address, and adding Minecraft as an allowed app in Windows Security Firewall, you can potentially fix those pesky connection… Read More

  • MrBeast Exposed! Shocking Facts

    MrBeast Exposed! Shocking Facts The Minecraft World of MrBeast: A Closer Look When it comes to the world of Minecraft, @mrbeast #shorts has made quite a splash with his unique approach to the game. Let’s dive into some fascinating facts and features that make his Minecraft content stand out! MrBeast’s Minecraft Creations One of the most impressive aspects of MrBeast’s Minecraft videos is his ability to create stunning builds and structures within the game. From intricate castles to elaborate redstone contraptions, his creativity knows no bounds. Each creation showcases his attention to detail and dedication to crafting a visually appealing world for his… Read More

  • TPDpinky builds insane time machine!

    TPDpinky builds insane time machine!Video Information This video, titled ‘bilding time agan’, was uploaded by TPDpinky on 2024-02-27 06:02:53. It has garnered 34 views and 4 likes. The duration of the video is 02:15:37 or 8137 seconds. im going to be bilding in minecraft and chating with any one who show up to wach Read More

  • Unfinished Business: Minecraft Exploration

    Unfinished Business: Minecraft ExplorationVideo Information This video, titled ‘Did we did Everything In Minecraft? Not Yet | Let’s Explore’, was uploaded by SoHailStorm on 2024-02-15 15:08:30. It has garnered 46 views and 7 likes. The duration of the video is 04:04:03 or 14643 seconds. Minecraft Livestream For a While #Minecraft #Livestream Read More

  • 🔥 Join “Lawless SMP” NOW! Minecraft Bedrock + Java Edition + PE! 💯

    🔥 Join "Lawless SMP" NOW! Minecraft Bedrock + Java Edition + PE! 💯Video Information This video, titled ‘HOW TO JOIN ” LAWLESS SMP “🔥😈 / MINECRAFT BEDROCK + JAVA EDITION+PE💯/ LIFESTEAL SMP / MOBILE PLAYERS’, was uploaded by MINE N FIRE on 2024-05-01 07:53:12. It has garnered 78 views and 4 likes. The duration of the video is 00:02:01 or 121 seconds. HOW TO JOIN ” LAWLESS SMP “🔥😈 / MINECRAFT BEDROCK + JAVA EDITION+PE💯/ FREE TO JOIN /Available on MOBILE+PC+Laptop #lawlesssmp @minecraftshorts69 @GWAbdaan @AbdullahFarooq-shorts PLEASE SUBSCRIBE GAME #MINECRAFT TAGS #mcpe,#shorts,#minecraft,#minecraftshorts,#mlg,#mlgclutch,#smp PLEASE SUBSCRIBE GAME #MINECRAFT TAGS #mcpe,#shorts,#minecraft,#minecraftshorts,#mlg,#mlgclutch,#smp Read More

  • “INSANE! Build a MOVING CAR in Minecraft!” #minecraft #shorts

    "INSANE! Build a MOVING CAR in Minecraft!" #minecraft #shortsVideo Information This video, titled ‘How to build a MOVING CAR in Minecraft #minecraft #minecraftshorts #shorts’, was uploaded by GamingInn on 2024-05-01 15:32:22. It has garnered 11821 views and 304 likes. The duration of the video is 00:00:56 or 56 seconds. In this Minecraft shorts video, join us as we dive into the fascinating world of creating a moving car within Minecraft! We’ll showcase the process of designing and building a functional car from scratch, providing an immersive and educational experience for all Minecraft enthusiasts. Discover the creative process behind constructing a moving vehicle using blocks, redstone components, and ingenuity…. Read More

  • Aster Craft: Mind-Blowing Minecraft Build

    Aster Craft: Mind-Blowing Minecraft BuildVideo Information This video, titled ‘Minecraft Build #minecraft #gaming #viral #shortsfeed #shortsvideos #minecraftofficial’, was uploaded by Aster Craft on 2024-02-15 06:53:20. It has garnered 8672 views and 210 likes. The duration of the video is 00:00:28 or 28 seconds. #minecraftbuilds #minecraftarchitecture #minecraftbuilding #minecraftconstruction #minecraftbuildideas #minecraftbuildingtips #minecrafthouse #minecraftcity #minecraftcastle #MinecraftModernBuilds #MinecraftMedievalBuilds #MinecraftFantasyBuilds #minecraftsurvivalbase #minecraftredstonebuilds #minecraftcreativebuilds #minecraftinteriordesign #minecraftlandscaping #MinecraftBuildingTechniques #minecraftstructures #minecrafttutorials #minecraftbuildinghacks #minecraftquickbuild #MinecraftBuildingChallenge #MinecraftBuildingCommunity #MinecraftBuildingInspiration #minecraft #minecraftbuilds #minecraftcommunity #minecraftjava #minecraftbedrock #minecraftmods #minecraftredstone #minecraftserverslist #minecraftsurvival #minecraftcreative #minecraftarchitecture #minecraftpixelart #minecraftfarming #minecraftmining #minecraftadventure #minecraftexploration #minecraftmultiplayer #minecraftpvp #minecraftpve #minecraftupdates #minecraftbuildingtips #minecraftresourcepack #minecraftchallenge #minecraftstreamer #minecrafttutorials #minecraftendirecto #EndDimension #endportal #enderdragon #endcity #EndGateway #EndStone #EndIslands #EndGatewayPortal #EndBiomes #endermen… Read More

  • EPIC Minecraft LIVE STREAM with Viewers! Day #1

    EPIC Minecraft LIVE STREAM with Viewers! Day #1Video Information This video, titled ‘🔴 #LIVE MINECRAFT MIGHTYMACCA SMP! PLAYING w/ VIEWERS! | DAY #1’, was uploaded by MightyMacca on 2024-02-27 02:06:53. It has garnered 230 views and 17 likes. The duration of the video is 04:34:13 or 16453 seconds. #minecraft #minecraftbedrock #youtubegaming Welcome tooo Day #1 MigthyMacca SMP Become a member today! – https://www.youtube.com/channel/UCD1Bbu4fWq1sGHRRrEsROZA/join donate? – https://streamlabs.com/mightymaccayt/tip Join this channel to get access to perks: 🤑 https://www.youtube.com/channel/UCD1Bbu4fWq1sGHRRrEsROZA/join 🔴 For Stream Commands When I’m LIVE 🔴 !hug 👌 – hugs {target.name} !lurk – 😿 {user.name} is now lurking, they will be missed! 😿 !Discord – 🧙🏼‍♂️ Mods & Macca… Read More

  • CRAZY TWITCH MOMENT: Eli TRAPPED by Abu! | Minecraft Highlights

    CRAZY TWITCH MOMENT: Eli TRAPPED by Abu! | Minecraft HighlightsVideo Information This video, titled ‘Eli fällt auf Falle von abu rein | Minecraft Highlights!’, was uploaded by minecraft deutsch twitch highlights on 2024-01-17 13:18:10. It has garnered views and [vid_likes] likes. The duration of the video is or seconds. If you own the content in this video and want to be excluded from this and future videos please contact us: https://bit.ly/3gCy2Ml … Read More

  • EPIC Minecraft Battle: Noob vs Pro Elemental Family!

    EPIC Minecraft Battle: Noob vs Pro Elemental Family!Video Information This video, titled ‘Having a NOOB vs PRO ELEMENTAL Family In Minecraft!’, was uploaded by Dash on 2024-02-17 14:00:32. It has garnered 795809 views and 7158 likes. The duration of the video is 00:46:39 or 2799 seconds. Having a NOOB vs PRO ELEMENTAL Family In Minecraft! This video Dash, Ruby and Cam are having Noob VS Pro elemental families in Minecraft! Who will have the best family? Watch till the end to find out! #minecraft #MinecraftMod #dash Read More

  • JJ turns into sniper and pranks Mikey in Minecraft!!!

    JJ turns into sniper and pranks Mikey in Minecraft!!!Video Information This video, titled ‘Mikey and JJ – JJ BECAME SNIPER AND PRANK MIKEY BATTLE in Minecraft – Maizen Parody’, was uploaded by Mikey and JJ – Minecraft on 2024-04-12 11:14:09. It has garnered 2739 views and 28 likes. The duration of the video is 00:13:14 or 794 seconds. Mikey and JJ – JJ BECAME SNIPER AND PRANK MIKEY BATTLE in Minecraft – Maizen Parody #mikey #maizen #minecraft Read More

  • The Chicken Coop – CABIN Modded 1.18.2 Whitelist 21+

    Welcome to The Chicken Coop Minecraft Server! If you’re a fan of the CABIN modpack and looking for a social and active community, look no further! Our mature and friendly community started in 2024 and we love taking our time to enjoy the game, build a beautiful world, and interact with each other. Our server specs: – CPU: AMD Ryzen Threadripper 3970X – Ram: 20 GB – Hosted in: Europe (US players welcome too!) – Whitelisted: Yes Visit our website to join or send me a DM. Hope to see you in-game soon! Read More

  • Amethyst Network

    Amethyst Network========== Amethyst Network ==========our goal for the Amethyst network is to create a place for everyone of all ages to be able to play in a safe and PG environment We offer many game servers such as Mini-Games which we host every Saturday Creative Survival Gens KitPVP and a Hub where players can connect and show off their cosmetics and moreWe want to provide the best gaming experience possible with amazing professional staff who want to help the community Server IP: AmethystNetwork.xyzThe Amethyst Network is a Minecraft server Network with gamemodes like SMP Gens Mini-Games KitPVP and MoreInformation:[​1.20.1+]https://discord.gg/zYJWymaqK4Features:[ ] Survival[]… Read More

  • Minecraft Memes – “Survival Mode: Delivering Creeper Justice”

    Looks like this meme is the answer to life, the universe, and everything! Read More

  • First day as a sharpshooter in Minecraft: Aiming for the LOLs #boom

    First day as a sharpshooter in Minecraft: Aiming for the LOLs #boom “First day as a shooter in Minecraft: *accidentally shoots a cow instead of a zombie* Well, looks like I need to work on my aim… #minecraftfail #gunmodstruggles” Read More

  • Join Our Public SMP Server in 2024!

    Join Our Public SMP Server in 2024! Welcome to the Exciting World of Minecraft Public SMP! Step into the bustling realm of Minecraft SMP servers with our vibrant public SMP community! Positioned among the top Minecraft servers to join, our public SMP realm invites players from all walks of life to immerse themselves in a collaborative and dynamic environment. Whether you’re a seasoned SMP enthusiast or a fresh-faced newcomer, our server provides an immersive platform where camaraderie and adventure flourish. Seamless Gameplay Across Java and Bedrock Editions Experience the thrill of Minecraft 1.20, 1.21, and the latest updates, including 1.20.5, across Java Edition and Bedrock Edition… Read More

  • Join Minewind Minecraft Server for the Ultimate Gaming Experience!

    Join Minewind Minecraft Server for the Ultimate Gaming Experience! Are you a fan of Minecraft tutorials and looking for a new server to join? Look no further than Minewind! With a vibrant community and exciting gameplay features, Minewind is the perfect place to unleash your creativity and connect with fellow Minecraft enthusiasts. Imagine building your own string farm like the one in the tutorial you just watched. Now picture sharing your creations with others and collaborating on even bigger projects. That’s the kind of experience you can have on Minewind. Join us today at YT.MINEWIND.NET and start your adventure on one of the most dynamic Minecraft servers out… Read More

  • The Bucket Logic in Minecraft!

    The Bucket Logic in Minecraft! The Logic of Buckets in Minecraft! Welcome to the world of Minecraft, where even the simplest tools can sometimes defy logic! In a recent video by OnePlusGameITA, the concept of buckets in Minecraft is explored in a fascinating way. Let’s delve into the curious world of Minecraft buckets and their mysterious properties. Bucket Mechanics in Minecraft One of the intriguing aspects of Minecraft is the behavior of buckets. In the game, if you pick up a bucket of lava, the bucket itself does not melt. However, if you pour the lava from the bucket into a lava pool, the… Read More

  • INSANE PRANK with DRAWING MOD in Minecraft!!

    INSANE PRANK with DRAWING MOD in Minecraft!!Video Information This video, titled ‘Mikey Use DRAWING MOD for PRANK on JJ and GIRL Pants in Minecraft! – Maizen’, was uploaded by Boopee on 2024-03-10 15:30:10. It has garnered 8722 views and 56 likes. The duration of the video is 00:36:30 or 2190 seconds. Mikey Use DRAWING MOD for PRANK on JJ and GIRL Pants in Minecraft! – Maizen This video is an unofficial work and is neither created nor approved by Maizen Sisters. Maizen Store promotion: https://shop-maizen.myspreadshop.com/ Thanks for watching, don’t forget to like and subscribe! Read More

  • Savage Noob Claps Back at Pro in Minecraft – Part 7

    Savage Noob Claps Back at Pro in Minecraft - Part 7Video Information This video, titled ‘Noob 😂 gave savage 😱 reply to pro Part-7 Minecraft #minecraft #lokicraft’, was uploaded by Ashwary gaming on 2024-03-18 02:04:55. It has garnered 8023 views and 306 likes. The duration of the video is 00:00:13 or 13 seconds. minecraft memes funny minecraft memes song minecraft memes compilation глент minecraft memes compilation minecraft memes memenade minecraft memes funny clean minecraft memes unspeakable minecraft memes tiktok minecraft memes shorts minecraft memes reaction #minecraft #Ashwary_gaming minecraft memes compilation video minecraft memes compilation tiktok minecraft memes compilation v1 minecraft logic memes #shorts minecraft memes funny moments minecraft memes unspeakablegaming… Read More

  • “LunaLand vanished in mysterious ways…” | DukeMeiser explores Minecraft

    "LunaLand vanished in mysterious ways..." | DukeMeiser explores MinecraftVideo Information This video, titled ‘LunaLand has been lost… | Minecraft with Duke Society’, was uploaded by DukeMeiser on 2024-04-14 12:48:05. It has garnered 291 views and 23 likes. The duration of the video is 01:42:29 or 6149 seconds. Thumbnail by Duke, thanks big dawg Join the stream goofies. The Official Dukers: https://discord.gg/mPhGh9xpwT Read More

  • INSANE Christmas Crafts in Crafting and Building! 😱🎄#Gaming #Viral

    INSANE Christmas Crafts in Crafting and Building! 😱🎄#Gaming #ViralVideo Information This video, titled ‘Christmas craft ideas in Crafting and building || #gaming #viral #minecraft #games #gameplay’, was uploaded by Black blue gaming on 2023-12-22 07:00:03. It has garnered views and [vid_likes] likes. The duration of the video is or seconds. Christmas craft ideas in Crafting and building || Instagram link … Read More

  • CristyM96 breaks all the rules in Minecraft – NO TOUCHING DIRT

    CristyM96 breaks all the rules in Minecraft - NO TOUCHING DIRTVideo Information This video, titled ‘Minecraft dar nu am voie sa ating DIRT’, was uploaded by CristyM96 on 2024-04-04 15:52:29. It has garnered 231983 views and 14066 likes. The duration of the video is 00:00:48 or 48 seconds. 𝗦𝗨𝗕𝗦𝗖𝗥𝗜𝗕𝗘 and 𝗜𝗗𝗘 or you’re out of luck. – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – ★ USEFUL LINKS ★ ▸ Discord… Read More

  • New Moon Crab 🟢Survival SMP Update – Halloween Spooks!

    New Moon Crab 🟢Survival SMP Update - Halloween Spooks!Video Information This video, titled ‘🟢Live – Mythical Survival SMP – Big update! Minecraft!’, was uploaded by HalloweenMoonCrab on 2024-03-05 04:22:35. It has garnered 122 views and 3 likes. The duration of the video is 04:07:38 or 14858 seconds. live stream gamin buds 🙂 📲 Discord – https://discord.com/invite/mythicalnetwork 🎮 Modpack -https://www.technicpack.net/modpack/pokeninjas-kingdoms.1926218 🖥️ Installation Guide – https://drive.google.com/drive/folders/1n3LNUNPZ_RoOVFwryWEQe1WdBgJ2WoLc Twitch: https://twitch.tv/HalloweenMoonCrab Subscribe to the second channel: https://youtube.com/@HalloweenMoonCrabEXTRAS TikTok: https://www.tiktok.com/@halloweenmooncrab_ Twitter: https://twitter.com/unfollowwallace Join the discord!: https://discord.gg/YNQgdQXQTq #minecraft #mythicalsmp #smp #minecraftsmp Read More

  • “EPIC МУКА ИМБА В МАЙНКРАФТЕ! 😱🔥” #clickbait #майнкрафт

    "EPIC МУКА ИМБА В МАЙНКРАФТЕ! 😱🔥" #clickbait #майнкрафтVideo Information This video, titled ‘МУКА ИМБА В МАЙНКРАФТЕ #майнкрафт #minecraft #юмор #twitch #memes #стрим’, was uploaded by AllFacker on 2024-05-02 06:27:24. It has garnered 597 views and 21 likes. The duration of the video is 00:00:09 or 9 seconds. Read More

  • Insanely OP Chromasizer Mace in Minecraft #shorts

    Insanely OP Chromasizer Mace in Minecraft #shortsVideo Information This video, titled ‘the new mace is overpowered in minecraft… #shorts #minecraft’, was uploaded by Chromasizer on 2024-03-19 17:20:52. It has garnered 10069 views and 293 likes. The duration of the video is 00:00:11 or 11 seconds. (!) Disclaimer: The song in the video belongs to its respective owners and I or this channel does not claim any right over it. Minecraft Server IP: not a server… What is Minecraft in 2023: At its core, Minecraft is a game where players place blocks and go on adventures. This includes anything from crafting simple items like containers or weapons,… Read More

  • Insane Oatmeal Live Gaming Showdown 🔴 Minecraft, r6, fortnite

    Insane Oatmeal Live Gaming Showdown 🔴 Minecraft, r6, fortniteVideo Information This video, titled ‘🔴LIVE! | Playing Minecraft, r6, fortnite + other games! | 🔴’, was uploaded by _ OatmeaL _ on 2024-02-14 11:40:09. It has garnered 36 views and 6 likes. The duration of the video is 01:42:01 or 6121 seconds. #ps99 #petsimulator #r6 #rainbowsixsiege #BloxFruits #roblox #livestream #tradehangout #phantomforces #fortnite #bladeball #robux #games #gaming #assassin Read More

Cy4’s Modding – Minecraft Modding Tutorial 1.16 | 8.0 – Containers + GUIs