{"id":109295,"date":"2026-06-06T13:14:39","date_gmt":"2026-06-06T10:14:39","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/necrify\/"},"modified":"2026-06-06T13:14:39","modified_gmt":"2026-06-06T10:14:39","slug":"necrify","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/necrify\/","title":{"rendered":"Necrify"},"content":{"rendered":"<p># Necrify<\/p>\n<p>Necrify is a punishment plugin designed for currently<br \/>\nVelocity (and<br \/>\nmaybe Paper\/BungeeCord in the future).<\/p>\n<p>## Table of contents<\/p>\n<p>1. [Plugin installation](#plugin-installation)<br \/>\n2. [Mutes (only affects Velocity)](#mutes)<br \/>\n3. [Duration](#duration)<br \/>\n4. [Commands](#commands)<br \/>\n5. [API](#punishment-api)<br \/>\n    * [installation](#installation)<br \/>\n    * [usage](#usage)<\/p>\n<p>## Plugin installation<\/p>\n<p>1. Download the latest version of the plugin or download dev<br \/>\n   builds here (may be unstable or not working)<br \/>\n2. Put the downloaded file into the &#8220;`plugins&#8220;` folder of your server.<br \/>\n3. (Re-)Start the server.<\/p>\n<p>## Mutes<\/p>\n<p>With the 1.19.1, Minecraft&#8217;s chat system got<br \/>\nchanged (detailed explanation).<br \/>\nSince then, it is no longer possible to block chat messages in the ChatEvent of Velocity due to the signed chat<br \/>\nmessages.<br \/>\nThis is why the chat listener does not block any messages anymore which means mutes are effectively useless. A solution<br \/>\nto this problem is developing an extension plugin for the actual game servers where cancelling these messages is still<br \/>\npossible. Downloads for this paper plugin are found in<br \/>\nthe releases and also<br \/>\nas dev builds on Jenkins.<br \/>\nFor further information about 1.19.1, please refer to<br \/>\nthe official release notes<\/p>\n<p>## Commands<br \/>\nAll commands are registered with the prefix `\/necrify`. Moreover, it is possible to register top-level commands too by<br \/>\nsetting `allow-top-level-commands` to true (which is per default)<br \/>\n<b>legend:<\/b><\/p>\n<p>&#8211; <arg> means the argument is required<br \/>\n&#8211; [arg] means the argument is optional<br \/>\n&#8211; player as argument name means the a player name OR uuid is required<br \/>\n&#8211; reason means a reason that supports MiniMessage<br \/>\n&#8211; duration as argument name means a [duration](#duration)<\/p>\n<p>### Command overview<\/p>\n<p>&#8211; **\/ban <player> [reason]** bans a player permanently for the given or the default reason<br \/>\n&#8211; **\/mute <player> [reason]** mutes a player permanently for the given or the default reason<br \/>\n&#8211; **\/tempban <player> <duration> [reason]** bans a player for the given duration for the given or the default reason<br \/>\n&#8211; **\/tempmute <player> <duration> [reason]** mutes a player for the given duration for the given or the default reason<br \/>\n&#8211; **\/unban <player>** unbans the given player<br \/>\n&#8211; **\/unmute <player>** unmutes the given player<br \/>\n&#8211; **\/necrify user <player> <info|delete|whitelist>** shows either information about a player&#8217;s punishments and his whitelist status,<br \/>\n  deletes this user including all punishments or inverts his whitelist status (from whitelisted to blacklisted or vice versa)<br \/>\n&#8211; **\/necrify punishment <punishment id> <cancel|change|info|remove>** cancels\/removes, changes or shows information about the<br \/>\n  given punishment(must be a uuid)<\/p>\n<p>### Duration<\/p>\n<p>To be parsed by `PunishmentDuration#parse(String)`, a string must follow this scheme:<br \/>\n[0-9][s, m, h, d]<br \/>\ns &#8211; second(s)<br \/>\nm &#8211; minute(s)<br \/>\nh &#8211; hour(s)<br \/>\nd &#8211; day(s)<br \/>\nThese value can be composed, all of them can be omitted.<br \/>\nExample: <b>1d12h15m30s<\/b> means a duration of 1 day, 12 hours, 15 minutes and 30 seconds.<\/p>\n<p>## Punishment API<\/p>\n<p>### Installation<\/p>\n<p>Replace &#8220;`{version}&#8220;` with the current version, e.g. 1.2.3. The latest version can be found here.<br \/>\nNote that you only want to use the string after necrify-{platform}- and without the version build number.<\/p>\n<p>#### Gradle (kotlin)<\/p>\n<p>&#8220;`kotlin<br \/>\nrepositories {<br \/>\n   mavenCentral()<br \/>\n}<\/p>\n<p>depenencies {<br \/>\n   implementation(&#8220;de.jvstvshd.necrify:necrify-api:{version}&#8221;)<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>#### Gradle (groovy)<\/p>\n<p>&#8220;`groovy<br \/>\nrepositories {<br \/>\n    mavenCentral()<br \/>\n}<\/p>\n<p>dependencies {<br \/>\n   implementation &#8216;de.jvstvshd.necrify:necrify-api:{version}&#8217;<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>#### Maven<\/p>\n<p>&#8220;`xml<\/p>\n<p><dependencies><br \/>\n   <dependency><br \/>\n      <groupId>de.jvstvshd.necrify<\/groupId><br \/>\n      <artifactId>necrify-api<\/artifactId><br \/>\n      <version>{version}<\/version><br \/>\n   <\/dependency><br \/>\n<\/dependencies><br \/>\n&#8220;`<\/p>\n<p>You can also depend on the plugin modules or common module. In order to do so, replace the artifactId with the desired module name.<br \/>\nNote that code outside the API module is always subject to change and may not be stable. It is also not designed to allow<br \/>\naccess and modifications from outside the plugin itself and is often not documented.<\/p>\n<p>### Usage<\/p>\n<p>#### Obtaining an instance of the api<\/p>\n<p>If the [plugin](#plugin-installation) is used, you can obtain an instance of the api using the following snippet:<\/p>\n<p>&#8220;`java<br \/>\n    try {<br \/>\n        Necrify api = (Necrify) server.getPluginManager().getPlugin(&#8220;necrify&#8221;).orElseThrow().getInstance().orElseThrow();<br \/>\n    } catch(NoSuchElementException e) {<br \/>\n        logger.error(&#8220;Punishment API is not available&#8221;);<br \/>\n    }<br \/>\n&#8220;`<\/p>\n<p>#### Punishing a player<\/p>\n<p>All punishments are issued via the target user. For example, banning a player could be done this way:<\/p>\n<p>&#8220;`java<br \/>\n    \/\/Firstly, obtain the user instance<br \/>\n    NecrifyUser user = api.getUserManager().getUser(uuid).orElseThrow(() -> new NoSuchElementException(&#8220;User not found&#8221;));<br \/>\n    MiniMessage miniMessage = MiniMessage.miniMessage();<br \/>\n    \/\/temporary ban:<br \/>\n    Ban temporaryBan = user.ban(PunishmentDuration.parse(miniMessage.deserialize(&#8220;<red>You broke the server&#8217;s rules! Don&#8217;t cheat!&#8221;), PunishmentDuration.parse(&#8220;1d&#8221;))).join();\/\/1d equals 1 day, the duration is relative to the current time until the punishment is imposed.<br \/>\n    \/\/permanent ban:<br \/>\n    Ban permanentBan = user.banPermanent(miniMessage.deserialize(&#8220;<red>You broke the server&#8217;s rules again! You are not allowed to join someday again!&#8221;)).join();<br \/>\n    \/\/The ban instance you get via #join is the punishment that was issued. Note that using #join blocks the current<br \/>\n    \/\/Thread and since database operations take some time to complete, it is recommended to use #whenComplete or other.<br \/>\n    \/\/You can now use this instance to change or cancel the punishment:<br \/>\n    temporaryBan.cancel().whenComplete((punishment, throwable) -> {<br \/>\n        if(throwable != null) {<br \/>\n            logger.error(&#8220;An error occurred while cancelling the punishment&#8221;, throwable);<br \/>\n            return;<br \/>\n        }<br \/>\n        logger.info(&#8220;The punishment was successfully cancelled&#8221;);<br \/>\n    });<br \/>\n    \/\/#cancel should always return the same instance that you called the method on<br \/>\n    \/\/Event tough a permanent ban was issued for an indefinite time, you can still change the duration and the reason:<br \/>\n    permanentBan.change(PunishmentDuration.parse(&#8220;300d&#8221;), miniMessage.deseriaize(&#8220;<green>Okay, you may join again in 300 days!&#8221;)).whenComplete((punishment, throwable) -> {<br \/>\n        if(throwable != null) {<br \/>\n            logger.error(&#8220;An error occurred while changing the punishment&#8221;, throwable);<br \/>\n            return;<br \/>\n        }<br \/>\n        logger.info(&#8220;The punishment was successfully changed&#8221;);<br \/>\n    });<br \/>\n&#8220;`<br \/>\nMuting a player is similar, just replace &#8216;ban&#8217; with &#8216;mute&#8217;.<br \/>\nKicking a player can be done by calling `user.kick(Reason).join();` where it is safe to call #join since there is no<br \/>\ndatabase query done synchronously. This form of punishment cannot be changed nor cancelled as it only lasts a single moment.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Customizable plugin for velocity that allows the managment of various punishments<\/p>\n","protected":false},"featured_media":109296,"template":"","meta":{"_minecraft_slug":"necrify","_minecraft_project_id":"QVuZHDh5","_minecraft_author":"JvstvsHD","_minecraft_license":"GPL-3.0-only","_minecraft_downloads":179,"_minecraft_follows":2,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"necrify.zip","_minecraft_size_bytes":46049017,"_minecraft_version_count":12,"_minecraft_updated_at":"2026-05-16T13:00:16.601565Z","_minecraft_date_created":"2025-06-17T22:06:07.511992Z","_minecraft_date_modified":"2025-12-06T11:54:54.657690Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/necrify","_minecraft_icon_attachment_id":109296,"_minecraft_imported_at":"2026-06-06T10:14:40+00:00","_minecraft_import_hash":"002079dccb989208d16d75e65a04ad5d","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[126,127,985],"mod_loader":[132],"minecraft_version":[339,340,341,357,359,360,379,382,385,438,446,449,110,111,112,113,114,115,116,117,118,119,120,46,47,48,49,50,51,52,53,54,55,56,57,58,59,36,60,93,94,101,102,62,37,40,73,74,38,78,79,80,81,82,31,860,861,862,863,864],"class_list":["post-109295","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-management","mod_category-paper","mod_category-velocity","mod_loader-paper","minecraft_version-1-10","minecraft_version-1-10-1","minecraft_version-1-10-2","minecraft_version-1-11","minecraft_version-1-11-1","minecraft_version-1-11-2","minecraft_version-1-12","minecraft_version-1-12-1","minecraft_version-1-12-2","minecraft_version-1-13","minecraft_version-1-13-1","minecraft_version-1-13-2","minecraft_version-1-14","minecraft_version-1-14-1","minecraft_version-1-14-2","minecraft_version-1-14-3","minecraft_version-1-14-4","minecraft_version-1-15","minecraft_version-1-15-1","minecraft_version-1-15-2","minecraft_version-1-16","minecraft_version-1-16-1","minecraft_version-1-16-2","minecraft_version-1-16-3","minecraft_version-1-16-4","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-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-1-8-9","minecraft_version-1-9","minecraft_version-1-9-1","minecraft_version-1-9-2","minecraft_version-1-9-3","minecraft_version-1-9-4"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Necrify - 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\/necrify\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Necrify - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Customizable plugin for velocity that allows the managment of various punishments\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/necrify\/\" \/>\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\\\/necrify\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/necrify\\\/\",\"name\":\"Necrify - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/necrify\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/necrify\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/necrify-icon-0629fa06c8cba5155a6aae2e3267c61d31885688_96.webp\",\"datePublished\":\"2026-06-06T10:14:39+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/necrify\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/necrify\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/necrify\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/necrify-icon-0629fa06c8cba5155a6aae2e3267c61d31885688_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/necrify-icon-0629fa06c8cba5155a6aae2e3267c61d31885688_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/necrify\\\/#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\":\"Necrify\"}]},{\"@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":"Necrify - 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\/necrify\/","og_locale":"en_US","og_type":"article","og_title":"Necrify - Minecraft","og_description":"Customizable plugin for velocity that allows the managment of various punishments","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/necrify\/","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\/necrify\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/necrify\/","name":"Necrify - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/necrify\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/necrify\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/necrify-icon-0629fa06c8cba5155a6aae2e3267c61d31885688_96.webp","datePublished":"2026-06-06T10:14:39+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/necrify\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/necrify\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/necrify\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/necrify-icon-0629fa06c8cba5155a6aae2e3267c61d31885688_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/necrify-icon-0629fa06c8cba5155a6aae2e3267c61d31885688_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/necrify\/#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":"Necrify"}]},{"@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\/109295","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\/109296"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=109295"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=109295"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=109295"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=109295"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}