Minecraft 1.19 Fabric Modding Tutorial | SETTING UP THE WORKSPACE | #1

Video Information

Let’s set up the workspace for modding in fabric for 119. all right let’s start with the 119 tutorial series and we’re going to start of course once again at the very beginning even if you’re a complete beginner this is going to be the complete setup for the entire workspace

For fabric 119. so if you have never modded before you can still walk through this and let’s begin all of the resources and everything will of course be linked in the description below so no worries at all the first thing that you’re going to need is you are going to

Need a jdk now in this case we’re going to need jdk 17 i highly suggest using the one from adoption.net over here just making sure that you are on package type jdk and on version 17. then you can download the version for whatever your operating system might be i’m using

Windows so i’m going to download the msi for windows and you can see now it’s downloading here once it has finished downloading you can click on it and then it will prepare an installer over here and then you can install it like any other program as well after you’ve

Installed the jdk we then move on to an ide an ide is an integrated development environment and basically it is a very fancy text editor allowing you to write code minecraft at least the java version is written as the name suggests in java and for that i highly suggest using

Intellij idea here the community version is completely free and built on open source so no worries at all just start the exe that you’ve downloaded and you will get the installer over here just install this like any other program as well and once that is done that’s great

We don’t need to open intellij just yet we need actually something else before and that’s going to be this fabric example mode over here this is actually basically something that fabric gives us that is very easy and already basically set up as a already working example mod

Over here so what we’re going to do is we’re going to go to code and then download a zip file all right so i’ve already prepared the zip file in the folder that i wanted inside and i’m just going to extract all of the files here

As you’ve seen this is just winrar at this point shouldn’t be anything too unknown in this case and what i actually want is i want all of those files one folder up so what i’m just going to do is i’m just going to cut all of them out

And i’m going to paste them in right here now this is just something that i want to do because i want them in the fabric tutorial 119 folder in this case and then we can delete both the zip file and this folder as well we can also delete the github folder because this

Just contains some workflows and we don’t really need those for a you know an example mode that is totally fine the same actually goes for both the readme as well as the license file those can also be deleted the rest have to stay very important that all of those are

Actually correct and are present here what we can then do is we copy the link here where this is located and this is going to be needed in just a moment when we start intellij right and you’re also going to need some java knowledge now this is very very highly recommended if

You don’t know java at all you can still follow the tutorials a little bit but i highly recommend the java introduction for minecraft and hightail modding that i have this is a playlist of 31 videos highly recommend those are going to teach you at least some of the basics

That you’re going to need for programming in java and and for minecraft modding i cannot recommend this enough i understand it can be sometimes frustrating to be told oh you first have to learn java but i really really want to tell you that it it can

Only help you in the long run right this is the thing if you really want to do some modding be it for a side hustle or be it for just hobby or whatever your you know motives might be if you just think modding would be the coolest thing

Ever if you know some java it’s going to help you immensely so i can just recommend this i will link this playlist in the description below as well right so this is my recommendation now let’s start intellij for the first time because when you open intellij for the

First time a similar window to this will reveal itself to you as i’ve said it’s going to be similar not quite right but what you will have definitely is going to be a new project button an open button and the get from vcs button we want to click the open button over here

And we then want to put in the just copied directory right into here so we can then select the fabric tutorial 119 or whatever you call the actual folder making sure that the contents of the folder look like this right so the gradle folder source folder we have a

Build.gradle file and so on and so forth are in the folder that you have just selected we can then press ok we’re going to say we trust this project and then a new window here will open you can see it’s already starting to do stuff we’re just going to let this run through

Any arrows that might come up is totally fine so you can see for example i’m already getting an error here that is totally fine now it has stopped building why is this happening right so this error simply means that we’re using an outdated version of java now this might

Happen to you if you have multiple versions of java installed onto your pc and that is totally fine because what we can do is we have to go to two different locations the first one is in file project structure and then under sdk we want to select java 17 and then same

Goes for the level language we just want to make this sdk default also 17 we’re going to hit apply okay and that’s the first step that’s great the second step is also going to file settings then we’re going to go to build execution deployment build tools gradle under

Gradle jvm making sure that we have selected project sdk 17. if that is the case we can hit ok and then we can hit the little elephant over here that says load gradle changes we’re just going to hit this again and then it’s going to start building once more now this can

Take anywhere from a few seconds all the way to a few minutes and sometimes even a little bit longer because it’s downloading some files it’s sort of generating some data in the background this might take longer or shorter depending on your internet connection and depending on how fast your pc is so

Just be patient wait until this is done at the end it will say build successful hopefully there we go just as i’ve said it so build successful in 26 seconds as i said it might take a little bit longer for you but no worries at all just be

Patient and wait until it does say this now once that is the case we actually want to do one more thing and that is open the terminal and right here we want to put in dot slash gradle w gen sources now that’s actually going to be very

Important here for us so that we can actually take a look at the vanilla source code a little bit nicer basically so that it’s easier to read and that is quite important for well a number of tutorials and also just so that you can have access to the actual source code so

You can see we’re currently writing all of the source code net minecraft all of those things all of those java files are currently sort of generated with some source code and once again just let this run through be a little bit patient once again take anywhere to a minute or two

Depending on how fast your pc might be all right there we go build successful in one minute and three seconds that’s great so now we can actually hide this again and then we can proceed right let’s proceed by opening the source folder so you can just do this by

Clicking on this little arrow and then the java folder and if you are using intellij for the first time this is probably how it will present it to you so netfabricmc and so on and those two well classes are in two different folders here now i actually don’t use

