Minecraft Modding Tutorial 1.18 | #3 – Advanced Blocks + Items

Video Information

Hello and welcome back to another tutorial in today’s episode we’re going to be covering advanced blocks and items which includes custom block and item classes custom models and render layers custom block state properties tags foods and fuels and recipes and since i’m covering a variety of topics in this

Episode you can skip to sections that suit you so if you don’t care about custom models you can skip straight to the recipe section and vice versa and this video is more like an explanation filler video since all of these topics are too small to have their own so i’m

Going to start off with custom item in here we registered our example item over here with our json name example item and we’ve given it item properties but the only item property we’ve actually given it is the creative tab and if you go after here and press dot and if you

Don’t see this menu you can press ctrl space you can see all the different things that you can do to your item so craft remainder so what happens if you craft the item so for example for a water bucket you’d leave the bucket in the crafting menu after it’s been

Crafted the default durability and durability whether the item is fire resistant we can make it a food which i’ll discuss later you can give it a rarity so to do that you do dot rarity and then rarity dot and then the name of your rarity so common epic rare or

Uncommon you can set no repair and use stacks 2 to set the maximum size of the stack so for example an ender pearl would be 16 or for something that’s non-stackable like a sword you want to set the stacks to one and you can chain

These on so for example i want to make a fire resistant item which has a stack size of 12. and you can keep adding these on to create more things to your item but what if you want your item to have even more functionality perhaps functionality that isn’t included in

Minecraft by default well to do that we can create a custom item class so in our com.cy4.tutorialmod package we’re going to right click and create a new package called item and in here we’re going to put all of our custom item classes so let’s right click on it and go to new class

And create our example item class and our example items are going to extend item and we can press ctrl shift o to import net.minecraft.world.item.item then we can hover over this and add our constructor and if you want you can rename this to properties and the same

Down here and this is our base item class so back in our item in it we can change this new item over here to a new example item and press ctrl shift o to import that and now we can add functionality to our item so in

Example item we can go down a bit and press ctrl space and over here we can see all the methods that we can override so if i make this larger you can do some stuff you can do can attack block append hover text which is the tool tip

You can say if it can fit inside containers so if you can put it inside like a chest or something if you can equip it and other stuff there’s loads that you can override here and i’m not going to cover them but a couple useful ones include finish using item that’s for something

Like a food once you finish using it append hover text which is the dual tip and you have a bunch of stuff to do with sounds over here and much much more i’m going to press control space and override use and this function will be

Run when a player uses an item so if we hold ctrl and click on users we can see what it does by default and this will just check if it’s edible and then eat it otherwise it will just pass the use and you can see that here we have a

Consume so the item has been used a fail and a pass let’s rename the level to world since that’s our world our player to player and the interaction hand to hand and then change the things below accordingly just so that we understand what we’re actually writing let’s delete

The to-do and in here i’m just going to write some example code but obviously this can be whatever you want i’m going to first check if the world is client side and many functions in the item class will often be run twice once on the server and once on the client and

It’s really important to differentiate between the two so we’re just going to make sure that the world isn’t on the client and that we’re on the server so let’s add an exclamation mark here let’s do system dot out dot print line so just print something to the console and we’re

Going to print player dot get name dot get string so the name of our player plus has used item with hand hand dot name and this will either be main hand or offhand so now when we run the game and pick up our example item and then right click you

Can see in the console that we have dev used item with hand main hand and if we switch to our offhand you can see that it says offhand now let’s talk about more advanced blocks so let’s go into our blocking it and over here we have two things we have our

Actual block itself and the item for that block and for that block item you can use the same properties as we used in the items so we have a dot tab and here we have a food rarity durability craft remainder fire resistant etc and this item properties describes how a

Block behaves as an item and the block behavior describes how the block behaves when it’s placed down so from last episode you can see that we’re using a material which is metal and this just defines a bunch of basic stuff and you can see there’s a bunch of different

Materials over here the material color is what shows up on the map our block is purple so i put it to color purple and if you hold ctrl and open material color you can see all of these codes which are the integer codes for the color if you

Want to check what they are before you start the game the strength defines the hardness and blast resistance you might notice that there’s two different strength functions one of them has two values one of them takes one the one that takes one value just passes that

One value into two values so if you just have 3.0 you’re setting both the hardness and the blast resistance to 3.0 but if you want them to be different you can do something like this which is going to set the hardness to 3 and the blast resistance to two and if you want

To know what the default values are for the minecraft blocks you can look it up on google the sound defines the sound for the block so you can do sound type dot and then all of these different sounds that our blocks can be then we have requires

Correct tool for drops which won’t call the loot table unless it’s using the correct tool we also have dot air which makes it equal to air dynamic shape which makes it not a full block and emissive rendering which will render a block despite its light level at full

Brightness so something like a magma block and this takes a state predicate so to do that we can create a new predicate for which we’re going to pass in the state the getter and the position and then an arrow like so with a bracket and then

This needs to return a boolean so if i just return true here it’s always going to use emissive rendering or i can decide it based on the state so given any properties inside the block or given the position so i can do return pause dot get x is equal to 50. so this

Will just set it to emissive rendering only if the x position of block is equal to 50. we can also define if it’s a redstone conductor which also takes a state predicate if it will suffocate you also taking a state predicate if you can spawn on that block jump

Factor which will multiply your jump height when you’re standing on the block so something like soul sand will have a low jump factor below 1 which makes your jump height smaller no collision makes it so that you can’t collide with it no drops removes all the drops random ticks

Will randomly tick that block and light level will take an inter function which defines the light level of that block so this is going to be given a state and we’re going to output a light level say 4 which always gives you a light level or 4 and we can change this for

Based on things inside the state if you would like to so now our block will render emissively if the x position is 50 and it will emit a light level of 4. so if we run the game and set the time tonight we can see that it emits a very

Small light level of four so you can see there’s a very small circle around it you might not be able to see this because of the youtube compression but it is there and if we place it in a block where x is 50 you can see that it

Will always render full brightness no matter what the light level is now let’s make a custom class for the block and this is very similar to the item we’re going to create a new package in com.cy4.tutorial mod called dot block into here we’re going to create a new class called example

Block and this is going to extend block and let’s press ctrl shift o to import this world.level.block.block hover over this add a constructor rename the properties to properties and replace it down here as well and now we’ve created a basic block class back in our block in it we

Can change this new block to a new example block press ctrl shift o to import and there we go now in our example block we can overwrite methods so we can press ctrl space to see all the possible methods and once again there’s loads of methods

That you can use and most of these are going to be self-explanatory if you need a specific one you can join the discord and ask and someone should be able to help you i’m once again going to override the use function but this time this is when a block is clicked so

Let’s set the block states to be called state the level to world block pulse to pause the player to player interaction hand to hand and the block hits result to result and let’s rename these stuff down here accordingly and this is going to give an error because this command is

