{"id":129642,"date":"2026-06-07T18:13:21","date_gmt":"2026-06-07T15:13:21","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/reairdrop-supply\/"},"modified":"2026-06-07T18:13:21","modified_gmt":"2026-06-07T15:13:21","slug":"reairdrop-supply","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/reairdrop-supply\/","title":{"rendered":"ReAirdrop Supply"},"content":{"rendered":"<p>**Airdrop Supply mod is now updated for Minecraft 1.20.1!**<br \/>\n# ReAirdrop Supply<br \/>\nThis is an airdrop mod.<br \/>\nThis mod needs to be used with a data pack to fully function and is designed for mod pack creators.<\/p>\n<p>## Compat list<br \/>\nXaero&#8217;s minimap<\/p>\n<p>![point](https:\/\/cdn.modrinth.com\/data\/cached_images\/e85bd87b59944c1b979a3478f9e72cec5f185ec1.png)<br \/>\n![airdrop](https:\/\/cdn.modrinth.com\/data\/cached_images\/a35204a106530e6f6d085b9f9018b46c28ae8253.png)<br \/>\n### Configuration File<br \/>\nAll configuration options are as follows (all are integers):<br \/>\n* **AIRDROP_SPREAD_RANGE** Maximum spread distance of airdrop boxes, not less than 10.<br \/>\n* **AIRDROP_SPAWN_INTERVAL** How often airdrop boxes appear, calculated in ticks, not less than 100.<br \/>\n* **AIRDROP_DESPAWN_TIME** How long before an airdrop box disappears, calculated in ticks, not less than 100.<br \/>\n* **MEDIC_AIRDROP_WEIGHT** Medic airdrop box weight, not less than 0.<br \/>\n* **AMMO_AIRDROP_WEIGHT** Ammo airdrop box weight, not less than 0.<br \/>\n* **NO_AIRDROP_WEIGHT** No airdrop box weight, not less than 0.<br \/>\n> Please note, the sum of `MEDIC_AIRDROP_WEIGHT` and `AMMO_AIRDROP_WEIGHT` must be greater than 1, otherwise it will cause a crash.<br \/>\n* **BASIC_BASE_WEIGHT** Basic airdrop box base weight, not less than 0.<br \/>\n* **BASIC_MULTIPLE_WEIGHT** Basic airdrop box multiplier weight, not less than 0.<br \/>\n* **MEDIUM_BASE_WEIGHT** Medium airdrop box base weight, not less than -10000.<br \/>\n* **MEDIUM_MULTIPLE_WEIGHT** Medium airdrop box multiplier weight, not less than -10000.<br \/>\n* **ADVANCED_BASE_WEIGHT** Advanced airdrop box base weight, not less than -10000.<br \/>\n* **ADVANCED_MULTIPLE_WEIGHT** Advanced airdrop box multiplier weight, not less than -10000.<br \/>\n> The weight calculation method for different levels is **Weight = BASE_WEIGHT + Day * MULTIPLE_WEIGHT**<br \/>\n><br \/>\n> A weight less than 1 means that level of airdrop box will not appear.<\/p>\n<p>### Data Pack<br \/>\nThis mod&#8217;s data pack needs to include six loot tables, the creation and use of data packs are not detailed here.<\/p>\n<p>`airdrop_supply\/medic_basic` corresponds to the loot table for basic medic airdrop boxes.<br \/>\n`airdrop_supply\/medic_medium` corresponds to the loot table for medium medic airdrop boxes.<br \/>\n`airdrop_supply\/medic_advanced` corresponds to the loot table for advanced medic airdrop boxes.<br \/>\n`airdrop_supply\/ammo_basic` corresponds to the loot table for basic ammo airdrop boxes.<br \/>\n`airdrop_supply\/ammo_medium` corresponds to the loot table for medium ammo airdrop boxes.<br \/>\n`airdrop_supply\/ammo_advanced` corresponds to the loot table for advanced ammo airdrop boxes.<\/p>\n<p>> Please limit the type of loot table to `chest`.<\/p>\n<p>A simple example of `airdrop_supply\/medic_basic`, which provides up to 4 apples.<br \/>\n&#8220;`json<br \/>\n{<br \/>\n  &#8220;type&#8221;: &#8220;minecraft:chest&#8221;,<br \/>\n  &#8220;pools&#8221;: [<br \/>\n    {<br \/>\n      &#8220;rolls&#8221;: {<br \/>\n        &#8220;type&#8221;: &#8220;minecraft:uniform&#8221;,<br \/>\n        &#8220;min&#8221;: 1,<br \/>\n        &#8220;max&#8221;: 4<br \/>\n      },<br \/>\n      &#8220;bonus_rolls&#8221;: 0,<br \/>\n      &#8220;entries&#8221;: [<br \/>\n        {<br \/>\n          &#8220;type&#8221;: &#8220;minecraft:item&#8221;,<br \/>\n          &#8220;name&#8221;: &#8220;minecraft:apple&#8221;<br \/>\n        }<br \/>\n      ]<br \/>\n    }<br \/>\n  ]<br \/>\n}<br \/>\n&#8220;`<br \/>\nA simple example of airdrop_supply\/ammo_basic, which provides 2 iron swords and may provide a diamond sword.<br \/>\n&#8220;`json<br \/>\n{<br \/>\n  &#8220;type&#8221;: &#8220;minecraft:chest&#8221;,<br \/>\n  &#8220;pools&#8221;: [<br \/>\n    {<br \/>\n      &#8220;rolls&#8221;: {<br \/>\n        &#8220;type&#8221;: &#8220;minecraft:uniform&#8221;,<br \/>\n        &#8220;min&#8221;: 0,<br \/>\n        &#8220;max&#8221;: 1<br \/>\n      },<br \/>\n      &#8220;bonus_rolls&#8221;: 0,<br \/>\n      &#8220;entries&#8221;: [<br \/>\n        {<br \/>\n          &#8220;type&#8221;: &#8220;minecraft:item&#8221;,<br \/>\n          &#8220;name&#8221;: &#8220;minecraft:diamond_sword&#8221;<br \/>\n        }<br \/>\n      ]<br \/>\n    },<br \/>\n    {<br \/>\n      &#8220;rolls&#8221;: 2,<br \/>\n      &#8220;entries&#8221;: [<br \/>\n        {<br \/>\n          &#8220;type&#8221;: &#8220;minecraft:item&#8221;,<br \/>\n          &#8220;name&#8221;: &#8220;minecraft:iron_sword&#8221;<br \/>\n        }<br \/>\n      ]<br \/>\n    }<br \/>\n  ]<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>### Custom Notifications<br \/>\nCustom notifications for this mod can be modified through custom language files. The standard language file is as follows, with notification as the prefix for notifications.<br \/>\n&#8220;`json<br \/>\n{<br \/>\n  &#8220;container.airdrop_supply.airdrop_supply&#8221;: &#8220;Airdrop Supply Crate&#8221;,<br \/>\n  &#8220;notification.airdrop_supply.airdrop_arrive&#8221;: &#8220;%4$s&#8217;s airdrop supply crate has arrived at [%1$s]-[%2$s]-[%3$s].&#8221;,<br \/>\n  &#8220;notification.airdrop_supply.airdrop_crash&#8221;: &#8220;%1$s&#8217;s airdrop supply crate has crashed.&#8221;,<br \/>\n  &#8220;notification.airdrop_supply.airdrop_invalidate&#8221;: &#8220;%4$s&#8217;s airdrop supply crate at [%1$s]-[%2$s]-[%3$s] disappeared.&#8221;,<br \/>\n  &#8220;notification.airdrop_supply.airdrop_summoned&#8221;: &#8220;%1$s has called an airdrop supply crate. Please be patient.&#8221;,<br \/>\n  &#8220;notification.airdrop_supply.airdrop_summoned_invalid_dimension&#8221;: &#8220;%1$s tries to summon an airdrop supply crate in invalid dimension.&#8221;,<br \/>\n  &#8220;notification.airdrop_supply.airdrop_location_set&#8221;: &#8220;%3$s has fixed airdrop location at [%1$s]-[%2$s].&#8221;,<br \/>\n  &#8220;notification.airdrop_supply.airdrop_location_set_invalid_dimension&#8221;: &#8220;%1$s tries to set airdrop location in invalid dimension.&#8221;,<br \/>\n  &#8220;notification.airdrop_supply.airdrop_location_unset&#8221;: &#8220;%1$s has canceled fixed airdrop location.&#8221;,<br \/>\n  &#8220;notification.airdrop_supply.airdrop_location_unset_invalid_dimension&#8221;: &#8220;Cannot cancel fixed airdrop location in this dimension.&#8221;,<br \/>\n  &#8220;item.airdrop_supply.airdrop_pager&#8221;: &#8220;Airdrop Pager&#8221;,<br \/>\n  &#8220;item.airdrop_supply.airdrop_location_fixer&#8221;: &#8220;Airdrop Location Fixer&#8221;,<br \/>\n  &#8220;item.airdrop_supply.airdrop_location_canceller&#8221;: &#8220;Airdrop Location Canceller&#8221;,<br \/>\n  &#8220;block.airdrop_supply.airdrop_supply&#8221;: &#8220;Airdrop Supply Crate&#8221;,<br \/>\n  &#8220;creativetab.airdrop_supply.airdrop_supply&#8221;: &#8220;Airdrop Supply&#8221;<br \/>\n}<br \/>\n&#8220;`<br \/>\n* airdrop_arrive: Notification for successful airdrop box arrival. Four parameters are the airdrop box&#8217;s x, y, z coordinates and player name.<br \/>\n* airdrop_crash: Notification for airdrop box failure due to no box being selected. The parameter is the player name.<br \/>\n* airdrop_invalidate: Notification for airdrop box expiration. Four parameters are the airdrop box&#8217;s x, y, z coordinates and player name.<br \/>\n* airdrop_summoned: Notification for successful airdrop box call. The parameter is the player name.<br \/>\n* airdrop_summoned_invalid_dimension: Notification for airdrop box call failure due to being in a non-overworld dimension. A manually called airdrop box will not randomly result in no box. The parameter is the player name.<br \/>\n* airdrop_location_set: Notification for successful airdrop box location setting. Three parameters are the airdrop box&#8217;s x, z coordinates and player name.<br \/>\n* airdrop_location_set_invalid_dimension: Notification for airdrop box location setting failure due to being in a non-overworld dimension. The parameter is the player name.<br \/>\n* airdrop_location_unset: Notification for successful airdrop box location unsetting. The parameter is the player name.<br \/>\n* airdrop_location_unset_invalid_dimension: Notification for airdrop box location unsetting failure due to being in a non-overworld dimension. No parameters.<\/p>\n<p>### Airdrop Summon Command<br \/>\nFormat: \/airdrop x y z airdrop_level airdrop_type<br \/>\n> Only valid in the overworld<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This is an airdrop mod.<\/p>\n","protected":false},"featured_media":129643,"template":"","meta":{"_minecraft_slug":"reairdrop-supply","_minecraft_project_id":"SelY1bDq","_minecraft_author":"KalebLangley","_minecraft_license":"LicenseRef-All-Rights-Reserved","_minecraft_downloads":2554,"_minecraft_follows":3,"_minecraft_client_side":"required","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"reairdrop-supply.zip","_minecraft_size_bytes":904754,"_minecraft_version_count":3,"_minecraft_updated_at":"2026-05-15T18:46:17.537243Z","_minecraft_date_created":"2024-08-10T20:56:00.960387Z","_minecraft_date_modified":"2026-05-11T04:13:51.304491Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/reairdrop-supply","_minecraft_icon_attachment_id":129643,"_minecraft_imported_at":"2026-06-07T15:13:22+00:00","_minecraft_import_hash":"532456fdc3fc755c1640dad75bdd2463","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[87,844,104,89,158],"mod_loader":[106,160],"minecraft_version":[36,37],"class_list":["post-129642","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-adventure","mod_category-economy","mod_category-forge","mod_category-game-mechanics","mod_category-neoforge","mod_loader-forge","mod_loader-neoforge","minecraft_version-1-20-1","minecraft_version-1-21-1"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>ReAirdrop Supply - 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\/reairdrop-supply\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"ReAirdrop Supply - Minecraft\" \/>\n<meta property=\"og:description\" content=\"This is an airdrop mod.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/reairdrop-supply\/\" \/>\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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/reairdrop-supply\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/reairdrop-supply\\\/\",\"name\":\"ReAirdrop Supply - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/reairdrop-supply\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/reairdrop-supply\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/reairdrop-supply-icon-cba00558b9bfe77424b01f7ab65ae8a88e2a505e_96.webp\",\"datePublished\":\"2026-06-07T15:13:21+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/reairdrop-supply\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/reairdrop-supply\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/reairdrop-supply\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/reairdrop-supply-icon-cba00558b9bfe77424b01f7ab65ae8a88e2a505e_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/reairdrop-supply-icon-cba00558b9bfe77424b01f7ab65ae8a88e2a505e_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/reairdrop-supply\\\/#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\":\"ReAirdrop Supply\"}]},{\"@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":"ReAirdrop Supply - 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\/reairdrop-supply\/","og_locale":"en_US","og_type":"article","og_title":"ReAirdrop Supply - Minecraft","og_description":"This is an airdrop mod.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/reairdrop-supply\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/reairdrop-supply\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/reairdrop-supply\/","name":"ReAirdrop Supply - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/reairdrop-supply\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/reairdrop-supply\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/reairdrop-supply-icon-cba00558b9bfe77424b01f7ab65ae8a88e2a505e_96.webp","datePublished":"2026-06-07T15:13:21+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/reairdrop-supply\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/reairdrop-supply\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/reairdrop-supply\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/reairdrop-supply-icon-cba00558b9bfe77424b01f7ab65ae8a88e2a505e_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/reairdrop-supply-icon-cba00558b9bfe77424b01f7ab65ae8a88e2a505e_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/reairdrop-supply\/#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":"ReAirdrop Supply"}]},{"@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\/129642","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\/129643"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=129642"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=129642"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=129642"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=129642"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}