This appearance i actually do this a little bit differently so go to the options over here go to tree appearance make sure that height empty middle packages is turned off as well as flattened packages and this will turn this into a normal hierarchy and this is

What we’re going to be using through the rest of these tutorials and now we’ll go on to actually changing some things so let’s just double click the example mod class over here let’s close the build.gradle file and let’s see what we can see so there’s actually quite a few

Changes that we need to make but no worries at all we’re gonna get through all of them in just a little bit so let’s first of all delete everything inside of the on initialize method as well as this comment here we don’t need that anymore now what we want to do is

We want to go on to package click on example press shift f6 and then change the entire thing to net dot then whatever your name is so if your name is john you write john if your name is jamie you’re right jimmy and so on and so forth i’m of course counting draw

Therefore i’m gonna go right countdro that and then tutorial mod now this tutorial mod will represent your mod id i’m going to talk about the mod id in more detail in just a moment but just keep that in mind the tutorial mod in our case in these tutorials is going to

Be our mod id and then we’ll see so we’ll just click refactor and this should change some stuff over here on the left as well so it should basically move the classes here you can see the example mod and the example mixing both to the count draw tutorial mode package

Structure this means that we can now click on fabric mc press the delete key and delete this and nothing else should be lost now we can already see the mod id over here as well so this is mod id what does this mean well what we want to

Do is we want to say tutorial mod this is of course once again our mod id and then what i’m going to say is we want to select this including the quotation marks right click refactor introduce constant this constant will be called so now you can just start typing mod

Underscore id hit enter finalize and there we go now we have a public static final string called mod id which saves our mod id which is tutorial mod what we also want to do is we want to click on example mode press shift f6 and just

Once again now we can start typing and we’re going to type tutorial mod hit enter and there you go now we’ve changed the name of the class and the name of the file simultaneously now let’s move on to opening the resource folder over here the assets folder we can see

There’s a mod id folder in here we can actually delete this and we want to move on to the fabricmod json file so double click this to open it and here we can see we once again have the mod id and now i’ll explain so this is of course

Once again tutorial mod for us and the mod id can only contain lowercase characters numbers underscores and dashes and that is it nothing else can be contained in there there cannot be contained a space you cannot put in uppercase characters none of that only lowercase characters underscores dashes

And numbers please keep that in mind and then you should be fine after changing the id here we can also change the name this is going to be the tutorial mod of course the authors well that is me but i am calm down the content here you don’t

Really need to fill out for the time being you can also keep this and then later change this as well the license well i’m going to definitely change that that is going to be the mit license and then we come to a very important part

And that is the entry points so here we have a main entry point under net fabric mc example example mod now this class no longer exists because of course we both change its name and its location so we want to change this to net dot count joe

Dot tutorial mod dot tutorial mod please note the actual casing here these are the names of the packages those should always be written in lowercase and the name of the class you can see actually starts with a uppercase character and then every preceding word also has an

Uppercase character that is just a java convention highly recommend sticking to those as well now we find another mod id over here and we can change this as well tutorialmod.mixin.json and you will find wait a second this looks very similar exactly because this is actually what this is referencing and

Here we actually want to change this as well so we’re going to click on it shift f6 and then just change the mod id to your mod id in our case tutorial mod and then say refactor and now we have a tutorial mod that mixin.js let’s open

This as well and you can see we actually also have to change this package over here once again net fabric mc example packages don’t exist anymore so i want to change this to net.com joe dot tutorial mod dot mixer which is exactly where this is located net carbon

Tutorial mod mixen and this is exactly where this should point to after we’re done with the json files over here we want to open the gradle.properties file and want to change the mod properties as well you can see these are the mod properties first of all the version i

Highly suggest going with something like this so 0.01 so this is going to be the first ever version dash and then always add the version of minecraft that you’re currently using this is just going to make this a little bit easier for your users basically to immediately identify

Hey for which version of minecraft is this this is going to be for 119 of course the maven group is just going to be net count draw and then our archive name base is tutorial mod there you go this should be fine we can now reload the gradle changes again this actually

Should not take very long because it doesn’t change anything that’s significant it just changes the more properties and those are all of the changes that we need to do now before we start minecraft for the first time there’s actually another edition that we want to make and that is in our tutorial

Mod package we actually want to right click new java class we’re going to call this the tutorial mod client hit enter after the name here we’re going to write implements client mod initializer we’re going to hit the tab key to auto complete this this should then also add

This import here give a red underline that’s totally fine we’re going to hover over this click on implement methods going to suggest us to implement the uninitialized client method we’re going to say ok after this is added no more errors should be present here and then

We want to go to our fabricmod.json file again and under the entry points over here after the main after this closing bracket we want to say comma we want to start quotation marks client after the quotation marks ended a colon open bracket the closing bracket will generate automatically hit enter and

Then say netcountrow.tutorialmod dot tutorial mod client this is actually very important because anything that we’re gonna do that requires something that the client needs to register this all needs to happen in the tutorial mod client class and i want everything here to be set up for that as soon as we

Start modding right and after this has been set up now all of these steps are done and what we can do is we can go to the gradle tab at the very right here we can open it open the tasks fabric double click the run client right here and then

Close this again and just once again wait a few seconds and then in a few moments minecraft should hopefully launch with everything working let’s see if it doesn’t work for the first time that sometimes can happen you can just start it again and then on the second

Run hopefully it will work this arrow right here will always happen caused by com mojang ortholib exceptions minecraft client http exception this is totally normal and you should just ignore this particular error now you can hopefully already hear it and there it is 119 fabric modded let’s immediately turn off

The music over here because that is of course not quite what we need and you can see it actually did start and everything is working hopefully totally fine so this is first time that the modded instance of minecraft has loaded we can now quit the game and that’s