Deprecated so we’re just going to hover over that and make sure to suppress it and if we hold control and click on use we can see that by default it returns an interaction result pass so what we’re going to do we’re going to check if world dot is client side and once again

We want to add an exclamation mark to make sure that we are on the server not the client we’re going to check if player dot get item in hand and this is going to give us the item stack that the player is holding dot get item dot equals and then we’re going to

Do items dot diamond so that’s going to check if the item the player is holding is a diamond and if it is we’re going to system dot out dot print line and once again we’re going to get the name of the player so player dot get name

Dot get string interacted with block at pause plus pause dot 2 short string which will just give us the string for the position and space using a diamond so that’s just going to print a message telling the user that the player has interacted with the block and if that

Happens we’re going to return interaction result dot consume and it’s important to return the correct interaction result otherwise you might get some bugs consume will say that something has happened and the action has had some effect onto the world and if we start the game we can

See that if we right click the block then nothing happens and our hand doesn’t move but if we hold the diamond and right click you can see that in the chat it says dev interacted with block at the position of the block using a diamond this video is sponsored by mtx

Serve mtx serve provide game server hosting for games such as minecraft rust and valheim the servers are incredibly performant with a amd ryzen 5800x and unlimited ssd storage space as well as ddos protection and all of this for a pretty low price use code cy4 to get

Five percent off your server today next we’re going to talk about how to make this block have a custom model so to do that we’re going to download a 3d modeling software called blockbench so let’s go to blockbench.net and you can use the web application but

I’m just going to download it and i’m going to select windows but you can select your operating system and i’m going to download the installer and once it’s downloaded let’s run the installer and this is going to install blockbench and once it’s finished it will open blockbench and now we can create our

Model and you can select your keybind preference i’m going to select the default mouse keybinds and then we can create a model and you can see there’s lots of different things and we’ll be using blockbench a lot in lots of different tutorials but we’re going to create a

Java block slash item file name will be example underscore block it will have no parent model and we’ll just keep our texture sized let’s click confirm and you can see that we have our model i’m holding down on the middle mouse button to rotate it let’s add a cube and i’m

Going to set this to have a size of 16 by 16 by 16. and just like that we have our full block but i’m going to make it slightly different so i’m going to set the y size to be nine and i’m going to wake the zed

4. so as you can see over here now we have a block and this block is pointing north and the thing that makes this block special is that we need to write a bit of code which will make sure that we can place this block in different

Directions i’m going to create a texture with ctrl shift d and this is going to be our template texture we’re going to also call this example block let’s click confirm and now we have a texture which we can edit in any program or we can

Edit it by clicking on the paint tab so i’m just going to paint on the block a little bit just like so and now that you’ve created your beautiful art we can export it but first we need to add a plugin let’s go to file plugins and search for

Voxel shape generator for mcp and mojang mapping and let’s click install then let’s click close and now we can start exporting let’s go to file export and let’s click block slash item model and i’m just going to save this as example dash block dot json and then we want to

Go over here and we want to save the texture as example block dot png and i’m going to overwrite the old one that i have next we want to go to file export and we want to export the voxel shape and this is very important because we need to

Export it multiple times and we want to always select mojang mappings unless you switch to mcp let’s click confirm and we’re going to name our voxel shape file and this is going to be called north because the object is currently facing north and now we’ve exported our model

When it’s facing north now what we want to do is position it in the south direction and then we’re going to once again go to file export voxel shape and we’re going to call this south i’m going to click r and rotate it so that it’s pointing to the side and

We’re going to change the position from -16 to zero and now you can see that it is pointing west so let’s file export voxel shape confirm west and then we’re going to move it to the east like so file export voxel shape confirm east now let’s go back into eclipse so let’s

Create a new block which is going to be our block that we can rotate so let’s create a public static final registry object of block and this is going to be called rotating block and this is going to be called rotatable block and we’re going to create a new register

This is going to take three things so first we’re going to give it the json name which is just going to be rotatable block then we’re going to give it the block and the item and for the item i’m just going to copy the same thing that

We have up here like so and for the block we’re going to create a new block block behavior dot properties dot copy and we’re going to copy the properties of a different block so i’m going to use blocks dot dot so this is going to have the same

Properties as d and that means the same material and the same material color since we’re using a custom model we’re going to set this to have a dynamic shape because it’s not actually a full block so the rendering will be handled differently i’m also going to give it a

Sound type of sound type dot stone however this block is going to need a custom class so in our block package let’s create a new class called rotatable block and once again this extends block press ctrl shift o to import level dot block dot block hover over this add to

The constructor delete the to do rename the properties to properties and the same down here and then in our block in it we want to change this block to rotatable block and press ctrl shift o to import that and there we go now we’ve added our rotatable block class and up

Here we’re going to create a property so let’s create a public static final direction property and this is going to be called facing i’m going to set it equal to horizontal directional block dot facing and this is a block property which means we can change the block state and therefore block model and

Textures depending on what state our block is in so we’ve just added the facing state i’m also going to add an example functionality where my block can be toggled to have light level on and off so i’m going to set the public static final boolean property this is going to

Be called lit and we’re going to set it equal to boolean property dot create and we’re going to give it a name of the property so lit there’s lots of different properties that exist and all of them will be slightly different in this line here and maybe later on but

I’m just going to use these two default ones to demonstrate how they work next we’re going to overwrite create block state definition and we’re going to change this to builder and instead of the to do we’re going to do builder dot add and we’re going to give it a list of

Properties so i’m going to do facing and lit and now our block state will contain the facing and lit properties and you want to make sure to add all your properties to the block state definition next in our constructor we need to set the default state so let’s do this dot

Register default state and then we’re going to do this dot default block state dot set value and then we’re going to give a property so facing i’m going to set direction dot north to be the way that it faces and we want to make sure that the direction is net.minecraft.cor.direction we’re also

Going to set value lit to be false and this is just going to make sure that the block is not lit by default next let’s add the voxel shapes that we exported so if we open up the text file you can see that we have this voxel shape shape and then we set

Shape equal to all of this and we’re just going to copy the bit inside here which has voxel shapes dot box we’re going to copy that and under this we’re going to set public static final voxel shape north is equal to and then and then paste let’s press ctrl

Shift o to import both of those and we’re going to change voxel shapes to just block then i’m going to copy and paste this start bit for times for east south and west and then i’m going to repeat opening the text files copying this segment of the code

And pasting it adding a semicolon replacing voxel shapes with block and then repeating the next one those are the four voxel shapes in different directions next we’re going to override get shape and for this we get a block state and we need to return the correct

Voxel shape that we can use and since we’re actually putting decimals in here we need to replace blocks with shapes like so there we go next we’re going to rename some of the parameters we get here so let’s rename this to state this together this dot pause

And this to context then we’re going to write a switch statement for state dot get value for facing then we’re going to hold this and we’re going to add missing case statements and then we want to delete these statements for up and down for east we’re going to return east

