# Basic plugin settingssettings: # Automatically load worlds on server start auto-load-worlds: true # Default world type for new worlds default-world-type: NORMAL # Enable separate inventories per world/group enable-inventory-separation: true # Default generator for new worlds (optional) default-generator: null # Enable debug logging debug-mode: false # Language for messages (future feature) language: "en"
# Inventory group configurationinventory-groups: # Survival worlds share inventory survival: - world - world_nether - world_the_end # Creative worlds share inventory creative: - creative_world - build_world # Each world has separate inventory separate: - minigame_world - event_world# Default group for new worldsdefault-inventory-group: "separate"# What to separate between worldsinventory-separation: inventory: true ender-chest: true experience: true health: false hunger: false gamemode: true
commands: # Success messages world-created: "&aSuccessfully created world '{world}'!" world-deleted: "&aWorld '{world}' has been deleted and purged from all configurations!" world-cloned: "&aSuccessfully cloned '{source}' to '{target}'!" # Error messages world-exists: "&cWorld '{world}' already exists!" world-not-found: "&cWorld '{world}' not found!" insufficient-permissions: "&cYou don't have permission to do that!" # Confirmation messages delete-confirmation: "&eAre you sure you want to delete '{world}'? This will also purge all configuration entries. Type the command again to confirm." # Rate limiting rate-limited: "&cYou must wait {seconds} seconds before performing this action again!" operation-limit-reached: "&cYou have reached the maximum number of operations for this hour!"
LilWorlds supports standard Minecraft color codes and hex colors:
Copy
# Standard color codescolors: primary: "&3" # Dark Aqua secondary: "&b" # Aqua success: "&a" # Green warning: "&e" # Yellow error: "&c" # Red info: "&7" # Gray# Hex color support (1.16+)hex-colors: primary: "B82F6" # Blue accent: "
B981" # Emerald
# Modify world settings/world config set difficulty hard/world config set pvp false/world config enable keepInventory# View current settings/world config list
Tip: Keep your configuration files organized and well-commented for easier maintenance.
Copy
# Good: Organized and commentedinventory-groups: # Main survival worlds survival: - world # Main overworld - world_nether # Nether dimension - world_the_end # End dimension # Creative building worlds creative: - creative_world # Main creative world - build_world # Staff building world