{"id":89911,"date":"2026-06-05T06:14:00","date_gmt":"2026-06-05T03:14:00","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/keep-it-personal\/"},"modified":"2026-06-05T06:14:00","modified_gmt":"2026-06-05T03:14:00","slug":"keep-it-personal","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/keep-it-personal\/","title":{"rendered":"Keep It Personal"},"content":{"rendered":"<p># Description<\/p>\n<p>Minecraft&#8217;s `keepInventory` game rule provides an important feature for players, but it unfortunately fails to account for mixed preferences in servers. Keep It Personal is a Fabric mod which seeks to remedy this by providing commands to individually customize what players drop on death. With these commands, players can:<br \/>\n* Choose what they drop on death without affecting others<br \/>\n* Customize what parts of their inventory are dropped<\/p>\n<p>Keep It Personal is designed to be lightweight and compatible; it&#8217;s entirely server-side and is fully compatible with vanilla clients.<\/p>\n<p># Installation<\/p>\n<p>To install this mod, simply add the JAR to the `mods` directory in the root directory of the server.<\/p>\n<p># Usage<\/p>\n<p>This mod uses a single command, `\/kip`, along with multiple subcommands as outlined below.<\/p>\n<p>## Death Preferences<\/p>\n<p>The following table contains the options a player can choose to keep on death.<\/p>\n<p>|     Name     | 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;|<br \/>\n|   `armor`    | The player&#8217;s equipped helmet, breastplate, leggings, and boots             |<br \/>\n|  `offhand`   | The item held in the player&#8217;s off-hand                                     |<br \/>\n|   `hotbar`   | Items in the player&#8217;s hotbar                                               |<br \/>\n| `inventory`  | Items in the player&#8217;s main inventory, excluding the options above          |<br \/>\n|   `cursed`   | Items in the player&#8217;s inventory that are enchanted with Curse of Vanishing |<br \/>\n| `experience` | The player&#8217;s experience                                                    |<\/p>\n<p>## Subcommands<\/p>\n<p>### View All Preferences<\/p>\n<p>To view a list of your current preferences, run `\/kip`.<\/p>\n<p>### View Individual Preference<\/p>\n<p>To view whether you have selected a specific preference, run `\/kip <preference>`.<\/p>\n<p>### Keep Everything on Death<\/p>\n<p>To keep everything in your inventory on death, run `\/kip everything`.<\/p>\n<p>### Clear All Preferences<\/p>\n<p>To clear your preferences and drop everything on death, run `\/kip nothing`.<\/p>\n<p>### Set a Specific Preference<\/p>\n<p>To set a specific preference, run `\/kip <preference> <true | false>`, where `true` indicates that you wish to keep the preferred items on death, and `false` indicates you wish to drop them.<\/p>\n<p># Configuration<\/p>\n<p>Keep It Personal can be configured in the `config\/keep_it_personal.toml` file. If you are unfamiliar with TOML, it is highly recommended that you learn the specification for ease of configuration.<\/p>\n<p>## Disable Specific Preferences<\/p>\n<p>If you want to disable a specific set of preferences from being used by anyone, you can use the `preferences.disabled` property. For example, the following<br \/>\ndisables every preference but `experience`.<\/p>\n<p>&#8220;`toml<br \/>\n[preferences]<br \/>\ndisabled = [&#8216;armor&#8217;, &#8216;offhand&#8217;, &#8216;hotbar&#8217;, &#8216;inventory&#8217;, &#8216;cursed&#8217;]<br \/>\n&#8220;`<\/p>\n<p>### Defaults<\/p>\n<p>By default, no preferences are disabled.<\/p>\n<p>## Enable Specific Preferences<\/p>\n<p>If you want a specific set of preferences to _always_ be enabled, you can similarly use the `preferences.enabled` property. For example, the following forces `armor` and `offhand` to be enabled.<\/p>\n<p>&#8220;`toml<br \/>\n[preferences]<br \/>\nenabled = [&#8216;armor&#8217;, &#8216;offhand&#8217;]<br \/>\n&#8220;`<\/p>\n<p>### Defaults<\/p>\n<p>By default, no preferences are enabled.<\/p>\n<p># Permissions<\/p>\n<p>This mod optionally supports fabric-permissions-api for command permissions. Each command can be controlled with a specific permission. The following table contains the full list of permissions.<\/p>\n<p>|               Permission                | 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;|<br \/>\n|       `keep_it_personal.kip`        | View all the preferences they have selected                 |<br \/>\n| `keep_it_personal.kip.<preference>` | View and update a specific preference                       |<br \/>\n|  `keep_it_personal.kip.everything`  | Add every available preference to selected preferences      |<br \/>\n|   `keep_it_personal.kip.nothing`    | Remove every available preference from selected preferences |<\/p>\n<p>## Permission Configuration Properties<\/p>\n<p>For servers which do not use fabric-permissions-api or also use OP permission levels, you may specify a default permission level for these commands. This is set as `permissions.permissionLevel` in the configuration file.<\/p>\n<p>The permission level can be either a numeric or text value, with text being the preferred option.<\/p>\n<p>|     Name     |  Text Value   | Numeric Value |<br \/>\n|:&#8212;&#8212;&#8212;&#8212;:|:&#8212;&#8212;&#8212;&#8212;-:|:&#8212;&#8212;&#8212;&#8212;-:|<br \/>\n|     All      |     `all`     |       0       |<br \/>\n|  Moderators  | `moderators`  |       1       |<br \/>\n| Gamemasters  | `gamemasters` |       2       |<br \/>\n|    Admins    |   `admins`    |       3       |<br \/>\n|    Owners    |   `owners`    |       4       |<\/p>\n<p>For example, to let players with the `moderators` permission level or above be able to use this command, you would specify the following in `keep_it_personal.toml`.<\/p>\n<p>&#8220;`toml<br \/>\n[permissions]<br \/>\npermissionLevel = &#8216;moderators&#8217;<br \/>\n&#8220;`<\/p>\n<p>By default, the permission level is `all`. Note that the permission level overrides permissions set in the fabric-permissions-api.<\/p>\n<p>### Defaults<\/p>\n<p>The default permission level is 0 which is given to every player. If you wish to control permissions with a permission<br \/>\nmanager, you should update the permission level accordingly.<\/p>\n<p># External Compatibility<\/p>\n<p>Currently, support for other mods which extend the player inventory is unknown but likely unsupported. Support for Trinkets is currently in progress, however, and other mods may be supported in the future.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This is a Fabric server mod which enables customizable keep-inventory rules on a per-player basis.<\/p>\n","protected":false},"featured_media":89912,"template":"","meta":{"_minecraft_slug":"keep-it-personal","_minecraft_project_id":"7wfhydEF","_minecraft_author":"funkyFangs","_minecraft_license":"CC-BY-SA-4.0","_minecraft_downloads":2076,"_minecraft_follows":19,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"keep-it-personal.zip","_minecraft_size_bytes":44032681,"_minecraft_version_count":24,"_minecraft_updated_at":"2026-05-16T00:23:17.849189Z","_minecraft_date_created":"2025-03-17T04:31:38.958407Z","_minecraft_date_modified":"2026-04-23T00:17:39.461118Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/keep-it-personal","_minecraft_icon_attachment_id":89912,"_minecraft_imported_at":"2026-06-05T03:14:01+00:00","_minecraft_import_hash":"4c83d3e5fa1830aa098c03d6d1cba984","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[97,89,126,92],"mod_loader":[99],"minecraft_version":[40,41,38,78,79,80,81,82,83,167,163],"class_list":["post-89911","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-fabric","mod_category-game-mechanics","mod_category-management","mod_category-utility","mod_loader-fabric","minecraft_version-1-21-10","minecraft_version-1-21-11","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 It Personal - 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-it-personal\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Keep It Personal - Minecraft\" \/>\n<meta property=\"og:description\" content=\"This is a Fabric server mod which enables customizable keep-inventory rules on a per-player basis.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/keep-it-personal\/\" \/>\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-it-personal\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/keep-it-personal\\\/\",\"name\":\"Keep It Personal - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/keep-it-personal\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/keep-it-personal\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/keep-it-personal-icon-293a23336fa69ef4570b21d196cae6d7fd5e865f_96.webp\",\"datePublished\":\"2026-06-05T03:14:00+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/keep-it-personal\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/keep-it-personal\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/keep-it-personal\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/keep-it-personal-icon-293a23336fa69ef4570b21d196cae6d7fd5e865f_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/keep-it-personal-icon-293a23336fa69ef4570b21d196cae6d7fd5e865f_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/keep-it-personal\\\/#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 It Personal\"}]},{\"@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 It Personal - 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-it-personal\/","og_locale":"en_US","og_type":"article","og_title":"Keep It Personal - Minecraft","og_description":"This is a Fabric server mod which enables customizable keep-inventory rules on a per-player basis.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/keep-it-personal\/","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-it-personal\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/keep-it-personal\/","name":"Keep It Personal - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/keep-it-personal\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/keep-it-personal\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/keep-it-personal-icon-293a23336fa69ef4570b21d196cae6d7fd5e865f_96.webp","datePublished":"2026-06-05T03:14:00+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/keep-it-personal\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/keep-it-personal\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/keep-it-personal\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/keep-it-personal-icon-293a23336fa69ef4570b21d196cae6d7fd5e865f_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/keep-it-personal-icon-293a23336fa69ef4570b21d196cae6d7fd5e865f_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/keep-it-personal\/#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 It Personal"}]},{"@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\/89911","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\/89912"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=89911"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=89911"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=89911"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=89911"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}