For north we’re going to return north for south we’re going to return south and for west we’re going to return west and this will select the voxel shape for each direction and we’re just going to set the default voxel shape to also be north and that means we can actually

Delete this case north since that will just revert it to the default and there we go now we’re selecting our voxel shape next we need to make sure to correctly rotate the block when it’s placed in the world so we’re going to go down here and override get state for

Placement and this is just going to take a context context let’s replace that and in the to do we’re going to return something that isn’t the super we’re going to return this dot default block state dot set value facing and in here we’re going to do context dot get horizontal

Direction dot get opposite we’re going to set the correct position when it’s placed finally let’s overwrite two more functions we’re going to overwrite mirror we’re just going to take a state and a mirror and we’re going to return state dot rotate and this is going to take a rotation and

That rotation is going to be mirror dot get rotation for state dot get value facing and we’re going to make sure to suppress warnings for deprecation next we want to override rotate and we want to make sure to overwrite the one that has four arguments passed in so the state world

Pause and direction and we’re going to return state dot set value facing to direction dot rotate for state dot get value for facing and this is going to apply rotation to our block and that is actually it for our rotation code next let’s add some codes for our lit and we’re going to

Copy some of the stuff we wrote over here so let’s just select all of this press ctrl c and paste it down here into our block and what we’re going to do is when it is used if it’s right clicked with a diamond we’re going to toggle the lit state and

We’re going to do state dot set value so we’re going to set lit to the opposite of what lit currently is so not state dot get value lit and then we actually need to change the block if it is lit so after properties we can also add stuff to our

Properties inside our block and since we need the lit thing over here i’m going to add the light level in our block class instead of the block in it and in the light level function we we get given a state and with it we need to output an integer

So what we’re going to do we’re going to output so return and we’re going to return 15 if it’s lit so let’s do state dot get value lit and this is going to return a boolean and if it is lit we’re going to return 15 and if it isn’t lit we’re

Going to return zero next we’re going to need to create a custom block state so in source main resources let’s go to assets.tutorial dot block states and create a new block state new file called rotatable block dot json and for now let’s copy over our example block and let’s change the model to

Rotatable block however as you can see here we have something for all variants and this isn’t possible when we have a rotatable block or any block with properties so here we have two properties facing and lit and if we open facing you can see that the name for

Facing is actually just facing and the name for the boolean is the one we created here so the name for the boolean is lit and that’s going to be important when we write our block state and what we’re going to do is create variants for facing equals north

Facing us south east and west we need to make sure to have all the possible values we also need to include lit even though we’re not changing the model so let’s say lit is true and facing is north then we’re going to use this model then let’s copy and paste that three

Times changing the north to east south and west and despite the fact that we’re going to be using the same model we’re also going to rotate the model when we’re using it we’re going to rotate all of them on the y-axis so we’re going to add comma y and then the

Rotation in degrees and i don’t actually know what this rotation is going to be so i’m going to guess and then we’re going to adjust it afterwards now i’m going to put this to 90 this to 180 and this 2 to 70. so that’s one right angle rotation two right angle

Rotations and three right angle rotation and then i’m actually going to copy all of this add a comma and then paste it and we’re going to select all the ones that are highlighters and press ctrl f we’re going to make sure the scope is on selected lines and then we’re going to

Replace true with false click replace all and there we go now that we have the exact same models when the state is false now we actually need to create this rotatable block model so let’s go to models block and in here let’s create a new file called rotatable block and now if we

Open the exampleblock.json we exported before we can select all of this and paste it in here and we actually forgot to name this adjacent so i’m going to quickly rename that now here we have the credits you can change this to whatever you want the texture size and the textures

And since we are using our own textures we need to add our tutorial mod colon this isn’t example block this is rotatable block and we’re going to copy this and paste it for the particle as well since we want to use the same texture there something i didn’t mention during

Blockbench is that this item will display weirdly in the inventory to fix that you can go to display and manually set the display stuff or use a preset i’m going to use a preset so i’m going to go over here to apply preset and we’re going to select default block

And apply to all slots and now this will behave in an inventory just like a default block we can re-export the block model but this won’t change any other aspects of the model so now that i have this re-exported model i’m going to copy and paste it and then

Redo the textures like i did before now we need to drag our texture into the block class so here i have the example block.png so let’s rename that to rotatable block.png and then drag it into the textures.block package let’s go to our lang and quickly add that like so so

This is our rotatable block and let’s rename this to rotatable block as well and i’m not going to make any tags because i don’t care that much about the block but now we can start the game and see what happens and when we load in i

Forgot to create the item model for the blocks so we’ll do that in a second and you can also see that every time we place the block it’s rotated by 90 degrees so we need to fix that in our block dot item we’re just going to copy

The example block and paste it and rename it to rotatable block and inside there we’re going to change the parent to rotatable block again and in our model file we’re going to offset each one by 90 degrees and when we have 270 we’re just going to put zero not 360.

Like so now if we go into the game and press f3 and t it’s going to refresh all the assets that are in our package you can see that we now have the item models but now we rotated the things the wrong way so i’m going to put those back

That means the first one has to be 270 the second one is going to be zero third one is 90 and the last one is 180. and now if we press f3 and t again we can see that our block is properly rotated and has the hitbox and what we wrote

Before in the use function wasn’t actually setting the block state so to fix that what we’re going to do is world dot set block we’re going to give it the position a state and then four and then we’re going to change the state to cycle

Lit and what this is going to do is swap the state of lit and then set that in the world and now in our game we can see that if we right click on our block with a diamond we can see that it toggles between emitting light and not emitting

Any light next we’re going to talk about render types and this is pretty much always used when we make a custom model let’s right click on our main package let’s go to create a new package this is going to be called client and in here we’re going to add a new class called

Client event bus subscriber and at the top we’re going to type at mod dot event bus subscriber we’re going to open brackets we’re going to set the mod id to tutorial mod dot mod id we’re going to set the bus equal to bus dot mod and we’re going to

Set the value equal to dist dot client let’s press ctrl shift o to import everything and now in here we need to add an at subscribe event and this is going to be a public static void called client setup which is going to take an fml client

Setup event and here we’re going to set up everything that’s to do with the client so all we need to do to add a render layer is to item block render types dot set render layer then we give a block so we can do block init dot

Rotatable block dot get and then we can set the render layer so let’s see render type dot and these are all the different render types that we have i’m just going to select cutout which is a simple custom model but you can select anything you want you can also hover

Over item block render types and here you can see what each minecraft item and block uses by default and that’s it for our render types we’ll also need this class later when we do a bunch of other client related things next we’re going to go over some more item related things specifically

How to make foods and fuels in order to create a fuel we need to overwrite a method inside the item class so in our example item class let’s create a new method which is going to be called get burn time and by default this is going

