Config
Basic description of the config file.
Lang
Specifies the language file that the plugin will use. By default, only the 'EN, DE, ES, FR, TR, ZHCN' file is available. To add more languages, duplicate and edit the YAML files in the Langs folder.
# Currently supports: EN, DE, ES, FR, TR, ZHCN
language: ENSettings
Plugin settings such as API keys, default skins, etc.
# Base URL for texture API requests
web-url: HIDDEN# Secret key used for authenticating API requests
web-secret: LICENSE_KEY_HERE# Default skin name to use if none is set
default-skin: Steve# Secret key used for integration with MineSkin API
# If you want to use your own MineSkin API, you can get your own secret key from https://account.mineskin.org/keys/
mine-skin-secret: HIDDENThread Settings
These settings are used to configure the thread pool for the plugin
maximum-pool-size: 10
core-pool-size: 10
keep-alive-time: 30Wardrobe Settings
Settings for the wardrobe feature
# The screen character used for wardrobe GUI (e.g., Unicode symbol)
wardrobe-screen: 𦤬# Message shown in the boss bar or action bar
messages:
- Punch the open catalogue
- Sneak to leave the Wardrobe# How the messages should be shown when switching wardrobe items
# Options: BOSS_BAR
message-type: BOSS_BAR# BossBar settings (used only if messageType is BOSS_BAR)
boss-bar:
# BossBar progress (0.0 to 1.0)
progress: 1.0
# BossBar color: PINK, BLUE, RED, GREEN, YELLOW, PURPLE, WHITE
color: YELLOW
# BossBar overlay: PROGRESS, NOTCHED_6, NOTCHED_10, NOTCHED_12, NOTCHED_20
overlay: PROGRESS# Sound settings (used when entering or leaving wardrobe screen)
sound:
# Enable or disable sound when entering or leaving wardrobe
enabled: true
# The namespace of the sound (e.g., minecraft, custom)
namespace: minecraft
# The sound to play (e.g., entity.player.levelup, ui.button.click)
sound: entity.player.levelup
# Sound volume (0.0 to 1.0)
volume: 1.0
# Sound pitch (0.5 to 2.0 typically)
pitch: 1.0Last updated