compile

  • Minecraft Modding Tutorial 10 – Adding and removing items using onItemRightClick (modloader)

    Minecraft Modding Tutorial 10 - Adding and removing items using onItemRightClick (modloader)Video Information Hello and welcome to your ninth minecraft mounting tutorial in the soil will be covering adding and removing items stacks from the players inventory this could be useful for like for the situation that we’re going to use it for when you right click on an item it will Remove an item for the players inventory and then also add an item to the players inventory so let’s get started first thing you import something but import net minecraft client dot minecraft i won’t explain this it basically imports minecraft Java which we’re going to use Right now… Read More

  • Minecraft Modding Tutorial 4- Creating a new Recipe(modloader)

    Minecraft Modding Tutorial 4- Creating a new Recipe(modloader)Video Information Hello and welcome to your fourth modding tutorial and this will be creating a new recipe so all you have to do is inside your constructor put mod loader add recipe and then inside these parentheses you put new itemstack the item that you want to be crafted i’ll make an emerald Pick X quantity one and then you put new object make sure the always capitalized braces and then a set of curly braces at the end put a semicolon now we’ll put three sets of quotes oops what these do is this simulates the crafting table… Read More

  • Minecraft Modding Tutorial 3- Creating a new tool set(modloader)

    Minecraft Modding Tutorial 3- Creating a new tool set(modloader)Video Information Hello and welcome to your third minecraft mounting tutorial in this tutorial we will be creating a new tool set so let’s get started I’m just going to copy and paste emerald item when you name it emerald pick X and make a new item pick X once we want it to inherit All the properties of a pickaxe when you move the item ID up by one and make it a gnome tool material dot emerald emerald to what this enum cool material is as um what it does or I’ll just explain to it you later… Read More

  • Minecraft Modding Tutorial 6- Extending your EnumToolMaterial(modloader)

    Minecraft Modding Tutorial 6-  Extending your EnumToolMaterial(modloader)Video Information Hello and welcome to your sixth Java low and welcome to your sixth the Minecraft mounting tutorial in this tutorial we will be making a new enum tool material so your mod can be compatible with other mods so let’s open up our the regular enum tool material and delete are Actually we’re going to copy not nevermind it’s going to delete it and return it to how originally was so now we need a copy and paste the whole enum tool material and then create a new Java class called enum tool and then whatever you want… Read More