To be -1 which means it doesn’t burn but we can do something like return thousands which is how many ticks this is going to burn for remember that there are 20 seconds per tick so 1 000 ticks is equal to 1000 divided by 20 seconds that’s 50 seconds this is going to burn

For 50 seconds and that’s it now our item is a fuel another thing we can do is make our item a food and in order to make it a food we need to add a property in our item in it and this property is called dot food so let’s create a new

Food properties dot builder and then here we need to add stuff to our food let’s put dot build at the end and this is going to actually return the build and in between the builder and dot build we can add all the properties for our food

We can set always eat so that you can always eat it effects which i’ll cover in a second we can make it a meat we can give it a nutrition value a saturation value and you can make it to be fast to eat once again you can find all the hunger and

Saturation values on the minecraft wiki but for the nutrition or hunger i’m gonna put four so four half bars that’s two like full bars of food and then saturation which is how quickly you’ll regenerate after i’m going to set that to 2.0 f if we want to make this food

Give an effect you can do dot effect then we give a supplier of a mob effect instance and a probability that this effect will be given i’m going to say that we’re going to give a 100 probability of giving a new mob effect instance and then we’re going to create

A mob effect instance next we need a mob effect let’s do mob effect start regeneration next we have the time in ticks so that’s let’s do 200 ticks which is 10 seconds once again divide by 20. and then finally the strength remember the zero is level one regeneration and one is level two

Regeneration so i’m going to put this to zero which is going to give us regeneration one for 200 ticks with a 100 percent probability and if we load into the game you can see that our example item can now be used as fuel and it will smelt items for 50 seconds

Before eventually running out we can also eat the item now and it’s going to give us regeneration for 10 seconds and it will regenerate four hunger bars and a couple of saturation bars as well next let’s do some tags and some recipes and information for most of this stuff

Can actually be found on the minecraft wiki but we’re going to do a little bit anyway we already covered overwriting default minecraft tags last time with the replace values and adding values ourselves we can also create our own tags and this is very similar to before we can go to

Tutorial mode and create a new package and let’s call this data.tutorialmods.tags.blocks and this is how we make block tags you can do the exact same thing for item tags if you’d like to let’s create a new file called cool underscore blocks dot json and in here

This is going to be very similar to what we had before so we’re going to do replace i’m going to set that equal to false and then we’re going to add our values and inside these square brackets we’re going to put the registry ids of all the cool docs so torment colon block

Slash example block that’s a pretty cool block and another cool block is actually minecraft colon block slash diamond ball so now we’re adding our example block and a default minecraft block to a list of cool blocks and if you want to access this tag through code we’re going to need a new

Init class so let’s create a new class called tag init and this class is actually a final class so let’s create a public static final class inside the class and this is going to be called blocks and this is going to have all our block tags

And then let’s do the exact same thing for items so public static final class items in here let’s create a private static tag dot named and this is going to be of block and we’re going to call this mod and this is going to take a string

Path and in here we’re going to return block tags dot bind and a string which is actually going to be a new resource location of tutorial mod dot mod id then the path and then dot to string next let’s copy paste this into the items class over here change this block to item

And change this to item tags next let’s register our tag so public static final tag dot named block i’m going to call this cool blocks is equal to mod and the name of the tag is cool underscore blocks now let’s create an item tag so in our tags package let’s delete the

Blocks and create a new package called items and you want to make sure that this is plural so it has the s at the end and let’s add a new tag called cool underscore items.json and once again we want to set replace to be false and then we want to

Set values to a list of all the cool items i think a cool item is tutorial mod colon example item and minecraft hold on diamond and one thing we did wrong in the blocks is that we don’t need this block slash it will automatically look for block in our tag

In it let’s now create a public static final tag dot named of item is going to be called cool underscore items equals mod of cool i items next let’s use these tags somewhere right now to switch the light level on our rotatable block we’re checking if

It’s a diamond so instead of all of that we’re going to write tag init dot items since we’re looking for items cool items dot contains and now we need the item so player dot get items in hand so we’re going to get the held item but

This is an item stack so we need the item from the item stack and there we go now we can use two different items to toggle our block so now if we run the game now you can see that to enable the light level on our block we can use both

A diamond and our example item next let’s cover some recipes and to create a recipe the only thing we need is a json file once again since this is going to be part of a data pack all of the information for this can also be found on the minecraft wiki in our

Tutorial mod package let’s create a new package called dot recipes and in here we’re going to add all our recipes so i’m going to create a recipe for all of our stuff so let’s create a new recipe and this is going to be how we craft our

Example block and the way we do that is going to be by crafting nine example items together so we’re going to set the type to be crafting shaped since this is a shaped recipe and then we need the pattern and the pattern is going to be three different strings think of these

Strings as your crafting table and to put items into that crafting table we need letters so if our recipe is going to be a three by three recipe we’re going to have three rows and we’re going to say look we want to craft nine of our

Items together so let’s say our item r is i you can fill this with i just like a crafting rest if you want to have no item here we can put a space and then we’ll have eight items if you only want to craft six items together we can have

One row like that and then you can put this at the top or at the bottom of your crafting table same thing with this if we have four you can put this in any place in your crafting table as long as four slots are occupied in this pattern

If you want multiple different items you need to use different letters for each item let’s say i want to surround item b with item i then i’d put item b in the middle and put item i everywhere else i’m just going to leave this as them all being i however minecraft doesn’t

Actually know what i mean so we have to tell it what it means so to do that we have a key and in this key we’re going to define i is going to be equal to something and then here we can either say something like an item so this is

Going to be tutorial mod colon example item or we can set it to a tag so you put a tag something like tutorial mod colon cool items so let’s do that so now any cool item in a 9×9 grid will give our output but now we actually need to define what the output

Is so then let’s set the result and the result is always going to be an item which is going to be tutorial mod colon example block and we are going to output only one of those let’s add the missing comma and that is our shaped recipe done

Now let’s add a shaped recipe for crafting this example block back into our cool items however over here you can see that we actually have a recipe conflict because the cool items will include diamonds and as we know nine by nine as we know nine diamonds in a grid

Is going to give us a diamond block so i’m actually going to remove this to be eight like so that way we don’t have any conflicting recipes i’m now going to add a new recipe called example item dot jason and this time we’re going to use type is equal to crafting

Shapeless and this is going to be slightly different you need a list of ingredients so let’s do ingredients is a list and to add an ingredient we can do something like that and once again in here we can do a tag and then the name

Of tag or we can do an item i’m just going to do an item for this one so i’m going to do tutorial mod colon example block that’s the item that’s going into the recipe and we only need one of these in any position if you add more

Ingredients so something like this that just means you need three example blocks in any position or something like rotatable block means that you need two example blocks and one rotatable block in any position in the crafting table and that will give you the output but i’m just going to stick to one example

Block and now we just need the result which is going to be an item of tutorial mod colon example item and i’m going to output eight of them so count is eight and there we go and we want to make sure to put minecraft colon before each

