Modding by Kaupenjoe – Minecraft 1.17.1 Forge Modding Tutorial Setup | Forge Modding 1.17.1 #1

Video Information

Let’s start minecraft modding with forge for minecraft 117.1 let’s see how to do that alright welcome to the first tutorial in the minecraft forge 117 one series where i basically show you how to set up minecraft modding with forge for minecraft 117.1 and there’s of course a

Few things that we’re going to need so there’s a few download links in the description below and we’re going to go through all of the prerequisites right now we’re going to set up everything so that you can start minecraft in the development environment so like i mentioned there’s a few prerequisites

Number one you’re going to need a jdk like you might know minecraft has been built with java therefore we’re going to need a jdk i really advise you to take the open jdk from adoptium right here basically just making sure that you are on open jdk 16 and then you can go down

Here and then basically choose the version that you need now there’s some differences here of course there’s so there’s linux versions there’s windows versions then there’s also version depending on what your architecture is so x86 would be for 30-bit version and then x64 would be for the 64-bit version

Of the operating system now i have a 64-bit operating system and the msi is going to be the easiest that’s basically file where you can just click and then install so you just download that and install it like any other program once that is installed you’re also going to

Need an ide an ide that is a integrated development environment it is basically a fancy text editor for programming basically and we’re going to be using intellij idea or this tutorial series and the community version here is completely free and open source so this is perfect for us link is of course also

In the description below make sure to download need that yes you do if you’ve never programmed before then you will need to start at some point and with something i can recommend the java tutorial by derek banas incredibly good it’s a good thing i don’t have a java tutorial of my own

Just yet i am planning on something however it’s just not quite ready yet this one will be totally fine otherwise you can of course take a look at anything else really but you will need a little bit of java knowledge otherwise you’re gonna have a very hard time

Understanding what is going on i will still try to explain everything as if you were a beginner i’m gonna try to be beginner friendly as possible however do keep in mind that some java knowledge is very much required and not optional right and then at the end you will need

The minecraft forge of course for the current version we’re going to be programming for minecraft 117.1 maybe if at some point 117.2 comes out there might be some differences i will probably have a pin comment at that point maybe stating the changes or if there’s no changes then you can of

Course just proceed if you’re watching this in the future which is very likely then instead of just one box being here you might have two boxes you will choose the right box because that is usually the recommended build and you’re going to choose the mdk here this will

Redirect you to a new site and then at the top right corner after waiting for six seconds you can click the skip button and then it will download a zip file i’ve already moved the zip file to the folder where i want to have my project and i will simply right click

And i’m going to extract it it’s going to create a new folder and it’s in there i can then delete the zip file if you don’t have a right click functionality then you’re going to need to install a program that will handle zip files i personally use vinrar but you can also

Use something like 7zip for example now i’m going to rename this to forge dash tutorial dot dash 117 one just like that then we’re gonna open the folder as you can see there’s quite a few things in here the first thing we’re gonna do is we’re going to delete all three of those

Files the credits the license and the readme file those are specific to the forge platform however my project is going to have a tiny bit of a different license for example and also different readme this is now fine what you’re going to do then is you’re going to

Start intellij now intellij is probably going to look a little bit different to you than it does to me right now however what is going to be the same is those three buttons the new project button the open button and the get from vcs button now we’re going to choose the open

Button and as you can see it already defaults to where the project is simply locate the folder that has all of the insights here so don’t choose the source of the gradle folder but shows the actual folder where those are located in let me select that and click ok then say

Trust project and then intellij will open and now a few things will happen in the background so it’s going to download a few things it’s going to basically set up a few things now this might take you know just a couple of seconds or it might take up to sort of two minutes

Three minutes depending on how fast your pc is just let this run through just keep be patient and at the end you will either get a build failed or a build successful either of those are fine we’re going to deal with the build failed in just a moment it only took 20

Seconds for me now this is because something has already downloaded so because i’ve set up this project before this is why it only took 20 seconds it might take two minutes for you be patient and wait for the build successful or the build failed build failed we’ll deal with in just a moment

Then i want to mention the warning here so you might get a warning this project is configured with the official obfuscation mappings provided by mojang what does that mean mappings in a very broad overview are basically the names of methods eels and parameters so everything has a certain name

Obfuscation basically is a process where those names are sort of scrambled up so that it’s not really readable for a human this is done so that you can’t just take code from someone else and just use it that’s the like very very high level overview and the mappings

Basically make it so that the code is readable now in the past there were the mcp mappings that were so provided by the mcp team those are however no longer available or 1.17 and upwards there will be only the official mappings as well as parchment mappings now parchment is the official

Mappings including some parameter names which are going to be very useful for us and we’re going to use the parchment mappings however how to set that up we’re going to see in the next tutorial in this tutorial we’ll just set everything up so that we could basically play minecraft in the dev environment

Long story short this warning can basically be ignored if you had a build failure or a build failed then you can do a few things so you can go to the terminal and you can put in dot backslash radalw like that and then gen intellij runs then hit enter now it’s

Going to now download a few things and take a look at a few things this can also take you know 10 seconds or it might take a minute or so and then we go build successful in 41 seconds now if you have a build fail here as well press

The up arrow and try this again so run this again if it still does not work there’s a few things that you can do number one you can delete this.gradle folder here and try to run it again if that still does not work we have a few

