{"id":44590,"date":"2026-06-02T05:53:06","date_gmt":"2026-06-02T02:53:06","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/commandgui\/"},"modified":"2026-06-02T05:53:06","modified_gmt":"2026-06-02T02:53:06","slug":"commandgui","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/commandgui\/","title":{"rendered":"CommandGUI"},"content":{"rendered":"<p># **CommandGUI Plugin**<\/p>\n<p>## **Overview**<br \/>\nCommandGUI is a Minecraft Spigot plugin that provides players with a custom GUI to execute commands as the player interacting with the GUI. The GUI is fully configurable, allowing you to define items, commands, and layout. Players can also receive a custom item that opens the GUI when used.<\/p>\n<p>&#8212;<\/p>\n<p>## **Features**<br \/>\n&#8211; **Custom GUI**: A player-friendly interface to execute commands with a click.<br \/>\n&#8211; **Configurable Items**: Define items, their appearance, and the commands they execute in the GUI via the configuration file.<br \/>\n&#8211; **Dynamic Inventory Sizing**: Automatically adjusts the GUI size based on the number of items.<br \/>\n&#8211; **Customisable Tool**: Players can use a custom tool to open the GUI.<br \/>\n&#8211; **Command Reload**: Easily reload the plugin&#8217;s configuration with `\/commandgui reload`.<\/p>\n<p>&#8212;<\/p>\n<p>## **Commands**<br \/>\n### `\/commandgui`<br \/>\n&#8211; **Description:** Opens the Command GUI for the player.<br \/>\n&#8211; **Aliases:** `\/cg`<\/p>\n<p>### `\/commandgui tool`<br \/>\n&#8211; **Description:** Gives the player a tool that opens the Command GUI when used.<br \/>\n&#8211; **Aliases:** `\/cg tool`<\/p>\n<p>### `\/commandgui give <player>`<br \/>\n&#8211; **Description:** Gives the specified player the Command GUI Tool.<br \/>\n&#8211; **Aliases:** `\/cg give <player>`<\/p>\n<p>### `\/commandgui help`<br \/>\n&#8211; **Description:** Displays all the plugin&#8217;s commands.<br \/>\n&#8211; **Aliases:** `\/cg help`<\/p>\n<p>### `\/commandgui reload`<br \/>\n&#8211; **Description:** Reloads the plugin&#8217;s configuration.<br \/>\n&#8211; **Aliases:** `\/cg reload`<\/p>\n<p>&#8212;<\/p>\n<p>## **Permissions**<br \/>\n| Permission          | Description                          | Default |<br \/>\n|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|&#8212;&#8212;&#8212;|<br \/>\n| `commandgui.use`    | Allows player to open the GUI.       | OP      |<br \/>\n| `commandgui.bypass` | Allows player to bypass cooldowns.   | OP      |<br \/>\n| `commandgui.tool`   | Gives player a tool to open the GUI. | OP      |<br \/>\n| `commandgui.give`   | Gives another player the GUI Tool.   | OP      |<br \/>\n| `commandgui.reload` | Allows reloading the plugin config.  | OP      |<\/p>\n<p>&#8212;<\/p>\n<p>## **Installation**<br \/>\n1. Download the CommandGUI plugin `.jar` file.<br \/>\n2. Place the `.jar` file in your server&#8217;s `plugins` directory.<br \/>\n3. Start the server to generate the default configuration file.<br \/>\n4. Configure the plugin by editing `plugins\/CommandGUI\/config.yml`.<br \/>\n5. Reload the plugin with `\/commandgui reload` or restart the server.<\/p>\n<p>&#8212;<\/p>\n<p>## **Configuration**<br \/>\nThe `config.yml` file allows you to customize the items in the GUI.<\/p>\n<p>&#8220;`yaml<br \/>\n# General settings<br \/>\nlanguage-file: &#8220;en_us.yml&#8221;  # Default language file. Changing languages will break existing CommandGUI tools!<br \/>\nverbose-mode: false # Set to true to enable verbose messages globally for all items (default fallback)<br \/>\ngui-size-mode: &#8220;dynamic&#8221; # Options: &#8220;dynamic&#8221;, &#8220;fixed&#8221;<br \/>\ngui-tool: &#8220;COMPASS&#8221; # This is the item used to open the GUI given by &#8220;\/cg tool&#8221;<\/p>\n<p>gui-items:<br \/>\n  &#8211; slot: 0<br \/>\n    name: &#8220;&#038;aGo to Spawn&#8221;<br \/>\n    command: &#8220;spawn&#8221;<br \/>\n    item: &#8220;COMPASS&#8221;<br \/>\n    run-as-player: true<br \/>\n    cooldown: 0 # No cooldown<br \/>\n    verbose: true # Always log interaction for this item<br \/>\n    lore:<br \/>\n      &#8211; &#8220;&#038;7Click to teleport to spawn&#8221;<\/p>\n<p>  &#8211; slot: 1<br \/>\n    name: &#8220;&#038;cHeal&#8221;<br \/>\n    command: &#8220;heal&#8221;<br \/>\n    item: &#8220;GOLDEN_APPLE&#8221;<br \/>\n    run-as-player: true<br \/>\n    cooldown: 30 # 30 seconds cooldown<br \/>\n    verbose: false # Never log interaction for this item<br \/>\n    lore:<br \/>\n      &#8211; &#8220;&#038;7Click to heal yourself&#8221;<\/p>\n<p>  &#8211; slot: 2<br \/>\n    name: &#8220;&#038;bDiamonds&#8221;<br \/>\n    command: &#8220;give %player% diamond 1&#8221;<br \/>\n    item: &#8220;DIAMOND&#8221;<br \/>\n    run-as-player: false<br \/>\n    cooldown: 60 # 60 seconds cooldown<br \/>\n    # No verbose field; falls back to global verbose-mode<br \/>\n    lore:<br \/>\n      &#8211; &#8220;&#038;bReceive a diamond!&#8221;<br \/>\n      &#8211; &#8220;&#038;3This is a server reward.&#8221;<br \/>\n&#8220;`<\/p>\n<p>### Configuration Options<\/p>\n<p>#### General Settings<br \/>\n&#8211; **`language-file`**: The language file to use (default: `en_us.yml`).<br \/>\n&#8211; **`verbose-mode`**: If `true`, displays verbose messages for item interactions globally (default: `false`).<br \/>\n&#8211; **`gui-size-mode`**: Determines the size of the GUI. Options:<br \/>\n   &#8211; `&#8221;dynamic&#8221;`: Adjusts the inventory size based on the number of items.<br \/>\n   &#8211; `&#8221;fixed&#8221;`: Sets the GUI size to a fixed double chest (54 slots).<br \/>\n&#8211; **`gui-tool`**: Sets the tool used to open the GUI.<\/p>\n<p>#### GUI Items<br \/>\nEach item in the GUI has the following options:<\/p>\n<p>&#8211; **`name`**: The display name of the item in the GUI, with color codes supported (e.g., `&#038;aGo to Spawn`).<br \/>\n&#8211; **`command`**: The command executed when the item is clicked (e.g., `spawn` or `give %player% diamond 1`).<br \/>\n&#8211; **`item`**: The item&#8217;s material (e.g., `DIAMOND`, `GOLDEN_APPLE`, `COMPASS`).<br \/>\n&#8211; **`slot`**: The inventory slot for the item (optional, auto-increment if not provided).<br \/>\n&#8211; **`lore`**: A list of text lines displayed as the item&#8217;s lore (optional, supports color codes).<br \/>\n&#8211; **`run-as-player`**: If `true`, the command will run as the player. If `false`, the command will run as the console (default: `false`).<br \/>\n&#8211; **`cooldown`**: The cooldown in seconds before the item can be used again (default: `0` for no cooldown).<br \/>\n&#8211; **`verbose`**: If `true`, overrides the global `verbose-mode` and enables verbose logging for this item (optional).<\/p>\n<p>&#8212;<\/p>\n<p>## **Usage**<br \/>\n1. **Opening the GUI**:<br \/>\n   &#8211; Use the `\/commandgui` command to open the GUI.<br \/>\n   &#8211; Alternatively, use the tool provided with `\/commandgui tool`.<\/p>\n<p>2. **Adding Items**:<br \/>\n   &#8211; Edit the `config.yml` file to add or modify items in the GUI.<br \/>\n   &#8211; Reload the configuration with `\/commandgui reload`.<\/p>\n<p>&#8212;<\/p>\n<p>## **Contributing**<br \/>\nContributions are welcome! Please fork the repository, make your changes, and submit a pull request.<\/p>\n<p>&#8212;<\/p>\n<p>## **License**<br \/>\nThis plugin is licensed under the Apache License 2.0.<\/p>\n<p>&#8212; <\/p>\n<p>### **Thanks for using CommandGUI**<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Customizable Command GUI for Spigot\/Paper<\/p>\n","protected":false},"featured_media":44591,"template":"","meta":{"_minecraft_slug":"commandgui","_minecraft_project_id":"nyJoB1vO","_minecraft_author":"Alfie51m","_minecraft_license":"Apache-2.0","_minecraft_downloads":704,"_minecraft_follows":5,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"commandgui.zip","_minecraft_size_bytes":104657,"_minecraft_version_count":8,"_minecraft_updated_at":"2026-05-16T09:36:43.896489Z","_minecraft_date_created":"2024-12-30T07:27:25.194374Z","_minecraft_date_modified":"2026-02-20T23:29:02.010197Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/commandgui","_minecraft_icon_attachment_id":44591,"_minecraft_imported_at":"2026-06-02T02:53:08+00:00","_minecraft_import_hash":"4fb7984e250049a9b51b0e5a004e043a","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[124,90,127,129,92],"mod_loader":[130,132,134],"minecraft_version":[62,37,40,41,73,74,38,78,79,80,81,82],"class_list":["post-44590","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-bukkit","mod_category-optimization","mod_category-paper","mod_category-spigot","mod_category-utility","mod_loader-bukkit","mod_loader-paper","mod_loader-spigot","minecraft_version-1-21","minecraft_version-1-21-1","minecraft_version-1-21-10","minecraft_version-1-21-11","minecraft_version-1-21-2","minecraft_version-1-21-3","minecraft_version-1-21-4","minecraft_version-1-21-5","minecraft_version-1-21-6","minecraft_version-1-21-7","minecraft_version-1-21-8","minecraft_version-1-21-9"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>CommandGUI - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/commandgui\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CommandGUI - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Customizable Command GUI for Spigot\/Paper\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/commandgui\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/commandgui\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/commandgui\\\/\",\"name\":\"CommandGUI - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/commandgui\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/commandgui\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/commandgui-icon-53839a0c77f6441fbcdc522453640626ad79fbff_96.webp\",\"datePublished\":\"2026-06-02T02:53:06+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/commandgui\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/commandgui\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/commandgui\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/commandgui-icon-53839a0c77f6441fbcdc522453640626ad79fbff_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/commandgui-icon-53839a0c77f6441fbcdc522453640626ad79fbff_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/commandgui\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"CommandGUI\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"CommandGUI - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/commandgui\/","og_locale":"en_US","og_type":"article","og_title":"CommandGUI - Minecraft","og_description":"Customizable Command GUI for Spigot\/Paper","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/commandgui\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/commandgui\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/commandgui\/","name":"CommandGUI - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/commandgui\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/commandgui\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/commandgui-icon-53839a0c77f6441fbcdc522453640626ad79fbff_96.webp","datePublished":"2026-06-02T02:53:06+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/commandgui\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/commandgui\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/commandgui\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/commandgui-icon-53839a0c77f6441fbcdc522453640626ad79fbff_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/commandgui-icon-53839a0c77f6441fbcdc522453640626ad79fbff_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/commandgui\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"CommandGUI"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/44590","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/44591"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=44590"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=44590"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=44590"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=44590"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}