Configuration Options

Below is an example of the default or optional config options you have for the menus, these include milestones, streaks and leaderboard menus.

# This is an example of what is available for milestones, streaks and leaderboard menus.

  menu:
    "#1":
        required-votes: 10
        slot: 0
        Available:
          material: "YELLOW_STAINED_GLASS_PANE" # Must be a valid minecraft material
          name: "&e&lVote Milestone &6&l#1" # Display name, you can also use hex #32f2d
          glowing: false # This is set to false by default
          custom-model-data: 0 # This is set to 0 by default
          item-amount: 1 # This is set to 1 by default, cannot go above 64.
          flags:
           # You can get flags from the spigot api 
           # https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/inventory/ItemFlag.html
           - 'HIDE_ATTRIBUTES'
          lore:
            - "&8Voting Milestone"
            - "&7&oThis milestone is available for claiming, doing"
            - "&7&oso will grant you the reards below:"
            - " "
            - "&e&lRewards"
            - "&6 → &f1x &eDiamond"
            - "&6 → &2$&a500"
            - " "
            - "&7&o(( &f&oLeft-Click&7&oto claim this milestone ))"
          commands:
            - "give %player% minecraft:diamond 1"
            - "eco give %player% 500"

Below is an example on how to send titles in the messages.yml file, these are completely optional and will only send if it is present or enabled.

  VOTE_PARTY_TRIGGERED:
    Sound:
      Enable: true
      Value: ENTITY_PLAYER_LEVELUP;1.0;1.0
    Message:
      Enable: true
      Value: '&6&l[&e&l!&6&l] &eVote Party has been triggered! &8(&7/vote&8)'
    Title:
      Enable: true
      Title: '&6&lVote Party!!'
      Subtitle: '&eVote goal has been hit!'

Last updated