GUI Formatting
Welcome to the BedHome plugin GUI formatting guide! In this guide, you'll learn how to customize the graphical user interface (GUI) for your BedHome plugin, enhancing the user experience for your Minecraft server players.
Introduction
The GUI in your BedHome plugin allows players to manage their homes conveniently. By configuring the GUI settings, you can control the appearance and functionality of different slots within the interface. Let's dive into the details of GUI configuration.
GUI Configuration
In your plugin's config.yml
file, you'll find a section dedicated to GUI settings. Here, you can set the GUI title, size, and customize individual items within the GUI. The following options are available:
guiTitle
: Set the title of the GUI displayed to players.guiSize
: Choose the GUI size from 1 to 6, representing 9 to 54 slots. Use 0 for automatic adjustment.items
: Configure different item types within the GUI.
Item Types
The GUI items are categorized into several types:
availableSlot: Represents a slot without a location assigned.
Available variables:
{player}
: Displays the player's name.{slot}
: Displays the slot number.
occupiedSlot: Represents a slot with an assigned location.
Available variables:
{player}
: Displays the player's name.{slot}
: Displays the slot number.{x}
,{y}
,{z}
: Displays the coordinates of the assigned location.{world}
: Displays the world name of the assigned location.
purchaseSlot: Represents a slot available for purchase.
Available variables:
{player}
: Displays the player's name.{slot}
: Displays the slot number.{price}
: Displays the price for the slot.
placeholderSlot: Placeholder item.
errorSlot: Represents an error condition.
Available variables:
{player}
: Displays the player's name.{error}
: Displays an error message.
Each item type can be customized with its own material, display name, lore, and additional attributes.
Using PLAYER_HEAD and customModelData
PLAYER_HEAD
To use a custom player head as an item, set the material to PLAYER_HEAD
and provide a base64-encoded texture URL under the texture
attribute. Example:
customModelData
To assign a custom model data value to an item, use the customModelData
attribute. Example:
Example Configurations
1.
2.
MiniMessage Formatting
You can utilize MiniMessage formatting for rich text effects in messages. MiniMessage supports gradients, rainbow effects, and HEX colors, making your GUI messages more engaging.
For more detailed MiniMessage formatting options, check the official guide here.
Conclusion
With the knowledge gained from this guide, you can now confidently configure your BedHome plugin GUI to create a visually appealing and user-friendly experience for your players.
Feel free to experiment with different configurations to match your server's style and preferences. Happy customizing!
Last updated