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 #####
###############################################

# 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!"

# 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."
evolve-menu-title

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

evolve-menu-progress-item

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.

progress-lore

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

evolve

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.

messages

sets the messages that the plugin will send to players.

Last updated