For the complete documentation index, see llms.txt. This page is also available as Markdown.

menus.yml

Overview

The menus.yml file is the home for anything relating to GUI menus within FateHub!

Last Updated: 5/30/2023

Default files are created on a 1.8 version base. Newer versions will need item name changes made before use. We are working to create pre-made config files for each version.

Default Config File

menus:
  server-navigation:
    #You're using this name to access to this menu from anywhere in the configuration where you have action option
    #Just use for action {openmenu:menu-name}
    name: "server-navigation"
    menu-title: "&bServer Navigation"
    menu-size: 27
    fill-menu:
      enabled: false
      item:
        name: " "
        material: "STAINED_GLASS_PANE"
        amount: 1
        durability: 0
        lore: []
    items:
      item-1:
        name: "&e&nFactions&b &7| &cSeason I"
        material: "TNT"
        durability: 0
        slot: 12
        amount: 1
        message:
          enabled: false
          text: "&eHello &b<player>!"
        command:
          enabled: true
          #Put command without /
          execute: "joinqueue factions"
        action: ""
        lore:
          - ""
          - " &7* &bVersion&7: &31.7.x - 1.14.x"
          - " &7* &bOnline&7: &3{online-factions}"
          - " &7* &bStatus&7: &3{status-factions}"
          - " &7* &bIn-Queue&7: &3{queued-factions}"
          - ""
          - "&eClick to join the &b&lFactions &equeue&7."
      item-2:
        name: "&e&nUHC&b &7| &cSeason I"
        material: "GOLDEN_APPLE"
        durability: 0
        slot: 16
        amount: 1
        message:
          enabled: false
          text: "&eHello &b<player>!"
        command:
          enabled: true
          #Put command without /
          execute: "joinqueue uhc"
        action: ""
        lore:
          - ""
          - " &7* &6Version&7: &e1.7.x - 1.8.x"
          - " &7* &6Online&7: &e{online-uhc}"
          - " &7* &6Status&7: &e{status-uhc}"
          - " &7* &6In-Queue&7: &e{queued-uhc}"
          - ""
          - "&eClick to join the &6&lUHC &equeue&7."
      item-3:
        name: "&b&l&nLobby Servers"
        material: "ENDER_PEARL"
        durability: 0
        slot: 14
        amount: 1
        message:
          enabled: false
          text: "&eHello &b<player>!"
        command:
          enabled: false
          #Put command without /
          execute: ""
        action: "{openmenu:hub-servers}"
        close-inventory: true
        lore:
          - ""
          - "&7Click to choose your"
          - "&7lobby server."
          - ""
          - " &7* &9Total count&7: &b{count:hub01:hub02:hub03}"
          - ""
  hub-servers:
    name: "hub-servers"
    menu-title: "&bHub Servers"
    menu-size: 9
    items:
      item-1:
        name: "&e&nHub&b &b#1"
        material: "ENDER_PEARL"
        durability: 0
        slot: 1
        amount: 1
        message:
          enabled: false
          text: "&eHello &b<player>!"
        command:
          enabled: true
          #Put command without /
          execute: "joinqueue hub01"
        action: ""
        lore:
          - ""
          - " &7* &bOnline&7: &3{online-hub01}"
          - " &7* &bStatus&7: &3{status-hub01}"
          - ""
          - "&eClick to join the &b&lHub-01 &equeue&7."
      item-2:
        name: "&e&nHub&b &b#2"
        material: "ENDER_PEARL"
        durability: 0
        slot: 2
        amount: 1
        message:
          enabled: false
          text: "&eHello &b<player>!"
        command:
          enabled: false
          #Put command without /
          execute: "joinqueue hub02"
        action: ""
        close-inventory: false
        lore:
          - ""
          - " &7* &bOnline&7: &3{online-hub02}"
          - " &7* &bStatus&7: &3{status-hub02}"
          - ""
          - "&cYou're connected to this server."
      item-3:
        name: "&e&nHub&b &b#3"
        material: "ENDER_PEARL"
        durability: 0
        slot: 3
        amount: 1
        message:
          enabled: false
          text: "&eHello &b<player>!"
        command:
          enabled: true
          #Put command without /
          execute: "joinqueue hub03"
        action: ""
        lore:
          - ""
          - " &7* &bOnline&7: &3{online-hub03}"
          - " &7* &bStatus&7: &3{status-hub03}"
          - ""
          - "&eClick to join the &b&lHub-03 &equeue&7."

Last updated