{"id":53095,"date":"2026-06-03T01:46:27","date_gmt":"2026-06-02T22:46:27","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/customguireworked\/"},"modified":"2026-06-03T01:46:27","modified_gmt":"2026-06-02T22:46:27","slug":"customguireworked","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/customguireworked\/","title":{"rendered":"CustomGuiReworked"},"content":{"rendered":"<p># \ud83c\udfae CustomGuiReworked &#8211; Plugin Mechanics<\/p>\n<p>Detailed description of all mechanics and systems of the CustomGuiReworked plugin.<\/p>\n<p>## \ud83d\udccb **GUI System**<\/p>\n<p>### Creation and Editing<br \/>\n&#8211; **Built-in Editor** &#8211; Creating GUI through `\/gui create` and `\/gui edit` commands<br \/>\n&#8211; **Visual Editing** &#8211; Placing items in slots through interface<br \/>\n&#8211; **Property Configuration** &#8211; Setting title, size, commands for slots<br \/>\n&#8211; **File Saving** &#8211; Each GUI is saved in a separate YAML file<\/p>\n<p>### Inventory Types<br \/>\n&#8211; **9 slots** (1 row) &#8211; For simple menus<br \/>\n&#8211; **18 slots** (2 rows) &#8211; For small interfaces<br \/>\n&#8211; **27 slots** (3 rows) &#8211; Standard size<br \/>\n&#8211; **36 slots** (4 rows) &#8211; Extended interfaces<br \/>\n&#8211; **45 slots** (5 rows) &#8211; Large menus<br \/>\n&#8211; **54 slots** (6 rows) &#8211; Maximum size<\/p>\n<p>## \ud83d\udcbe **Data Storage System**<\/p>\n<p>### 5 Storage Types<\/p>\n<p>| Type | Description | Usage |<br \/>\n|&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;-|&#8212;&#8212;-|<br \/>\n| **Block** | Data bound to specific block | Chests, furnaces, workbenches |<br \/>\n| **Personal** | Data unique for each player | Personal inventories, settings |<br \/>\n| **Global** | Shared data for all players | global banks, global chest |<br \/>\n| **Team** | Data for player groups | Clan storages |<br \/>\n| **Temporary** | Data only for session duration | Temporary menus, forms |<\/p>\n<p>### Saving Mechanics<br \/>\n&#8211; **Automatic saving** when content changes<br \/>\n&#8211; **Data loading** when opening GUI<br \/>\n&#8211; **Synchronization** between players for shared inventories<\/p>\n<p>## \ud83c\udfaf **Command System**<\/p>\n<p>### Slot Commands<br \/>\n&#8211; **Command execution** when clicking on slot<br \/>\n&#8211; **Variable support** (%player%, %slot%, %item%)<br \/>\n&#8211; **Conditional execution** &#8211; commands only under certain conditions<br \/>\n&#8211; **Console commands** &#8211; execution on behalf of server<\/p>\n<p>### Command Examples<br \/>\n&#8220;`yaml<br \/>\ncommands:<br \/>\n  &#8211; command: &#8220;give %player% diamond 1&#8221;<br \/>\n    slot: 10<br \/>\n    condition: &#8220;has_permission&#8221;<br \/>\n  &#8211; command: &#8220;teleport %player% spawn&#8221;<br \/>\n    slot: 15<br \/>\n&#8220;`<\/p>\n<p>## \ud83d\udd0d **SlotTypeAPI &#8211; Slot Type Detection**<\/p>\n<p>### Automatic Detection<\/p>\n<p>| Type | Description | Behavior |<br \/>\n|&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;-|&#8212;&#8212;&#8212;-|<br \/>\n| **DESIGN** | Decorative slots | Cannot interact |<br \/>\n| **CONTAINER** | Storage slots | Full interaction |<br \/>\n| **CRAFT** | Crafting\/recipe slots | Limited interaction |<br \/>\n| **RESULT** | Crafting result slots | Only item retrieval |<br \/>\n| **FUEL** | Fuel slots | Fuel validity check |<\/p>\n<p>only design have functional, other for API to easy codding<\/p>\n<p>### Standard Inventory Support<br \/>\n&#8211; **Crafting Table** &#8211; Crafting slots and result<br \/>\n&#8211; **Furnace** &#8211; Ingredient, fuel, result<br \/>\n&#8211; **Brewing Stand** &#8211; Potions, fuel, bottles<br \/>\n&#8211; **Anvil** &#8211; Items and result<br \/>\n&#8211; **Enchanting Table** &#8211; Item and lapis<\/p>\n<p>### Heuristics for Custom Inventories<br \/>\n&#8211; **Size analysis** of inventory<br \/>\n&#8211; **Pattern detection** of layout<br \/>\n&#8211; **Result caching** for performance<\/p>\n<p>## \ud83d\udd27 **Developer API**<\/p>\n<p>### Static API (CustomGuiAPI)<br \/>\n&#8220;`java<br \/>\n\/\/ Simple calls without getting plugin instance<br \/>\nCustomGuiAPI.createGui(&#8220;shop&#8221;);<br \/>\nCustomGuiAPI.openGui(player, &#8220;shop&#8221;);<br \/>\nCustomGuiAPI.isDesignSlot(slot, inventory);<br \/>\n&#8220;`<\/p>\n<p>### Internal API (ApiManager)<br \/>\n&#8211; **Direct access** to plugin managers<br \/>\n&#8211; **Extended capabilities** for complex integration<br \/>\n&#8211; **Full control** over functionality<\/p>\n<p>## \ud83c\udfa8 **Design System**<\/p>\n<p>### Appearance Configuration<br \/>\n&#8211; **Titles** with color codes (\u00a76, \u00a7a, \u00a7c)<br \/>\n&#8211; **skeleton system** &#8211; items for buttons and elements<\/p>\n<p>### **ItemsAdder SUPPORT!**<\/p>\n<p>## \ud83d\udee1\ufe0f **Security System**<\/p>\n<p>### Checks and Restrictions<br \/>\n&#8211; **Access rights** &#8211; permission checking<br \/>\n&#8211; **Data validation** &#8211; correctness verification<br \/>\n&#8211; **Exploit protection** &#8211; bug prevention<\/p>\n<p>## \u26a1 **Performance Optimization**<\/p>\n<p>### Caching<br \/>\n&#8211; **Slot type cache** &#8211; fast access to information<br \/>\n&#8211; **GUI cache** &#8211; loaded interfaces in memory<br \/>\n&#8211; **Lazy loading** &#8211; loading on demand<\/p>\n<p>### Memory Management<br \/>\n&#8211; **Auto-cleanup** &#8211; removing unused data<br \/>\n&#8211; **Size limitation** &#8211; preventing memory leaks<br \/>\n&#8211; **Asynchronous operations** &#8211; non-blocking operations<\/p>\n<p>## \ud83c\udf10 **Multilingual Support**<\/p>\n<p>### Language Support<br \/>\n&#8211; **English** &#8211; primary language<br \/>\n&#8211; **Russian** &#8211; additional language<br \/>\n&#8211; **Translation system** &#8211; easy to add new languages<\/p>\n<p>### Localization<br \/>\n&#8211; **Messages** &#8211; translation of all texts<br \/>\n&#8211; **Commands** &#8211; support for different languages<br \/>\n&#8211; **Documentation** &#8211; help translation<\/p>\n<p>## \ud83d\udd27 **Integration with Other Plugins**<\/p>\n<p>### API Capabilities<br \/>\n&#8211; **GUI creation** from other plugins<br \/>\n&#8211; **Data management** &#8211; reading\/writing content<br \/>\n&#8211; **Event handling** &#8211; reacting to player actions<br \/>\n&#8211; **Functionality extension** &#8211; adding new capabilities<\/p>\n<p>### Integration Examples<\/p>\n<p>| Plugin | Application | Examples |<br \/>\n|&#8212;&#8212;&#8211;|&#8212;&#8212;&#8212;&#8212;-|&#8212;&#8212;&#8212;-|<br \/>\n| **Economy Plugins** | Shops with prices | Vault, Essentials |<br \/>\n| **Warp Systems** | Teleportation menus | Essentials, Multiverse |<br \/>\n| **Clan Systems** | Clan management | Factions, Clans |<br \/>\n| **Mini-games** | Game interfaces | Custom mini-games |<\/p>\n<p>## \ud83d\udcca **Performance**<\/p>\n<p>### Metrics<br \/>\n&#8211; **GUI loading time**: < 50ms\n- **Memory per GUI**: ~2-5KB\n- **Concurrent users support**: 1000+\n- **Compatibility**: 99% of plugins\n\n### Optimizations\n- **Lazy initialization** - loading only when needed\n- **Object pooling** - object reuse\n- **Asynchronous processing** - non-blocking operations\n- **Smart caching** - cache with TTL\n\n## \ud83d\ude80 **Advanced Features**\n\n### Advanced Functions\n- **Dynamic GUIs** - real-time content changes\n- **Conditional logic** - showing elements by conditions\n- **Animations** - smooth transitions and effects\n- **Web integration** - connection with web services\n\n### Future Plans\n- **Visual constructor** - drag-and-drop interface\n- **GUI templates** - ready-made designs\n- **Plugin marketplace** - GUI exchange between servers\n- **Mobile support** - management through app\n<\/p>\n","protected":false},"excerpt":{"rendered":"<p>a simple plugin to create Custom GUI Inventory interfaces with saving data items system<\/p>\n","protected":false},"featured_media":53096,"template":"","meta":{"_minecraft_slug":"customguireworked","_minecraft_project_id":"SWM5KwIv","_minecraft_author":"Moonaticks","_minecraft_license":"MIT","_minecraft_downloads":289,"_minecraft_follows":2,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"customguireworked.zip","_minecraft_size_bytes":413780,"_minecraft_version_count":5,"_minecraft_updated_at":"2026-05-16T11:51:05.057318Z","_minecraft_date_created":"2025-08-25T21:35:39.530960Z","_minecraft_date_modified":"2025-11-19T21:29:27.228928Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/customguireworked","_minecraft_icon_attachment_id":53096,"_minecraft_imported_at":"2026-06-02T22:46:28+00:00","_minecraft_import_hash":"6a1ff68956caded8defbf342b43f7200","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[844,89,873,127,128,91,92],"mod_loader":[132,133],"minecraft_version":[62,37,40,73,74,38,78,79,80,81,82],"class_list":["post-53095","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-economy","mod_category-game-mechanics","mod_category-library","mod_category-paper","mod_category-purpur","mod_category-storage","mod_category-utility","mod_loader-paper","mod_loader-purpur","minecraft_version-1-21","minecraft_version-1-21-1","minecraft_version-1-21-10","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>CustomGuiReworked - 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\/customguireworked\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CustomGuiReworked - Minecraft\" \/>\n<meta property=\"og:description\" content=\"a simple plugin to create Custom GUI Inventory interfaces with saving data items system\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/customguireworked\/\" \/>\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\\\/customguireworked\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/customguireworked\\\/\",\"name\":\"CustomGuiReworked - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/customguireworked\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/customguireworked\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/customguireworked-icon-d41148bbc3c51cb7cff8b77177c14ec982b8b370.png\",\"datePublished\":\"2026-06-02T22:46:27+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/customguireworked\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/customguireworked\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/customguireworked\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/customguireworked-icon-d41148bbc3c51cb7cff8b77177c14ec982b8b370.png\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/customguireworked-icon-d41148bbc3c51cb7cff8b77177c14ec982b8b370.png\",\"width\":128,\"height\":128},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/customguireworked\\\/#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\":\"CustomGuiReworked\"}]},{\"@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":"CustomGuiReworked - 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\/customguireworked\/","og_locale":"en_US","og_type":"article","og_title":"CustomGuiReworked - Minecraft","og_description":"a simple plugin to create Custom GUI Inventory interfaces with saving data items system","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/customguireworked\/","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\/customguireworked\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/customguireworked\/","name":"CustomGuiReworked - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/customguireworked\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/customguireworked\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/customguireworked-icon-d41148bbc3c51cb7cff8b77177c14ec982b8b370.png","datePublished":"2026-06-02T22:46:27+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/customguireworked\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/customguireworked\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/customguireworked\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/customguireworked-icon-d41148bbc3c51cb7cff8b77177c14ec982b8b370.png","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/customguireworked-icon-d41148bbc3c51cb7cff8b77177c14ec982b8b370.png","width":128,"height":128},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/customguireworked\/#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":"CustomGuiReworked"}]},{"@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\/53095","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\/53096"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=53095"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=53095"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=53095"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=53095"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}