Other things that we need to set up here and that is going to be at the moment if we take a look back at the build folder at least for me i have java 8 so currently this runs on java 8 which is of course not quite what i want i

Actually want this to run on java 16. this should only really happen if you have multiple java versions installed on your pc if you followed the 116 tutorials this is where we had jdk 8 installed now we need java 16 so we need the other jdk there’s a few places where

We can basically change this so go to file and then project structure and then as you can see the project sdk is 1.8 the project language level however is 16. so we can basically change this to 16 hit apply and okay and then here under external libraries you can see

That it has a 16 so now it takes the jdk 16. there is however another place where we can change this and that is under settings build execution deployment build tools gradle then as you can see the grail jvm here it simply takes my project sdk so that’s great if it’s not

The case for you you can always change it to the 16 here as well and then everything should work you can then once again try the gen intellij runs once more and if that still does not work then you will most likely have an error

Here and you can then ask a question in the comments i will try to help you best i can right one last setting that you will need to take if this is your first time if you actually expand this java folder here then you can see the package

Structure now this might look different for you and the reason might be because you don’t have the flattened packages disabled so as you can see if i actually enable it like it would be per default then everything would be in one folder so to speak simply turn off flatten

Packages as well as compact middle packages and then everything will look exactly like it does for me right and now we can jump in and start changing some files the first thing that we want to change is in the build.gradle file simply double click to open and then

You’re greeted with this whole mess so this is quite a bit don’t worry about it we’re gonna go through the important bits part by part but firstly i want to draw your attention to these three things here so the version is the version of your mod now this is not

Really doesn’t follow any standard however what is really good is to basically put in the version of minecraft first and then a dash and then put the version of your mod in so i’m gonna do 117 one and then dash 0.0 so this would be the version of our mod

And this is the version of minecraft simply makes it a little bit easier for the user to see okay this is actually a mod for this version of minecraft instead of this version of minecraft the group here refers to the package structure of your mod usually this is a

Reverse domain name so my domain for example is net.tutorials by account joe now i would highly advise not to do this because then people might be saying wait this that’s not by you this is by tutorials by counting so simply put your name in here comm in

There that’s fine do put your name in here and then the mod id here is going to be the thing that is very interesting our mod id is going to be tutorial mod what is very important about the mod id is that it has to be all lowercase and

You can’t have any special characters in there so the only characters that are allowed are underscore dash and then numbers as well however that is it nothing else so you know spaces no no uppercase letters nothing like that so keep this as simple as you can the model

Is something that is very important for us so we will actually have to note that so we can change this here as well so tutorial mod and those three things are now changed correctly the next thing that we’re going to do is we’re going to hit ctrl r to get the replacement menu

Up and then the upper box here we’re going to put in example mod that’s basically the mod id that sort of comes with forge pre-programmed and we’re going to change that everywhere in this file to of course our mod id which is tutorial mod so we’re going to hit

Replace all and then it has been replaced in all the places where it needs to be replaced right now we can go up here to this little elephant that has appeared in the top right corner and simply click it this is going to basically load all of the changes that

We have just done basically the you know changing the name changing the group and the mod id there this should only really take a couple of seconds it shouldn’t be too long especially if you haven’t changed anything drastic here and then the changing of the build.gradle file is

Actually done can now proceed to go into our first class so we’ll open the example mod class by double clicking it and you can see that we are in here this is a normal java class and there’s a few things that we are going to change here

As well so we’re going to right click the example mod name refactor rename and we’re going to call this the tutorial mod class so tutorial mod and then enter it’s very important that you right click refactor rename because otherwise the name of the file will not change so for

Example if i just change this here you can see that a bunch of stuff happens that’s not good and we don’t want that we actually want to right click refactor rename very important next thing we’re going to do is we’re going to delete a bunch of stuff that’s in here so we’re

Going to basically put our cursor right here we’re going to hold shift and then click here so everything including the unq imc method is going to be deleted we’ll also just this is more for me than anything else i’ll format the early brackets correctly we’re gonna get two

Errors here you can simply delete those as well as the comment here and then two more things that we’re going to do is we’re going to basically select everything here starting with fml all the way up to get mod event bus right click refactor introduce a variable

We’re going to call this the event bus because this is something that we’re going to be using in future tutorials quite a bit so this is why it makes sense to basically introduce a variable for it and the other thing that we want to do is we want to we want to select

The example mod here including the quotation marks right click refactor introduce constant and we’re going to call this the mod underscore id and then i’m simply going to move it so i’m going to select it press control x and control v to paste it in here and now we have

Our mod id string right here now of course example mode is not armor id model armada’s tutorial mod now if you know this comment the value here should match an entry in the meta in slash mods.toml file interesting so our mod id is currently tutorial mod and this has

To match in the mods.toml file so if we open the resources folder and then the meta in folder we see there is a mods.tamil file here you double click and open it you can see mod id and i can change this to tutorial mod but this has

To match exactly what we are put in here if this does not match then it will say something like no match in the mods.thomas file found for your mod id something like that and that is of course not what we want so this has to match and then the display name i’m just

Gonna make it tutorial mod that’s gonna be fine so that’s also very important and then last but not least we’re going to change the package up here so this should be the package that you have put in right here select this copy it with

Ctrl c and then ctrl v to paste it in and then i can simply say move to package okay and then over here this will have changed so now my tutorial mod class is in the package net tutorials by carpendra tutorial mod i can then delete the empty packages right here and

