Instructions for creating your own Minecraft mods to play games in your style

What happens when you get bored of playing Minecraft? Mod Minecraft is the answer. Mod changes everything in Minecraft game but it will be more interesting when you create your own mod. This article will show you how to create your own Minecraft mod.

What happens when you get bored of playing Minecraft? Mod Minecraft is the answer. Mod will change everything in Minecraft game but will be more interesting when you create your own mod. This article will show you how to create your own Minecraft mod.

Get acquainted with MCreator

Hailed as the best 'Minecraft mod creation tool', MCreator is a free tool to help you create your own Minecraft mod. You don't need to write code, but if you want, you can do this.

First, visit the download page mcreator.net/download, download the version that is suitable for the current version of Minecraft. For example, if you use Minecraft version 1.12.2, you will download MCreator version 17.9

Instructions for creating your own Minecraft mods to play games in your style Picture 1Instructions for creating your own Minecraft mods to play games in your style Picture 1

Once you have selected an appropriate version of MCreator, download this tool for your operating system. It supports for Windows, Mac and Linux. If you are running Windows, download and run the executable file (EXE), if using Mac or Linux, the installation will be more difficult but you can refer to the instructions for installing MCreator to know how to do it, so You don't need to be too worried.

  1. Troubleshoot problems that cannot run the .exe file

After installation, MCreator needs to download Minecraft Forge Development Kit and its dependencies, compile. This process takes a while depending on your computer and Internet speed. It only needs to download once and the next time you run MCreator, it will not load again.

Instructions for creating your own Minecraft mods to play games in your style Picture 2Instructions for creating your own Minecraft mods to play games in your style Picture 2

After being configured, MCreator will ask if you want to log in with your Pylo account. Continue and press Skip if you don't have one.

Now everything is ready. You will see the main screen of MCreator to import or export the current settings, install mods developed by others or write your own mods.

Instructions for creating your own Minecraft mods to play games in your style Picture 3Instructions for creating your own Minecraft mods to play games in your style Picture 3

Write minecraft mod

In this example, we will create a super diamond ore, producing large quantities of diamonds when exploiting instead of a normal two diamonds. To start, you need a texture for the new block. This is an image that determines the appearance of the block. It could be stone, wood or any other material. This example uses diamond ore, but you can use whatever you want.

Instructions for creating your own Minecraft mods to play games in your style Picture 4Instructions for creating your own Minecraft mods to play games in your style Picture 4

From the top of the main menu, select Tools> Create item / block texture to open Texture Maker create your own texture based on the existing Minecraft artwork.

Instructions for creating your own Minecraft mods to play games in your style Picture 5Instructions for creating your own Minecraft mods to play games in your style Picture 5

Texture Maker has four layer controls, allowing you to select artwork and color, combined into the final texture.

Instructions for creating your own Minecraft mods to play games in your style Picture 6Instructions for creating your own Minecraft mods to play games in your style Picture 6

Except Layer 1, the class controls contain 3 identical settings. Here are the settings from left to right:

  1. Artwork selector : use the drop-down menu or pop-up interface to select artwork.
  2. Color picker : select three dots to choose color for this layer.
  3. Lock saturation and brightness : this option limits the color brightness of the layer.

Instructions for creating your own Minecraft mods to play games in your style Picture 7Instructions for creating your own Minecraft mods to play games in your style Picture 7

After you've created your artwork, select Use on the bottom button and Block for the texture type. Then, select Exit to return to the Workspace page, this page will display your texture.

From the left menu of the Workspace tab, select Mod Elements , this is where you create mods using your texture.

Instructions for creating your own Minecraft mods to play games in your style Picture 8Instructions for creating your own Minecraft mods to play games in your style Picture 8

Select the New mod element button from the top left, which looks like a big plus sign.

Instructions for creating your own Minecraft mods to play games in your style Picture 9Instructions for creating your own Minecraft mods to play games in your style Picture 9

This is a new, seemingly complicated New mod element page, but it's a very easy to use tool. In Name of the element , you enter a unique name. This name will not be displayed in Minecraft but used as an identifier in MCreator and Minecraft code.

For element type, you can choose your new element type. For this super diamond, the default is Block . If you are working on another mod, select the appropriate type. Then, click OK to return to the Texture page, where you can assign textures to blocks, as well as transparency and block size configurations.

Instructions for creating your own Minecraft mods to play games in your style Picture 10Instructions for creating your own Minecraft mods to play games in your style Picture 10

