Configs

This page contains all configs with descriptions to all importatnt sections of the config (read #comment parts).

config.yml

config.yml
# A list of block types that only the camp owner can access.
# Other players will be prevented from opening or interacting with these blocks.
# Add or remove block names as needed.
GoodsProtection:
- BLAST_FURNACE
- FURNACE
- CHEST
- TRAPPED_CHEST
- BARREL
- ANVIL

# The section below will be automatically generated when an item is linked through the GUI.
# It contains all the templates linked to their corresponding items.
LinkedItems:
  # Template for an example item
  example: 
    # The custom display name for the item
    displayedName: §2§lexample
    # The lore (description text) shown when hovering over the item
    Lore:
    - '§7Camp size:'
    - §e5x5
    - ''
    - §8Right click to place
    # The full item configuration (e.g., material, metadata, etc.)
    itemStack:
      ... # Details of the itemStack would go here
    # The metadata that links the template to this item
    PublicBukkitValues: |-
      {
          "quickcamp:camp": "example"
      }

  # Second example template for another item
  example2:
    # Custom display name for this item
    displayedName: §2Test Camp
    # Lore for the item
    Lore:
    - '§6Camp size:'
    - §73x3
    # Full item configuration for this template
    itemStack:
     ... # Details of the itemStack would go here

templates.yml

camps.yml

msg.yml

Last updated