GUIs
GUI, or Graphical User Interface, is a user interface that allows users to interact without the need to run commands.
In Minecraft, GUIs are based on inventories (Chest Inventory).
To edit a menu's title, go to menu-titles
in the language file:
Below menu-titles
, you will find menu-items
, which are the buttons for all the menus.
You cannot add or remove a button, but you can change their icon, name, and lore!
Button Icons
For a button icon, you can use Minecraft's materials like Diamonds (DIAMOND
), Iron Sword (IRON_SWORD
)... etc. If the material is not found, it will use Barrier as default.
You can also use player heads! To set a custom texture for a player head, you must use the second parameter for PLAYEARHEAD-(Texture)
. So, how do I get the custom texture?
How to get a custom player head?
Go to Minecraft Heads.
Search for a head, for example, "Grass", and select the one you like the most. In this example, we will choose this head: Click here!
Scroll down until you find Minecraft URL, and then copy the URL.
The URL format is like this:
http://textures.minecraft.net/texture/(Texture)
. Remove all characters before(Texture)
and voila! You have got the texture ID (something like this:f9e986ccac3dc804f1bebe054dfb3e800480b7e08b2e7c6a86c84621c756c142
), so copy it.Now, use this format in the button's icon:
PLAYERHEAD-(Texture)
, and replace(Texture)
with the one you copied, so it should look like this:PLAYERHEAD-f9e986ccac3dc804f1bebe054dfb3e800480b7e08b2e7c6a86c84621c756c142
.
Last updated