Everything is now set up and now we can actually see if minecraft works so to start minecraft we’re going to to the top right here to gradle then we will expand tasks forge radial runs and then run client so simply double click that and then we can minimize this as well

And simply let it run through and there we go minecraft has started successfully i can also click the mods button here and take a look at the tutorial mod so it has been loaded in of course we don’t have any functionality nothing is really happening for with our mod but our mod

Is in the game so that’s pretty cool and now the development environment has been set up so this would actually be it however i will also show you how to set up a github repository this step is optional however highly recommended because having that is number one making it

Fairly easy for other people to basically see what your errors are so you can simply say hey this is my github repository they can simply download it and see everything that you have done so that’s going to be really easy this is why i highly recommend actually making a

Github account link is of course also in the description below and this is going to be really easy simply make an account there log in make sure that you’re logged in and then in intellij you can go to vcs up here and you can say create git repository now you’re going to

Select the folder where the project is in and say okay and now the git repository actually has been created but this is a local repository at the moment so what we can do is we can go to git and we can say github and then say share

Project on github we can click this the repository name is going to be fine i’m going to make this private for the time being if you want to share this with for example me if you have an error or something like that then make this public otherwise this is not going to

Work we could make a description but we’re not going to do that and now we need to add an account so this is something that you might have and you can simply say login via github i will click this and then the jetbrains account management here will open and i

Simply have to click authorize in github you have been successfully authorized but what might happen for you is the github window might open and it’s going to say hey do you really want to authorize you know jetbrains to use this you simply say yes and then everything

Will work you can see now my profile has been added here so share by count joe that is my github name and i can simply click share the background is now creating the actual repository and there you go so add files for initial commit the initial commit is basically the

First draft so to speak of all of your files so we’re simply going to take a look at this this is totally fine and we can simply hit add and everything will now be pushed and there you go successfully share project on github and

If i can now if i now switch to github again there it is so exactly count forge dash tutorial 117.1 so exactly where we have put it and there it is now if you make any changes here you can basically you know add a comment you can

See that the tutorial mod class has now turned blue this simply signifies there’s been a change in this file and we can go to commit on the left here and see oh those are all of the files that have changed and i can simply click the

Check mark and say added a comment and now what’s very important is that once i hit commit here i’ve now committed this change and now the tutorial mod class will no longer be blue however the change i have committed is not yet on the github repository for that we

Actually need to go up here to this little push button this arrow and we need to click it and then as you can see this is the commit i’ve just made and i actually have to simply click the push button here and then it’s going to push

That change to the github repository so if i go back here and i reload you can now see added a comment and i can go in here you can see added a comment and there you go added a comment i can also take a look at this there you go add a

Comment so now the comment is actually in there the change has been noted and is also uploaded on the github repository right all throughout the tutorial series you will of course also have my github repository for this tutorial series available for you to basically well download play around with

Take a look at the code as well so that is also available link is always in the description below as well i will also have individual gists so basically individual pastes of each file that has changed in each tutorial so while the github repository is going to be

Separated into branches so each tutorial will have a separate branch the gists are always only the changes that you will need to do for this particular tutorial if there are any files or anything like that there’s also going to be download links in the description below for each tutorial so no worries

There and yeah if you run into any issues or something like that you can always leave a comment or join the discord server that is also linked in the description below where i can offer you help best i can only on very few cases i’ve not been able to help someone

Set everything up correctly so yeah but that would be it for this tutorial right here i hope you found this useful you learned something new and you were successful setting everything up if there’s anything else please leave a comment down below and i would of course

Also appreciate a like and i will see you in the next tutorial so yeah

This video, titled ‘Minecraft 1.17.1 Forge Modding Tutorial Setup | Forge Modding 1.17.1 #1’, was uploaded by Modding by Kaupenjoe on 2021-10-05 14:00:05. It has garnered 32125 views and 619 likes. The duration of the video is 00:18:32 or 1112 seconds.

In this Minecraft Modding Tutorial for Forge 1.17.1, we are setting up the Workspace to Start Modding with Forge.

== MINECRAFT COURSES == ▶️ Learn Forge Modding with Minecraft 1.18: https://url.kaupenjoe.net/CourseForge118 * ▶️ Learn Fabric Modding with Minecraft 1.18: https://url.kaupenjoe.net/CourseFabric118 *

== ASSETS & DOWNLOAD LINKS == GitHub Repo: https://github.com/Tutorials-By-Kaupenjoe/Forge-Tutorial-1.17.1/tree/1-setup Gist: https://url.kaupenjoe.net/yt67/gist

JDK 16: https://adoptopenjdk.net/?variant=openjdk16&jvmVariant=hotspot IntelliJ IDEA: https://www.jetbrains.com/idea/download/ Forge Download: https://files.minecraftforge.net/net/minecraftforge/forge/index_1.17.1.html Github: https://github.com/ Derek Banas’ Java Tutorial: https://www.youtube.com/watch?v=n-xAqcBCws4

