{"id":100306,"date":"2026-06-05T21:18:20","date_gmt":"2026-06-05T18:18:20","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/melius-commands\/"},"modified":"2026-06-05T21:18:20","modified_gmt":"2026-06-05T18:18:20","slug":"melius-commands","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/melius-commands\/","title":{"rendered":"Melius Commands"},"content":{"rendered":"<p># Melius Commands<\/p>\n<p>![Discord](https:\/\/discord.gg\/HeZayd6SxF)<\/p>\n<p>A fabric server side mod to create custom, and modify existing commands<\/p>\n<p>## Custom Commands<\/p>\n<p>To add custom commands, create a json file in `.\/config\/melius-commands\/commands`.<br \/>\nFor example files, see examples\/commands! Apply your changes, by running `\/reload` in-game.<\/p>\n<p>### JSON Format<\/p>\n<p>Json format includes comments for clarification (don&#8217;t copy `\/\/` in your files)<\/p>\n<p>#### Command node (literal \/ argument)<\/p>\n<p>Check out the online generator to create your custom commands<br \/>\nquick and easy! This will also make sure your syntax is valid.<\/p>\n<p>The root node must always be a literal node.<\/p>\n<p>&#8220;`json5<br \/>\n{<br \/>\n  &#8220;id&#8221;: &#8220;&#8230;&#8221;,<br \/>\n  \/\/ Command id (command name for literal command nodes) (required)<br \/>\n  &#8220;type&#8221;: &#8220;&#8230;&#8221;,<br \/>\n  \/\/ Argument type, see below. (argument node only, required)<br \/>\n  &#8220;executes&#8221;: [<br \/>\n    \/\/ A list of command node executions, see below.<br \/>\n  ],<br \/>\n  &#8220;require&#8221;: {<br \/>\n    \/\/ See https:\/\/github.com\/Patbox\/PredicateAPI\/ for further information.<br \/>\n    \/\/ If this evaluates to true for a Command Source, it will have access to this command node!<br \/>\n  },<br \/>\n  &#8220;literals&#8221;: [<br \/>\n    \/\/ A list of literal children nodes<br \/>\n  ],<br \/>\n  &#8220;arguments&#8221;: [<br \/>\n    \/\/ A list of argument children nodes<br \/>\n  ],<br \/>\n  &#8220;redirect&#8221;: &#8220;&#8230;&#8221;<br \/>\n  \/\/ If specified the command will copy execution, requirements and children from the specified node.<br \/>\n  \/\/ This can effectively create an alias for another command<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>#### Execution<\/p>\n<p>This can either be a simple string, which will be executed silent, as console with op level 4 or manually configured<br \/>\nlike this:<\/p>\n<p>&#8220;`json5<br \/>\n{<br \/>\n  &#8220;command&#8221;: &#8220;&#8230;&#8221;,<br \/>\n  \/\/ The command that will be executed (can reference argument values, with ${id})<br \/>\n  &#8220;silent&#8221;: false,<br \/>\n  \/\/ Disable command output if set to true<br \/>\n  &#8220;as_console&#8221;: false,<br \/>\n  \/\/ Whether this command should be executed as console command source<br \/>\n  &#8220;op_level&#8221;: 4<br \/>\n  \/\/ The operator level of the command source (optional) (Possible values: 0 &#8211; 4)<br \/>\n}<br \/>\n&#8220;`<br \/>\nThe `command` execution value can use placeholders from command arguments and<br \/>\nglobal placeholders, by using this format `${PLACEHOLDER}`, where `PLACEHOLDER`<br \/>\ncan either be the argument id, or a global placeholder<br \/>\nlike player:name.<\/p>\n<p>#### Argument Type<\/p>\n<p>For a full list of all argument types refer to the Argument types wiki.<br \/>\nSome argument types require additional arguments, which must be appended seperated by spaces.<\/p>\n<p>## Command Modifiers<\/p>\n<p>To add command requirements, create a json file in `.\/config\/melius-commands\/modifiers`.<br \/>\nFor example files, see examples\/modifiers!<\/p>\n<p>### JSON Format<\/p>\n<p>Check out the online generator to create your custom command<br \/>\nmodifiers quick and easy! This will also make sure your syntax is valid.<\/p>\n<p>Json format includes comments for clarification (don&#8217;t copy `\/\/` in your files)<\/p>\n<p>#### Command modifier<\/p>\n<p>The syntax depends on the modifier type you choose. The most important thing to note is that there are two types of<br \/>\ncommand matchers:<\/p>\n<p>&#8211; Node matchers will match command nodes (the structure used by brigadier to represent commands internally) by their<br \/>\n  path (for example `teleport.location`, will match any command like this `\/teleport 0 100 0`)<br \/>\n&#8211; Command matchers will match against the string used during command execution (for example `warp end` will<br \/>\n  match `\/warp end`)<\/p>\n<p>Both of these types come with three different flavours:<\/p>\n<p>&#8211; `strict` modifiers will only be applied to that exact node \/ that exact command input<br \/>\n&#8211; `starts_with` modifiers will be applied to the specified node \/ command and anything that is &#8220;longer&#8221; than it<br \/>\n&#8211; `regex` modifiers will be applied to everything matching the regular expression<\/p>\n<p>Node matchers have an extra field called `requirement_modifier`, which allows you to modify the requirement of the node,<br \/>\nwhich will completely remove the command from players \/ command sources that don&#8217;t meet the requirement!<\/p>\n<p>### Command node paths<\/p>\n<p>You can use `\/melius-commands path <cmd>` command to determine command node paths of any command.<br \/>\nExample: to check the path of `\/tp DrexHD 0 100 0` (teleporting an entity to a block location) you type<br \/>\n`\/melius-commands path tp DrexHD 0 100 0` and will receive `teleport.targets.location`, which you can use in command<br \/>\nmodifiers.<\/p>\n<p>## Placeholders<br \/>\n&#8211; `%melius-commands:cooldown [id]%` \/ `%melius-commands:cooldown [id] [formatting]%` &#8211; Player command cooldowns.<br \/>\n  &#8211; `[id]` is the id specified in the cooldown modifier.<br \/>\n  &#8211; `[formatting]` is the duration formatting,<br \/>\n    make sure to escape properly.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This mod allows you to create custom commands.<\/p>\n","protected":false},"featured_media":100307,"template":"","meta":{"_minecraft_slug":"melius-commands","_minecraft_project_id":"lCC4AmlO","_minecraft_author":"DrexHD","_minecraft_license":"MIT","_minecraft_downloads":13124,"_minecraft_follows":62,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"melius-commands.zip","_minecraft_size_bytes":10496825,"_minecraft_version_count":33,"_minecraft_updated_at":"2026-05-16T00:54:17.457308Z","_minecraft_date_created":"2023-08-17T23:32:48.608895Z","_minecraft_date_modified":"2026-03-25T12:31:59.095423Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/melius-commands","_minecraft_icon_attachment_id":100307,"_minecraft_imported_at":"2026-06-05T18:18:21+00:00","_minecraft_import_hash":"1ef863ccbff2921a9cf826f230106f8b","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[97,873,126,98,92],"mod_loader":[99,100],"minecraft_version":[59,36,60,93,94,101,102,62,37,40,41,814,73,74,38,78,770,771,79,784,80,81,82,83,167,163],"class_list":["post-100306","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-fabric","mod_category-library","mod_category-management","mod_category-quilt","mod_category-utility","mod_loader-fabric","mod_loader-quilt","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-11-rc2","minecraft_version-1-21-2","minecraft_version-1-21-3","minecraft_version-1-21-4","minecraft_version-1-21-5","minecraft_version-1-21-5-rc1","minecraft_version-1-21-5-rc2","minecraft_version-1-21-6","minecraft_version-1-21-6-rc1","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>Melius Commands - 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\/melius-commands\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Melius Commands - Minecraft\" \/>\n<meta property=\"og:description\" content=\"This mod allows you to create custom commands.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/melius-commands\/\" \/>\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\\\/melius-commands\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/melius-commands\\\/\",\"name\":\"Melius Commands - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/melius-commands\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/melius-commands\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/melius-commands-icon-6facac79f8950f9e45a1685011b2fc3983a979ff.png\",\"datePublished\":\"2026-06-05T18:18:20+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/melius-commands\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/melius-commands\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/melius-commands\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/melius-commands-icon-6facac79f8950f9e45a1685011b2fc3983a979ff.png\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/melius-commands-icon-6facac79f8950f9e45a1685011b2fc3983a979ff.png\",\"width\":512,\"height\":512},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/melius-commands\\\/#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\":\"Melius Commands\"}]},{\"@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":"Melius Commands - 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\/melius-commands\/","og_locale":"en_US","og_type":"article","og_title":"Melius Commands - Minecraft","og_description":"This mod allows you to create custom commands.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/melius-commands\/","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\/melius-commands\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/melius-commands\/","name":"Melius Commands - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/melius-commands\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/melius-commands\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/melius-commands-icon-6facac79f8950f9e45a1685011b2fc3983a979ff.png","datePublished":"2026-06-05T18:18:20+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/melius-commands\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/melius-commands\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/melius-commands\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/melius-commands-icon-6facac79f8950f9e45a1685011b2fc3983a979ff.png","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/melius-commands-icon-6facac79f8950f9e45a1685011b2fc3983a979ff.png","width":512,"height":512},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/melius-commands\/#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":"Melius Commands"}]},{"@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\/100306","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\/100307"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=100306"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=100306"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=100306"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=100306"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}