Going to be totally fine and then each subsequent times you want to start the game you can just go to the top here to this particular play button you can just hit it and then it’s going to start your mod once again now i want to show you

This in the very beginning because some people have been confused by this you know some people oh how can i now build my mod well it’s very simple actually just go to the terminal you put in dot slash gradle w build just like this hit

Enter and then as you can see it’s going to do some stuff once again it takes a couple of seconds to maybe a minute or so depending on how fast your pc is and then what you can do is you can go into your build folder so we’re just going to

Right click open in explorer this is going to to open our project right here we’re going to go into the build folder into the ellipse folder and right here the one that has the shortest name that is the jar file that you can basically get to go to your friends you can upload

That to curseforge modernth wherever you might want to upload this to and this is the jar that you need please be sure to also install fabric if you’re using fabric in this case that should of course be fairly self-explanatory right and at the very end here i want to show

You how you can set up the github repository which can be very very useful for basically changes that you’re making tracking them basically reverting to changes if you break something and also just all in all great tool to basically keep track of this github in this case

Is of course a version control system and it’s not only used for that but it can also be very useful for example if you have an issue right and you join the discord server then i can help you much faster and much easier if you have a

Github repository set up with all of your changes there i can immediately look at the code i can download the project i can try it out myself so i highly recommend doing this step as well now the first thing you’re going to need to set up a github repository is of

Course an account on github i highly recommend it just make a new account it is a absolutely reputable site it’s a great site so don’t worry at all i highly recommend it after you have created this what we’re going to do is we’re going to actually go back to

Intellij for now and right here what we’ll do is we’ll click the vcs button we’ll then go to share project on github right here now this is called fabric tutorial 119. i personally will make this private you don’t necessarily have to do this especially if you ever want

To share this particular project with a person on discord or anywhere else that you know they might help you then you don’t actually need to make this private i’m just making this private i’m recording this video earlier than the actual github repository should be available but you don’t necessarily need

To and then you can see share buy is empty here so we’re just going to go to add account and then you’re going to say login via github now this should open your browser it should redirect you to the jetbrains website over here now we can just click authorized github and you

Can see you have successfully been authorized in github if you’re logged in on github on another tab in the same browser this should all work we can then go back and you can see github.com drill and then i click the share button and then you know a bunch of stuff

Happens you can see initial commit i’m going to say add and there you go the github repository has been successfully shared on github and if i click on this you can see now there we go the actual project is now uploaded and if i were to

Change something so we can see let’s for example add a very important comment over here so we’re going to add a comment very important comment you can see that the tutorial mod class turned blue this is completely normal this just means that something inside of the class changed and we can then click

This commit tab we’re going to see all of the changes here we’re just going to see say added important comment we just want to basically describe what the changes were we then i’m going to click the commit button over here sometimes you have to click again because there

Are x number of possible warnings there but that’s totally fine we’re just going to say commit and then once that is done the actual changes have not been uploaded yet because for that you need to go to the top right here to this arrow here the push button click on this

And you can see all of the different commits that you’ve made we’re just going to say push you can see 32 seconds ago added important comment so this is all working totally fine exactly how you’d expect it to and now the github repository is also set up if you now

Ever want to make this public if you have actually made it private you can go to settings all the way down to change repository visibility into visibility you then just have to type out this particular string understand it you want to change the visibility and that should

Be fine that is all that you need to do and that is all that we need to set up the github repository as well and with that we’re finally done i know quite a long video but for a proper setup we need some amount of time but now

Everything is set up and we can immediately jump in to making some cool additions to minecraft with fabric i’m very excited for the 119 series we’re gonna see some crazy stuff over here i am sure of it and it’s going to be absolutely freaking awesome thank you

All so much for watching you can immediately continue with the next video and i’ll see you all there so yeah

This video, titled ‘Minecraft 1.19 Fabric Modding Tutorial | SETTING UP THE WORKSPACE | #1’, was uploaded by Modding by Kaupenjoe on 2022-06-13 13:59:54. It has garnered 95689 views and 1752 likes. The duration of the video is 00:18:25 or 1105 seconds.

In this Minecraft Modding Tutorial for Fabric, we set up the workspace for Modding Minecraft 1.19 for Fabric!

== MINECRAFT COURSES == Forge Course with 1.20.X: ▶️ https://url.kaupenjoe.net/CourseForge120XLaunch Fabric Course with 1.20.X: ▶️ https://url.kaupenjoe.net/CourseFabric120XLaunch

== ASSETS & DOWNLOAD LINKS == GitHub Repo: https://github.com/Tutorials-By-Kaupenjoe/Fabric-Tutorial-1.19 JDK Download: https://adoptium.net/temurin/releases IntelliJ Download: https://www.jetbrains.com/idea/download/ Fabric Example Mod: https://github.com/FabricMC/fabric-example-mod Java Playlist: https://www.youtube.com/playlist?list=PLKGarocXCE1FeXvEogpjz4SvHxF_FJRO6

== TIMESTAMPS == 0:00 Intro 0:31 Downloading and Installing the JDK 1:02 Downloading and Installing IntelliJ IDEA 1:32 Downloading and Setting up Fabric Example Mod 2:40 IMPORTANT: You will need some Java Knowledge! 3:38 Opening IntelliJ for the first time! 4:40 !IMPORTANT FOLLOW THESE STEPS! 5:33 BUILD SUCCESSFUL 5:45 Running genSources Task 6:28 Setting the Project Window appearance! 7:01 Changing Contents and Location of the ExampleMod Class 8:53 Modifying the fabric.mod.json File 9:05 IMPORTANT: Explaining the MOD ID 9:29 Continuing with the fabric.mod.json file! 10:23 Changing the name of the modid.mixin.json and its contents 11:00 Changing the Mod Properties in the gradle.properties file 11:47 Adding the TutorialModClient Class 12:18 Adding the reference to our TutorialModClient Class 12:52 Starting Minecraft in the Dev Environment for the first time! 14:00 How to build a JAR file for your mod? 14:51 (Optional) Set up a GitHub Repository for your Project! 17:58 Everything is done! 18:08 Outro