== TIMESTAMPS == 0:00 Intro 0:32 1. Downloading a JDK 1:18 2. Downloading an IDE (IntelliJ IDEA) 1:46 3. Java Knowledge [Add Card, once available] 2:31 4. Downloading Forge 3:10 What to do with the Minecraft Forge ZIP File? 3:53 Start IntelliJ for the First Time 5:01 Do not worry about the: Official Mappings Warning 6:12 BUILD FAILED – What to do next? 6:52 Making sure the Project is using JDK16 8:06 Folders look weird? How to fix that! 8:32 Modifying the build.gradle File 9:47 What is the Mod Id for Forge Modding? 10:41 Loading Gradle Changes 11:06 Changes to the ExampleMod Class 12:38 Adding the ModId to the mods.toml file 13:16 Moving our Class to a different Package 13:39 Starting Minecraft in the Dev Environment 14:14 Optional, but recommended: Setting up a GitHub Repo 17:18 Resources are available in the Description! 18:13 Outro

== TAKE A LOOK AT MY COURSES WITH COUPON CODES == ▶️ 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://url.kaupenjoe.net/patreon

== SOCIALS == Discord: https://url.kaupenjoe.net/discord 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

  • Join Minewind Minecraft Server for Endless Fun!

    Join Minewind Minecraft Server for Endless Fun! Are you a fan of gaming pranks and funny moments like the ones you see in @RON9IE’s latest video? If so, you’ll love the exciting and unpredictable world of Minewind Minecraft Server. Join a vibrant community of players who are always up for a good laugh and some epic gameplay. With unique features and endless possibilities, Minewind offers an experience like no other. Connect now by entering the server IP: YT.MINEWIND.NET and start your adventure today! Don’t miss out on the fun – see you in the game! #minecraft #gamerfleet #funnyvideos Read More

  • Revamping Minecraft Villages: Devblog 2

    Revamping Minecraft Villages: Devblog 2 The Evolution of Minecraft Villages: Dawn of Devblog 2 The Minecraft community is abuzz with excitement as the Dawn of Time project continues to revolutionize the game with its innovative mods. In this second installment of the Devblog series, the team behind Dawn of Time shares their progress on various mods that promise to enhance the Minecraft experience for players. Once Upon a Town: Village Mod One of the highlights of this Devblog is the Village Mod, aptly named “Once Upon a Town.” This mod aims to breathe new life into Minecraft villages, adding cultural elements and enhancing the… Read More

  • Join Minewind Server for Endless Adventures and New Friends!

    Join Minewind Server for Endless Adventures and New Friends! Welcome to NewsMinecraft.com! Are you a fan of Minecraft animations and funny moments? If so, you’ll love the latest video titled “Minecraft (day 3) Losing a friend – Minecraft 100 days funny animation.” While the video may not be directly related to Minewind Minecraft Server, it does showcase the endless possibilities and adventures that can be had in the world of Minecraft. Imagine stumbling into an incredible world of wonders, where anything can happen. That’s the kind of experience you can have on Minewind Minecraft Server. With a vibrant community, exciting gameplay, and endless opportunities for exploration, Minewind offers… Read More

  • Real Life Minecraft Aquarium & Terrarium Build

    Real Life Minecraft Aquarium & Terrarium Build Building Minecraft Aquarium and Terrarium in Real Life Aquarium Adventure In this exciting journey, our Minecraft enthusiast embarked on the challenge of bringing the aquatic world of Minecraft into real life. The aquarium build was a meticulous process involving wooden cubes, gray concrete, wooden planks, coral blocks, sand, fake Moss, Lego Minecraft parts, acrylic cubes, and water. The meticulous crafting of coral blocks, the creation of a sunken ship, and the addition of seagrass and kelp brought the aquarium to life. Despite some challenges with water color management, the final aquarium was a sight to behold. Terrarium Tale Transitioning… Read More

  • Speed Building Challenge: House in 38 Secs!

    Speed Building Challenge: House in 38 Secs! Exploring the World of Minecraft Embark on a journey through the pixelated landscapes of Minecraft, where creativity knows no bounds and building a house in 38 seconds is just the beginning. In the nineteenth video installment, the player dives into the Creative mode of Minecraft version 1.20.6, ready to unleash their architectural prowess. Building at the Speed of Light With a mere 38 seconds on the clock, the challenge is set to construct a house that not only stands tall but also showcases the player’s ingenuity. As the blocks come together in a whirlwind of activity, the structure takes… Read More

  • Uncovering the Most Illegal Minecraft Server Glitch

    Uncovering the Most Illegal Minecraft Server Glitch The Most ILLEGAL Glitch in Minecraft Server | SL Network Exploring the Minecraft Server In a recent adventure on the SL Network Minecraft server, a player stumbled upon what can only be described as the most ILLEGAL glitch ever seen in the game. The player, known for their daring exploits, uncovered a hidden secret that shook the very foundations of the server. Unraveling the Mystery As the player delved deeper into the glitch, they found themselves in a world of intrigue and danger. The glitch seemed to defy all logic and rules of the game, leading to a series… Read More

  • Join Minewind: Where Heroes are Made!

    Join Minewind: Where Heroes are Made! Welcome to Newsminecraft.com, where we bring you the latest and most exciting news from the Minecraft universe! Today, we stumbled upon a thrilling YouTube video titled “CEREN, KEMAL’İ KURTARDI! 😱 – Minecraft” that left us on the edge of our seats. The intense storyline, the dramatic twists, and the adrenaline-pumping action had us hooked from start to finish. But what if I told you that you could experience your own epic adventures in the world of Minecraft? Imagine the thrill of exploring vast landscapes, building magnificent structures, and battling fierce enemies alongside your friends. All this and more is… Read More

  • Join Minewind Minecraft Server for Epic Battles and Adventure!

    Join Minewind Minecraft Server for Epic Battles and Adventure! Welcome, Minecraft enthusiasts! Are you ready to embark on an epic adventure like no other? Imagine facing off against formidable foes, testing your skills and strategies to emerge victorious. While watching the thrilling battle between Ben 10 and the Minecraft Warden, did you feel the excitement building up inside you? Join us on Minewind Minecraft Server, where you can unleash your creativity, conquer challenges, and forge new friendships in a dynamic and immersive gaming environment. With a diverse community of players and endless possibilities for exploration, Minewind offers a unique and thrilling experience that will keep you coming back… Read More

  • Daring Dave’s Nuclear Duo

    Daring Dave's Nuclear Duo Dave’s Nuclear Option in Duo SMP Minecraft In the world of Minecraft, where creativity knows no bounds, players are constantly coming up with new and innovative ways to play the game. One such player, Dave, has proposed a nuclear option for his Duo SMP gameplay. Let’s dive into the details of this exciting development! The Nuclear Option Dave’s nuclear option is a strategic plan that he has devised for use in case things ever go south in his Duo SMP world. While the specifics of this plan are not yet clear, it has certainly piqued the interest of fellow… Read More

  • Valem’s Tale: A Minecraft Adventure

    Valem's Tale: A Minecraft Adventure In the depths of Minecraft, a terror does lurk, A creature so scary, it’ll make you berserk. Kazuto’s in trouble, facing his fears, But with his wit and charm, he’ll conquer the tears. The night is dark, the cave is deep, But Kazuto’s not one to lose sleep. With mods and shaders, he’ll light the way, Surviving the terror, come what may. In Spanish he speaks, with a Latino flair, Minecraft shorts, with a touch of scare. The gameplay is intense, the memes are fun, Kazuto’s adventures, never done. So watch and enjoy, the thrill and the fright, As… Read More

  • Slippery Build Battle Drama in Minecraft!

    Slippery Build Battle Drama in Minecraft!Video Information This video, titled ‘Minecraft build battle brings out the worst in people.’, was uploaded by slippery on 2024-04-14 05:05:00. It has garnered 236 views and 17 likes. The duration of the video is 00:12:26 or 746 seconds. Inappropriate. In this video me and the boys play Minecraft build battles and almost die of laughter. Enjoy. The footage was taken from a VOD from my Twitch channel, which was then edited for this video by me. Twitch: https://www.twitch.tv/aahbfvd Run: youtube.com/demonccg Instagram: https://www.instagram.com/seanarciarci Twitter (not calling it that other thing): https://twitter.com/lilarciarci Read More

  • Dark Gothic Secrets Revealed in Cinematic Hit Sync!

    Dark Gothic Secrets Revealed in Cinematic Hit Sync!Video Information This video, titled ‘Hit Sync With Cinematic View!!’, was uploaded by Gothic on 2024-03-14 00:35:58. It has garnered views and [vid_likes] likes. The duration of the video is or seconds. minecraft #minemen #combos #shorts #pvp #minemenclub discord : ogothic Discord Server : https://discord.gg/3W6xMg9RYe … Read More

  • DreamLeaguesSMP

    DreamLeaguesSMPThe DreamLeaguesSMP server is fun and a close community . this is a aternos hosted server but it is beautiful and fun . there is arena pvp , parkour , Ranks and much more exciting things . Join the discord server for updates and help us to improve by suggesting . thank you very much and we hope that you check out our server and if like it let us know at our discord and if you have any queries or issues let us know at our discord server . Thank you DreamLeagues team DreamleaguesSMP.aternos.me:54503 Read More

  • Mildew RP Semi-Vanilla 1.20.4 Java Roleplay Discord 18+ Whitelist

    “The sky is far from a limit. So why don’t we paint the stars?” Mildew RP is a brand new Minecraft roleplay server based around the lore of Minecraft with a unique twist. Choose from eight different species to inspire your character and let your imagination run wild with unlimited building possibilities. What we offer: – A Safe Space: Zero tolerance for harassment in and out of roleplay. – A World You Help Shape: Mold the world of Mildew as your character wakes up with no memory of how they got there. – Squaremap: Never get lost in our world…. Read More

  • Amberstone

    AmberstoneAMBERSTONEDynmap:http://213.32.7.119:25560/#web site : www.amberstonedream.comvisit – create – share your passion for architectureServer is available in 1.16 JAVA IP: amberstonedream.comNow compatible in Bedrock edition BEDROCK IP: 188.165.61.76 Port: 27310You have a question ? join our https://discord.gg/ve5kaP8Amberstone is now arriving on his 5th birthday, a big thank you to all for your support during these long years !!English:- We have different type of gameplay mainly creative (modern, traditional, fantasy, historic project…) but amberstone also have part with survival and rp with quest money …- Resource pack: We use our own resource pack with connected texture and more 700 3d model: Amberstone 3.50On… Read More

  • Minecraft Memes – Rate my Minecraft crib!

    That house must be made of diamonds with a score like that! Read More

  • RealCraft: Minecraft’s Realistic Roar

    RealCraft: Minecraft's Realistic Roar In the world of Minecraft, where blocks are the key, Aajeeb99z Gamer brings realism, you’ll see. Subscribe for more fun, it’s free and a delight, Join the Discord, let’s chat and take flight. With every update, Aajeeb99z is on the ball, Crafting rhymes that entertain us all. From gameplay to trends, he’s got it all in sight, Minecraft But Realistic, a true gaming delight. So leap into the verse, with rhymes that sing, Aajeeb99z Gamer, our favorite news king. Read More

  • Minecraft’s Wi-Fi Door: The Hottest Connection! 🔥

    Minecraft's Wi-Fi Door: The Hottest Connection! 🔥 “Who needs a Wi-Fi password when you can just open a door in Minecraft?” 😂 #minecraftlogic #techsavvybuilder Read More

  • Ultimate TNT Prank in Minecraft

    Ultimate TNT Prank in Minecraft Exploring the World of Minecraft: Ranidow TNT Embark on a thrilling adventure in the virtual world of Minecraft with the creation of Ranidow TNT. This explosive element adds a new level of excitement to your gameplay, allowing you to unleash powerful blasts and conquer challenges with ease. The Creation Process To craft Ranidow TNT in Minecraft, players need to gather specific resources and follow a precise recipe. By combining gunpowder, redstone, and a unique element known as Ranidow, you can create this potent explosive. The recipe showcases the intricate crafting system of Minecraft, encouraging players to explore and experiment… Read More

  • Exam Brain Fails in Minecraft!

    Exam Brain Fails in Minecraft! Minecraft: A Peek into the Mind During Exams, “Before vs. During”【Cube Pavilion】 Welcome to Cube Pavilion, where we delve into the world of Minecraft with a focus on providing child-friendly content, steering clear of any elements that could potentially impact their health and safety. About Cube Pavilion Hello, I’m Cube Pavilion, a creator in the Minecraft realm. I specialize in crafting humorous and entertaining Minecraft animations to spread joy. This channel is the only official channel for Cube Pavilion. Any videos related to me on other channels are unauthorized copies. Stay tuned for a daily dose of original and… Read More

  • Ultimate Minecraft Botany Guide! Easy Tips & Tricks!

    Ultimate Minecraft Botany Guide! Easy Tips & Tricks!Video Information This video, titled ‘Extra botany. #Useful Stuff #4 Tutorial 1.16.5 (minecraft java edition)’, was uploaded by Minecraft Easy gaming on 2024-03-22 15:00:17. It has garnered 27 views and 0 likes. The duration of the video is 00:14:09 or 849 seconds. Extra botany mod guide part #4 I’m sorry, but I’m using a translator. #ExtraBotany #mod #minecraft Read More

  • Mikey & JJ Hide from Scary SIMPSONS.EXE

    Mikey & JJ Hide from Scary SIMPSONS.EXEVideo Information This video, titled ‘JJ and Mikey HIDE From Scary SIMPSONS.EXE in Minecraft Challenge Maizen Security House’, was uploaded by Mikey and JJ + on 2024-04-14 21:00:08. It has garnered 30776 views and 317 likes. The duration of the video is 00:25:58 or 1558 seconds. JJ and Mikey HIDE From Scary SIMPSONS.EXE in Minecraft Challenge Maizen Security House This video is an unofficial work and is neither created or approved by Maizen Sisters. Maizen – https://www.youtube.com/@maizenofficial Read More

  • 🔴Insane Minecraft Hive Gameplay – Bedwars, Skywars & More!

    🔴Insane Minecraft Hive Gameplay - Bedwars, Skywars & More!Video Information This video, titled ‘🔴Minecraft Hive Live🔴 – Hive – Bedwars – Skywars – Custom Servers – Playing with Viewers – Realms’, was uploaded by Raptor Gamez on 2024-05-01 03:25:07. It has garnered 159 views and 12 likes. The duration of the video is 03:17:08 or 11828 seconds. Minecraft Hive with Viewers | Join Now Thanks for watching, stay epic gamers. Bedwars – Skywars – Treasure Wars – Survival Games – Custom Servers Discord: https://discord.gg/xCzr7MZAyV Thank You for 3000 Subscribers! please subscribe I do use Horion, I use it for utility purposes, I have not and will never condone… Read More

  • Unbelievable Minecraft Beta Gameplay – Classic Gamer Lets Play

    Unbelievable Minecraft Beta Gameplay - Classic Gamer Lets PlayVideo Information This video, titled ‘rambling about “better than adventure”, beta minecraft, classic gamer let’s play’, was uploaded by Skelevaxel on 2024-04-27 03:27:03. It has garnered 105 views and 6 likes. The duration of the video is 01:25:10 or 5110 seconds. i’m fighting creepers i’m mining diamonds what more could you ask for just a rambling video, i don’t know i kept thinking about some stuff i wanted to get out there. as usual video gets better as time goes on and i get more comfortable. there’s a lot more i could say but i did get at some things… Read More

  • 🔥 Insane Op Farm 🤩 | Minecraft PE Hindi Ep-2 | 1.20

    🔥 Insane Op Farm 🤩 | Minecraft PE Hindi Ep-2 | 1.20Video Information This video, titled ‘Minecraft PE 🔥 Survival Series Ep-2 In Hindi 1.20 | I Make Op Farm 🤩 | #minecraftpe’, was uploaded by Oshan Official on 2024-01-15 11:30:07. It has garnered 2103 views and 220 likes. The duration of the video is 00:23:37 or 1417 seconds. Minecraft: Survival Series #1 in hindi | Minecraft Mcpe Survival Series Gameplay #1 #minecraftsurvivalseries ____________________________________________________ 🏷Tags:- #minecraft #minecraftpesurvivalseries #minecraftsurvivalep1 #minecraftpe #minecraftsurvival #minecraftinhindi #minecrafthardcore #minecraft100days #inhindi #minecraftfunnygameplay #minecraftlive #isurvived100daysinminecrafthindipocketedition #minecraftsurvivalseriesliveinsaan #minecraftfunnymythpat #herobrinesmpminecraft ___________________________________________________ My Social Media 📺 Instagram 📷 : https://instagram.com/oshangaming?utm… Facebook Page 💙 :- https://www.facebook.com/oshangaming369/ Twitter 🐦🐦 :- https://twitter.com/OshanGaming?t=VTh… 2nd Channel 🥰… Read More

  • “EPIC Minecraft Time on IgnitorSMP! What Time Is It?!” #smp #survival

    "EPIC Minecraft Time on IgnitorSMP! What Time Is It?!" #smp #survivalVideo Information This video, titled ‘What Time Is It?? Minecraft Time! – IgnitorSMP!! #minecraft #smp #survival’, was uploaded by DanoDiggle on 2024-03-18 20:04:03. It has garnered 70 views and 5 likes. The duration of the video is 02:37:39 or 9459 seconds. Hey Besties! My Discord Server = https://discord.gg/HpkZYtndUb Igniter Discord Server = https://discord.gg/xgb6xEkr Website Link = https://ignitorsmp.com/ *check out the other Ignitor members (a group of lovely Minecraft content creators)* 0_hours = https://www.youtube.com/@0_hours https://www.twitch.tv/0_hours BlackShadowHRD = https://www.youtube.com/@UCxpKJR0p_aPsjvJ16IqD_aA Dark place = https://www.youtube.com/@UCbTxDIpMV42Fx7j9fJdjX1w DippyBlether = https://www.youtube.com/@UCI_jxoGNmI0jOgS0cCT-7xQ DriftDweeb = https://www.youtube.com/@UCiqCs-Is586-8STM6MTRr-Q FedoraMaster219 = https://www.youtube.com/channel/UCZbP81BFzksZfjTH3IPIZVg Ganxol = https://www.youtube.com/channel/UCqeTym2zi–7qB9VVpmyOWQ GGJay = https://www.youtube.com/@ggjaymc IndialienJones = https://www.youtube.com/@IndialienJones Ironite64… Read More

  • “SHOCKING MINECRAFT CAT VS BANANA SHOWDOWN! 😱” #Minecraft #Shorts

    "SHOCKING MINECRAFT CAT VS BANANA SHOWDOWN! 😱" #Minecraft #ShortsVideo Information This video, titled ‘MINECRAFT WHICH CAT DID IT BETTER 🤔 CAT,BANANA BODY OR BANANA CAT😱 #minecraft#shorts’, was uploaded by hamza craft on 2024-03-21 21:42:46. It has garnered 3 views and 0 likes. The duration of the video is 00:00:24 or 24 seconds. #minecraft #gaming #shorts #minecrafttiktok keys: Minecraft,Dream SMP,Manhunt,Speedrun,Hardcore,Mods,HermitCraft,Update,Snapshot,Netherite,Caves & Cliffs,Axolotls,Warden,Build Battle,Skyblock,Hypixel,Bedwars,Parkour,Redstone Tutorial,Farming Guide,Enderman Farm,Raid Defense,Texture Packs,Shaders,RTX,Minecraft VR,Roleplay,Adventure Map,UHC,PvP,Skywars,Trolling,Noob vs Pro,Minecraft Animation,Minecraft Song,Minecraft Parody,Epic Builds,Minecraft Challenges,Minecraft But,Minecraft Logic,Minecraft Secrets. Read More

  • Ultimate Showdown: Ancient Remnant vs Golems – EPIC Battle!

    Ultimate Showdown: Ancient Remnant vs Golems - EPIC Battle!Video Information This video, titled ‘Ancient Remnant vs ALL Golems (Minecraft Mob Battle)’, was uploaded by Battle GameplayZ on 2024-04-22 07:15:01. It has garnered 489 views and 5 likes. The duration of the video is 00:08:02 or 482 seconds. #minecraft #meme #memes Read More

  • Magical Anime Glow: Building Epic Treehouse! 🧙‍♂️🏡

    Magical Anime Glow: Building Epic Treehouse! 🧙‍♂️🏡Video Information This video, titled ‘Minecraft: Building a treehouse 🏡’, was uploaded by Anime Glow_2.0! 🔮🌟 on 2024-01-27 21:26:09. It has garnered 33 views and 2 likes. The duration of the video is 00:12:02 or 722 seconds. ✨Hey ya’ll! It’s finally fixed! 😒Ugh, there was a lot of storage! Too many photos, too many videos that I had to get rid of. Everything’s good! Anyways, in today’s minecraft video, I will be building a treehouse 🏡. Some people preferred building treehouses in the size of a mansion! Pretty cool, right? So, I already made the designs for it. Now I… Read More

  • Kingdomssmp

    KingdomssmpWelkom bij de Kingdomssmp server, wij zijn een kingdom server met veel features join nu en wie weet word jij de beste kingdom!! kingdomssmp.nl Read More

  • Constantiam – Semi-Vanilla Anarchy, No Rules, No Map Resets, 1.19.4

    Connect: You can join right now using: constantiam.net Description: Constantiam is a semi-vanilla Minecraft server running 1.19.4 with no resets. It has an infinite map size, no gameplay rules, and no admin interference. Established Feb 2016, there are no resets; the map is persistent. Rules: No rules, anything is permitted. See if you can survive one of the greatest anarchy servers of all time! Read More

  • Minecraft Memes – “Take this noobs, we’ll handle Minecraft!”

    Minecraft Memes - "Take this noobs, we'll handle Minecraft!"Well, I didn’t realize that Minecraft memes had their own scoring system! I wonder what the criteria is for a perfect 200 score – maybe perfectly timed creeper explosions or expertly crafted pixel art? Read More

  • Unlock Hidden Secrets in TechSupport 64 Keys

    Unlock Hidden Secrets in TechSupport 64 KeysVideo Information This video, titled ‘Opening 64 Spring Keys…’, was uploaded by TechSupport on 2024-05-14 03:50:37. It has garnered 4 views and 0 likes. The duration of the video is 00:01:55 or 115 seconds. #minewind #minecraft #minecraftshorts Video by Falkryth. Music: The Suite for Jazz Orchestra No. 2 is a suite by Dmitri Shostakovich. It was written in 1938 for the newly founded State Jazz Orchestra of Victor Knushevitsky, and was premiered on 28 November 1938 in Moscow (Moscow Radio) by the State Jazz Orchestra. Read More

  • TNT Test Fest: More TNT Add-On Blast!

    TNT Test Fest: More TNT Add-On Blast! In the world of Minecraft, where blocks reign supreme, There’s a new add-on that’s quite the dream. More TNT to craft, more explosions to see, But be careful, my friends, don’t blow up your spree. From the classic TNT to the mighty Nuke, Each explosive has its own unique puke. Some will blast high, others will spread wide, But all will leave a mark, a fiery tide. So join me in this journey, this explosive delight, As we test out each TNT, shining bright. Craft them, ignite them, watch them go boom, In the world of Minecraft, where explosions… Read More

  • Rescued my dog from Herobrine! (HOT)

    Rescued my dog from Herobrine! (HOT) I didn’t know Herobrine was out here trying to steal our good boys too! Watch out for those pixelated pup snatchers! #minecraftwoes #dogrescue Read More

  • Join Minewind Minecraft Server for a Unique Gaming Experience!

    Join Minewind Minecraft Server for a Unique Gaming Experience! Welcome to NewsMinecraft.com, your go-to source for all things Minecraft-related! Today, we stumbled upon a fascinating YouTube video showcasing the addition of layer editing functionality in JavaScript for Minecraft. While the video itself may not be directly related to Minewind Minecraft Server, it does highlight the endless possibilities and creativity that the Minecraft community brings to the table. Imagine being part of a vibrant and dynamic Minecraft community where creativity knows no bounds. That’s exactly what you’ll find on Minewind Minecraft Server. With a dedicated player base and a wide range of unique features, Minewind offers an unparalleled gaming… Read More

  • Unbelievable! Discover 30 Insane Minecraft Mods (1.20.1)!

    Unbelievable! Discover 30 Insane Minecraft Mods (1.20.1)!Video Information This video, titled ’30 NEW Minecraft Mods You Need To Know! (1.20.1)’, was uploaded by LuluBelleMC on 2024-04-06 11:00:31. It has garnered 48719 views and 1842 likes. The duration of the video is 00:20:01 or 1201 seconds. 30 NEW Minecraft Mods You Need To Know! (1.20.1, 1.20.4 and others) 0:00 -Forcemaster (More RPG Classes) 1.20.1 (Fabric) https://modrinth.com/mod/forcemaster-rpg-class 1:24 -Witcher (More RPG Classes) 1.20.1 (Fabric) https://modrinth.com/mod/witcher-rpg-class 2:59 -Berserker (More RPG Classes) 1.20.1 (Fabric) https://modrinth.com/mod/berserker-rpg-class 4:05 -The Assimilator [Dweller] 1.20 —— 1.18.2 (Forge) https://legacy.curseforge.com/minecraft/mc-mods/the-assimilator-dweller 4:42 -Air Combo 1.20.1 —— 1.19.2 (Forge) https://legacy.curseforge.com/minecraft/mc-mods/air-combo 5:33 -Aetherial Islands 1.20.4 —— 1.20 (Forge and… Read More

  • Cursed Objects in Minecraft – EXPLORED!

    Cursed Objects in Minecraft - EXPLORED!Video Information This video, titled ‘Cursed Objects in Vanilla Minecraft!!! #shorts’, was uploaded by Basti on 2024-03-06 13:00:41. It has garnered 467 views and 42 likes. The duration of the video is 00:00:59 or 59 seconds. I recently found out you can do this in vanilla Minecraft and so i decided to share it with all of you guys hope you like it and create some really cursed objects of your own!!! Read More

Modding by Kaupenjoe – Minecraft 1.17.1 Forge Modding Tutorial Setup | Forge Modding 1.17.1 #1