Of the names of the types so that we know we’re using a default minecraft type i’m going to quickly cover smelting recipes as well and if you want to see more different recipe types you can always go on the minecraft wiki so let’s create a rotatable block dot json file

And this is going to have a type of smelter so now that we have minecraft colon smelting we’re going to need our ingredient and this isn’t going to be a list this is just going to be one thing and we’re just going to use an example block as the single ingredient as always

You can use a tag here instead next we’re going to add a result but this time we don’t need a count so this is just going to be on one line so let’s do tutorial mod colon rotatable block but for a furnace we actually need a couple more things

We need experience which is the amount of experience given i’m going to set that to naught point two and we need the cooking time in ticks which is how long it’s going to take to smelt the item i’m just going to put 200 ticks and that is

Our smelting recipe now we can start the game so in a crafting table we can craft any eight cool items together and we can even mix and match them so i’m going to craft eight diamonds together in this kind of pattern and this is going to

Give me an example block which can then be crafted down into eight example items and these can be crafted back into example blocks and if we go over here and we smelt them you can see that after a while we get a rotatable block as an

Output which can be turned on and off with our example item which can also be eaten for some reason and that is going to do it for this episode if you need any help join the discord and there are links to the discord the source code for this

Video and any useful links in the description in the next episode we’re going to be covering data generators so that you can automate the jsons in your project thank you for watching and i’ll see you next time this was a really long episode You

This video, titled ‘Minecraft Modding Tutorial 1.18 | #3 – Advanced Blocks + Items’, was uploaded by Cy4’s Modding on 2022-02-13 13:21:55. It has garnered 23116 views and 492 likes. The duration of the video is 00:44:42 or 2682 seconds.

HALLO!! This took so long to edit its crazy 😀 enjoy

(ɔ◔‿◔)ɔ ♥ ~ expand me

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

C://MTX/ Get your server today! https://mtxserv.com/ Use codes cy4-3, cy4-6, cy4-16 and cy4-32 for 5% off!

C://Links/ BlockBench: https://www.blockbench.net/ Wiki Hardness: https://minecraft.fandom.com/wiki/Breaking#Blocks_by_hardness Wiki Blast Resistance: https://minecraft.fandom.com/wiki/Explosion#Blast_resistance Wiki Foods: https://minecraft.fandom.com/wiki/Food#Foods Wiki Fuels: https://minecraft.fandom.com/wiki/Smelting#Items_that_can_be_used_as_fuel_in_all_types_of_furnaces Wiki Tags: https://minecraft.fandom.com/wiki/Tag#JSON_format Wiki Recipes: https://minecraft.fandom.com/wiki/Recipe#JSON_format Recipe Generator: https://crafting.thedestruc7i0n.ca/

C://Source_Code/ https://github.com/Cy4Shot/Modding-Tutorial-1.18

C://Follow_Me/ Subscribe: https://www.youtube.com/channel/UCJIDXtGpf4wv1ybDzdTA_vQ/ Website: https://cy4shot.github.io/

