Custom-Gui

This is written in yml format.

 

Keywords:

  • size: (number) [required]
  • content: (submenu) [optional]
  • title: (name) [optional]
title: "my gui"
size: 54
content:
      my_item:
          (item keywords)

 


Content Item Keywords:

  • type: '(number)' or 'head' [required]
  • display-name: (name) [optional]
  • lore: (list) [optional]
  • glow: (true/false) [optional]
  • durability: (number) [optional] 
  • amount: (number) [optional]
  • slot: (number) [optional]
  • skull-owner: (playername) [required if type is 'head']
  • onclick: (clicktype) [optional]
   content:
        myitem:
		type: 1
		display-name: "cool item"
		lore: 
		- "my lore"
		- "wooohooo"
		glow: true
		durabillity: 12
		amount: 2
		slot: 9
		
	skull-item:
		type: head		
		slot: 1
		skull-owner: notch
		
	clickitem:
		type: 34
		slot: 3
		onclick:
		 right-click:
		 - (action querys)
		 left-click:
		 - (action querys)
		 shift-right-click:
		 - (action querys)
		 shift-left-click:
		 - (action querys)

//Action Query See below



 

Action Querys:

 List:

  • console (command)
  • bc (text)
  • msg (text)
  • cmd (text)
  • tp (cords) 
  • tp-player (playername)
  • op-command (command)
  • close-gui 
  • open-gui (gui name)
  • delay (number of seconds)

Usage:

 

[type](player):[input] //Leave player empty to call it on yourself or put in a placeholder

Exmaple:

shift-left-click: 

- "msg:hey"

- "msg(notch):hey notch"