== TAKE A LOOK AT MY COURSES WITH COUPON CODES == ▶️ NEW Forge Modding with Minecraft 1.20.X: https://url.kaupenjoe.net/CourseForge120X ▶️ NEW Fabric Modding with Minecraft 1.20.X: https://url.kaupenjoe.net/CourseFabric120X ▶️ Learn Forge Modding with Minecraft 1.18: https://url.kaupenjoe.net/CourseForge118 * ▶️ Learn Fabric Modding with Minecraft 1.18: https://url.kaupenjoe.net/CourseFabric118 * ▶️ Complete and Roblox Lua Game Development: https://url.kaupenjoe.net/RobloxCoupon *

== SUPPORT ME ON PATREON == ▶️ https://www.patreon.com/Kaupenjoe

== SOCIALS == Discord: https://discord.com/invite/yqxykanpWf Personal Twitter: https://twitter.com/Kaupenjoe

Instagram: https://url.kaupenjoe.net/tutorials/instagram Facebook: https://url.kaupenjoe.net/tutorials/facebook Twitter: https://url.kaupenjoe.net/tutorials/twitter TikTok: https://url.kaupenjoe.net/tutorials/tiktok Written Tutorials: https://url.kaupenjoe.net/tutorials/blog

== LICENSE == Source Code is distributed under the MIT License. Additional Licenses for other assets can be seen below or in the accompanying CREDITS.txt on download.

== ADDITIONAL CREDITS == Outro Musik by Kevin MacLeod: “That’s a Wrap” Kevin MacLeod (incompetech.com) Licensed under Creative Commons: By Attribution 3.0 http://creativecommons.org/licenses/by/3.0

== AFFILIATE DISCLAIMER == * Some of the links and other products that appear in the video description are from companies which I will earn an affiliate commission or referral bonus from or are my own products. This means that if you click on one of the product links, I’ll receive a small commission or additional kickback without any additional cost for you. This helps support the channel and allows me to continue to make videos. Thank you for the support!

