β GETTING STARTED
Install GUIPlus and create your first GUI menu
- Download the latest
GUIPlus.jarfile - Place it in your server's
plugins/folder - Restart your server
Warning: Always use a full server restart when installing for the first time. Do not use
/reloadas it can cause issues with plugin initialization.
- The plugin will generate its default configuration files
After first startup, GUIPlus creates the following files and folders:
plugins/GUIPlus/
βββ config.yml # Main plugin configuration
βββ messages.yml # Customizable messages
βββ playerData.yml # Persistent player data storage
βββ cooldownData.yml # Cooldown tracking
βββ CustomGuis/ # Your GUI configuration files
βββ adminpanel.yml # Example admin panel GUI
βββ bank.yml # Example banking GUI
GUIPlus comes with two example GUIs to get you started:
/gui open adminpanel
/gui open bank
Or use the built-in management menu:
/gui
The fastest way to create a GUI is through the in-game editor:
- Run
/guito open the GUI management menu - Click to create a new GUI
- Set the title, type, and number of rows
- Place items and configure click events visually
- Save your GUI with
/gui save
You can also create GUIs by writing YAML files directly. Create a new .yml file inside the plugins/GUIPlus/CustomGuis/ folder:
id: mygui
rows: 3
type: chest
title: Β§6My First GUI
commandAlias: mymenu
scenes:
'0':
delay: 0
items:
'1':
slot: 13
item: DIAMOND
amount: 1
item-name: Β§bHello World!
item-lore:
- ''
- Β§7This is my first GUIPlus menu!
- ''
- Β§eClick me!
item-flags: []
unbreakable: false
click-events:
message:
message: Β§aYou clicked the diamond!Then reload with /gui reload and open it with /gui open mygui or /mymenu.
- πΌ Learn about the full GUI structure
- π± Explore all click events
- β Add logic with conditions
- π Use dynamic content with PlaceholderAPI
| β Previous | Next β |
|---|---|
| Home | Commands & Permissions |