{"id":59504,"date":"2026-06-03T09:16:29","date_gmt":"2026-06-03T06:16:29","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/duckyzones\/"},"modified":"2026-06-03T09:16:29","modified_gmt":"2026-06-03T06:16:29","slug":"duckyzones","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/duckyzones\/","title":{"rendered":"DuckyZones"},"content":{"rendered":"<p># \ud83e\udde9 DuckyZones<\/p>\n<p>**Create custom zones with powerful rules and effects in your Minecraft world!**<br \/>\nHighly configurable, efficient, and perfect for custom maps, events, or gameplay control.<\/p>\n<p>&#8212;<\/p>\n<p>## \ud83d\udce6 Description<\/p>\n<p>**DuckyZones** allows you to define specific rectangular areas (zones) in your world where certain rules and effects apply.<br \/>\nWhether you&#8217;re building PvP arenas, adventure maps, or controlled environments \u2014 this plugin gives you full control over player behavior inside defined areas.<\/p>\n<p>&#8212;<\/p>\n<p>## \u2699\ufe0f Features<\/p>\n<p>&#8211; \ud83d\udd32 Create custom zones with two corners<br \/>\n&#8211; \ud83c\udf0d Per-zone world support<br \/>\n&#8211; \u274c Block specific items or effects inside a zone<br \/>\n&#8211; \u2705 Require specific items or effects to enter<br \/>\n&#8211; \ud83e\ude82 Disable Elytra inside zones (auto-removes Elytra from player)<br \/>\n&#8211; \ud83e\uddea Apply potion effects automatically in a zone<br \/>\n&#8211; \ud83d\udeab Custom denial messages for rule violations<br \/>\n&#8211; \ud83d\udcac Configurable denial titles, subtitles, sounds, and more<br \/>\n&#8211; \ud83d\udcdb Support for per-zone access restrictions using permissions<br \/>\n&#8211; \ud83d\udd03 Easy reload support without restarting the server<br \/>\n&#8211; \ud83d\uddc2\ufe0f Simple `config.yml` layout<br \/>\n&#8211; \u2615 Built with **Java 16**, supports **Minecraft 1.16.5 \u2192 1.21+**<\/p>\n<p>&#8212;<\/p>\n<p>## \ud83d\udee1\ufe0f Permissions<\/p>\n<p>| Permission Node                           | Description                                                       |<br \/>\n|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|<br \/>\n| `duckyzones.zone.<zone>`                | Grants access to a specific zone               |<br \/>\n| `duckyzones.zone.<zone>.bypass`         | Bypass all restrictions (effects, items, etc.) in zone           |<br \/>\n| `duckyzones.zones.bypass`               | Global bypass for all zones                                      |<br \/>\n| `duckyzones.reload`                     | Allows reloading the plugin using `\/duckyzones reload`          |<br \/>\n| `duckyzones.update`                     | Allows receiving update notifications about new plugin versions  |<\/p>\n<p>> These permissions allow finer control over who can enter specific zones, ignore restrictions, or have special access.<\/p>\n<p>&#8212;<\/p>\n<p>## \ud83d\udee0\ufe0f Configuration<\/p>\n<p>### \ud83d\udcc1 `config.yml`<\/p>\n<p>&#8220;`yaml<br \/>\n# List of Items (1.21.5) : https:\/\/hub.spigotmc.org\/javadocs\/bukkit\/org\/bukkit\/Material.html<br \/>\n# List of Effects (1.21.5) : https:\/\/hub.spigotmc.org\/javadocs\/bukkit\/org\/bukkit\/potion\/PotionEffectType.html<br \/>\nzones:<br \/>\n  spawn: # Zone name<br \/>\n    world: world # World where zone is<br \/>\n    corner1: world,100,64,100 # First Zone Corner<br \/>\n    corner2: world,110,70,110 # Second Zone Corner<br \/>\n    elytra-disabled: false # Should be elytra disabled in that zone? This will remove the elytra from the player<br \/>\n    elytra-disabled-message: &#8220;Elytra is disabled in this zone!&#8221;<br \/>\n    blocked-items: # Player with these items in inventory cannot enter the zone<br \/>\n      &#8211; TNT<br \/>\n      &#8211; ENDER_PEARL<br \/>\n    blocked-effects: # Player with these effects cannot enter the zone, after leaving it they will disappear separator; means the power of the effect, e.g. SPEED;1 = Speed 1 in the game, if you want to block all powers of effect, you must do ;-1<br \/>\n      &#8211; SPEED;-1<br \/>\n      &#8211; INVISIBILITY;1<br \/>\n    required-items: # Only Player with these items in inventory can enter the zone<br \/>\n      &#8211; DIAMOND<br \/>\n      &#8211; TOTEM_OF_UNDYING<br \/>\n    required-effects: # Only Players with these effects can enter the zone, after leaving it they will disappear separator; means the power of the effect, e.g. SPEED;1 = Speed 1 in the game, if you want to block all powers of effect, you must do ;-1<br \/>\n      &#8211; NIGHT_VISION;1<br \/>\n    zone-effects: # Effects that will be applied after entering the zone, after leaving it they will disappear separator; means the power of the effect, e.g. SPEED; 1 = Speed 1 in the game<br \/>\n      &#8211; STRENGTH;2<br \/>\n    min-health: 5.0 # Players who do not have this number of hearts cannot enter<br \/>\n    max-health: 20.0 # Players who have this number of hearts or more cannot enter<br \/>\n    min-level: 5 # Players who do not have this amount of exp level cannot enter<br \/>\n    max-level: 100 # Players who have this amount of exp level or more cannot enter<br \/>\n    deny-message: &#8220;&#038;cYou can&#8217;t enter this area!&#8221; # Players who are unable to enter the zone will receive this message in chat when trying to enter<br \/>\n    zone-teleport-back-command: &#8220;spawn %player%&#8221; # The command that will be executed when the player enters the zone e.g. through teleportation, to call the player&#8217;s nickname, just type %player%<br \/>\n    entry-deny-title: &#8220;&#038;cEntrance prohibited &#038;4\u2716&#8221; # Title that will appear on the screen when a player tries to enter the zone without meeting the requirements<br \/>\n    entry-deny-subtitle: &#8220;%reason%&#8221; # SubTitle that will appear on the screen when a player tries to enter the zone without meeting the requirements<br \/>\n    entry-deny-actionbar: &#8220;&#038;eGet away from the zone!&#8221; # ActionBar that will appear on the screen when a player tries to enter the zone without meeting the requirements<br \/>\n    entry-deny-bossbar: &#8220;&#038;4Entrance to the zone blocked!&#8221; # BossBar that will appear on the screen when a player tries to enter the zone without meeting the requirements<br \/>\n    entry-deny-sound: ENTITY.VILLAGER.NO # Sound that will play on the screen when a player tries to enter the zone without meeting the requirements<\/p>\n","protected":false},"excerpt":{"rendered":"<p>DuckyZones is a simple Minecraft plugin that lets you define custom zones for events, protection, or gameplay features using region selection tools.<\/p>\n","protected":false},"featured_media":59505,"template":"","meta":{"_minecraft_slug":"duckyzones","_minecraft_project_id":"6kd92Ddn","_minecraft_author":"Barpad","_minecraft_license":"GPL-3.0-only","_minecraft_downloads":121,"_minecraft_follows":7,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"duckyzones.zip","_minecraft_size_bytes":96506,"_minecraft_version_count":2,"_minecraft_updated_at":"2026-05-15T19:11:43.567297Z","_minecraft_date_created":"2025-05-08T23:51:18.838204Z","_minecraft_date_modified":"2025-05-03T11:08:16.632059Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/duckyzones","_minecraft_icon_attachment_id":59505,"_minecraft_imported_at":"2026-06-03T06:16:30+00:00","_minecraft_import_hash":"76b6b18912e0b5aa40a9711935841705","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[124,89,126,127,128,129,92],"mod_loader":[130,132,133,134],"minecraft_version":[48,49,50,51,52,53,54,55,56,57,58,59,36,60,93,94,101,102,62,37,40,41,73,74,38,78,79,80,81,82,83,167,163],"class_list":["post-59504","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-bukkit","mod_category-game-mechanics","mod_category-management","mod_category-paper","mod_category-purpur","mod_category-spigot","mod_category-utility","mod_loader-bukkit","mod_loader-paper","mod_loader-purpur","mod_loader-spigot","minecraft_version-1-16-5","minecraft_version-1-17","minecraft_version-1-17-1","minecraft_version-1-18","minecraft_version-1-18-1","minecraft_version-1-18-2","minecraft_version-1-19","minecraft_version-1-19-1","minecraft_version-1-19-2","minecraft_version-1-19-3","minecraft_version-1-19-4","minecraft_version-1-20","minecraft_version-1-20-1","minecraft_version-1-20-2","minecraft_version-1-20-3","minecraft_version-1-20-4","minecraft_version-1-20-5","minecraft_version-1-20-6","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","minecraft_version-26-1","minecraft_version-26-1-1","minecraft_version-26-1-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>DuckyZones - 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\/duckyzones\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"DuckyZones - Minecraft\" \/>\n<meta property=\"og:description\" content=\"DuckyZones is a simple Minecraft plugin that lets you define custom zones for events, protection, or gameplay features using region selection tools.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/duckyzones\/\" \/>\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\\\/duckyzones\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/duckyzones\\\/\",\"name\":\"DuckyZones - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/duckyzones\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/duckyzones\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/duckyzones-icon-9b03cff4aa47f34c3f16ef3493c6226c991d1358_96.webp\",\"datePublished\":\"2026-06-03T06:16:29+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/duckyzones\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/duckyzones\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/duckyzones\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/duckyzones-icon-9b03cff4aa47f34c3f16ef3493c6226c991d1358_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/duckyzones-icon-9b03cff4aa47f34c3f16ef3493c6226c991d1358_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/duckyzones\\\/#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\":\"DuckyZones\"}]},{\"@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":"DuckyZones - 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\/duckyzones\/","og_locale":"en_US","og_type":"article","og_title":"DuckyZones - Minecraft","og_description":"DuckyZones is a simple Minecraft plugin that lets you define custom zones for events, protection, or gameplay features using region selection tools.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/duckyzones\/","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\/duckyzones\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/duckyzones\/","name":"DuckyZones - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/duckyzones\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/duckyzones\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/duckyzones-icon-9b03cff4aa47f34c3f16ef3493c6226c991d1358_96.webp","datePublished":"2026-06-03T06:16:29+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/duckyzones\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/duckyzones\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/duckyzones\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/duckyzones-icon-9b03cff4aa47f34c3f16ef3493c6226c991d1358_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/duckyzones-icon-9b03cff4aa47f34c3f16ef3493c6226c991d1358_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/duckyzones\/#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":"DuckyZones"}]},{"@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\/59504","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\/59505"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=59504"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=59504"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=59504"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=59504"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}