{"id":142711,"date":"2026-06-08T14:52:23","date_gmt":"2026-06-08T11:52:23","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/skyenetwork-crates\/"},"modified":"2026-06-08T14:52:23","modified_gmt":"2026-06-08T11:52:23","slug":"skyenetwork-crates","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/skyenetwork-crates\/","title":{"rendered":"Skye Crates"},"content":{"rendered":"<p># SkyeCrates<\/p>\n<p>A Minecraft plugin for Paper\/Spigot servers that adds customizable crates with native Minecraft loot tables and particle effects.<\/p>\n<p>## Features<\/p>\n<p>&#8211; **Native Minecraft Loot Tables**: Full support for Minecraft&#8217;s loot table format, compatible with Misode&#8217;s Loot Table Generator<br \/>\n&#8211; **Particle Effects**: Customizable particle effects for each crate type with full control over particle behavior<br \/>\n&#8211; **Easy Configuration**: YAML configuration files for each crate type<br \/>\n&#8211; **Permissions**: Built-in permission system for admins and users<br \/>\n&#8211; **Commands**: Complete command system for managing crates<br \/>\n&#8211; **Paper API**: Built specifically for Paper 1.21.4+ with modern Java features<\/p>\n<p>## Requirements<\/p>\n<p>&#8211; Minecraft 1.21.4+<br \/>\n&#8211; Paper server (recommended) or Spigot<br \/>\n&#8211; Java 21+<\/p>\n<p>## Installation<\/p>\n<p>1. Download the latest release<br \/>\n2. Place the JAR file in your server&#8217;s `plugins` folder<br \/>\n3. Restart your server<br \/>\n4. Configure your crates in `plugins\/SkyeCrates\/crates\/`<\/p>\n<p>## Configuration<\/p>\n<p>Each crate is configured in its own YAML file in the `plugins\/SkyeCrates\/crates\/` folder.<\/p>\n<p>### Crate Configuration Format<\/p>\n<p>&#8220;`yaml<br \/>\nname: <name of crate><\/p>\n<p>particles:<br \/>\n  type: <particle type>    # Bukkit Particle enum value<br \/>\n  deltaX: <x spread>       # How far particles spread on X axis<br \/>\n  deltaY: <y spread>       # How far particles spread on Y axis<br \/>\n  deltaZ: <z spread>       # How far particles spread on Z axis<br \/>\n  count: <particle count>  # Number of particles per spawn<br \/>\n  speed: <particle speed>  # Speed of particles<\/p>\n<p>loot: |<br \/>\n  <loot table JSON pasted here><br \/>\n&#8220;`<\/p>\n<p>### Example Crate Configuration<\/p>\n<p>&#8220;`yaml<br \/>\n# Example Crate Configuration<br \/>\nname: &#8220;Example Crate&#8221;<\/p>\n<p># Particle configuration<br \/>\nparticles:<br \/>\n  type: &#8220;FLAME&#8221;          # Particle type (see Bukkit Particle enum)<br \/>\n  deltaX: 0.5           # Particle spread on X axis<br \/>\n  deltaY: 0.5           # Particle spread on Y axis<br \/>\n  deltaZ: 0.5           # Particle spread on Z axis<br \/>\n  count: 15             # Number of particles per spawn<br \/>\n  speed: 0.1            # Particle speed<\/p>\n<p># Loot table (JSON format from Misode&#8217;s loot table generator)<br \/>\nloot: |<br \/>\n  {<br \/>\n    &#8220;type&#8221;: &#8220;minecraft:block&#8221;,<br \/>\n    &#8220;pools&#8221;: [<br \/>\n      {<br \/>\n        &#8220;rolls&#8221;: 1,<br \/>\n        &#8220;entries&#8221;: [<br \/>\n          {<br \/>\n            &#8220;type&#8221;: &#8220;minecraft:item&#8221;,<br \/>\n            &#8220;name&#8221;: &#8220;minecraft:diamond&#8221;,<br \/>\n            &#8220;weight&#8221;: 1,<br \/>\n            &#8220;functions&#8221;: [<br \/>\n              {<br \/>\n                &#8220;function&#8221;: &#8220;minecraft:set_count&#8221;,<br \/>\n                &#8220;count&#8221;: {<br \/>\n                  &#8220;min&#8221;: 1,<br \/>\n                  &#8220;max&#8221;: 3<br \/>\n                }<br \/>\n              }<br \/>\n            ]<br \/>\n          }<br \/>\n        ]<br \/>\n      }<br \/>\n    ]<br \/>\n  }<br \/>\n&#8220;`<\/p>\n<p>## Commands<\/p>\n<p>&#8211; `\/skyecrates reload` &#8211; Reload plugin configuration<br \/>\n&#8211; `\/skyecrates list` &#8211; List all available crates<br \/>\n&#8211; `\/skyecrates give <player> <crate> [amount]` &#8211; Give a crate item to a player<br \/>\n&#8211; `\/skyecrates place <crate>` &#8211; Place a crate at your target location<br \/>\n&#8211; `\/skyecrates remove` &#8211; Remove a crate you&#8217;re looking at<\/p>\n<p>## Permissions<\/p>\n<p>&#8211; `skyecrates.admin` &#8211; Access to all SkyeCrates commands (default: op)<br \/>\n&#8211; `skyecrates.use` &#8211; Allows using crates (default: true)<\/p>\n<p>## Using Misode&#8217;s Loot Table Generator<\/p>\n<p>1. Go to Misode&#8217;s Loot Table Generator<br \/>\n2. Create your desired loot table using the visual interface<br \/>\n3. Copy the generated JSON from the output<br \/>\n4. Paste it directly into the `loot:` section of your crate configuration file<\/p>\n<p>### Supported Loot Table Features<\/p>\n<p>&#8211; **Multiple pools** with different roll counts<br \/>\n&#8211; **Weighted entries** for item rarity<br \/>\n&#8211; **Functions** like `set_count`, `set_damage`, `enchant_with_levels`<br \/>\n&#8211; **Conditions** for advanced loot logic<br \/>\n&#8211; **All vanilla items** and their properties<\/p>\n<p>## Example Configurations<\/p>\n<p>### Basic Crate<br \/>\nSimple crate with a single guaranteed diamond:<\/p>\n<p>&#8220;`yaml<br \/>\nname: &#8220;Basic Crate&#8221;<br \/>\nparticles:<br \/>\n  type: &#8220;FLAME&#8221;<br \/>\n  deltaX: 0.5<br \/>\n  deltaY: 0.5<br \/>\n  deltaZ: 0.5<br \/>\n  count: 10<br \/>\n  speed: 0.1<br \/>\nloot: |<br \/>\n  {<br \/>\n    &#8220;type&#8221;: &#8220;minecraft:block&#8221;,<br \/>\n    &#8220;pools&#8221;: [<br \/>\n      {<br \/>\n        &#8220;rolls&#8221;: 1,<br \/>\n        &#8220;entries&#8221;: [<br \/>\n          {<br \/>\n            &#8220;type&#8221;: &#8220;minecraft:item&#8221;,<br \/>\n            &#8220;name&#8221;: &#8220;minecraft:diamond&#8221;<br \/>\n          }<br \/>\n        ]<br \/>\n      }<br \/>\n    ]<br \/>\n  }<br \/>\n&#8220;`<\/p>\n<p>### Treasure Crate<br \/>\nAdvanced crate with multiple items and different rarities:<\/p>\n<p>&#8220;`yaml<br \/>\nname: &#8220;Treasure Crate&#8221;<br \/>\nparticles:<br \/>\n  type: &#8220;VILLAGER_HAPPY&#8221;<br \/>\n  deltaX: 1.0<br \/>\n  deltaY: 0.8<br \/>\n  deltaZ: 1.0<br \/>\n  count: 25<br \/>\n  speed: 0.05<br \/>\nloot: |<br \/>\n  {<br \/>\n    &#8220;type&#8221;: &#8220;minecraft:block&#8221;,<br \/>\n    &#8220;pools&#8221;: [<br \/>\n      {<br \/>\n        &#8220;rolls&#8221;: {<br \/>\n          &#8220;min&#8221;: 2,<br \/>\n          &#8220;max&#8221;: 4<br \/>\n        },<br \/>\n        &#8220;entries&#8221;: [<br \/>\n          {<br \/>\n            &#8220;type&#8221;: &#8220;minecraft:item&#8221;,<br \/>\n            &#8220;name&#8221;: &#8220;minecraft:diamond&#8221;,<br \/>\n            &#8220;weight&#8221;: 5<br \/>\n          },<br \/>\n          {<br \/>\n            &#8220;type&#8221;: &#8220;minecraft:item&#8221;,<br \/>\n            &#8220;name&#8221;: &#8220;minecraft:emerald&#8221;,<br \/>\n            &#8220;weight&#8221;: 8,<br \/>\n            &#8220;functions&#8221;: [<br \/>\n              {<br \/>\n                &#8220;function&#8221;: &#8220;minecraft:set_count&#8221;,<br \/>\n                &#8220;count&#8221;: {<br \/>\n                  &#8220;min&#8221;: 2,<br \/>\n                  &#8220;max&#8221;: 5<br \/>\n                }<br \/>\n              }<br \/>\n            ]<br \/>\n          }<br \/>\n        ]<br \/>\n      }<br \/>\n    ]<br \/>\n  }<br \/>\n&#8220;`<\/p>\n<p>## Building from Source<\/p>\n<p>&#8220;`bash<br \/>\n.\/gradlew build<br \/>\n&#8220;`<\/p>\n<p>The compiled JAR will be in `build\/libs\/`<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The Crates plugin used for the SkyeNetwork Server<\/p>\n","protected":false},"featured_media":0,"template":"","meta":{"_minecraft_slug":"skyenetwork-crates","_minecraft_project_id":"FAlmXSuJ","_minecraft_author":"NobleSkye","_minecraft_license":"LicenseRef-All-Rights-Reserved","_minecraft_downloads":349,"_minecraft_follows":0,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"skyenetwork-crates.zip","_minecraft_size_bytes":57534,"_minecraft_version_count":2,"_minecraft_updated_at":"2026-05-16T11:20:20.045222Z","_minecraft_date_created":"2025-06-12T00:11:10.401285Z","_minecraft_date_modified":"2025-06-11T03:10:30.505237Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/skyenetwork-crates","_minecraft_icon_attachment_id":0,"_minecraft_imported_at":"2026-06-08T11:52:24+00:00","_minecraft_import_hash":"2745a954b2ab59e600440ba54af1f3f4","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[127],"mod_loader":[132],"minecraft_version":[62,37,73,74,38,78],"class_list":["post-142711","mod","type-mod","status-publish","hentry","mod_category-paper","mod_loader-paper","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"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Skye Crates - 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\/skyenetwork-crates\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Skye Crates - Minecraft\" \/>\n<meta property=\"og:description\" content=\"The Crates plugin used for the SkyeNetwork Server\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/skyenetwork-crates\/\" \/>\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\\\/skyenetwork-crates\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/skyenetwork-crates\\\/\",\"name\":\"Skye Crates - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"datePublished\":\"2026-06-08T11:52:23+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/skyenetwork-crates\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/skyenetwork-crates\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/skyenetwork-crates\\\/#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\":\"Skye Crates\"}]},{\"@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":"Skye Crates - 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\/skyenetwork-crates\/","og_locale":"en_US","og_type":"article","og_title":"Skye Crates - Minecraft","og_description":"The Crates plugin used for the SkyeNetwork Server","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/skyenetwork-crates\/","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\/skyenetwork-crates\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/skyenetwork-crates\/","name":"Skye Crates - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"datePublished":"2026-06-08T11:52:23+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/skyenetwork-crates\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/skyenetwork-crates\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/skyenetwork-crates\/#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":"Skye Crates"}]},{"@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\/142711","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:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=142711"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=142711"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=142711"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=142711"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}