
An Free and simple GUI maker plugin that supports Placeholderapi, color codes and so on
Version: 1.2 | Minecraft: 1.21+ | Author: CookieProgram
CookieGUI is a simple GUI plugin made for making GUIs kinda easy to make while not paying for a plugin. CookieGUI supports PlaceholderAPI, Color Codes, and much more you can add actions to things, and you can make multiple GUIs and a lot more
/gui create <name> <title> [size] - Create a new GUI/gui edit <name> - Edit an existing GUI/gui delete <name> - Delete a GUI/gui list - List all available GUIs/gui reload - Reload all GUI configurations from disk/gui show <name> - Shows a GUI (also called opening a GUI)/gui edit <name> <slot> item <material> - Set an item in a slot/gui edit <name> <slot> name <display_name> - Set the display name of an item/gui edit <name> <slot> lore add <text> - Add a line of lore to an item/gui edit <name> <slot> lore set <line> <text> - Set a specific line of lore/gui edit <name> <slot> lore clear - Clear all lore from an item/gui edit <name> <slot> action add <type> <value> - Add an action to an item/gui edit <name> <slot> action remove <type|line> - Remove an action from an item/gui edit <name> <slot> action list - List all actions on an item/gui edit <name> <slot> clear - Clear a slotconsole: Run a command as console
/gui edit test 0 action add console give [player] diamond 64player: Run a command as the player
/gui edit test 0 action add player spawnmessage: Send a message to the player
/gui edit test 0 action add message &aWelcome to the server!broadcast: Broadcast a message to all players
/gui edit test 0 action add broadcast &e[player] used a special item!sound: Play a sound to the player
/gui edit test 0 action add sound ENTITY_PLAYER_LEVELUP:1.0:1.0close: Close the inventory
/gui edit test 0 action add closeopen: Open another GUI
/gui edit test 0 action add open other_menu/gui edit test 0 action add open other_menu:Steveif: Conditional action based on variables
if:<variable>:<operator>:<value>:<then_action>:[<else_action>]/gui edit test 0 action add if permission equals vip.access console give [player] diamond message You need VIP!Create dynamic items with PlaceholderAPI:
/gui create stats &8Stats 54
/gui edit stats 0 item player_head
/gui edit stats 0 name &e%player_name%'s Stats
/gui edit stats 0 lore add &7Kills: &f%statistic_player_kills%
/gui edit stats 0 lore add &7Deaths: &f%statistic_deaths%
/gui edit stats 0 lore add &7K/D Ratio: &f%math_kills_div_deaths%