Custom Button

You can add more buttons as you want in your UI config, like:

buttons:
  spin:
    icons: [spin_1,spin_2,spin_3]
    slots: [33,34,35]
    display: "&aSpin!"
    lore:
      - "&fYou should cost %price%"
      - "&f"
      - "%click%"
  history:
    icons: [history_1,history_2,history_3]
    slots: [42,43,44]
    display: "History"
    lore:
      - "&fCheck the rewards you have drawn."
  test:
    icons: [test]
    slots: [18]
    display: "Buy Key"
    lore:
      - "&fCheck here to know where can buy key."
    actions:
      - 'message: Buy spin key at https://www.example.com!' 

In this example, we added test as new button.

  • icons: Should me added in config.yml, in this example, we added test icon in config.yml, like:

icon:
  history_3: 70000
  spin_1: 70001
  spin_2: 70002
  history_2: 70003
  spin_3: 70004
  history_1: 70005
  test: 10000
  • slots: Should be one of 9~54 number, 0~8 is forbidden.

  • actions: See actions page.

Last updated