C://Time_Stamps/ 00:00 – Intro 00:34 – 1. Advanced Items 05:08 – 2. Block Properties 09:00 – 3. Block Class 12:02 – mtxserv.com 12:25 – 4. Using Blockbench 15:57 – 5. VoxelShapes + Rotation 24:24 – 6. Advanced Blockstates 29:59 – 7. Render Layers 31:38 – 8. Foods + Fuels 34:21 – 9. Block + Item Tags 38:27 – 10. Recipes 44:10 – Outro

  • Join Minewind Server for Ultimate Minecraft Survival Fun!

    Join Minewind Server for Ultimate Minecraft Survival Fun! Welcome to the world of Minecraft, where creativity knows no bounds and survival is key. If you’re looking to enhance your Minecraft experience and join a vibrant community of players, look no further than Minewind server. With an IP address of YT.MINEWIND.NET, this server offers a unique and exciting gameplay experience that will keep you coming back for more. Just like in the YouTube video tutorial where players are building simple houses to start survival, Minewind server provides a platform for you to unleash your building skills and thrive in a challenging environment. Whether you’re a seasoned player or… 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

  • Backrooms Unleashed: Minecraft Madness!

    Backrooms Unleashed: Minecraft Madness! In the Backrooms, a maze of mystery and dread, Secrets lurking in every corner, filling you with dread. Explore for hours, uncovering each hidden surprise, Six collectables to find, hidden from prying eyes. Piratesoftware and Heartbound, the music sets the tone, As you navigate the labyrinth, feeling all alone. Download the world, dive into the unknown, The Backrooms in Minecraft, a journey to be shown. So grab your gear, and embark on this quest, In the Backrooms, where fear and excitement manifest. Happy hunting, brave explorer, may you find success, In this world of secrets, waiting to impress. Read More

  • LEGO Minecraft 2024 Steve & Baby Panda Unboxing

    LEGO Minecraft 2024 Steve & Baby Panda Unboxing LEGO Minecraft 2024 Steve & Baby Panda 30672 Unboxing & Complete Build Introduction In the world of LEGO Minecraft, the set 30672 featuring Steve and Baby Panda is a delightful addition to any builder’s collection. With 35 pieces to assemble, this set promises a fun and engaging building experience. Unboxing and Building The unboxing experience of the LEGO Minecraft set 30672 is filled with anticipation and excitement. As the packaging is carefully opened, the building adventure begins. Steve and the brick-built panda come to life piece by piece, offering a break from the daily grind and a chance to… Read More

  • Ring Ding Ding: Minecraft Doorbell Bling!

    Ring Ding Ding: Minecraft Doorbell Bling! In Minecraft, a crazy doorbell you can make, With redstone and note blocks, a sound you’ll create. Just follow the steps, don’t make a mistake, And soon your doorbell will ring, for goodness’ sake! Viper_Playzz shows you how, in Hindi he speaks, Gaming videos galore, for all the geeks. Subscribe to his channel, for more Minecraft tricks, And let your creativity, in the game, quickly fix. Read More

  • BLOCKS BETRAYED HIM… 😮

    BLOCKS BETRAYED HIM... 😮 The Controversial Changes in Minecraft In the world of Minecraft, where creativity knows no bounds, even the smallest changes can spark controversy. Recently, a player named Jappa made waves by updating the textures for version 1.14. Among these changes were the cauldron and potion maker, which left many players scratching their heads. The Texture Changes With the update, the cauldron and potion maker received a new look. Previously flat and simplistic, these items now sported a more intricate design. While some players appreciated the update, others found it unnecessary. Confusion Among Players One of the main points of contention… Read More

  • 602: Minecraft Land, A Rhyme So Grand

    602: Minecraft Land, A Rhyme So Grand In Minecraft land, episode 602, We’re diving deep into what’s new. Exploring caves, finding diamonds bright, Crafting tools to help us in the fight. The viewers comment, some good, some bad, But we keep creating, never sad. Ignoring negativity, focusing on fun, In Minecraft land, we’re always on the run. So join us now, in this virtual land, Where creativity and adventure go hand in hand. Stay tuned for more, in episode 603, As we continue our journey, wild and free. 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

  • Outsmarting Minecraft with AI

    Outsmarting Minecraft with AI Minecraft: A Journey with AI Assistance Embark on an exciting adventure in the world of Minecraft with the help of artificial intelligence! Today, our protagonist seeks to conquer the challenges of this beloved sandbox game with the aid of advanced technology. Exploring the Vast World of Minecraft Step into a world filled with endless possibilities as you navigate through blocky landscapes, mine resources, build structures, and battle various creatures. With the assistance of AI, our player is equipped to tackle the toughest of tasks and unravel the mysteries hidden within Minecraft. AI Strategies and Insights Utilizing cutting-edge AI algorithms,… Read More

  • Sneaky Minecraft Challenge: No Blue Allowed!

    Sneaky Minecraft Challenge: No Blue Allowed! Minecraft: A Colorful Challenge Imagine playing Minecraft but not being able to see the color blue. That’s the intriguing challenge presented in this video. For those looking to test their skills like the creator of this challenge, be sure to like, subscribe, and comment on the difficulties you face. Exploring the Colorful World of Minecraft As the music sets the tone, the gameplay unfolds in Minecraft. The absence of the color blue adds a unique twist to the familiar landscape. Gathering wood and essential resources becomes a new challenge in this color-altered world. A Newbie’s Journey Even for a… Read More

  • INSANE Minecraft Memes + FUNNY Moments!! 🔥

    INSANE Minecraft Memes + FUNNY Moments!! 🔥Video Information oh my God bro diamonds wait let me get [Music] my W [Music] woo This video, titled ‘Minecraft Moment #minecraft #minecraftmemes #minecraftfunny #yurizingod’, was uploaded by yurizingod0 on 2024-01-12 13:01:43. It has garnered 52476 views and 2605 likes. The duration of the video is 00:00:59 or 59 seconds. Minecraft Moment #minecraft #minecraftmemes #minecraftfunny #yurizingod #shorts Read More

  • Mind-blowing plane images by Jevin Richardson!

    Mind-blowing plane images by Jevin Richardson!Video Information This video, titled ‘Just some normal plane images’, was uploaded by Jevin Richardson. on 2024-04-12 13:44:59. It has garnered 4554 views and 33 likes. The duration of the video is 00:01:04 or 64 seconds. Today we will reacting to random Plane images in plane photoshop, All in Minecraft cave sounds. hastags: #aviation #meme #funny Thumbnail: N/A Edited: Capcut Edited on : Galaxy Tab A7 Lite Thanks for Watching! if you enjoy this video Like and Subscribe. Try the free video editor CapCut to create videos! https://www.capcut.com/t/Zs86wKR1P/ Read More

  • Pro Gamer FAILS at Minecraft BedWars!! 😱

    Pro Gamer FAILS at Minecraft BedWars!! 😱Video Information This video, titled ‘badly played #minecraft #bedwars’, was uploaded by xThonyG on 2024-02-03 08:00:19. It has garnered 2480 views and 105 likes. The duration of the video is 00:00:09 or 9 seconds. 🍷 Thank you for always supporting the content 🍷 Pack: Download + Linkvertise: Download: Creator: 🐱‍🏍Redes🐱‍🏍 🐣Twitter: twitter.com/xThonyG 👾Twitch: twitch.tv/xthonyg 🐱‍🚀Discord: https://discord.gg/brEBUrgV8Y 🌆 Become a member and enjoy the benefits: https://www.youtube.com/channel/UCEgQjkaGSny6uI5-jtWzZIw/join ⚡Keyboard: GK61 Gateron Optical Yellow 🌌Mouse: Logitech G703 Lightspeed Wireless Times -0:00 Intro -0:10 Hypixel Bedwars Game -3:43 Texture Pack Review -3:50 Sky -4:13 End #Anime #Minecraft #Waifu Tags hypixel bedwars, anime texture pack, anime… Read More

  • Unbelievable! Black Sparkle’s Epic Modern Toilet Build 🚽😱 #shorts

    Unbelievable! Black Sparkle's Epic Modern Toilet Build 🚽😱 #shortsVideo Information don’t build toilet like so instead build this modern [Music] toilet baby This video, titled ‘MINECRAFT: Modern TOILET 🚽| Build Hacks #shorts #minecraft’, was uploaded by Black Sparkle on 2024-05-23 09:00:16. It has garnered 2144 views and 46 likes. The duration of the video is 00:00:10 or 10 seconds. #minecraft #builds #ytshorts ✅Make sure to check out my main channel for more Minecraft builds! https://www.youtube.com/ @Blacksparkle786 This video you Should watch: https://youtu.be/AsVxcmpNoKE If you enjoyed the video, leave a like and subscribe to my channel. Let me know in the comments what I could show next!🤍 #tutorials #minecraftbuildhacks… Read More

  • Shocking Minecraft YouTuber Tier List Revealed LIVE!

    Shocking Minecraft YouTuber Tier List Revealed LIVE!Video Information one you need to set up broadcast before you can I should be live oh wait this is how you do it okay I’m going to post on Discord real quick as well am I live yeah yeah I’m I’m so live I’m so live right now I’m so live ah I’m going to say I’m going to say hi you people hi Noah Mele oh let M too quick Josie Bix wasy I’m only going to read your name if it’s short cuz I can’t read let me move over to this side going do a tier… Read More

  • Insane Minecraft Exploration with BenÇağan

    Insane Minecraft Exploration with BenÇağanVideo Information hangisini seçerdin hayatın boyunca kaslı bir birey Olmak ya da istediğin kadar yiyip kilo almamak dünyanın en güçlü insanı Olmak ya da dünyanın en hızlı insanı olmak yazı yazmayı unutmak ya da kitap okumayı unutmak iki kat uzağı gör ya da iki kat uzağı duy sonsuza kadar yalnız kalmak ya da videoyu beğenip kanala abone ol [Müzik] This video, titled ‘#minecraft #bencago #gaming #keşfetteyiz #memes 1’, was uploaded by BenÇağan on 2024-04-21 08:10:43. It has garnered 1 views and 1 likes. The duration of the video is 00:00:35 or 35 seconds. I would be very happy if you… Read More

  • Insane WIN! Defeating Minecraft April Fools!

    Insane WIN! Defeating Minecraft April Fools!Video Information in this video I’m attempting to beat Minecraft The Twist is that I’m on the April fools update Minecraft’s the vote update as a new way to play Minecraft every random amount of ticks adds a new chance for a vote to appear the votes can change the game positively or negatively every vote gives you the chance to do nothing I’m limiting myself to only do that three times I have five goals for this video become an animal collect something sus obtain a ruby kill the dragon and go to the Moon without further Ado let… Read More

  • Invictus Modded SMP GT:NH Java Public 1.7.10

    Invictus ⛏️ Invictus was founded in 2020, to create a small and relaxed community. It now consists of 170+ discord members and an active player base. The world resets every 6 months or so and is updated to the latest version. Our server is public and we welcome anyone and everyone! 👋 We’re starting our first ever modded season tonight on GT: New Horizons. With a brand new world. It’s the perfect time to get involved! We also have a guide on our discord on how to play modded and we’re very newbie friendly! Server IP: invictusmc.net Discord Invite Link… Read More

  • Iridium Island (Vanilla Survival)

    Iridium Island (Vanilla Survival)Tired of generic “survival” servers riddled with ranks, pay to win features, leveling systems, item shops, and other similar features? I was too, and that’s why I decided to create Iridium Island, the survival server of your dreams. Iridium Island has no ranks, no pay to win features, no centralized item shops, and no leveling. That’s a lot of things this server doesn’t have, but what does it have?- Optional proximity and traditional voice chat (mod required)- A small community- A Discord server Read More

  • Minecraft Memes – Crafty Creepers: Yeeting Your Diamond Ore.

    Wow, that meme must have aced its exam to get a score of 374! Read More

  • Cape Escape: Unveiling Minecraft’s Truth

    Cape Escape: Unveiling Minecraft's Truth In the world of Minecraft, capes are a delight, But behind the scenes, there may be a fight. For the 15 year anniversary, capes were given out, But could this be the start of a money-making route? The green creeper cape, a token of thanks, But the TikTok and Twitch capes, filling up the ranks. Could brand partnerships be on the horizon, Turning capes into a marketing guised in? Imagine if capes were sold for a price, A new marketplace, not once, but twice. Minecraft Java Edition, always free and fair, But could brand collaborations bring a new affair?… Read More

  • Creepers be like: ‘Hot Girl Summer’ #minecraft

    Creepers be like: 'Hot Girl Summer' #minecraft “Why did the creeper break up with his girlfriend? Because she couldn’t handle his explosive personality!” #minecraftlovegonebad #boom #minecraftmemes Read More

  • Minecraft Shenanigans: Episode 603

    Minecraft Shenanigans: Episode 603 Welcome to Episode 603 of Minecraft Adventures! Building and Decorating In this episode, our host embarks on a journey to continue building and beautifying the Minecraft world. Starting with securing the area with stone fences to protect villagers from falls, the focus shifts to gathering resources like wheat, sheep meat, and wool. The meticulous process of harvesting and organizing resources showcases the dedication to creating a vibrant and sustainable environment. Expanding and Renovating As the day progresses, the host delves into expanding the living quarters, adding intricate details to the house’s second floor. The careful placement of wooden blocks… Read More

  • Unlock Endless Possibilities on Minewind Minecraft Server

    Unlock Endless Possibilities on Minewind Minecraft Server Welcome Minecraft enthusiasts! Are you looking to enhance your gaming experience and take your construction skills to the next level? Look no further than Minewind Minecraft Server! With a vibrant community and endless possibilities, Minewind is the perfect place to unleash your creativity and connect with like-minded players. But why should you join Minewind, you ask? Well, imagine a world where you can use commands like /fill to quickly place blocks and bring your ideas to life. Just like in the video tutorial on how to use the fill command in Minecraft, Minewind offers a dynamic gameplay experience that… Read More

  • Ultimate Sugar Cane Farm Guide – 13k/HR!

    Ultimate Sugar Cane Farm Guide - 13k/HR! The Ultimate Minecraft Sugar Cane Farm Tutorial Introduction Looking to boost your sugar cane production in Minecraft? TheySix has you covered with a new tutorial showcasing a simple yet highly efficient sugar cane farm. This farm boasts a staggering 100% efficiency rate, surpassing even flying machines in speed, producing over 13,000 sugar canes per hour! Key Features 🌟 Beginner-friendly design utilizing clock hopper mechanics for stability and efficiency. 🌟 Expandable modules for increased production rates. 🌟 Exclusive to Java Edition. Farm Details Farm Performance: 13,000+ Sugar Canes Per Hour (per module) Farm Mode: Fully Automatic Versions: Compatible with 1.15… Read More

  • Insane Steampunk Storage Trick in 24 HRS!

    Insane Steampunk Storage Trick in 24 HRS!Video Information [Music] he oh hello chat and welcome to my humble whole why is the screen black why is the screen black hey hey hold onp dip dip dip fixing fixing where’s Minecraft there it is wh there we go perfect hello everyone welcome yeah pollution is that bad that’s how that’s how far we are in the pack no we are just starting in the pack we are just starting in the pack it is it’s a little shy today yeah steampunk a little shy today but welcome welcome welcome welcome how you guys doing everyone feeling good… Read More

  • Unbelievable: 3-Year-Old Master of Terraria

    Unbelievable: 3-Year-Old Master of TerrariaVideo Information so uh recently I’ve been having a bit of a dilemma I’m just getting bored of playing Minecraft to be honest with you I open the game I st at the screen for 10 seconds at least and then I close it and then go look at R it on my bed and so this new fixation to play some different game spark and I was browsing through my steam Library which is very large and this game that is pretty similar to Minecraft caught my eye it’s called Terraria I don’t know if you’ve heard of it… Read More

  • INSANE Challenge: Surviving 100 Days in SKYBLOCK Minecraft Zone

    INSANE Challenge: Surviving 100 Days in SKYBLOCK Minecraft ZoneVideo Information This video, titled ‘I Survived 100 Days in SKYBLOCK Minecraft’, was uploaded by Gaming zone on 2024-03-07 10:47:27. It has garnered views and [vid_likes] likes. The duration of the video is or seconds. I Survived 100 Days in SKYBLOCK Minecraft (Hindi Gameplay).mp4. Read More

  • Unbelievable! Minecraft’s Oldest Bug Finally Fixed! 24w21b Snapshot

    Unbelievable! Minecraft's Oldest Bug Finally Fixed! 24w21b SnapshotVideo Information one of the oldest bugs in Minecraft getting fixed more links in the menu new interactive map for 15year anniversary and many tweaks to the upcoming 1.21 features hello there Ray here and today we’ll take a look at all of these Plus at the end of the video I’ll help you get all three of the Minecraft capes before the upcoming deadline guys we got our old piston sound back it sounds so much more natural I’m not sure why they all of a sudden decided to completely change that sound as it just didn’t quite seem… Read More

  • EPIC PVP SHOWDOWN IN UNZMXD – #1

    EPIC PVP SHOWDOWN IN UNZMXD - #1Video Information This video, titled ‘PVP#1’, was uploaded by UnZmxD on 2024-03-16 15:52:11. It has garnered 15 views and 0 likes. The duration of the video is 00:02:42 or 162 seconds. I don’t own the music in this video #minecraft #pvp#potpvp#controller#asiapot tags (ignore): forge, 1.7.10 forge, 1.8.9 forge, hack download, vape.gg, vape download, vape v4, vapev4, vape v4 crack, vape cracked, vape free download, vape lite, vape lite cracked, free vape crack, minecraft, minecraft pvp, pvp, intent, store, novaline, artermis, juul not working, juul, juul not loading, whitelist failure of jule, intent, 1.7.10, fps boost, fps boost 2020, fps boost… Read More

  • Xanva’s Heartbreaking Hamster in GMOD

    Xanva's Heartbreaking Hamster in GMODVideo Information This video, titled ‘Sad Hamster █ GMOD’, was uploaded by Xanva on 2024-03-01 12:34:14. It has garnered 8491 views and 229 likes. The duration of the video is 00:00:10 or 10 seconds. Tags: animation funny cartoon animated minecraft shorts parody gmod mario minecraft but nextbot gmod horde sad hamster meme gmod nextbot sad hamster song the backrooms princess peach toad animal nintendo video game (industry) sad hamster elmo gmod animation meme team fortress 2 horror comedy gmod nextbots compilation gmod nextbot survival nextbot gmod shorts minecraft nicos nextbots nico’s nextbot nico’s nextbots liminal hotel nextbots nextbot chase nicos… Read More

  • 🔥 MINECRAFT SMP LIVE HINDI INDIA – 750 SUBS GOAL!! 🎮

    🔥 MINECRAFT SMP LIVE HINDI INDIA - 750 SUBS GOAL!! 🎮Video Information एरी टाइम व से गुड बाय ट इज वी ग वन या य वा मी [संगीत] टंग ऑफ माय मा सो आई गे बा i [संगीत] w फ य इन द मंगली वि गली वि ग ब एरी टाम से गुड बा व ल नोट इट [संगीत] i’m टंग ऑफ मा मा सो आई गे बाय आई वा बी [संगीत] फ य इन [संगीत] म आई वा बी [संगीत] हैपी एरी टाम व से गुड बा दे ट इट वीज ग वन लास्ट ा या यू वा मी ब्रेक टाम [संगीत] हेलो हेलो वेलकम वेलकम फल वेलकम आई… Read More

  • 🧟‍♂️ZOMBIE FAMILY VS LUCKY BLOCK RACE! 💥 #minecraftmoments

    🧟‍♂️ZOMBIE FAMILY VS LUCKY BLOCK RACE! 💥 #minecraftmomentsVideo Information oh wait I you have a killer bunny but I’ve got a thousand zombies to take care of so let me start taking out every single one of these red luck oh it’s empty inside okay that’s so much easier we’ve got less lucky blocks to destroy I thought it was completely full oh wait it’s p over here okay semi full this what is this a pencil it does 22 attack damage for a pencil okay we can take out these zombies easy but I might save it for zombie Mark and I battle at the end… Read More

  • Epic Minecraft Anime Adventure: Steve & Alex Go Crazy!

    Epic Minecraft Anime Adventure: Steve & Alex Go Crazy!Video Information [Music] yay [Music] oh [Music] [Music] oh This video, titled ‘STEVE BORN | Minecraft Anime ​| steve and alex’, was uploaded by MuTube on 2024-01-17 05:12:26. It has garnered 25 views and 1 likes. The duration of the video is 00:01:03 or 63 seconds. STEVE BORN | Minecraft Anime ​| steve and alex Steve born | Minecraft Anime ​| steve and alex #Steve’s #anime #animation Sound Effects Lucid Dreamer https://www.youtube.com/watch?v=5Zre4hQc-oU The original music : https://www.youtube.com/watch?v=CX26KT_DGQw Biome Fest – Minecraft (Music box cover) https://www.youtube.com/watch?v=I81mpuQzyx0&t=0s https://soundeffect-lab.info/sound/anime/ Kilpeach: https://www.youtube.com/@Chillpeach Read More

  • GlowCraft PVE SMP Crossplay 1.20+ Quests No-Grief LandClaims Player Economy Jobs

    Join Us on Discord: Discord: https://discord.glowcraft.org Visit Our Website: Website: https://www.glowcraft.org Play on GlowCraft: Play.Glowcraft.org Server Information: Java: 25565 Bedrock: 19132 Description: GlowCraft is a laid-back Survival Multiplayer network focusing on economy and PvE. Join us to “Build Your Own Adventure” with custom items and normal gameplay. Economy Focus: Interact with the community through trading and in-game purchases without the need for a webstore. Enjoy Crate Keys, Vote Rewards, and Glow Sticks. Main Features: Everything is obtainable through gameplay Jobs Daily Quests GlowQuest Chapter 1 (Beta) Season 3 Elemental Fully Player Run Economy Chest Shops Player Warps In-Game Reward Shops… Read More

  • ♦—♦—Pokenova—♦—♦-RPGskills- -CustomTextures!- -PokeSnap-

    ♦—♦—Pokenova—♦—♦-RPGskills- -CustomTextures!- -PokeSnap- Read More

  • Minecraft Memes – Lackin’ Iron Pickaxe

    Why did the Iron Deficiency Pickaxe go to therapy? Because it couldn’t handle all the pressure of mining for diamonds! Read More

  • Crafty Grill, Minecraft Thrill

    Crafty Grill, Minecraft Thrill In the world of Minecraft, where blocks reign supreme, Updates and news are like a gamer’s dream. I’ll craft my rhymes with a playful spin, And share the latest, let the fun begin. From new mobs to biomes, and everything in between, I’ll keep you informed, with a rhyming scene. So grab your pickaxe, and join the fun, In the world of Minecraft, where the adventure’s never done. So let’s dive in, with a rhyme in hand, And explore the world, of blocks and sand. This grill is not a home, as the lyrics say, But in Minecraft, we’ll… Read More

  • Spicy Minecraft Shenanigans 🔥😂

    Spicy Minecraft Shenanigans 🔥😂 When you accidentally unleash the Wither Storm in Minecraft and suddenly regret not building that extra layer of protection around your house 😈 #minecraftproblems #shouldhavelistenedtomycreeperneighbor Read More

  • Malayalam Minecraft Oneblock: New Beginnings

    Malayalam Minecraft Oneblock: New Beginnings Minecraft Oneblock Malayalam Gameplay: A New Adventure Begins! Join Ravenger DD Gaming on an exciting journey through the world of Minecraft with their OneBlock series. The video kicks off with a brief intro at 00:01, setting the stage for the adventure that awaits. Exploring the OneBlock World As the video officially starts at 0:35, viewers are immersed in the captivating world of Minecraft. Ravenger DD Gaming navigates through the unique challenges and opportunities presented by the OneBlock gameplay, showcasing their skills and creativity. Timelapse Fun At 7:20, a timelapse adds a dynamic element to the gameplay, compressing time and… Read More

Minecraft Modding Tutorial 1.18 | #3 – Advanced Blocks + Items