On the left is the Block textures area, with six squares representing each side of the block. You can use different textures for each side but in this example, we use the same type of structure. To select a texture, click on each square, select the texture you want to use and then click OK . You should leave other options by default and then select Next .

Instructions for creating your own Minecraft mods to play games in your style Picture 11Instructions for creating your own Minecraft mods to play games in your style Picture 11

There are many different settings in this screen, but start with the Name in GUI , this is your block name. You can name anything but make sure it is descriptive. For this block, ' super diamond ' is an appropriate name.

If you are not sure about the parameter, select a question mark next to the name, it will download the MCreator document. To make this block drop another block when tapping, check the box next to Doesn't drop itself. Next to Block that drops , click on the small rectangle to download Block / item selector . You use this menu to search and select the block you want to delete.

Instructions for creating your own Minecraft mods to play games in your style Picture 12Instructions for creating your own Minecraft mods to play games in your style Picture 12

Finally, change the Drop amount to an appropriate number. When you want diamond ore to exploit a large number, select number 10, this is the right number. Select Next to go to Particle settings , this is where you can change the animation.

Leave Block's inventory installed and select Next . The Procedure page allows you to customize what happens when there are any events related to this block. In this example, you don't need to change anything, so click the Next button.

Instructions for creating your own Minecraft mods to play games in your style Picture 13Instructions for creating your own Minecraft mods to play games in your style Picture 13

Finally, Block spawning / generation properties page allows you to configure the time, location and frequency of new blocks generated. If you want your mod block to appear in the game, check Generate in world . You can leave other settings as its default or customize them to create your mod less or more popular.

Export mod Minecraft

After producing mod, you need to export it to use Minecraft. From the bottom left of the Workspace toolbar , select the Export workspace into mod file button to put the mod package into a separate package, ready for Minecraft to enter. If you edit more than one block, all of these blocks will show up in your mod.

Instructions for creating your own Minecraft mods to play games in your style Picture 14Instructions for creating your own Minecraft mods to play games in your style Picture 14

Note : If you want to work on multiple modems at once, switch to another workspace from the main menu.

Menu Mod details provides options to pack your mod. You can enter the name, version, description, creator information and download the image if you want. Note that the most important option is File extension , so the default option is .JAR .

Instructions for creating your own Minecraft mods to play games in your style Picture 15Instructions for creating your own Minecraft mods to play games in your style Picture 15

After everything is finished, click the Recompile and export to package your mod, but it will take a while depending on the computer and what you changed.

Instructions for creating your own Minecraft mods to play games in your style Picture 16Instructions for creating your own Minecraft mods to play games in your style Picture 16

You will need to agree to the terms of use, but after being compiled, select a location on your file system to store the complete mod.

Enter Minecraft mod with Minecraft Forge

Now that you have finished mod creation, all that's left is to import it into Minecraft. To install this mod, you need to use Minecraft Forge. Forge provides a simple and easy way to install custom mods in Minecraft. Then run the installer and when prompted, select Install client .

Instructions for creating your own Minecraft mods to play games in your style Picture 17Instructions for creating your own Minecraft mods to play games in your style Picture 17

After installing, launch or restart Minecraft. From Minecraft Launcher , press the up arrow to the right of the play button at the bottom, select Forge . This will download Minecraft with Forge, you need to do this every time you use the mod.

Instructions for creating your own Minecraft mods to play games in your style Picture 18Instructions for creating your own Minecraft mods to play games in your style Picture 18

When in Minecraft, everything will be different from running Forge. There are some additional documents at the bottom, along with the Mods button. Select the Mods button and you will see your mod is not displayed. You need to install your mod to Forge / Minecraft . Installation involves copying and pasting mods into the mod directory of Minecraft.

  1. On Windows, this folder is in AppData / .minecraft /
  2. On the Mac, this folder is in Library / Application Support / minecraft /

You may have to restart Minecraft if you have already modified your mod while it runs. Visit the mods menu and you will see your mod with descriptions, titles, images and full creator information.

Instructions for creating your own Minecraft mods to play games in your style Picture 19Instructions for creating your own Minecraft mods to play games in your style Picture 19

For this example, you will see "super_diamond" along with all other blocks.

Performing modding Minecraft is a great way to add many features to the game, but it's even better if you mod yourself. Once you've learned how to build this basic block, you can start creating more complex mods.

I wish you all success!

See more:

  1. Summary of commands in the game MineCraft
  2. How to make things in Minecraft games
  3. Guide to making food in Minecraft game
4 ★ | 1 Vote