{"id":36226,"date":"2026-06-01T20:55:40","date_gmt":"2026-06-01T17:55:40","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/c-commands\/"},"modified":"2026-06-01T20:55:40","modified_gmt":"2026-06-01T17:55:40","slug":"c-commands","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/c-commands\/","title":{"rendered":"CustomCommands"},"content":{"rendered":"<p># Custom Commands Plugin [Folia Support]<\/p>\n<p>A powerful and feature-rich custom commands plugin for Paper\/Spigot servers with advanced functionality including nested subcommands, arguments system, player validation, console command execution, clickable links, and Folia Support!<\/p>\n<p>## Features<\/p>\n<p>### Custom Commands<br \/>\n&#8211; Create unlimited custom commands with permissions, aliases, and cooldowns<br \/>\n&#8211; Individual permission system for each command<br \/>\n&#8211; Support for command aliases (e.g., `\/dc` for `\/discord`)<br \/>\n&#8211; Configurable cooldowns to prevent spam<br \/>\n&#8211; Folia Supported!<\/p>\n<p>### Nested Subcommands<br \/>\n&#8211; Add tab-completed subcommands to any custom command<br \/>\n&#8211; **Unlimited nesting depth** &#8211; subcommands can have their own subcommands!<br \/>\n&#8211; Individual permissions for each subcommand level<br \/>\n&#8211; Smart tab completion system<br \/>\n&#8211; Example: `\/admin player kick`, `\/admin server restart`<\/p>\n<p>### Arguments System<br \/>\n&#8211; Add arguments to commands and subcommands<br \/>\n&#8211; Use `{args}` variable in messages and commands<br \/>\n&#8211; Whitelist support for allowed arguments<br \/>\n&#8211; Required\/optional argument configuration<br \/>\n&#8211; Support for arguments with spaces<br \/>\n&#8211; Example: `\/say hello`, `\/kick Steve`, `\/teleport Player 100 64 200`<\/p>\n<p>### *Player Arguments (`player-args`)<br \/>\n&#8211; Mark specific arguments as player names<br \/>\n&#8211; **Automatic validation** &#8211; ensures players exist and are online<br \/>\n&#8211; **Smart tab-completion** &#8211; shows all online players automatically<br \/>\n&#8211; Clear error messages for invalid players<br \/>\n&#8211; Works with nested subcommands<br \/>\n&#8211; Example: `\/kick Steve` (validates Steve is online)<\/p>\n<p>### Console Command Execution<br \/>\n&#8211; Execute any server command through custom commands<br \/>\n&#8211; Choose execution type: &#8220;Console&#8221; (as server) or &#8220;Player&#8221; (as user)<br \/>\n&#8211; Variable replacement system:<br \/>\n  &#8211; `{player}` &#8211; Player name<br \/>\n  &#8211; `{displayname}` &#8211; Player display name<br \/>\n  &#8211; `{world}` &#8211; Player&#8217;s world name<br \/>\n  &#8211; `{x}`, `{y}`, `{z}` &#8211; Player coordinates<br \/>\n  &#8211; `{online_players}` &#8211; Number of online players<br \/>\n  &#8211; `{max_players}` &#8211; Maximum players<br \/>\n  &#8211; `{args}` &#8211; Command arguments<\/p>\n<p>### Clickable Links<br \/>\n&#8211; Support for clickable links in messages<br \/>\n&#8211; Custom syntax: `(Display Text)[<URL>]`<br \/>\n&#8211; Opens URLs in player&#8217;s browser<br \/>\n&#8211; Works in both main commands and subcommands<\/p>\n<p>### **Modern Text Formatting**<br \/>\n&#8211; Full Kyori Adventure API integration<br \/>\n&#8211; Support for hex colors (`&#038;#FF8800`)<br \/>\n&#8211; Legacy color codes (`&#038;6`, `&#038;c`, etc.)<br \/>\n&#8211; JSON tellraw support with clickable elements<\/p>\n<p>### Advanced Features<br \/>\n&#8211; Hot-reload configuration without server restart<br \/>\n&#8211; Custom logging system with colored console output<br \/>\n&#8211; File rotation for log files<br \/>\n&#8211; Comprehensive error handling<br \/>\n&#8211; Asynchronous command execution<br \/>\n&#8211; **Folia server support** (v1.1.0+)<\/p>\n<p>## Example Commands<\/p>\n<p>### Nested Subcommands with Arguments<\/p>\n<p>&#8220;`yaml<br \/>\nadmin:<br \/>\n  permission: &#8220;customcommands.admin&#8221;<br \/>\n  subcommands:<br \/>\n    player:<br \/>\n      permission: &#8220;customcommands.admin.player&#8221;<br \/>\n      subcommands:  # Nested subcommands!<br \/>\n        kick:<br \/>\n          permission: &#8220;customcommands.admin.player.kick&#8221;<br \/>\n          arguments:<br \/>\n            player-args: [0]  # First argument = player name<br \/>\n            no-arguments: false<br \/>\n          commands:<br \/>\n            &#8211; &#8220;kick {args} Kicked by {player}&#8221;<br \/>\n        ban:<br \/>\n          permission: &#8220;customcommands.admin.player.ban&#8221;<br \/>\n          arguments:<br \/>\n            player-args: [0]<br \/>\n            no-arguments: false<br \/>\n          commands:<br \/>\n            &#8211; &#8220;ban {args} Banned by {player}&#8221;<br \/>\n&#8220;`<\/p>\n<p>**Usage:**<br \/>\n&#8211; `\/admin player kick Steve` &#8211; Kicks Steve (validates player is online)<br \/>\n&#8211; `\/admin player ban Steve` &#8211; Bans Steve (validates player is online)<\/p>\n<p>### Discord Command with Subcommands<\/p>\n<p>&#8220;`yaml<br \/>\ndiscord:<br \/>\n  permission: &#8220;customcommands.discord&#8221;<br \/>\n  alias: [&#8220;dc&#8221;]<br \/>\n  subcommands:<br \/>\n    send:<br \/>\n      commands:<br \/>\n        &#8211; &#8220;msg {player} &#038;6Discord: &#038;bhttps:\/\/discord.gg\/example&#8221;<br \/>\n    invite:<br \/>\n      message:<br \/>\n        &#8211; &#8220;&#038;7Click here: (Join Discord)[https:\/\/discord.gg\/example]&#8221;<br \/>\n&#8220;`<\/p>\n<p>### Command with Arguments<\/p>\n<p>&#8220;`yaml<br \/>\nsay:<br \/>\n  permission: &#8220;customcommands.say&#8221;<br \/>\n  arguments:<br \/>\n    whitelist: [&#8220;hello&#8221;, &#8220;goodbye&#8221;, &#8220;help&#8221;]<br \/>\n    whitelist-only: true<br \/>\n    no-arguments: true<br \/>\n  commands:<br \/>\n    &#8211; &#8220;say {player}: {args}&#8221;<br \/>\n&#8220;`<\/p>\n<p>**Usage:**<br \/>\n&#8211; `\/say hello` &#8211; Valid (in whitelist)<br \/>\n&#8211; `\/say goodbye` &#8211; Valid (in whitelist)<br \/>\n&#8211; `\/say test` &#8211; Invalid (not in whitelist)<\/p>\n<p>### Command with Player Validation<\/p>\n<p>&#8220;`yaml<br \/>\nkick:<br \/>\n  permission: &#8220;customcommands.kick&#8221;<br \/>\n  arguments:<br \/>\n    player-args: [0]  # First argument must be a player name<br \/>\n    no-arguments: false<br \/>\n  commands:<br \/>\n    &#8211; &#8220;kick {args} Kicked by {player}&#8221;<br \/>\n&#8220;`<\/p>\n<p>**Usage:**<br \/>\n&#8211; `\/kick Steve` &#8211; Valid (if Steve is online)<br \/>\n&#8211; `\/kick InvalidPlayer` &#8211; Error: &#8220;Player InvalidPlayer is not online or does not exist!&#8221;<\/p>\n<p>### Example Command with Console Commands<\/p>\n<p>&#8220;`yaml<br \/>\nexample:<br \/>\n  type: &#8220;Console&#8221;<br \/>\n  commands:<br \/>\n    &#8211; &#8220;say {player} used the example command!&#8221;<br \/>\n    &#8211; &#8220;effect give {player} minecraft:glowing 10 1 true&#8221;<br \/>\n    &#8211; &#8220;title {player} title [&#8220;&#8221;,{&#8220;text&#8221;:&#8221;Example!&#8221;,&#8221;color&#8221;:&#8221;gold&#8221;}]&#8221;<br \/>\n&#8220;`<\/p>\n<p>## Installation<br \/>\n1. Download the plugin JAR file<br \/>\n2. Place it in your server&#8217;s `plugins` folder<br \/>\n3. Restart your server<br \/>\n4. Configure commands in `plugins\/CustomCommands\/config.yml`<br \/>\n5. Use `\/customcommands reload` to reload configuration<\/p>\n<p>## Commands<br \/>\n&#8211; `\/customcommands` &#8211; Main command<br \/>\n&#8211; `\/customcommands reload` &#8211; Reload configuration<br \/>\n&#8211; `\/customcommands help` &#8211; Show help<br \/>\n&#8211; `\/customcommands support` &#8211; Show support information<br \/>\n&#8211; `\/customcommands version` &#8211; Show version info<\/p>\n<p>## Permissions<br \/>\n&#8211; `customcommands.*` &#8211; All permissions<br \/>\n&#8211; `customcommands.use` &#8211; Basic usage<br \/>\n&#8211; `customcommands.reload` &#8211; Reload configuration<br \/>\n&#8211; `customcommands.commandname` &#8211; Use specific command<br \/>\n&#8211; `customcommands.commandname.subcommand` &#8211; Use specific subcommand<br \/>\n&#8211; `customcommands.commandname.subcommand.nested` &#8211; Use nested subcommand<\/p>\n<p># Configuration<\/p>\n<p>The plugin creates detailed configuration files with examples and documentation:<\/p>\n<p>&#8211; `config.yml` &#8211; Main configuration with command definitions<br \/>\n  &#8211; Includes comprehensive documentation for all features<br \/>\n  &#8211; Examples for arguments, nested subcommands, and player-args<br \/>\n&#8211; `messages.yml` &#8211; All plugin messages<br \/>\n&#8211; `logs\/` &#8211; Plugin log files<\/p>\n<p>## Requirements &#038; Compatibility<\/p>\n<p>### **Compatibility Rating**<\/p>\n<p>&#8211; Folia 1.21.x:  **Fully supported** (v1.1.0+)<br \/>\n&#8211; Paper 1.21.4+:  Fully supported and tested<br \/>\n&#8211; Paper 1.21.0-1.21.3**: Likely compatible (tested on 1.21.2-1.21.3)<br \/>\n&#8211; Paper 1.20.x**:  Probably compatible (not tested)<br \/>\n&#8211; Paper 1.19.x:  May work with minor issues (not tested)<\/p>\n<p>### Not Supported<\/p>\n<p>&#8211; **Spigot** &#8211; This plugin uses `paper-plugin.yml` and requires Paper-specific APIs<br \/>\n&#8211; **Custom Paper Forks** &#8211; Use at your own risk, no support provided<br \/>\n&#8211; **PlugMan** &#8211; Do not use PlugMan to load this plugin (Paper plugins not supported)<\/p>\n<p>## Important Notes<\/p>\n<p>&#8211; **No Liability**: The developer takes no responsibility for crashes or issues on custom Paper\/Folia forks<br \/>\n&#8211; **Paper &#038; Folia**: This plugin is designed for Paper and Folia servers (v1.1.0+)<br \/>\n&#8211; **No PlugMan**: Do not attempt to load this plugin with PlugMan (Plugman does not work on paper anyways)<br \/>\n&#8211; **Backup**: Always backup your server before installing plugins<br \/>\n&#8211; **Testing**: Test on a development server before using in production<\/p>\n<p>## Documentation<\/p>\n<p>The configuration files include comprehensive documentation with:<\/p>\n<p>&#8211; Color code reference<br \/>\n&#8211; Variable replacement guide<br \/>\n&#8211; Console command examples<br \/>\n&#8211; Clickable link syntax<br \/>\n&#8211; Subcommand creation guide<br \/>\n&#8211; **Arguments system documentation**<br \/>\n&#8211; **Nested subcommands guide**<br \/>\n&#8211; **Player-args feature explanation**<\/p>\n<p>## Perfect For<\/p>\n<p>&#8211; Server owners wanting custom commands with advanced features<br \/>\n&#8211; Servers needing console command integration<br \/>\n&#8211; Communities wanting modern text formatting<br \/>\n&#8211; Administrators needing flexible command systems<br \/>\n&#8211; **Servers requiring player validation in commands**<br \/>\n&#8211; **Complex command structures with nested subcommands**<\/p>\n<p>![Bstatistics](https:\/\/bstats.org\/signatures\/bukkit\/Custom-Commands.svg)<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A powerful custom commands plugin with subcommands, console command execution, and clickable links. Create unlimited custom commands with variable replacement, permissions, and modern text formatting for your Paper server.<\/p>\n","protected":false},"featured_media":36227,"template":"","meta":{"_minecraft_slug":"c-commands","_minecraft_project_id":"XRwXgh5o","_minecraft_author":"kzlyth","_minecraft_license":"Apache-2.0","_minecraft_downloads":2075,"_minecraft_follows":7,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"c-commands.zip","_minecraft_size_bytes":619477,"_minecraft_version_count":9,"_minecraft_updated_at":"2026-05-16T06:12:00.931022Z","_minecraft_date_created":"2025-10-26T22:15:38.764032Z","_minecraft_date_modified":"2026-02-02T19:06:58.300760Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/c-commands","_minecraft_icon_attachment_id":36227,"_minecraft_imported_at":"2026-06-01T17:55:42+00:00","_minecraft_import_hash":"77ae57b55da8470885977147d61d4cf0","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[125,126,127,128,123,92],"mod_loader":[131,132,133],"minecraft_version":[57,58,59,36,60,93,94,101,102,62,37,40,41,73,74,38,78,79,80,81,82,83,167,163],"class_list":["post-36226","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-folia","mod_category-management","mod_category-paper","mod_category-purpur","mod_category-technology","mod_category-utility","mod_loader-folia","mod_loader-paper","mod_loader-purpur","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-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>CustomCommands - 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\/c-commands\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CustomCommands - Minecraft\" \/>\n<meta property=\"og:description\" content=\"A powerful custom commands plugin with subcommands, console command execution, and clickable links. Create unlimited custom commands with variable replacement, permissions, and modern text formatting for your Paper server.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/c-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=\"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\\\/c-commands\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/c-commands\\\/\",\"name\":\"CustomCommands - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/c-commands\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/c-commands\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/c-commands-icon-6095c396caa5100990fcd1a359a1aff53870589b_96.webp\",\"datePublished\":\"2026-06-01T17:55:40+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/c-commands\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/c-commands\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/c-commands\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/c-commands-icon-6095c396caa5100990fcd1a359a1aff53870589b_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/c-commands-icon-6095c396caa5100990fcd1a359a1aff53870589b_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/c-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\":\"CustomCommands\"}]},{\"@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":"CustomCommands - 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\/c-commands\/","og_locale":"en_US","og_type":"article","og_title":"CustomCommands - Minecraft","og_description":"A powerful custom commands plugin with subcommands, console command execution, and clickable links. Create unlimited custom commands with variable replacement, permissions, and modern text formatting for your Paper server.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/c-commands\/","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\/c-commands\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/c-commands\/","name":"CustomCommands - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/c-commands\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/c-commands\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/c-commands-icon-6095c396caa5100990fcd1a359a1aff53870589b_96.webp","datePublished":"2026-06-01T17:55:40+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/c-commands\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/c-commands\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/c-commands\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/c-commands-icon-6095c396caa5100990fcd1a359a1aff53870589b_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/c-commands-icon-6095c396caa5100990fcd1a359a1aff53870589b_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/c-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":"CustomCommands"}]},{"@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\/36226","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\/36227"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=36226"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=36226"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=36226"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=36226"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}