{"id":53091,"date":"2026-06-03T01:46:00","date_gmt":"2026-06-02T22:46:00","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/customgenerator\/"},"modified":"2026-06-03T01:46:00","modified_gmt":"2026-06-02T22:46:00","slug":"customgenerator","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/customgenerator\/","title":{"rendered":"CustomGenerator"},"content":{"rendered":"<p># \ud83d\udee0\ufe0f CustomGenerator<\/p>\n<p>A fully\u2011featured, BentoBox\u2011compatible generator plugin designed to provide island owners with the ability to buy, manage, and activate custom cobblestone, stone, basalt, or deepslate generators. All configurations are handled via easy-to-edit YAML files, making customization straightforward and flexible for server administrators.<\/p>\n<p>&#8212;<\/p>\n<p>## \u2728 Features<\/p>\n<p>* Per\u2011island **buy &#038; activate** workflow with built-in economy and island-level validations<br \/>\n* Intuitive **GUI menus** for browsing categories &#038; individual generator types<br \/>\n* **Custom Generator Logic** powered by `custom-generator-categories.yml`<br \/>\n* Fully customizable messages, GUI layouts, and generator settings via **YAML files**<br \/>\n* Efficient **cache-first** design for fast response times and minimal server load<br \/>\n* Convenient **reload** command to apply configuration changes instantly without server restarts<br \/>\n* Supports multiple generator categories, including classic cobblestone and advanced basalt and deepslate types<br \/>\n* Clear separation of concerns with modular code architecture for easier future expansions<br \/>\n* Economy integration through Vault for seamless transaction management<br \/>\n* BentoBox island level checks to maintain balanced gameplay progression  <\/p>\n<p>&#8212;<\/p>\n<p>## \ud83d\udd04 What\u2019s New in v1.1.0<\/p>\n<p>### \ud83e\uddea New Features<\/p>\n<p>&#8211; **Custom Generator Categories** via `custom-generator-categories.yml`:<br \/>\n  Define your own generator logic using fluid-flow conditions, surrounding blocks, biomes, Y-level limits, and more.<\/p>\n<p>&#8211; **Improved Generator Menu UI**:<br \/>\n  Visual enhancements, better layout, and more intuitive category buttons.<\/p>\n<p>&#8211; **Pagination Support in GUI**:<br \/>\n  The menu now supports unlimited generator types, navigable through **Next** \/ **Previous** page buttons.<\/p>\n<p>&#8212;<\/p>\n<p>## \ud83d\udce6 Hard\u00a0Dependencies<\/p>\n<p>| Plugin       | Tested\u202fVersion   | Purpose                              |<br \/>\n|&#8212;&#8212;&#8212;&#8212;&#8211;|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|<br \/>\n| **BentoBox** | 3.0.0+          | Manages island data and world separation |<br \/>\n| **Vault**    | 1.7+             | Provides economy API for transactions |<\/p>\n<p>> The plugin requires both dependencies to be installed and enabled; it will not load otherwise.<\/p>\n<p>&#8212;<\/p>\n<p>## \ud83d\ude80 Quick\u00a0Start<\/p>\n<p>1. **Download** the `CustomGenerator.jar` file and place it inside your server\u2019s `plugins\/` directory.<br \/>\n2. Start the server once to generate default configuration files:<br \/>\n   * `messages.yml` \u2014 customizable message strings<br \/>\n   * `generator-types.yml` \u2014 definitions for all generator types<br \/>\n   * `custom-generator-categories.yml` \u2014 defines generator behavior<br \/>\n3. Modify the YAML files according to your server\u2019s needs and preferences.<br \/>\n4. Use the command `\/generator reload` or restart the server to load your custom settings.<br \/>\n5. Encourage players to use `\/generator help` to see available commands and usage.  <\/p>\n<p>&#8212;<\/p>\n<p>### Commands<\/p>\n<p>| Command | Description |<br \/>\n|&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;-|<br \/>\n| `\/generator` | Opens the main menu and displays available generators to the player. |<br \/>\n| `\/generator buy <generator>` | Purchases the specified generator. The player must have enough money. |<br \/>\n| `\/generator activate <generator>` | Activates a previously purchased generator. |<br \/>\n| `\/generator list` | Lists all generators defined on the server. |<br \/>\n| `\/generator reload` | Reloads all configuration files. Admin permission required. |<\/p>\n<p>## \u2699\ufe0f Configuration Basics<\/p>\n<p>### Defining Generator Types<br \/>\nGenerator types are defined inside the `generator-types.yml` file. You can add new types or modify existing ones. Each entry specifies how the generator behaves and appears in the GUI. Here is an example:<\/p>\n<p>&#8220;`yaml<br \/>\ngenerator-types:<br \/>\n  diamond:<br \/>\n    display-name: &#8220;&#038;bDiamond Generator&#8221;<br \/>\n    material: DIAMOND_ORE<br \/>\n    lore:<br \/>\n      &#8211; &#8220;&#038;bContains rare and valuable resources.&#8221;<br \/>\n      &#8211; &#8220;&#038;7Produces 30% diamond and 70% stone blocks.&#8221;<br \/>\n    generator-type: COBBLESTONE<br \/>\n    price: 5000<br \/>\n    required-island-level: 30<br \/>\n    blocks:<br \/>\n      STONE: 70<br \/>\n      DIAMOND_ORE: 30<br \/>\n&#8220;`<br \/>\n### Important notes:<\/p>\n<p>* generator-type must either be one of the built-in categories (COBBLESTONE, STONE, BASALT, DEEPSLATE) or a custom category defined in custom-generator-categories.yml.<\/p>\n<p>* Values under blocks: act as relative weights. The plugin normalizes these internally, so whether you use 70\/30, 0.7\/0.3, or 7\/3, the behavior is consistent.<\/p>\n<p>* The price supports decimal values if your economy plugin allows it.<\/p>\n<p>* material must be a valid Bukkit Material for GUI icons.<\/p>\n<p>* lore supports multiple lines and color codes to describe the generator.<\/p>\n<p>### Creating Custom Generator<\/p>\n<p>Custom generators are defined in custom-generator-categories.yml. Example:<\/p>\n<p>&#8220;`yaml<br \/>\ndirt_generator:<br \/>\n  category: DIRTGEN<br \/>\n  display-name: &#8220;&#038;2Dirt&#8221;<br \/>\n  fluid: LAVA<br \/>\n  to: AIR<\/p>\n<p>  conditions:<br \/>\n    sides: [ DIRT ]<br \/>\n    up: [ STONE ]<br \/>\n    down: [ COARSE_DIRT ]<\/p>\n<p>  y-level:<br \/>\n    min: 10<br \/>\n    max: 64<\/p>\n<p>  biomes:<br \/>\n    &#8211; minecraft:plains<br \/>\n    &#8211; minecraft:the_void<br \/>\n&#8220;`<\/p>\n<p>### Explanation:<br \/>\n* **category**: Unique category ID. Must match a generator-type entry in generator-types.yml.<\/p>\n<p>* **fluid**: Triggering fluid block (e.g., LAVA, WATER).<\/p>\n<p>* **to**: Block the fluid flows into (AIR, WATER, POWDER_SNOW etc.).<\/p>\n<p>* **conditions**: Optional block requirements (sides, up, down).<\/p>\n<p>* **y-level**: Optional Y-axis range for the generator to be active.<\/p>\n<p>* **biomes**: Optional biome whitelist for where the generator works.<\/p>\n<p>**With this system, you can implement:**<\/p>\n<p>* Basalt generators restricted to the Nether.<\/p>\n<p>* Gold generators above Y=100.<\/p>\n<p>* Dirt generators with specific surrounding blocks.<\/p>\n<p>* Biome-exclusive generators (like Mushroom Islands only).<\/p>\n","protected":false},"excerpt":{"rendered":"<p>CustomGenerator lets BentoBox island owners buy and activate custom resource generators<\/p>\n","protected":false},"featured_media":53092,"template":"","meta":{"_minecraft_slug":"customgenerator","_minecraft_project_id":"NECmevw0","_minecraft_author":"ogsammaenr","_minecraft_license":"MIT","_minecraft_downloads":157,"_minecraft_follows":1,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"customgenerator.zip","_minecraft_size_bytes":241483,"_minecraft_version_count":3,"_minecraft_updated_at":"2026-05-16T13:21:17.095879Z","_minecraft_date_created":"2025-07-04T05:04:55.610624Z","_minecraft_date_modified":"2025-07-10T02:20:19.043039Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/customgenerator","_minecraft_icon_attachment_id":53092,"_minecraft_imported_at":"2026-06-02T22:46:00+00:00","_minecraft_import_hash":"961e5b6029b34dd759646bf830680541","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[89,127,128,129],"mod_loader":[132,133,134],"minecraft_version":[62,37,73,74,38,78,79],"class_list":["post-53091","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-game-mechanics","mod_category-paper","mod_category-purpur","mod_category-spigot","mod_loader-paper","mod_loader-purpur","mod_loader-spigot","minecraft_version-1-21","minecraft_version-1-21-1","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"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>CustomGenerator - 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\/customgenerator\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CustomGenerator - Minecraft\" \/>\n<meta property=\"og:description\" content=\"CustomGenerator lets BentoBox island owners buy and activate custom resource generators\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/customgenerator\/\" \/>\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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/customgenerator\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/customgenerator\\\/\",\"name\":\"CustomGenerator - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/customgenerator\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/customgenerator\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/customgenerator-icon-ab65fe5ab72501c23aec71ad9d7fe890dd065483_96.webp\",\"datePublished\":\"2026-06-02T22:46:00+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/customgenerator\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/customgenerator\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/customgenerator\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/customgenerator-icon-ab65fe5ab72501c23aec71ad9d7fe890dd065483_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/customgenerator-icon-ab65fe5ab72501c23aec71ad9d7fe890dd065483_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/customgenerator\\\/#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\":\"CustomGenerator\"}]},{\"@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":"CustomGenerator - 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\/customgenerator\/","og_locale":"en_US","og_type":"article","og_title":"CustomGenerator - Minecraft","og_description":"CustomGenerator lets BentoBox island owners buy and activate custom resource generators","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/customgenerator\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/customgenerator\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/customgenerator\/","name":"CustomGenerator - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/customgenerator\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/customgenerator\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/customgenerator-icon-ab65fe5ab72501c23aec71ad9d7fe890dd065483_96.webp","datePublished":"2026-06-02T22:46:00+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/customgenerator\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/customgenerator\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/customgenerator\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/customgenerator-icon-ab65fe5ab72501c23aec71ad9d7fe890dd065483_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/customgenerator-icon-ab65fe5ab72501c23aec71ad9d7fe890dd065483_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/customgenerator\/#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":"CustomGenerator"}]},{"@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\/53091","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\/53092"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=53091"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=53091"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=53091"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=53091"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}