{"id":89905,"date":"2026-06-05T06:13:43","date_gmt":"2026-06-05T03:13:43","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/keep-inventory-plus\/"},"modified":"2026-06-05T06:13:43","modified_gmt":"2026-06-05T03:13:43","slug":"keep-inventory-plus","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/keep-inventory-plus\/","title":{"rendered":"Keep Inventory Plus"},"content":{"rendered":"<p># KeepInvPlus<\/p>\n<p>A highly configurable death penalty plugin for Paper servers that adds meaningful<br \/>\nconsequences on top of the `keepInventory` gamerule \u2014 without taking everything away.<\/p>\n<p>## Overview<br \/>\nVanilla `keepInventory` is all-or-nothing. KeepInvPlus lets server admins define<br \/>\nnuanced death penalties across three attributes: **XP levels**, **hunger**, and **items** \u2014<br \/>\nall configurable live via commands with no server restart required.<\/p>\n<p>Every attribute shares the same powerful two-tier logic:<\/p>\n<p>**Tier 1 \u2014 Conditions:** All active conditions must pass for the default outcome to apply.<br \/>\n**Tier 2 \u2014 Exceptions:** If any condition fails, exceptions are checked in the order they<br \/>\nwere added. The last matching exception wins. If no exception matches, the penalty applies.<br \/>\nIf all conditions pass, exceptions are skipped entirely.<\/p>\n<p>&#8212;<\/p>\n<p>## Features<\/p>\n<p>### \u2694\ufe0f XP Penalties<br \/>\nStack multiple penalties applied in the order they were added:<br \/>\n&#8211; `SUBTRACT` \u2014 lose a configurable number of levels (negative values *grant* levels)<br \/>\n&#8211; `HALVE` \u2014 levels cut in half<br \/>\n&#8211; `REMOVE_ALL` \u2014 lose all levels<br \/>\n&#8211; `PERCENTAGE` \u2014 lose a configurable percentage of current levels<br \/>\n  &#8211; Negative percentage grants levels on death<br \/>\n  &#8211; Values over 100% can push levels into the negative<br \/>\n  &#8211; Optional `zero_cap` prevents levels from going below 0<\/p>\n<p>### \ud83c\udf56 Hunger System<br \/>\nRather than punishing death, KeepInvPlus **rewards good play**. Players respawn with<br \/>\ntheir pre-death hunger unless they meet all configured replenishment conditions:<br \/>\n&#8211; `TIME_ALIVE` \u2014 must have survived a minimum number of seconds<br \/>\n&#8211; `BAR_CONSUMED` \u2014 must have consumed at least one hunger bar before dying<\/p>\n<p>### \ud83c\udf92 Item Penalties<br \/>\n&#8211; `GAMBLE` \u2014 each non-gear item has a configurable chance of being lost on death<br \/>\n&#8211; `LOSE_NON_GEAR` \u2014 lose all items except tools and armor<\/p>\n<p>### \ud83d\udd00 Exceptions (XP, Hunger &#038; Items)<br \/>\nAll three attributes support a shared exception system as a fallback when conditions fail:<\/p>\n<p>**XP &#038; Items exceptions** (`APPLY` \/ `SKIP`):<br \/>\n&#8211; `PVP_DEATH` \u2014 trigger when killed by another player<br \/>\n&#8211; `SUICIDE` \u2014 trigger when the player kills themselves<\/p>\n<p>**Hunger exceptions** (`REPLENISH` \/ `DENY`):<br \/>\n&#8211; `PVP_DEATH` \u2014 being killed by another player can force full replenishment<br \/>\n&#8211; `SUICIDE` \u2014 self-kills can force hunger denial regardless of other results<\/p>\n<p>Exceptions are evaluated in the order they were added \u2014 **last matching exception wins**,<br \/>\ngiving server admins fine-grained control over edge cases.<\/p>\n<p>&#8212;<\/p>\n<p>## Example Configurations<\/p>\n<p>**Hardcore economy server:** Subtract 10 levels on death, skip penalty if killed by a player.<br \/>\n&#8220;`<br \/>\n\/kip set xp enabled true<br \/>\n\/kip set xp type add SUBTRACT<br \/>\n\/kip set xp subtract_amount 10<br \/>\n\/kip set xp exception add PVP_DEATH SKIP<br \/>\n&#8220;`<\/p>\n<p>**PvP event server:** Grant levels on death to incentivise fighting.<br \/>\n&#8220;`<br \/>\n\/kip set xp enabled true<br \/>\n\/kip set xp type add SUBTRACT<br \/>\n\/kip set xp subtract_amount -5<br \/>\n&#8220;`<\/p>\n<p>**Survival server:** Replenish hunger only if you survived long enough and ate well.<br \/>\n&#8220;`<br \/>\n\/kip set hunger enabled true<br \/>\n\/kip set hunger condition add TIME_ALIVE<br \/>\n\/kip set hunger condition add BAR_CONSUMED<br \/>\n\/kip set hunger min_seconds_alive 120<br \/>\n\/kip set hunger exception add PVP_DEATH REPLENISH<br \/>\n\/kip set hunger exception add SUICIDE DENY<br \/>\n&#8220;`<\/p>\n<p>&#8212;<\/p>\n<p>## Commands<br \/>\n&#8220;`<br \/>\n\/kip set xp enabled <true|false>\n\/kip set xp type add <SUBTRACT|HALVE|REMOVE_ALL|PERCENTAGE><br \/>\n\/kip set xp type remove <SUBTRACT|HALVE|REMOVE_ALL|PERCENTAGE><br \/>\n\/kip set xp subtract_amount <number><br \/>\n\/kip set xp percentage <number><br \/>\n\/kip set xp zero_cap <true|false>\n\/kip set xp exception add <PVP_DEATH|SUICIDE> <APPLY|SKIP><br \/>\n\/kip set xp exception remove <PVP_DEATH|SUICIDE><\/p>\n<p>\/kip set hunger enabled <true|false>\n\/kip set hunger condition add <TIME_ALIVE|BAR_CONSUMED><br \/>\n\/kip set hunger condition remove <TIME_ALIVE|BAR_CONSUMED><br \/>\n\/kip set hunger min_seconds_alive <seconds><br \/>\n\/kip set hunger exception add <PVP_DEATH|SUICIDE> <REPLENISH|DENY><br \/>\n\/kip set hunger exception remove <PVP_DEATH|SUICIDE><\/p>\n<p>\/kip set items enabled <true|false>\n\/kip set items type <NONE|GAMBLE|LOSE_NON_GEAR><br \/>\n\/kip set items gamble_chance <0.0-1.0><br \/>\n\/kip set items exception add <PVP_DEATH|SUICIDE> <APPLY|SKIP><br \/>\n\/kip set items exception remove <PVP_DEATH|SUICIDE><\/p>\n<p>\/kip get <xp|hunger|items|all><br \/>\n\/kip reload<br \/>\n&#8220;`<\/p>\n<p>## Permissions<br \/>\n| Permission | Description | Default |<br \/>\n|&#8212;|&#8212;|&#8212;|<br \/>\n| `keepinvplus.admin` | Access to all \/kip commands | OP |<\/p>\n<p>## Requirements<br \/>\n&#8211; Paper 1.21+<br \/>\n&#8211; Java 21+<br \/>\n&#8211; `keepInventory` gamerule must be enabled (`\/gamerule keepInventory true`)<\/p>\n<p>## Additional remarks<br \/>\n&#8211; Plugin tested on Paper server 1.21.11<br \/>\n&#8211; COULD be compatible with Spigot\/Bukkit\/Other platforms mentioned but try at your own risk<br \/>\n&#8211; Have fun \ud83d\ude42<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Nerfed keep inventory in minecraft. Modifications to how experience, hunger and items are handled upon death<\/p>\n","protected":false},"featured_media":89906,"template":"","meta":{"_minecraft_slug":"keep-inventory-plus","_minecraft_project_id":"chMMWrGM","_minecraft_author":"gyasca","_minecraft_license":"LicenseRef-All-Rights-Reserved","_minecraft_downloads":212,"_minecraft_follows":2,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"keep-inventory-plus.zip","_minecraft_size_bytes":126511,"_minecraft_version_count":4,"_minecraft_updated_at":"2026-05-16T12:38:29.282993Z","_minecraft_date_created":"2026-03-04T23:05:44.758142Z","_minecraft_date_modified":"2026-04-09T15:18:53.022199Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/keep-inventory-plus","_minecraft_icon_attachment_id":89906,"_minecraft_imported_at":"2026-06-05T03:13:44+00:00","_minecraft_import_hash":"247e5b75acb73a8bc60b66b076e0aa5e","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[124,125,127,128,129],"mod_loader":[130,131,132,133,134],"minecraft_version":[62,37,40,41,73,74,38,78,79,80,81,82,83,167,163],"class_list":["post-89905","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-bukkit","mod_category-folia","mod_category-paper","mod_category-purpur","mod_category-spigot","mod_loader-bukkit","mod_loader-folia","mod_loader-paper","mod_loader-purpur","mod_loader-spigot","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>Keep Inventory Plus - 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\/keep-inventory-plus\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Keep Inventory Plus - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Nerfed keep inventory in minecraft. Modifications to how experience, hunger and items are handled upon death\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/keep-inventory-plus\/\" \/>\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\\\/keep-inventory-plus\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/keep-inventory-plus\\\/\",\"name\":\"Keep Inventory Plus - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/keep-inventory-plus\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/keep-inventory-plus\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/keep-inventory-plus-icon-bd523675bfd7042b4d3bcf0e8bf7ff48f5a05db6_96.webp\",\"datePublished\":\"2026-06-05T03:13:43+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/keep-inventory-plus\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/keep-inventory-plus\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/keep-inventory-plus\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/keep-inventory-plus-icon-bd523675bfd7042b4d3bcf0e8bf7ff48f5a05db6_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/keep-inventory-plus-icon-bd523675bfd7042b4d3bcf0e8bf7ff48f5a05db6_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/keep-inventory-plus\\\/#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\":\"Keep Inventory Plus\"}]},{\"@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":"Keep Inventory Plus - 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\/keep-inventory-plus\/","og_locale":"en_US","og_type":"article","og_title":"Keep Inventory Plus - Minecraft","og_description":"Nerfed keep inventory in minecraft. Modifications to how experience, hunger and items are handled upon death","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/keep-inventory-plus\/","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\/keep-inventory-plus\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/keep-inventory-plus\/","name":"Keep Inventory Plus - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/keep-inventory-plus\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/keep-inventory-plus\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/keep-inventory-plus-icon-bd523675bfd7042b4d3bcf0e8bf7ff48f5a05db6_96.webp","datePublished":"2026-06-05T03:13:43+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/keep-inventory-plus\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/keep-inventory-plus\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/keep-inventory-plus\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/keep-inventory-plus-icon-bd523675bfd7042b4d3bcf0e8bf7ff48f5a05db6_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/keep-inventory-plus-icon-bd523675bfd7042b4d3bcf0e8bf7ff48f5a05db6_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/keep-inventory-plus\/#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":"Keep Inventory Plus"}]},{"@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\/89905","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\/89906"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=89905"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=89905"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=89905"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=89905"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}