Configurations

The main configuration file, config.yml, allows you to customize the general settings, messages, and appearance of the FisFisItemEvolve plugin. This file is automatically generated in your /plugins/FisFisItemEvolve/ folder the first time you start the server with the plugin.

Default config.yml

Here is a view of the default configuration file for quick reference. Each option is explained in detail below.

###############################################
##### FisFisItemEvolve Configuration File #####
###############################################

# Set this to enabled to add an approval process before items are evolved.
evolve-confirmation: "disabled"

# The title of the menu opened with the /evolve command.
evolve-menu-title: "&8&l» &5&lEvolution Path &8&l«"

# The item that represents the progress in the /evolve menu.
evolve-menu-progress-item:
  material: "ARROW"
  name: "&5&lProgress Status"
  # Available placeholders: %current%, %target%
  lore:
    - "&5Current Points: &d%current%"
    - "&5Required Points: &d%target%"
    - ""
    - "&9Keep evolving!"
  
# Only appears when evolve-confirmation is enabled.
evolve-menu-confirmation-item:
  material: "LIME_STAINED_GLASS_PANE"
  name: "&2&l✔ Start Evolution"
  lore:
    - "&7click to start the evolution"
    - "&7process of this item."
    - ""
    - "&e⚠ &cWarning: &ethis cannot be undone!"

# The format of the progress text that will appear on the item's lore.
# Available placeholders: %current%, %target%
progress-lore: "&5&lEvolution Progress: &d&l%current% &5&l/ &d&l%target%"

# Settings for when an item evolves.
evolve:
  message:
    enabled: true
    # Messages to be sent to the player (each line is a separate message).
    messages:
      - "&5&lCONGRATULATIONS!"
      - "&dYour item has successfully evolved!"
  title:
    enabled: true
    # The main title that will appear on the player's screen.
    text: "&5&lITEM EVOLVED"
  subtitle:
    enabled: true
    # The subtitle that will appear below the main title.
    text: "&dEnjoy your new power!"

# Various messages sent by the plugin.
messages:
  no-evolution-path: "&cThe item in your hand has no evolution path."
chevron-rightevolve-menu-titlehashtag

Sets the title of the gui menu opened with the /evolve command.

chevron-rightevolve-confirmationhashtag

By setting this setting to enabled, it introduces a requirement for confirmation before items evolve. The confirmation is done via the menu opened using the /evolve command.

chevron-rightevolve-menu-progress-itemhashtag

Sets the properties of the icon that shows the progress information in the evolve menu.

  • %current% the placeholder indicates the current evolutionary progress of the item

  • %target% The placeholder indicates the progress required for the item to evolve.

chevron-rightevolve-menu-confirmation-itemhashtag

The confirmation process to start the evolution is done by clicking on this icon. The icon only appears when the evolve-confirmation setting is enabled.

chevron-rightprogress-lorehashtag

Sets how the progress indicator that will appear in the item lore looks like.

chevron-rightevolvehashtag

Sets the methods for notifying the player when an item evolves.

  • message: It keeps a list of messages that will be sent to the player when the item evolves from the chat.

  • title: Sets the text that will be sent to the player's screen when the item evolves.

  • subtitle: Sets the text that appears under the text that appears on the player's screen when the item evolves.

chevron-rightmessageshashtag

sets the messages that the plugin will send to players.

Last updated