== HASHTAGS == #Minecraft #MinecraftModding #MinecraftTutorial #Kaupenjoe

  • Easy Minecraft Build Tutorial

    Easy Minecraft Build Tutorial Minecraft Build: Easy and Fun Creations! Are you looking for some easy and fun Minecraft builds to try out? Look no further! In this video, the creator showcases a build that is not only simple to make but also incredibly enjoyable. Step-by-Step Guide The video provides a step-by-step guide on how to create this particular Minecraft build. From gathering the necessary materials to putting the final touches, every detail is covered to ensure a smooth building process. Engaging Content With clear instructions and a visually appealing design, this Minecraft build is sure to capture the attention of both new… Read More

  • Warden Beam Madness!

    Warden Beam Madness! Minecraft Snapshot 22w15a: Warden Beam! The latest snapshot for Minecraft, 22w15a, brings exciting updates to the game, particularly focusing on the powerful Warden mob. Previously known for its close-range attacks, the Warden now boasts a long-range attack, making it an even more formidable opponent. Long-Range Warden Attack In a thrilling demonstration, players can witness the Warden engaging in long-range combat against the Wither. The Warden’s new ability to target enemies from a distance adds a challenging dynamic to battles, showcasing its strength and agility. Impressive Damage Output The Warden’s long-range attack is visually stunning, emitting powerful shockwaves that deal… Read More

  • Haunted by Herobrine: Minecraft’s Spooky Site

    Haunted by Herobrine: Minecraft's Spooky Site In the world of Minecraft, Herobrine reigns supreme, But have you heard of Herobrine.com, a site that once caused a scream? From a Chinese blog to a screamer, it took a twisted turn, But now it’s just a sunset, a lesson we must learn. The mastermind behind it all, a man named Sunzhen, Spreading fear and shock, scaring kids again and again. But as time went on, his focus shifted to a different plight, Air pollution in China, a battle he had to fight. So now Herobrine.com is just a memory of the past, A reminder that even legends… Read More

  • Monster Koala Portal in Minecraft

    Monster Koala Portal in Minecraft The Mysterious Koala Monster Portal in Minecraft Exploring the Zoonomaly Game In the vast world of Minecraft, there exists a peculiar anomaly known as the Koala Monster. This creature is unlike any other, with a sturdy body and four eyes. But where are the other two eyes, you may wonder? Join UzeMing on a thrilling adventure as he delves into the realm of portals that defy reality. Creating the Koala Monster Portal UzeMing takes on the challenge of crafting a portal to the Koala Monster in the Zoonomaly game. This monster is said to be incredibly scary, with four… Read More

  • Join Minewind Server for Custom 3D Skins in Minecraft!

    Join Minewind Server for Custom 3D Skins in Minecraft! Welcome to NewsMinecraft.com, where we bring you the latest updates and trends in the Minecraft community! Today, we stumbled upon a fascinating YouTube video titled “How to Make 3D Custom Skin Totem in MINECRAFT PE/JAVA 1.20+” in Hindi. While the video itself may not be about Minewind Minecraft Server, it got us thinking – why not join a vibrant and exciting Minecraft community like Minewind? Imagine a world where you can unleash your creativity, build unique structures, and engage in thrilling PvP battles. Minewind offers a dynamic and immersive gameplay experience that will keep you hooked for hours on… Read More

  • Testing My Gaming Skills! GTA, Hogwarts, Minecraft

    Testing My Gaming Skills! GTA, Hogwarts, Minecraft Oyunlar Hakkında Ne Kadar İyisin? Popüler oyunlar hakkında ne kadar bilgi sahibi olduğunuzu test etmeye hazır mısınız? Bu videoda GTA, Minecraft ve Hogwarts Legacy gibi oyunlar hakkında ne kadar iyi olduğunuzu ölçeceğiz. Kendi oyun becerilerinizi sınayın ve ne kadar iyi olduğunuzu keşfedin! GTA San Andreas Bilgi Testi CJ’in asıl adı nedir? Carl Johnson Minecraft Bilgi Testi Herobrine kimin kardeşi? Notch’un kardeşi Hogwarts Legacy Bilgi Testi Hogwarts Legacy’de hangi gruba seçilirseniz Azkaban’a gidersiniz? Hufflepuff Eğer soruların cevaplarını bilemediyseniz, videonun üstündeki linkten detaylara ulaşabilirsiniz. Oyun bilginizi test etmek için hemen izleyin ve kendinizi yeni bir meydan okumaya hazırlayın! Read More

  • NOTCH’s New Game: Minecraft 2.0?

    NOTCH's New Game: Minecraft 2.0? Exploring Notch’s New Game: Levers and Chests Notch, the mastermind behind Minecraft, has embarked on a new gaming venture with the creation of Levers and Chests. Let’s delve into the initial glimpses of the game and Notch’s statements! Notch: The Minecraft Maestro Before diving into the new project, let’s take a moment to appreciate the journey of Marcus Persson, also known as Notch. His childhood fascination with video games eventually led to the creation of Minecraft, a game that captured the hearts of millions worldwide. Despite selling Minecraft to Microsoft for a staggering sum, Notch’s true passion lies in… Read More

  • EPIC Texture Pack for Minecraft Mods

    EPIC Texture Pack for Minecraft Mods The Exciting World of Minecraft Texture Packs Discovering a New Texture Pack Exploring the vast world of Minecraft, players stumble upon a remarkable new texture pack – the Peep Texture Pack. This pack promises a unique visual experience, setting it apart from the default textures. Unveiling the Features Upon closer inspection, the Peep Texture Pack reveals intricately designed outlines and smooth animations. The default textures, such as blocks and items, receive a fresh and appealing makeover, enhancing the overall gameplay experience. Personal Anecdotes and Minecraft Adventures As players delve into the game, they encounter various challenges and adventures. From… Read More

  • Underground Iron Mining in Minecraft

    Underground Iron Mining in Minecraft Minecraft Adventure: Iron Mining Underground Exploring the Depths In a thrilling Minecraft adventure, Solus embarks on a quest for iron deep underground. Iron, a crucial element in the game, is essential for crafting various tools and armor. Solus, accompanied by his loyal dog, ventures into the depths to mine for this valuable resource. Building a Stronghold Prior to his underground expedition, Solus showcases his impressive above-ground base. With intricate details like a water elevator and strategic storage solutions, his base reflects his dedication to the game. The importance of a well-designed base becomes evident as it serves as a… Read More

  • Crafting Fireworks: Minecraft’s Explosive Delight!

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

  • Minecraft Shenanigans: Episode 8

    Minecraft Shenanigans: Episode 8 Minecraft Adventure: Exploring New Mods and Features Introduction In this episode of Minecraft, Pilot delves into a world filled with new mods and features that enhance the gameplay experience. With a plethora of mods like Additional Structures, Alex’s Mobs, and Biomes O’ Plenty, the adventure is bound to be exciting and unpredictable. Discovering New Possibilities Pilot embarks on a journey to explore various structures and encounters unique mobs like witches with sophisticated backpacks. The addition of mods like Dungeon Crawl and Dungeons and Taverns adds depth to the exploration, making each discovery a thrilling experience. Challenges and Triumphs Throughout… Read More

  • Join Minewind: Escape the Worst Start in Minecraft Hardcore!

    Join Minewind: Escape the Worst Start in Minecraft Hardcore! Welcome to NewsMinecraft.com! Today, we stumbled upon a fascinating YouTube video titled “The WORST START Ever In Minecraft Hardcore! (Hindi Gameplay) #1.” While the video itself may not be about Minewind Minecraft Server, it got us thinking – why not join a server that offers a unique and thrilling Minecraft experience? Imagine embarking on a new adventure in a world like no other, where every decision you make could mean the difference between survival and defeat. That’s where Minewind comes in. With its hardcore survival mode, challenging gameplay, and vibrant community, Minewind offers an unparalleled Minecraft experience that will… Read More

  • Minecraft CRAZIEST VIDEO ever! MUST WATCH TILL END #shorts

    Minecraft CRAZIEST VIDEO ever! MUST WATCH TILL END #shortsVideo Information [Music] woo This video, titled ‘Minecraft you have to watch this video till the end #shorts’, was uploaded by NipunLegendShorts on 2024-02-12 08:30:09. It has garnered 102 views and 6 likes. The duration of the video is 00:00:13 or 13 seconds. Thanks For Watching 🙂 Subscribe To The Channel As Not To Miss The Minecraft Shorts! About The Short :- Title :- Minecraft_ you have to watch this video till the end #shorts Hashtags :- #shorts #minecraft #minecraftshorts #gaming #gamingshorts #shortsfeed #insane #minecrafttrendingshorts #viral #trending #meme #memes About The Game :- Game Name :- Minecraft Java Edition Keywords… Read More

  • Ultimate Minecraft Pro Tips

    Ultimate Minecraft Pro TipsVideo Information annp oh is ANP you know what it means yeah he doesn’t so anyway you live in [ __ ] pistan mate [ __ ] up angry said he Liv pistan we lost we lost another OG but I’m not giving you all this I found Bro you’ve been playing without us that’s so cra fat oh I just found a what it called aole is this [ __ ] whatever version we play on the newest version which version are we playing on I don’t know who asked youing the host your balls if you don’t hush down all right I’m not playing… Read More

  • Pro Gamer Masterfully Dominates PVP Legacy in Minecraft

    Pro Gamer Masterfully Dominates PVP Legacy in MinecraftVideo Information This video, titled ‘Playing PVP Legacy and not doing bad (Minecraft)’, was uploaded by Gentalaman on 2024-02-14 05:00:06. It has garnered 41 views and 5 likes. The duration of the video is 00:32:39 or 1959 seconds. hope u guys enjoyed the vid pls like it up and sub 🙂 Kevins channel https://www.youtube.com/@KevinX9865 discord: https://discord.gg/Vz562fm4f3 tiktok: https://www.tiktok.com/@gentalaman?lang=en heard this helps: Like ParrotX2 and his School’s Minecraft Server / School SMP Series where he Started a War or Ended a War. Not Leowook, RoshamboGames, ClownPierce and his LifeSteal SMP Season 2 / his School’s Minecraft Server / School SMP /… Read More

  • 🔥 Top 10 ADDONS para SURVIVAL en MINECRAFT 1.20! 💥

    🔥 Top 10 ADDONS para SURVIVAL en MINECRAFT 1.20! 💥Video Information Looking to add a fresh and exciting touch to your Minecraft bedrock experience? With exciting additional content that is designed to improve your experience and free you from monotony, today you have come to the right place because in this video I share with you my top 10 of the most incredible addons for Minecraft bedrock for versions 1.20, but don’t forget to subscribe and leave your like so that this Minecraft channel reaches more people to start I send a greeting to the following little people if you want a greeting Comment many times the word addons… Read More

  • Minecraft Parkour Profiles – Mind-Blowing Pixel Art!

    Minecraft Parkour Profiles - Mind-Blowing Pixel Art!Video Information [Music] watch my let me This video, titled ‘Satisfying Minecraft Profile Pixel Art ( PPL Request YT ) Part 3,642’, was uploaded by Relaxing Minecraft Parkour on 2024-01-14 04:46:21. It has garnered 558 views and 45 likes. The duration of the video is 00:00:13 or 13 seconds. Satisfying Minecraft Profile Pixel Art ( PPL Request YT ) Part 3,642 #minecraftpe #algorithm #artist you can get your short request video and post on your youtube channel mentioned me. if you also want to make your profile, just comment and then like the video. Please be patient if it takes… Read More

  • Minecraft TikTok Hack That Actually Works? 😱

    Minecraft TikTok Hack That Actually Works? 😱Video Information This video, titled ‘Testing Unbelievable Minecraft Tiktok Hack That Will Work🤯#shorts #ytshorts #minecraft #viral’, was uploaded by Khati Gamerz on 2024-02-29 02:30:03. It has garnered 884 views and likes. The duration of the video is 00:00:15 or 15 seconds. Testing Unbelievable Minecraft Tiktok Hack That Will Work🤯fishing#shorts #ytshorts #minecraft #viral @TechnoGamerzOfficial @imbixu #minecraft #minecraftmeme #minecraftshorts #minecraftanimation Minecraft NORMAL vs REALISTIC 🤯 minecraft shorts, minecraft but , minecraft memes , minecraft trends , satisfying minecraft video , minecraft challenge,normal vs realistic minecraft,minecraft normal vs realistic #shorts,minecraft normal vs realistic 🤯, minecraft shorts,minecraft memes,minecraft realistic,minecraft normal vs realistic, realistic minecraft,minecraft… Read More

  • Norah vs. Luna Realm Store Challenge!

    Norah vs. Luna Realm Store Challenge!Video Information [Music] stream is starting soon stream is starting soon stream is starting soon stream is starting soon stream is starting soon stream is starting soon stream is starting soon stream is starting soon no I’m not late I’ve been waiting on you I’ve been here waiting on you I’ve been here all this time waiting on you waiting on you waiting on you wait is stream starting soon what time is it hang on I’m not ready 3 2 1 stream is starting soon stream is starting soon stream is starting soon stream is starting soon stream is… Read More

  • ULTIMATE MINECRAFT TIPS & TRICKS- Boost your skills FAST!

    ULTIMATE MINECRAFT TIPS & TRICKS- Boost your skills FAST!Video Information some moments in Minecraft can get confusing for example easily finding diamonds getting overpowered armor and fishing if you consider that as confusing so here are 35 tips and tricks to help you become a better Minecraft player we all know the golden rule of Minecraft and that is to never dig straight down because you can either fall in lava fall from a great height fall into a cluster of mobs that you can’t handle or awaken the warden like waking up Dad if you are going to dig straight down Dig A 1 by two hole… Read More

  • Shocking: Minecraft Granny House with FX Shivam69 #Trending

    Shocking: Minecraft Granny House with FX Shivam69 #TrendingVideo Information This video, titled ‘LET’S MAKE TO GRANNY HOUSE IN MINECRAFT!!#fxshivam69 #minecraft #grannyhouse #trending’, was uploaded by FX SHIVAM 69 on 2024-02-16 03:55:34. It has garnered 2880 views and 39 likes. The duration of the video is 00:12:51 or 771 seconds. LET’S MAKE TO GRANNY HOUSE IN MINECRAFT!!#fxshivam69 #minecraft #grannyhouse #trending 📷 Instagram: / Priyanshu_Patel_89 🕊️Twitter:- / fxshivam69 👍 Facebook: / FX SHIVAM 69 📶@Priyanshupatel89 Email: [email protected] 🔥 Like Share & Subscribe My Channel. granny house in Minecraft Minecraft best house granny new video Granny wala game granny wala cartoon Gulli bulli game granny chapter1 ki video granny grandpa… Read More

  • AmiSMP

    AmiSMPWe are a SMP server for all, we have a few YouTubers and Streamers and would love some more! If you want to join us click the discord link, we are active, have friendly staff. amismp.net Read More

  • SoulCraft Vanilla – No Whitelist – Hermitcraft – Rewards

    🌟 Join a Thriving Community: Immerse yourself in a mature and vibrant player community inspired by the legendary Hermitcraft. Discord Invite: https://discord.gg/soulcraft 🌍 Explore a Fresh Server: Embark on an epic journey in a brand-new league, where every adventurer starts on equal ground. 🏆 Claim Your Rewards: Seize the opportunity for epic rewards in this exciting league—your chance to stand out and be recognized! ⚔️ Choose Your Path: Whether you’re a master builder, redstone wizard, or intrepid explorer, Soulcraft welcomes diverse playstyles. ✨ Craft Your Legacy: Be part of a dynamic world where creativity knows no bounds. Shape your destiny… Read More

  • Boom Time Villagers: Minecraft Pocket Edition Addon Madness

    Boom Time Villagers: Minecraft Pocket Edition Addon Madness In the world of Minecraft, where blocks reign supreme, Two addons to explore, like a vivid dream. First up, the TNT addon, with explosions so grand, Redstone and blocks, in your hand they’ll land. Launch the TNT, watch the world destroy, With lava and more, it’s a sight to enjoy. Ultimate TNT, rainbow TNT too, Beautiful and deadly, a colorful view. Next up, the Warrior Villagers, a brave new sight, Defending your village, ready to fight. Links in the comments, for you to download, Enjoy the game, let your adventures unfold. That’s all for today, in the world of… Read More

  • CATNAP VS ZOONOMALY: The Ultimate Poopy Playtime Showdown! 😹🦍 #minecraftmeme

    CATNAP VS ZOONOMALY: The Ultimate Poopy Playtime Showdown! 😹🦍 #minecraftmeme “Catnap vs Zoonomaly: the ultimate battle of who can nap the longest without getting caught by their owner! Place your bets now, folks!” 😹 #catfight #naptimebattle #whoisgoingtowin Read More

  • Join Minewind: The Ultimate PvP Experience

    Join Minewind: The Ultimate PvP Experience Welcome to NewsMinecraft.com, where we bring you the latest and greatest in the world of Minecraft servers! Today, we want to introduce you to a server that is taking the Minecraft community by storm – Minewind. While watching a video about the best PvP server for Minecraft, you may have come across some exciting gameplay and intense battles. If you’re looking to experience that level of excitement and challenge for yourself, then Minewind is the place to be. With a focus on PvP gameplay, Minewind offers a thrilling and competitive environment for players of all skill levels. Whether you’re… Read More

  • Boubou’s Mischievous Minecraft Server Fun

    Boubou's Mischievous Minecraft Server Fun Minecraft Community Server Adventure Welcome to the exciting world of Minecraft, where players from all over come together to explore, build, and survive. Join Boubou on his community server, where Java and Bedrock players unite to embark on thrilling adventures in version 1.20.4 and 1.20.71, respectively. To join the fun, become a Level 2 channel member on Boubou’s Klötzchenbande and hop into Discord to accept the rules, provide your in-game name, and get whitelisted. It’s a token of appreciation for the amazing support from the community. Exclusive Benefits and Support For those looking to take their involvement to the… Read More

  • Caffeine-fueled Minecraft Sky Revolution: NEW Tech Skyblock Quests!

    Caffeine-fueled Minecraft Sky Revolution: NEW Tech Skyblock Quests!Video Information this is Sky Revolutions a fairly new 1.19 questing mod pack from the creator of project sacrifice however unlike project sacrifice which was a previous Sky Block that we played best around blood magic this one here is much more techb as you can see on the left hand side here in the quest book we do have mechanism we do have thermal expansion we do have I believe a little bit of pneumatic craft and of course we have some create as well and as you might guess this Quest book here starts up at the top… Read More

  • Alastor Kissed Angel Dust! Possible Couple?

    Alastor Kissed Angel Dust! Possible Couple?Video Information I just woled down food without chewing so it’s time to bounce my buddies must have missed me big time oh husk hey glad to see you what about you man I was actually enjoying my time when you weren’t around come on buddy calm down where are our other Pals alaster and Charlie I overheard some sounds sounded like moans I bet they’re up to something important in bed man I envy Charlie right now got anything to drink bro let me check seems like I’ve got something stashed here any booze will do drown the sorrow… Read More

  • INSANE Heartcore SMP Official Trailer | Minecraft Madness

    INSANE Heartcore SMP Official Trailer | Minecraft MadnessVideo Information This video, titled ‘Heartcore SMP Official Trailer | Minecraft Hardcore’, was uploaded by HapLegit on 2024-03-27 06:30:03. It has garnered 389 views and 47 likes. The duration of the video is 00:00:48 or 48 seconds. Heartcore SMP Official Trailer | Minecraft Hardcore This is a trailer for my new minecraft smp video. It has to be planned to be uploaded in April. Make sure to subscribe to channel to get the notification.. The video took me a month to make. I hope you will like it. I will try to take you guys after we will have good… Read More

  • Unleash Your MLG Skills in Minecraft!

    Unleash Your MLG Skills in Minecraft!Video Information This video, titled ‘Types of MLG | LEVEL 1 TO 6 | #minecraft #pocketedition’, was uploaded by ANAV 1124 on 2024-01-10 15:03:38. It has garnered views and [vid_likes] likes. The duration of the video is or seconds. Read More

  • Insane Raid on Psd1’s Giant Sugar Farm! Watch Now!

    Insane Raid on Psd1's Giant Sugar Farm! Watch Now!Video Information This video, titled ‘Why I Raided Biggest Suger Cane Farm In @Psd1 servers | Fire mc’, was uploaded by Steve_gaming on 2024-01-04 09:47:49. It has garnered 676 views and 17 likes. The duration of the video is 00:08:01 or 481 seconds. minecraft i raided biggest suger cane farm in fire mc https://discord.gg/fgn2P4HM lifesteal server ip: play.firemc.fun you can join from every platform from this ip and also join my discord server for empire smp application subscribe and like kardo #firemc #psd1 #lifesteal #public #minecraft #java #youtube Read More

  • Enter Cartoon World – Find Secret Minecraft Pit

    Enter Cartoon World - Find Secret Minecraft PitVideo Information an infinite number of round eyes in Minecraft we’ll have it in this clip today hey guys I’m with you zomok at the beginning I’m going to ask everyone to like subscribe we get everything thank you so much I appreciate it very much and we’re starting we’ve got round pits today these are the kind of interesting cool lots of cool characters let me show you a dream catcher here rainbow friends remember from the digital circus this is Khloe bourjois ladybug’s friend well as a friend she’s a little Moon SpongeBob and the scariest and most… Read More

  • Unbelievable adventure in search of the blaze!

    Unbelievable adventure in search of the blaze!Video Information Halo teman-teman kembali lagi dengan aku putakun jadi di video kali ini kita akan BL ya teman-teman dan gue udah cari nethernya dulu di kamera jadi kita tinggal bunuhi blnya saja let’s go Oke teman-teman kita atur dulu modenya jadi mode normal Oke dan Kita serang langsung Astagfirullah e pedang pedang pedang Oke teman-teman ini gua akan cepatin aja ya Di menit ke eh di mana gue dapat sekitar 7 R ya teman-teman supaya tidak lama let’s go Oke teman-teman kita masih masih ngebunuh ya satu lagi ya teman-teman kita akan dapat tujuh Oke Belum masih belum ya… Read More

  • Unleashing the Mongster in Minecraft 1.7.3 Stream!

    Unleashing the Mongster in Minecraft 1.7.3 Stream!Video Information [Music] nug H nug h [Music] [Music] fore [Music] [Music] fore oh [Music] [Music] speee [Music] foree [Music] spee [Music] for hey everybody how you doing just relaxing my vocal muscles after belting that one out sorry hell yeah good thing I got some tea with me how y’all doing yeah it it does it rocks so much especially when I’m singing it hell yeah this is what plays in the Senate no comment uh just got some good oldfashioned Earl Gray didn’t drink my fill this morning picked it up yesterday last night pretty good if I… Read More

  • 🔥Insane Minecraft TNT Run End Challenge!😱🔥

    🔥Insane Minecraft TNT Run End Challenge!😱🔥Video Information This video, titled ‘🤯TNT✨Run🤣in😎Minecraft wait for💯the end🤯#minecraftmemes #minecraftserver #minecraft #shortfeed #viral’, was uploaded by SK NAYAN GAMER on 2024-03-06 12:30:11. It has garnered 3679 views and 114 likes. The duration of the video is 00:00:30 or 30 seconds. 🤯TNT✨Run🤣in😎Minecraft wait for💯the end🤯#minecraftmemes #minecraftserver #minecraft #shortfeed #viral Sure, here’s a new description for Minecraft: “Immerse yourself in the limitless possibilities of Minecraft, a sandbox adventure where your imagination is the only limit. Explore vast landscapes, mine for resources, build towering structures, and craft intricate tools. Whether you’re a lone survivor or collaborating with friends, every block you place shapes… Read More

  • Lonely Lobby

    Lonely LobbyCome on, and join us to our server, and be a part of the community! In this server, you can talk, chat and also communicate with each other! Life is good! Life is Fun! We should have to stay alive! lonelylobby.tk Read More

  • NTCSMP – SMP Semi-vanilla, Java 1.20.1, Survival, Fabric, LGBTQ+ Friendly, Adults Only, Whitelist

    Welcome to NTCSMP: A Unique Minecraft Experience! Are you ready to embark on an unforgettable journey in the vast and blocky world of Minecraft? Look no further! NTCSMP is the place where adventure, community, and creativity collide. Server Details: Version: Java 1.20.1 Game Mode: Survival Play Style: SMP (Survival Multiplayer) Flavor: Vanilla-Like Modding: Fabric and datapacks Inclusivity: LGBTQ+ Friendly Age Group: Adults Only Access: Whitelist (because quality matters) What Makes NTCSMP Special? Community-Driven: Our server thrives on collaboration and camaraderie. Join a tight-knit community of passionate players who share your love for Minecraft. Vanilla-Like Vibes: While we embrace mods, we… Read More

  • Minecraft Memes – I’m a robot. Ban me already! 🤖🔨

    Minecraft Memes - I'm a robot. Ban me already! 🤖🔨Looks like this meme just crafted itself a high score! Read More

Minecraft 1.19 Fabric Modding Tutorial | SETTING UP THE WORKSPACE | #1