TechnoVision – Minecraft 1.16: Forge Modding Tutorial – Ore Generation (#11)

Video Information

Hey guys it’s Thomas here protect no vision and welcome to the next part of our minecraft modding tutorial series for 1.16 in this episode we’re going to be creating some custom or generation so you can get whatever block you want to generate randomly inside of the world in

Any of the three dimensions and you can use any block you want but I did create a custom Ruby or block off screen before the video and I wanted to do this just so I could show you if we come over to our blocks package here I did make a

Custom class for this just like with our Ruby block and if we open both of these you can see that this Ruby or well this is our Ruby block that we made on screen together but our Ruby or is pretty much exactly the same except in whereas Ruby

Block extends block Ruby or extends or block now the reason I did that is because when you extend or block you get access to this special method here that you can override called get XP drop and you can access this as long as you extend or block and this will allow you

To set an XP amount that will drop when you mine your block so just like every or in the game for the most part when you mine it you can get experience points I think iron doesn’t do that though except because um you you get xp for that for smelting but things like

Coal all those things job XP and that is how you do it by using this method and of course as long as you know Java you should be able to set up some cool stuff with this like creating random amounts of XP calculating the fortune level or

The silk touch level and having that affect XP whatever you want really but I just wanted to mention that so make sure your block extends or block if you want this special method otherwise it doesn’t matter we can use any one block you want to generate alright so in order for us

To get started we want to make a new package under our main package here our tutorial or whatever the name of your mod is package right click new package and we’re just gonna name this world and this is gonna have some more stuff in it later once we get to like custom biomes

And stuff like that but for now just to make a new package in here call Jen which is short for generation and inside of this package we want to create a new class and we want to name this it really doesn’t matter but I’m gonna put mod or

Jen you could also put like or a Jen that works too whatever helps you understand what the class is so inside of this class we’re gonna have all of our or generation related stuff now what we want to do is make sure that we have the app mod tag above so above your

Class here your class declaration you want to do at mod dot events bus subscriber that is definitely not how you spell subscriber subscriber and in parentheses here we want our mod ID to be equal to equal to tutorial dot mod ID let me let me import mod at Montague

Just so this is a little bit easier here and import your main class as well so your mod ID should be equal to your mod ID of course so from your main class you want to get your mod ID like we do all the time

And then we also need to make sure that the bus is equal to mod dot event bus subscriber dot bus dot mod there we go all good okay so now we can actually use this class for subscribe events which is what we’re gonna do to generate this or

Now if we come down here a few spaces down we want to make a public static void method so public static void and we’re gonna name this just generate ORS I guess because it is going to generate all of the ORS so generate ORS and this

Is gonna take in a forge mod loader load complete event so FML load complete events and we’re gonna name this events I’m and that’s of curly braces now we need to add a add subscribe event tag to this so add subscribe event above the the method here and this is going to be

An event we haven’t really talked about events yet we’ll all go in more detail and a full video about events later on but essentially whenever Forge modloader gets loaded it completes its loading phase basically when you first run the game with this green triangle once that

Load complete event gets hit by the or started I guess is the right word by the forge mod loader it’s going to run whatever is inside of this this man so that’s we’re gonna do we’re gonna generate all the ORS on load event so in

Order to do this we want to loop through every single biome in the game now the best way to do this is just a for loop so for biome biome and we’re just gonna do a well let’s import by them first so we’re gonna loop using every biome

Within for two registries dot biomes all right so what this is doing is it’s just getting every single biome in the game and then we’re looping through each one and assigning it to this variable here each time so now that we have this variable we want to do three checks one

For if the biome is in the nether another for if it’s in the end dimension and then a final one if it’s in the just the regular overworld if you’re not doing origin in the nether or in the end you can just skip those if statements no

No reason to have them if you’re not going to use them but I’m just going to show all of them of course just in case you are so first one we’re gonna do if biome dot get category is equal to biome dot category dot nether so let me

Explain this for a second here and what a little tag up here a little comment that says nether generation so once we have this biome that we’re gonna each biome that we’re gonna loop through if the biome category which is essentially like what the biome it is or what the

The where the biome is I’m located if that’s equal to the nether meaning if it’s like a biome inside of the nether then we’re going to run this code and what we’re gonna run is a custom method we’re gonna make so let’s set these up first and then we’ll do those custom

Methods so we also wanted else if biome get category is equal to biome dot category dots at the end and again everything inside of here is only going to run if the biome happens to be from the end dimension and then finally else if it’s neither of those if it’s not on

The nether and not in the end then this will run which is just the overworld and let’s add some more tags here keep saying tags I mean to say what’s the word comments Java comments and generation and just so it’s clear one more time world generation and let’s

Move this over here alright so again if you’re not generating in the nether and you’re not generating orders in the end you can just delete these and just have world generation here no need to have them if that’s the case so we need to make our our special little hum method

That we can call so below this method that we’ve just created we’re gonna make a new private method called privates static void genore and this is gonna take in a ton of different parameters so bear with me we’re gonna run through all of them I promise and it will make sense

By the end so first thing is a biome to biome biome then we need to take in the count int count and I’ll explain what all these are in a second because I promise they’re actually very important int bottom offset then we also need the

Int top offset the int Max and then this next one is a long one it’s the or feature config dot filler block type and then we’re naming this filler and then I got a scroll over because it is so far off screen but I think this is the last

One no it’s the second last one block states blocked open it’s a capital s block States default block state default block state you know what let me just move this down here just so it’s easier for you to see just for now block state defaults block state

And let me import block state as well and then the final one is the integer size in two sides all right so we’ve got all of the parameters I know it’s a ton of them but you’ll see why in a second it’s actually very important bring this

Up but just know that that’s what this is one last look at it and we need some curly braces as well so inside of this method we’re going to actually register your or as something that needs to be generated so we can do that by first

Getting a range so we want to count range config and we’re going to name this range and there’s going to equal a new count range config and this gonna take in the count value the bottom offset the top offset and the max value okay semicolon sigh this is just so much

Information to get through so bear with me next thing we needed to do is the the feature so and again I will be running through this I promise I’ll explain all of it but we need an or feature config name feature is gonna be equal to a new

Or feature config and this is gonna take in the filler and the default block state as well as the size we can add a semicolon alright now that we have those two we need to actually add the the feature so we can do that by doing or

Actually I think we should get the conf it let’s make a config variable just so it’s cleaner so let’s do configure configured placement a my name is configure or config is it going to equal placement dot count range count underscore range rather dot configure and we’re just going to pass in the

Range and now to semicolon all right so now that we have our three of variables here we want to add the feature we could do that by using biom dots add feature and we want to pass in a few things first the generation stage dots decoration and we want this to be

Underground or so you can see there’s a bunch of different ones we’ll be touching on these later when we make like custom structures that generate but for now we want Underground ORS because that is what we’re making here we’re generating and then we also need a feature

So feature dots or again there’s a couple in there but we want to really only focus on or right now dots with configuration we want to pass in our feature we just made our feature from up here and then to move over I believe it’s one yeah one after this feature

This with configuration method and then just do dots with placement and we want to pass in our config which we made right here alright so that is it I know it’s a super long method but essentially what this is doing is creating the or it’s not creating or it’s registering it

To be added as a feature to the biome which essentially means that it’ll be generated as an undergrad or okay so now that we have our method we can actually use this method to generate our or so first or I’m gonna do is just the overworld and we can do that inside of

Our else statement here again if you don’t have these if for else if statements you can just kind of throw it in here and this for loop but inside of our our statement here for world generation we’re gonna just type genore and you want to pass in first the biome

It’s just biome next one like pass in the counts now this is going to determine how rare your or is the higher this number is the more common you’ll find it so for example if we were to put 20 in here you would find this or all

Over the place it’d be super common but if you were to put one in here for example I’d be super rare you’d rarely ever find this or so the higher the value the more common I’m gonna put this to 15 so that we can actually find our

Or when we’re looking for it but you can set it to whatever you like next is the bottom offsets on the bottom offset is the lowest possible y-value that your your aura can spawn in so if we were to set this to like eight for example what this would mean is that

Your or cannot generate past why level eight downwards so like it’s eight is the lowest possible y-value it’ll ever generate at i’ll actually leave it there but again whatever you’d like to put there next to the top offset and this is the opposite with the bottom offset so

This is like the top possible y-value that your or can ever generate in put this as five and that might sound confusing at first but this is actually subtracting from another value that we’re going to set in a second so I would just set this to five if I were

You or anywhere between five and one and you all explain why in a second because it will make sense so next is the max value and this is actually that the top y value that can your your or can generate from so if we were to set this

To like 50 for example just for this demonstration what this would do is take 50 here the max value subtract the top offset value for a value of let me write it out here a value of 45 so this is the top possible Y value that our or can

Spawn app now our bottom offset is 8 and that is our bottom so what this means what we’ve set here essentially is for this or in the overworld your ore will always spawn between 45 Y level and eight white level never above this value and never below this value and again we

Got 45 here because we take the max and we subtract our top offset and then the bottom offset is literally just eight it’s just that’s just what it is there’s no subtraction for this one here so hopefully that makes sense again set this for whatever you want the max to be

And then this to be whatever you want to subtract from this number and then set this to the bottom offset the bottom max all right after the max we now have our next value which is the or feature config so we want this to be well it depends we’re doing world generation

Over world so we want to do or feature config dot filler block type dot natural stone you’ll see there’s a couple here if it’s the overworld you’re gonna want to use only natural stone essentially so always sort of choose natural stone for this one comma next is the actual block

That we will be spawning the the block that will be generated I’m gonna bring this down here just so we can see it and doesn’t go off screen but you can access your block by doing registry hand handler dots and then of course you can get your block from this list mine is

The Ruby underscore or block but again you can choose whatever block you want and then make sure to do dot get as well and then we also needed to do dot get default state because we need the block state how to comma and then this last

Value is the size this is the maximum or vein size that your orrible generate in so you know how some like iron veins in the world have like five to ten pieces of iron that’s what this value is setting so if we were to set this to twelve for example our rubies could

Spawn our Ruby or could spawn in chunks of either one ruby or all the way up to like twelve ruby or blocks all clumped together so the bigger this number is the bigger the the vein of ore is I’m gonna set this to six just so it’s more

Like vanilla sort of sized and it’s not too big alright so this is actually done we’ve actually finished our our origin and this will generate in the the overworld now so we can bring this up here and this is all done but I do want to show

You how to do end generation as well as nether generation so if you want to generate in the end which is our next one well actually let’s do another first because end is going to require a few more steps so if you’d like to generate

In the nether again it how you have to make sure you have this check here for if the biome is a category of nether and inside of here we’re gonna do the same thing we set here we can actually copy all of this just so we can make it easy

For ourselves and I’m gonna change a few values let’s make the count a little bit rarer so maybe like twelve we can make the bottom offset like five the top offset we can make five we can just keep it as five and then let’s make the max

Like why eighty because the nether I wanted to generate all over the Netherlands very important to change with this nether generation is that instead of natural stone we do need to select dots netherrack if you don’t do this if you keep it as natural stone it will not work it literally will not

Generate in the nether no matter what so you have to select a dot netherrack here and then again select the or that you want to get make sure to get the default state and then the size let’s make this a little bit smaller like three is the

Maximum that I can generate it in or maybe maybe four is a good value okay so now our ore will spawn in the nether and it’ll spawn in the world and again just to remind you every time you want to spawn a new or in the world just add

Another method here another genore method and then literally just change the values and then change the block that’s all you have to do and it’ll and Hindle generates so this is all set up for you really okay so now we want to generate in the end dimension so if you

Want to do this you have to add a public static or feature config so come up here and again this is just for the end dimension you want to make a public static or feature config dot filler block type we’re gonna name this n underscore stone and there’s gonna equal

An or feature config dot filler block type dot creates and we need to create this let’s pass in a ennum name just end underscore stone is fine let’s just let’s bring this down here so you can see it we need to pass in a name in you

Just to end underscore stone and then finally the new block matcher and we’re gonna have this be blocks dot n stone and underscore stone there we go so what this is doing is creating a new filler block type now this filler block type like I mentioned what this is

Doing is determining what blocks should be around your your generated or so in the overworld it’s saying make sure that there’s natural stone blocks around your or and the nether it’s saying make sure that there’s netherrack surrounding your or for the end there is no automatic

Filler block type that is set for us so we have to make our own and for this one we’re setting that the block should be n stone so we’re saying please fill in our or with n stone and again you can make as many of these as you want really

Anything you want I thought that generates in the world naturally and your or will spawn next to that and that’s how you sort of make your or spawn in specific areas and caves or next to like specific stone types so like if you wanted to make one of these

For diorite you could make it so that your or only spawns inside of diorite or surrounded by diorite blocks so that’s what that is and we can use this by again copying this genore here that we made just copy it paste it in and we can

Change a few values so again I want this to be like a count of let’s make it like 18 this time super common in the end dimension and then for the bottom offset we can just keep it let’s make it like three just so it’s different top offset

Can be five again and then max let’s make it like 80 just like the nether and again very important we have to change the filler block type to our custom one so end underscore stone oh and we actually need to just use the the variable so you can get rid of all that

Unnecessary stuff and just use the variable here and we are using the Ruby or so we can keep that and let’s make the size like I don’t know let’s make it like twelve this time much bigger okay so we are now completely done your oars will generate now in both the world the

End and the nether and you now know how to add as many as you want now one thing I want to mention is if you would like your ores to spawn in a specific biome what you can do is let’s say we want our Ruby or to spawn only inside of the like

A Plains biome for example what you can do is come to your your if statement wherever whichever category you’re looking for end nether or world and you want to encapsulate your your method here in an if statement that just checks like if biome is equal to biome dots or

Sorry biomes dot and then you can just choose a biome so like if we wanted let’s choose maybe desert is a good one so if the biome is equal to desert then we can just encapsulate this in an if statement there we go so now this code will only

Generate our Ruby or if the biome is a desert biome and you can do this for any biomes you want as many times as you want and that’s how you specify it that’s how I’m emerald or only spawns in a an extreme Hills biome in case you

Were curious so now we can run the game and test it out okay so inside of the game make sure that you create a brand new world because we do need to generate completely new chunks in order to get these ores to spawn and in order to find

Them the most efficient way possible we can just go into /gamemode spectator and that will let us see underground and we should be able to find inside of our cave system here hopefully not too hard to find there we go so we did find some of our Ruby block there that’s in my

Ruby ore block that I made let’s see if we can find like a bigger chunk somewhere maybe in this ravine somewhere not there there we go so let’s go to game mode creative let me get a torch here and there we go so we

Have our Ruby or it looks like this is a vein of like – or it actually is for so anyway that doesn’t mean that it is generating in the overworld and now I’m gonna go over to the nether and I’m gonna go see if our ore is generating

There alright so I just went into the nether and you can see actually right here we did make it very common but our Ruby blocks are generating in the nether and of course this texture doesn’t really match the nether hopefully if you had another generating or you would

Actually make it look like it belongs in the nether but this was just for testing purposes but it is good to see that it is generating inside of the dimension so now let’s head over to the end dimensions we can check out our or over there okay so we’re now in the end

Dimension and if we come over here oh there we go if we can see our custom or again spawning in naturally in the end and again just like with the nether hopefully if you have an end spawning or it will look a little bit nicer than this and actually match with the end

Stone but once again it is good to see that we have a custom or that is generating alright so that’s going to do it for this episode thanks guys so much for watching I hope now you can generate your own custom ores or any block that you

In the world and yeah I will see you guys in the next episode

This video, titled ‘Minecraft 1.16: Forge Modding Tutorial – Ore Generation (#11)’, was uploaded by TechnoVision on 2020-07-12 06:49:24. It has garnered 17965 views and 534 likes. The duration of the video is 00:23:29 or 1409 seconds.

Learn to code a Minecraft mod from scratch in this complete tutorial series! In this episode, we learn how to make our custom ore blocks generate naturally in the overworld, nether, and end.

— Important Links —

● Discord: https://discord.gg/ZsB3Eha ● GitHub Repository: https://github.com/TechnoVisionDev/Minecraft-1.16-Modding-Tutorial.git

— Music —

● Chill Out Media – Minute Mix

— My Channel —

● Subscribe: http://tinyurl.com/zbc7mwy ● Instagram: https://www.instagram.com/tomm.peters ● Twitter: https://twitter.com/TechnoVisionTV

#minecraft #modding #tutorial

  • Join Minewind: Survive the Scariest Minecraft Adventures!

    Join Minewind: Survive the Scariest Minecraft Adventures! Welcome to NewsMinecraft.com! Today, we stumbled upon a thrilling YouTube video titled “i survive most SCARY 😨 Minecraft………” and it got us thinking – what if you could experience your own heart-pounding adventures in Minecraft? Well, look no further than Minewind Minecraft Server! Minewind offers a unique and exhilarating gameplay experience that will keep you on the edge of your seat. With a diverse community of players and exciting challenges, you’ll never run out of things to do on Minewind. So, if you’re ready to dive into the world of Minecraft and embark on your own thrilling journey, join… Read More

  • Join Minewind Minecraft Server – Hardcore Fun!

    Join Minewind Minecraft Server - Hardcore Fun! Welcome to Newsminecraft.com! Are you a fan of intense Minecraft gameplay like the one you just watched in the video above? If so, you need to check out Minewind Minecraft Server. With a hardcore survival mode that will push your skills to the limit, Minewind is the perfect place for players who crave a challenge. Join the action-packed world of Minewind by entering the server IP: YT.MINEWIND.NET in your Minecraft client. Whether you’re a seasoned player looking for a new adventure or a beginner eager to test your skills, Minewind has something for everyone. Experience the thrill of surviving… Read More

  • Join Minewind Server for Epic Castle Building Adventures!

    Join Minewind Server for Epic Castle Building Adventures! Are you looking to take your Minecraft building skills to the next level? Do you want to showcase your creativity and survival instincts in a unique and challenging environment? Look no further than Minewind Minecraft Server! With a vibrant community of players from all around the world, Minewind offers a one-of-a-kind gaming experience that will keep you coming back for more. Whether you’re a beginner looking to learn the ropes or a seasoned pro seeking new adventures, Minewind has something for everyone. Join us at YT.MINEWIND.NET and immerse yourself in a world of endless possibilities. Build your own small… Read More

  • Roblox Rocks Minecraft 1.8: 2023 Footage Frenzy

    Roblox Rocks Minecraft 1.8: 2023 Footage Frenzy In 2023, a rare sight to be seen, Minecraft in Roblox, a gaming dream. The footage delayed, the sound a bit off, But still a treasure, a gaming trough. Apologies for the break, a hiatus long, But back with a bang, with a gaming song. Roblox took it down, a loss for all, But this footage remains, a gaming ball. My avatar not Guesty, a different name, But still the same gamer, with no shame. Enjoy this glimpse, a blast from the past, Minecraft in Roblox, a game that lasts. Read More

  • Join Minewind Server for the Ultimate Minecraft Experience!

    Join Minewind Server for the Ultimate Minecraft Experience! Are you a fan of the iconic Minecraft soundtrack by C418? Imagine exploring the vast and immersive world of Minecraft while listening to these soothing and nostalgic tunes. Now, picture yourself doing so on a dynamic and exciting server like Minewind. Minewind offers a unique and thrilling Minecraft experience that you won’t find anywhere else. With its intense gameplay, player-driven economy, and endless possibilities for adventure, Minewind is the perfect place to dive into the world of Minecraft like never before. Join us on Minewind today and immerse yourself in a community of passionate Minecraft players. Whether you’re a… Read More

  • GameKing’s Guide to Clean Gameplay

    GameKing's Guide to Clean Gameplay Minecraft: Clean Gameplay Guide Introduction In the world of Minecraft, players strive for clean gameplay to enhance their gaming experience. From game settings to recording specifications, every detail matters in creating a seamless and enjoyable environment. Let’s delve into the key elements that contribute to achieving clean gameplay in Minecraft. Game Settings and Badlion Client Minecraft Java Edition serves as the platform for players to immerse themselves in the blocky universe. To elevate their gameplay, many users opt for the Badlion Client, known for its optimization features and enhanced performance. By utilizing the provided Badlion settings, players can fine-tune… Read More

  • Insane Addon Update in Minecraft Indonesia

    Insane Addon Update in Minecraft Indonesia Exploring the Exciting World of Minecraft Indonesia with the Brutal Legends Addon Update Embark on a thrilling adventure in the world of Minecraft Indonesia with the latest update from the Brutal Legends addon. Dive into a realm filled with excitement, challenges, and endless possibilities as you explore the new features and enhancements brought to you by this super gila update. Unleashing the Power of Brutal Legends The Brutal Legends addon update introduces a host of new elements that promise to take your Minecraft experience to the next level. From powerful weapons to formidable enemies, this update is packed with… Read More

  • Experience the Ultimate Parkour Challenge on Minewind Minecraft Server!

    Experience the Ultimate Parkour Challenge on Minewind Minecraft Server! Welcome to Newsminecraft.com, where we bring you the latest and greatest in the world of Minecraft! Today, we stumbled upon a fantastic YouTube video titled “Minecraft But I Play 100 Maps Parkour | Playing Parkour In Minecraft Gameplay #1”. While the video itself may not be about Minewind, it got us thinking – what better way to test your parkour skills than on the Minewind Minecraft Server? With a thriving community of gamers and endless possibilities for exploration and adventure, Minewind is the perfect place to put your parkour skills to the test. Whether you’re a seasoned pro or… Read More

  • Ultimate Dragon Ball Server: Super Saiyan Transformation!

    Ultimate Dragon Ball Server: Super Saiyan Transformation! Minecraft Dragon Ball Ultimate Server: Super Saiyan Transformation Join the adventure in the Dragon Ball Ultimate series, the top server for Dragon Ball on Minecraft Bedrock edition. In this episode, our protagonist transforms into a Super Saiyan, showcasing the exciting gameplay this server has to offer. Stay tuned for more! Server Information For those eager to dive into the action, here are the details you need to join the Dragon Ball Ultimate server: IP: jogar.redeblacky.com Port: 1932 Connect to the server and unleash your inner warrior as you explore the world of Dragon Ball in Minecraft. Tutorial: Becoming a… Read More

  • Join Minewind Server for Epic Minecraft Builds!

    Join Minewind Server for Epic Minecraft Builds! Welcome to Newsminecraft.com, where we bring you the latest and greatest in the world of Minecraft! Today, we stumbled upon a fantastic YouTube video titled “How to build Floating Lanterns in Minecraft Tutorial! #minecraft”. While the video itself may not be about Minewind Minecraft Server, it got us thinking – what better place to showcase your creative building skills and share your amazing creations than on Minewind? Imagine a community where you can bring your wildest Minecraft building ideas to life and inspire others to do the same. Minewind offers a unique and exciting gameplay experience that will keep… Read More

  • Hacktastic History: Minecraft’s Mischievous Masters

    Hacktastic History: Minecraft's Mischievous Masters In the world of Minecraft, hacks and hackers abound, From cheat engine to SIM-swapping, chaos is found. Exploits and glitches, the game’s evolution, Notorious hackers causing quite the commotion. FitMC, TheMisterEpic, and Sipover in the mix, Inspiring news reports with their Minecraft tricks. From world of Minecraft to the dreaded cheat engine, Players tinkering with hacks, a wild scene. 2B2T, the Anarchy server where chaos reigns, Popop with Thunderbolt exploit, causing pains. Inventory edit tool, MCG, and MC cheat, Changing the game, making it hard to beat. Reliant client, Nodus, and the infamous Adolf, Hacked clients causing servers to… Read More

  • Minecraft Battle of the Sexes: Boys vs Girls! #lit #minecraft #memes

    Minecraft Battle of the Sexes: Boys vs Girls! #lit #minecraft #memes “Why do Minecraft boys always have diamond armor and enchanted weapons, while Minecraft girls are just out here collecting flowers and building cute houses? It’s like they’re playing two completely different games!” #MinecraftGenderDisparities Read More

  • Join Minewind Server for Epic Minecraft Adventures!

    Join Minewind Server for Epic Minecraft Adventures! Welcome to Newsminecraft.com, where we bring you the latest and greatest in the world of Minecraft! Today, we stumbled upon a fascinating YouTube video titled “I BUILT ENDER DRAGON IN MINECRAFT 1.2 | MEMBERS SPECIAL | Epitome Gaming #minecraft #minecraftshorts.” While the video itself may not be about Minewind Minecraft Server, it certainly got us thinking – what if you could unleash your creativity and build something truly epic on a server like Minewind? Imagine a world where you can push the boundaries of what’s possible in Minecraft, collaborate with like-minded players, and embark on thrilling adventures. That’s the… Read More

  • Awkward Moments in Minecraft!

    Awkward Moments in Minecraft! Minecraft: The Embarrassment of Opening the Wrong Door! Welcome to the world of Minecraft where unexpected adventures await at every turn. Join the fun and excitement as you navigate through the blocky landscapes and encounter hilarious mishaps along the way. Unlocking the Laughter Imagine the laughter that ensues when a character opens the wrong door in Minecraft. From unexpected surprises to comical encounters, every moment is filled with joy and amusement. The game’s unpredictable nature keeps players on their toes, ready for whatever may come their way. Turning Mistakes into Memorable Moments Even opening the wrong door can lead… Read More

  • UNLOCKING LVL 444 SECRETS in Minecraft Skyblock!

    UNLOCKING LVL 444 SECRETS in Minecraft Skyblock!Video Information uh all right cool bot RZ just join the channel shut the [ __ ] up NBO uh I will keep my camera off right now just because I came home and had the [ __ ] so I just said [ __ ] it and went ahead and took a shower anyway I was going to do that I was going to do that later and anyway like before I went to bed but [ __ ] [Music] it so I got the uh I got my fan on me right now so um yeah I I… Read More

  • Hypixel Ruined Block Clutch

    Hypixel Ruined Block ClutchVideo Information This video, titled ‘HYPIXEL RUINED THIS BLOCK CLUTCH! #bridgeduels #hypixel #minecraft #shorts’, was uploaded by Good Guy Sly on 2024-04-16 20:15:01. It has garnered 2347 views and 38 likes. The duration of the video is 00:00:17 or 17 seconds. Experience the ultimate ASMR clicking sounds in this action-packed Minecraft video featuring Hypixel Duels, Bedwars, PvP, and more! Dive into the world of Hypixel Bridge and witness epic block clutches and intense battles. Whether you’re a seasoned player or a newbie, this video is sure to keep you on the edge of your seat. Join us on YouTube for… Read More

  • “Ultimate Clickbait: Rainbow Noob Summons Roblox Smileys in Minecraft 😱” #shorts

    "Ultimate Clickbait: Rainbow Noob Summons Roblox Smileys in Minecraft 😱" #shortsVideo Information huh [Music] H woo wow oh my God no God no God please no [Music] what wow This video, titled ‘Never Summon Roblox Innyume Smiley’s Stylized in Minecraft…. 😨 #shorts #minecraft’, was uploaded by Rainbow Noob on 2024-04-19 13:48:02. It has garnered 17763 views and 809 likes. The duration of the video is 00:00:27 or 27 seconds. Never Summon Roblox Innyume Smiley’s Stylized in Minecraft…. 😨 #shorts #minecraft #minecraftanimation #animation Subscribe to the channel so as not to miss the video! Read More

  • ULTIMATE XP FARM – RULER TAKES ON ASSASSIN IN MINECRAFT 🔥🔪 || #minecraft #survival

    ULTIMATE XP FARM - RULER TAKES ON ASSASSIN IN MINECRAFT 🔥🔪 || #minecraft #survivalVideo Information तो हेलो गाइ स्वागत है सभी का 100 डेज सर्वाइवल वीडियो के डे नंबर नाइन पे तो भाई पिछले वाले वीडियो में हम लोग गए थे नेदर फोर्ट्रेस में और वहां पे भाई हमें ब्लेज रॉड मिला था ब्रो हम लोग के पास टोटल दो ब्लेज रॉड हुए थे और फिर एक स्कल विधर करके कुछ भी मिला था भाई बट वो सबका यूज भाई आगे करेंगे तो भाई लोग आज के वीडियो में हम लोग बनाने वाले हैं अपना एक्सपी फार्म क्योंकि भाई हम लोग का सरवाइवर वर्ल्ड में अभी तक एक भी एक्सपी फार्म नहीं है… Read More

  • Uncover the Ultimate Villager Hide & Seek Strategy! #minecraft #funny

    Uncover the Ultimate Villager Hide & Seek Strategy! #minecraft #funnyVideo Information hey Villager willst du Hiden seek mit mir spielen du bekommst auch 64 Emeralds wenn du gewinnst ich heie Hans okay okay Hans dann versteck dich ich zähle 10 9 6 5 4 3 2 1 ich komme so wo könnte denn Hans sein ist er vielleicht in diesem Gebäude hier drin Hans komm raus bist du hier nee da scheint er wohl nicht drin zu sein Hans bist du vielleicht in diesem Gebäude ah Hans da bist du ja los Hans ich habe dich gefunden du hast verloren Bro du kriegst die Emeralds nicht hey Hans wo… Read More

  • Insane Minecraft Trade Hack with Mobs!

    Insane Minecraft Trade Hack with Mobs!Video Information अरे भाई भाई मा बट आई कैन ट्रेड विद मॉब्स सो गाइस तुम्हारा स्वागत है मेरे न्यू वीडियो में तो गाइस तुमने सुना हां हां मैंने सही बोला एकदम कि वी कैन ट्रेड विद मॉब्स गाइस तो देखो यार अपन मॉब्स के साथ ट्रेड कर सकते हैं और विट द वट ये क्या है बोनस चेस्ट भाई तो एक मिनट बोनस चेस्ट में क्या है ओके एमरल्ड है और ट्रेडिंग आइटम है तो गाइस देखो ये वाली चीज अपने को इने बोनस में दी है क्योंकि ये काम आने वाली है इस चीज में क्योंकि एमरल्ड अप लोग… Read More

  • Canyon Gamerz: INSANE MINECRAFT LOGIC! #minecraftmemes

    Canyon Gamerz: INSANE MINECRAFT LOGIC! #minecraftmemesVideo Information [Music] [Music] for This video, titled ‘USELESS LOGIC IN MINECRAFT #minecraft #minecraftmeme #shorts’, was uploaded by Canyon Gamerz on 2024-04-29 14:45:03. It has garnered 2692 views and 49 likes. The duration of the video is 00:00:40 or 40 seconds. Thanks For Watching Plz Like and Subscribe #minecraft #minecraftmemes #minecraftpe #minecraftonly #minecraftpc #minecrafter #minecraftmeme #minecrafters #minecraftbuilds #minecraftpocketedition #minecraftxbox #minecraftserver #minecraftbuild #minecraftart #minecraftps3 #minecraftuniverse #minecrafts #minecraftdaily #minecraftforever #minecraftskin #minecraftedit #photoseedminecraft #minecraftfx #minecraftdiaries #minecraftskins #skydoesminecraft #minecrafthouse #minecraftcake #minecraftersonly #minecraftparty #minecraftindonesia #minecraftgirl #pewdiepieminecraft #minecraft_pe #minecraftdrawing #minecraftxbox360 #minecraftsurvival #minecraftisawesome #minecrafthouses #minecraftedits #minecraft #memes #meme #dankmemes #minecraftmemes #fortnite #funny #gaming #gamer #funnymemes #memesdaily #minecraftbuilds… Read More

  • Insane Twist in Benjaramire3 Chat & Play!

    Insane Twist in Benjaramire3 Chat & Play!Video Information Hola soy Benja Ramírez 3 Bienvenidos a un nuevo video al al al al al al e al al si es hora de cocinar [Música] B [Música] ah ah [Música] bienvenida mi gente [Música] [Música] acá andamos [Música] bueno [Música] gente vamos a jugar minet [Música] eh No ahí se me bug [Música] bu ah ah H [Música] ha Bueno vamos a ver ahora lo de los aldeanos a ver si es que alguno nos da un encantamiento o protección 4 o eficiencia 5 que por ahora no es el caso por ahora están despiertos los al no… Read More

  • "Caught LartisteCat Losing Mind Over Minecraft Creator!"

    <p>"Caught <em>LartisteCat</em> Losing Mind Over Minecraft Creator!"</p>Video Information This video, titled ‘me when i hear “creator” on minecraft’, was uploaded by LartisteCat on 2024-05-19 00:47:26. It has garnered 197 views and 3 likes. The duration of the video is 00:01:27 or 87 seconds. I vibe with the music, y’know! Plug me into those tunes! You bet I’m gonna be doing this on the upcoming 2024 SMP. Read More

  • MineHammer Network

    MineHammer NetworkMineHammer is a 1.19 Survival Network featuring true Bedrock/Java Cross-Play. – Custom Fish – Weekly Updates – Amazing Community Come see for yourself, join with play.minehammer.com! play.minehammer.com Read More

  • Fabulous Miners SMP Whitelisted Java & Bedrock Non-toxic 1.20.X

    Welcome to our Whitelisted Server! Hello, my name is Alfred and just a week ago, I opened a whitelisted server for my friends and me to play on. Now, the server is open to anyone who can contribute positively and with kindness. Features: Enhanced vanilla mechanisms like sethome and tpa A leveling system for unlocking perks/commands A unique fishing system with new fish (no custom resource pack needed) A server shop for selling items and player chest shops All mobs drop their heads for collection We have other features that make the server enjoyable, but we aim to keep things… Read More

  • Minecraft Memes – Flame War: Flat world survival lit 🔥

    I guess you could say they’re really flat out surviving in that world! Read More

  • Ben 10’s Minecraft Mayhem: S5João’s Addon Adventure!

    Ben 10's Minecraft Mayhem: S5João's Addon Adventure! In the world of Minecraft, a new addon is here, With Ben 10 powers, the game is in high gear. S5João brings the news with a grin and a spin, Every update described with a playful, rhyming spin. From four arms to flames, the action is insane, In this incredible addon, there’s so much to gain. So hit that like, subscribe, and join the fun, With S5João’s updates, the Minecraft journey’s just begun. Read More

  • Spice up your explosions with DIY TNT!

    Spice up your explosions with DIY TNT! To make a new TNT, just mix some gunpowder, sand, and a sprinkle of chaos. Voila, you’ve got yourself a recipe for disaster! #minecraftlogic 😂🧨 Read More

  • The Ultimate Minecraft Shaders Revealed!

    The Ultimate Minecraft Shaders Revealed! The Best Shaders for Minecraft: A Closer Look Introduction Minecraft enthusiasts are always on the lookout for ways to enhance their gaming experience, and one popular method is through shaders. Shaders are mods that can significantly improve the visual appeal of the game, adding realistic lighting, shadows, and textures. Top Shaders for Minecraft If you’re looking to elevate your Minecraft experience, consider checking out some of the best shaders available: – Shader 1: [Link to Shader 1] – Shader 2: [Link to Shader 2] – Minecraft Patch: [Link to Minecraft Patch] Features of Shaders – Improved lighting effects -… Read More

  • Apple Orchard Shenanigans: Reflectcraft

    Apple Orchard Shenanigans: Reflectcraft Welcome to Reflectcraft: Building an Apple Orchard in Minecraft Survival In this episode of Reflectcraft, our protagonist embarks on a mission to create an idyllic farm filled with crops as far as the eye can see. Join them as they explore, build an apple orchard, and review their progress in this Minecraft survival adventure. Exploring and Gathering Resources Our journey begins as we witness our player setting out to build an agricultural district. Running low on food, they decide to create fields of crops to sustain themselves. Armed with a flint and steel, they venture out to gather wheat… Read More

  • YUKITO Goes Crazy in Minecraft!! 😱 #new vtuber #yukisaba

    YUKITO Goes Crazy in Minecraft!! 😱 #new vtuber #yukisabaVideo Information [音楽] DETDET [音楽] [音楽] [音楽] DET [音楽] [音楽] OGOG [音楽] [音楽] あ はいえと皆様こんにちは ますマイクの方ね入ってますね配信の方 開始されてますのね立方配信ということで ちょっとねま画面がブレにぶれまくってる んですけどちょっとね今から修正いたせ ますんでえお待ちくださいまずね顔とかは ここら辺に置い てで上あれすね今日のタイトルこれを今日 はです ね別の拡張 うあ はあれもいねえしうちのサーバーついに 全員落ちたんだけどさっきまで6さっき まで6人ぐらいたの にゆきとが配信開始するの遅すぎなんだよ でねあの実はちょっとねあの本当はね サバイバルでやりたかったんですけど ちょっとさすがに建築物全部どかすのは ちょっと難しいのでちょっと クリエイティブでねあの建築物をあの どかして道幅を6マスにえっと変更をし てこう というのがま今日の目的でござい ますね道幅3マスじゃ狭いんすよね メインの大通りは6マスに変更しようかな ということでそれをね今日やってやって ければなとえっと思っております はいでまず えっとです ねどうしよっか な早速ね考えなきゃいけないところがあっ て あまいいのかいやでもそしたらなここのさ この道をねここ3マスなわけここ6マスに してビルをこっち側に全部1列分こっち側 も移動させ てそうするとねこっち側こっちが正面のね お店とかも何個かあるん でその場合どうしよっかなっていうまあ いっかどっちかの入り口封鎖させてうん いっ か日本語になってないねちこのなべ君 ね滅された こんな感じでじみちにね今日は雑談し ながらビルを移動してくっていうあの配信 でござい ますとんでもなく地味です はいで今日はね配信せずに裏でやろうかな と思ったんです けどあの最近さあの配信サボりすぎてん じゃないですかくさんなんで無理やりでも やらない多分ゆさん今後ね配信をしなく なっちゃうんじゃないかなと いうちょっと心配があったんでちょっと 無理やりでも今日は配信しようという気を 持ってあの本日はえやっており ますさあ配信とえば楽しいんですよ楽しい んだけどやっぱね毎日やらなきゃいけない みたいななんか変なねモチベーションが今 ないんですよ正直 そうベーションがないなかちょっと配信 やってるところあるんですけどなんて言う のか ななんだろうなんかねやっぱななんて言う んだろう言葉にうまく表現できないんだ けどうんなんて言うのかな まいっ かばみんな今日寒かった ね皆様の地域はどうでした東京なんかさ夜 になったらすごい寒くなって さびっっくりしちゃったよ本当にめさんも こんばんはマジ でチャリンコ用事があってチリンたんだ けどさ寒くさ 帰りそうマック食いに行ってたんですけど 帰り寒くて薄切で行ってたんですけど寒 みたいなそんな感じでしたね じ最近なんか天気の温度差が激しすぎだよ ねマジで異常気象だよ本当にみ常気象だ よ最近マジで温度差が 激しいなんか今年の夏はすごい暑くなる らしいけどね今は寒い けどどうなんだろう ねどうなるのか気になるよね今後ね日本 なんか今年はなんか暑い夏になるらしい から… Read More

  • Dancing to the HB Beat

    Dancing to the HB BeatVideo Information bu girl in [Musik] the This video, titled ‘Dance!! #minecraft #shorts’, was uploaded by HB on 2024-03-16 02:41:19. It has garnered 10828 views and likes. The duration of the video is 00:00:12 or 12 seconds. minecraft, j and mikey, maizen, mikey andj, ij and mikey minecraft, minecraftj and mikey, maizen minecraft, j and mikey roblox, siren head, shorts, minecraft ghost, roblox, mikey and j minecraft, sonic, choo choo charles, maizen roblox, sakura, granny, herobrine, jj mikey, chainsaw man, minecraft shorts, minecraft minecraft, choo-choo-charles, jj and mikey minecraft 100 days, minecraft mikey and j, monster school, tiktok, obit, mikey… Read More

  • All My Fellas Conquering Bedwars 😎🔥

    All My Fellas Conquering Bedwars 😎🔥Video Information my all my all my my all my my This video, titled ‘ALL MY FELLAS 😎 | #shorts #minecraft #bedwars’, was uploaded by Tee2w on 2024-01-10 14:47:24. It has garnered 11020 views and 205 likes. The duration of the video is 00:00:21 or 21 seconds. #tags its soo cool subscribe for ur mom, and enjoy! minecraft,hypixel,skywars,minecraft mods,minecraft challenge,handcam,mousecam,keyboard asmr,keyboard sounds,keyboard and mouse,mouse sounds,keyboard and mouse sounds minecraft,glorious model o,itzGlimpse,bedwars,hypixel bedwars,keyboard and mouse sounds bedwars,ducky one 2 mini,butterfly clicking,bed wars asmr,keyboard and mouse sounds,bedwars asmr,dragclick,clicky,asmr,family friendly,bedwars with handcam,iAim,modded keyboard,gamakay tk68,thocky keyboard ( from Atlar clips ) Found This Desc… Read More

  • ULTIMATE Minecraft Survival Guide | EP 01 | 2024 H A S H I Y A | Click NOW

    ULTIMATE Minecraft Survival Guide | EP 01 | 2024 H A S H I Y A | Click NOWVideo Information yo yo yo what’s up boys and for [Music] guy [Music] speee [Music] [Music] [Music] go [Music] [Music] [Music] to [Music] [Music] fore [Music] [Applause] [Music] for [Applause] [Music] for [Music] [Music] for [Music] for 1 fore spee fore fore for banana [Music] banana [Music] [Music] for spe [Laughter] fore [Music] for [Music] m bloo I say you say no he [Music] [Music] for speee [Music] fore for for [Music] for for welcome to my party we’re just getting started a life is a dream or a nightmare scaring hand me a drink cuz I think I’m going… Read More

  • Ultimate Minecraft TNT Sword Tutorial! #epic

    Ultimate Minecraft TNT Sword Tutorial! #epicVideo Information [Applause] he This video, titled ‘TNT#minecraft #geming #supportme’, was uploaded by START _SWORD on 2024-03-02 12:03:47. It has garnered 25 views and 0 likes. The duration of the video is 00:00:21 or 21 seconds. Read More

  • Join us in exploring Minecraft Marketplace with DZRKNSS!

    Join us in exploring Minecraft Marketplace with DZRKNSS!Video Information all right I had to like set up a thing darkness is going to be back soon I’m going to put my oh you’re back okay yeah I’m live okay I put on the thing oh Minecraft crashed that’s weird they have a different stream yeah only a little bit different going to just move this there you go [Music] oops wrong thing just gring Hive okay Darkness so you L okay now he’s gone is that yes okay uh yay I love chaos oh my gosh any villagers where are the villagers spawn next guys okay we… Read More

  • INSANE Minecraft 2024 Update Discovery ft. IbxCat, Pixlriffs & Ulraf!

    INSANE Minecraft 2024 Update Discovery ft. IbxCat, Pixlriffs & Ulraf!Video Information ibx toy cat pixel reefs ulra and me got together on April 1st 2024 to play the new Minecraft April fools update a lot of crazy potato stuff happened that day and this is how it all started we have zian with us in chat which is going to be helpful oh hello it’s going to be our guide like in previous like in previous occasions yeah yeah yeah kind of like our guide but also like having fun at us but also on Nemesis at the same time not the necessarily should listen to him but he… Read More

  • Join the SHIZO 360° Experience! 🌀

    Join the SHIZO 360° Experience! 🌀Video Information money money green green money is all I need need money money green green money is all I need need money money green green money is all I need need money money green green money is all I need need money money green green money is all I need like a king cash rules everything around me n tremble to their feet when I step into the sea how I make this scen tell them that it’s in my This video, titled ‘360°, the perfect circle’, was uploaded by smellish on 2024-03-31 21:09:19. It has garnered 59 views… Read More

  • Insane Minecraft Fusion Remix Ft. Zoro & Luck ✨

    Insane Minecraft Fusion Remix Ft. Zoro & Luck ✨Video Information tuim prends-moi dans tes bras et je n’ai plus personne ne laisse pas ton odeur impr et si tu m’abandonnes je suis pas celle que tu croisun m’ touch part [Musique] toi [Musique] cococ je suis [Musique] unetine cocaï ma FEM je suis une clandestine une clandestine ami ami This video, titled ‘”Minecraft Sonic Fusion: Clandestina (JVSTIN Remix) with Reverse Drop 🍀🍇”‘, was uploaded by zoro X luck on 2024-01-06 13:35:00. It has garnered 2361 views and 65 likes. The duration of the video is 00:00:38 or 38 seconds. “Minecraft Sonic Fusion: Clandestina (JVSTIN Remix) with Reverse Drop… Read More

TechnoVision – Minecraft 1.16: Forge Modding Tutorial – Ore Generation (#11)