JGForm is the all in one UI menu plugin!
You can create UI menus that open with custom commands that will show stats or perform actions specific to the player who opened it.
- Dev: Jung Ganmyeon
- Support: Clicked Tran
- EconomyAPI
- CoinAPI
- PointAPI
/<custom command specified for the Form>Open menu/jg listLists all menus you have access to/jgreloadReloads the menus and settings
<permission your menu>
Lets you open a menu regardless of if you have the permissions for it.
Default: OPjgform.menu.*
Gives permission for all menus.
Default: OP
- Add type
headerto make the text large in the form - Add
tooltipto add hint/note light, ... - Add type
dividerto create a line to divide the form
ALL APPLY FOR CUSTOM FORM ONLY
SEE SAMPLES AT: example_custom
formname: "Shop"
styleform: "simple"
command: "shop"
permission: "jgform.command.shop"
content:
- "Choose an option:"
buttons:
- text: "Buy Sword Diamond"
requirements:
money:
type: 'total'
output: '1000'
command:
- ["console", "take money {player} 1000"]
- ["console", "msg {player} Buy success"]
- ["console", "give {player} diamond_sword 1"]
not_enough_requirements:
money:
type: 'total'
output: '1000'
command:
- ["console", "msg {player} you dont enough money"]
- ["console", "kill {player}"]
image:
type: "url"
data: "https://example.com/image1.png"```