Player Head
- Fixed: The clan member list now displays the player's head skin instead of just using the PLAYER_HEAD item.
Sorting Added
- Added to GUI: Sorting functionality is now available in the Main and Clans List GUI. Players can sort clans based on various criteria.
Set Base
- New Feature: You can now configure which worlds players are allowed to create bases in.
Gui Animation
- New Feature: GUI animations can now be disabled. If you prefer a static interface without animations, simply configure the option in the config.yml.
Gui Animation
# Available Animations: Sequential, SplitSequential, HorizontalSnake, VerticalSnake, Row, Column, Random
gui-animation: Row # Default animation. Disable animation: None
gui/main.yml
sort-by: [
"&eRANK",
"&6COINS",
"&9XP",
"&cKILLS",
"&bJOINED",
"&aLAST LOGIN"
]
items:
sort-players:
name: "&eSort"
item: OAK_SIGN
slot: 49
lore:
- ""
- "&a> Left click to sort by: {sort}"
- "&c> Right click to reset the sort"
click:
left: SORT_PLAYERS
right: SORT_RESET
gui/clan-list.yml
sort-by: [
"&9LEVEL",
"&bMEMBERS",
"&6COINS",
"&cKILLS"
]
items:
sort-clans:
name: "&eSort"
item: OAK_SIGN
slot: 49
lore:
- ""
- "&a> Left click to sort by: {sort}"
- "&c> Right click to reset the sort"
click:
left: SORT_CLANS
right: SORT_RESET
Set base
# Worlds where you can set a clan base
allow-setbase-in-world: ["world", "world_nether", "world_the_end"]
Added Clan Storage System
- New command: /clan storage - Access clan storage
Added Daily Deposit Limit
- Implemented a daily deposit limit to cap the maximum amount of coins a clan can deposit per day.
clan-daily-deposit-limit: 1000000 # Maximum amount of coins a clan can deposit per day
clan-storage: true # Enable clan storage
Added Action Confirmation GUI
- Commands like /clan disband and /clan kick now require confirmation.
Added GUI Animations
- New animations: Sequential, SplitSequential, HorizontalSnake, VerticalSnake, Row, Column, Random.
Added PlaceholderAPI
- %clans_level% - Сlan level
- %clans_coins% - Сlan coins
Fixes & Improvements
- Fixed clan kick issues.