{"id":136419,"date":"2026-06-08T04:24:15","date_gmt":"2026-06-08T01:24:15","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/scriptirc\/"},"modified":"2026-06-08T04:24:15","modified_gmt":"2026-06-08T01:24:15","slug":"scriptirc","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/scriptirc\/","title":{"rendered":"Scriptirc"},"content":{"rendered":"<p># Scriptirc &#8211; script compiler, compiles java source code directly into a server plugin and loads it.<\/p>\n<p>**This plugin is recommended for test servers or servers under development because the compiled scripts do not need to rely on Scriptirc to load, you can put the compiled plugin scripts directly into plugins.**<\/p>\n<p>## \ud83d\udcda Introduction<\/p>\n<p>Scriptirc is a powerful Bukkit\/Spigot plugin designed to simplify plugin management and on-the-fly development processes. If you&#8217;ve ever wanted to be able to compile and modify script plugins, load, unload or reload them without restarting the server, or want to quickly develop and test simple features, Scriptirc is for you.<\/p>\n<p>## \u2728 Key Features<\/p>\n<p>\ud83d\udd04 Dynamic plugin management &#8211; load, unload or reload plugins without restarting the server<\/p>\n<p>\ud83d\udcdd On-the-fly script compilation &#8211; Compile Java scripts directly into fully functional Bukkit plugins<\/p>\n<p>\ud83d\udee1\ufe0f Data Directory Segregation &#8211; Automatically creates separate data directories for plugin scripts<\/p>\n<p>\ud83d\udd27 Seamless Integration &#8211; Compatible with existing Bukkit\/Spigot\/Paper environments<\/p>\n<p>\ud83d\udd12 Resource Release &#8211; Uninstall plugin scripts to completely release plugin resources, unlock JAR files<\/p>\n<p>## \ud83d\ude80 Installation Instructions<\/p>\n<p>Download the corresponding version of Scriptirc.jar<\/p>\n<p>Place the JAR file in the plugins directory of the server<\/p>\n<p>Restart the server or load the plugin using the plugin manager<\/p>\n<p>The plugin will automatically create the necessary directory structure and configuration files<\/p>\n<p>## \ud83d\udca1 Usage<\/p>\n<p>Scriptirc provides an intuitive command system that allows you to easily manage plugins and scripts:<\/p>\n<p>Basic commands (all commands can be abbreviated as \/si)<\/p>\n<p>Command Description<\/p>\n<p>&#8220;`<br \/>\n\/scriptirc help<br \/>\n\/scriptirc load <pulgin name>\n\/scriptirc unload <pulgin name>\n\/scriptirc reload <pulgin name>\n\/scriptirc list<br \/>\n\/scriptirc compiler <pulgin name>\n\/scriptirc sync<br \/>\n\/scriptirc profile<br \/>\n&#8220;`<\/p>\n<p>Plugin management example<\/p>\n<p>## Load a plugin named TestPlugin.<\/p>\n<p>&#8220;`<br \/>\n\/si load TestPlugin<br \/>\n&#8220;`<\/p>\n<p>## Uninstall the plugin<\/p>\n<p>&#8220;`<br \/>\n\/si unload TestPlugin<br \/>\n&#8220;`<\/p>\n<p>## Reload the plugin (e.g. after an update)<\/p>\n<p>&#8220;`<br \/>\n\/si reload TestPlugin<br \/>\n&#8220;`<\/p>\n<p>## View list of loaded plugins<\/p>\n<p>&#8220;`<br \/>\n\/si list<br \/>\n&#8220;`<\/p>\n<p>Example of script compilation<\/p>\n<p>## Compile the HelloWorld.java script located in the script_src directory.<\/p>\n<p>&#8220;`<br \/>\n\/si compiler HelloWorld<br \/>\n&#8220;`<\/p>\n<p>## Then load the compiled plugin.<\/p>\n<p>&#8220;`<br \/>\n\/si load HelloWorld<br \/>\n&#8220;`<\/p>\n<p>## \ud83d\udcc2 Directory structure<\/p>\n<p>After installation, Scriptirc will create the following directory structure:<\/p>\n<p>&#8220;`<br \/>\nplugins\/<br \/>\n  \u2514\u2500\u2500 Scriptirc\/<br \/>\n      \u251c\u2500\u2500 config.yml # Plugin configuration file<br \/>\n      \u251c\u2500\u2500 plugins\/ # External plugin storage directory<br \/>\n      \u2502 \u2514\u2500\u2500 Data\/ # Plugin data directory<br \/>\n      \u251c\u2500 script_src\/ # Script source code directory \u2502 \u251c\u2500\u2500 script_src\/ # Script source code directory<br \/>\n      \u2502 \u251c\u2500\u2500 HelloWorld.java # Example scripts<br \/>\n      \u2502 \u2514\u2500\u2500 MathUtil.java # Example Scripts<br \/>\n      \u2514\u2500 script_build\/ # Temporary script build directory<br \/>\n&#8220;`<\/p>\n<p>## \ud83d\udee0\ufe0f Development Tutorial &#8211; Creating Your First Script Plugin<\/p>\n<p>Scriptirc makes plugin development incredibly easy. All you need to do is create a Java source file, compile it and load it for use immediately. Here are the development steps:<\/p>\n<p>### 1. Create the script file<\/p>\n<p>Create a new Java file in the plugins\/Scriptirc\/script_src directory, e.g. MyFirstPlugin.java.<\/p>\n<p>### 2. Write the plugin code<\/p>\n<p>Below is a simple plugin template:<\/p>\n<p>The package name is customizable (just try to make sense)<\/p>\n<p>&#8220;`<br \/>\npackage your.package.name;<\/p>\n<p>import org.bukkit.command.Command;<br \/>\nimport org.bukkit.command.CommandSender;<br \/>\nimport org.bukkit.entity.Player;<br \/>\nimport org.bukkit.plugin.java.JavaPlugin;<\/p>\n<p>\/**<br \/>\n* @pluginName <Plugin Name><br \/>\n* @author <author><br \/>\n* @version <version><br \/>\n* @description <Description Complete all descriptions in this line only><br \/>\n* \uff08Commands and permissions are added optionally\uff09<br \/>\n* [command]<command1>|description1[\/command]<br \/>\n* [command]<command2>|description2[\/command]<br \/>\n* [Permission]<limit1>|description1[\/Permission]<br \/>\n* [Permission]<limit2>|description2[\/Permission]<br \/>\n*\/<\/p>\n<p>public class MyFirstPlugin extends JavaPlugin {<\/p>\n<p>    @Override<br \/>\n    public void onEnable() {<br \/>\n        getLogger().info(&#8220;Plugin enabled!&#8221;);<br \/>\n        \/\/ Initializing Code<br \/>\n\t\t\t\t\/\/<br \/>\n    }<\/p>\n<p>    @Override<br \/>\n    public void onDisable() {<br \/>\n        getLogger().info(&#8220;Plugin disabled!&#8221;);<br \/>\n        \/\/ The code for the unload \/ listener \/ command can be placed here.<br \/>\n    }<\/p>\n<p>    @Override<br \/>\n    public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {<br \/>\n        if (command.getName().equalsIgnoreCase(&#8220;myfirstcmd&#8221;)) {<br \/>\n            if (sender instanceof Player) {<br \/>\n                Player player = (Player) sender;<br \/>\n                player.sendMessage(&#8220;\u00a7aHello, this is my first plugin command!&#8221;);<br \/>\n            } else {<br \/>\n                sender.sendMessage(&#8220;This command can only be executed by the player!&#8221;);<br \/>\n            }<br \/>\n            return true;<br \/>\n        }<br \/>\n        return false;<br \/>\n    }<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>Official AI is recommended!!! Official Website<\/p>\n<p>### 3. Compiling and loading your plugin<\/p>\n<p>Use the following commands to compile and load your plugin:<\/p>\n<p>&#8220;`<br \/>\n\/si compiler MyFirstPlugin<br \/>\n\/si load MyFirstPlugin<br \/>\n&#8220;`<\/p>\n<p>It&#8217;s as simple as that! Your plugin is now running on the server, no need to restart the server.<\/p>\n<p>&#8220;`<br \/>\nImportant metadata fields<br \/>\n|Fields        |Required   |Description<br \/>\n|VERSION       |YES        |Plugin version number<br \/>\n|DESCRIPTION   |YES        |Plugin Description<br \/>\n|AUTHOR        |YES        |Plugin Author<br \/>\n|COMMANDS      |No         |Plugin command definitions in the form of \u201ccommand name\u201d.<br \/>\n|PERMISSIONS   |No         |Permission definitions in the form of \u201cpermission nodes\u201d.<br \/>\n&#8220;`<\/p>\n<p>## \u2699\ufe0f Configuration file description<\/p>\n<p>### Scriptirc&#8217;s configuration file (config.yml) allows you to customize the behavior of the plugin:<\/p>\n<p>Plugin auto-reload configuration<br \/>\nauto-reload.<\/p>\n<p>Whether to enable auto-reload<br \/>\nenabled: true<\/p>\n<p>Check interval (seconds)<br \/>\ncheck-interval: 5<\/p>\n<p>verbose-logging: false<br \/>\nverbose-logging: false<\/p>\n<p>Plugin management settings<br \/>\nplugin-management.<\/p>\n<p>External plugins directory, relative to the plugin data folder<br \/>\nexternal-plugins-directory: \u201cplugins\u201d<\/p>\n<p>Whether to automatically load external plugins on server startup.<br \/>\nload-on-startup: true<\/p>\n<p>Whether to redirect the data folder of external plugins to the Scriptirc directory.<br \/>\nredirect-data-folder: true<\/p>\n<p>Permission settings<br \/>\npermissions.<\/p>\n<p>Administrator permissions node<br \/>\nadmin-permission: \u201cscriptirc.admin\u201d<\/p>\n<p>Whether to allow OP use only<br \/>\nop-only: true<\/p>\n<p>## Logging settings  <\/p>\n<p>logging.<br \/>\nlogging output level: VERBOSE (output all logs), NORMAL (standard output), MINIMAL (output only key information)<\/p>\n<p>level: \u201cMINIMAL\u201d<br \/>\n(If you encounter a compilation failure, try switching the logging mode to VERBOSE)<\/p>\n<p>## \ud83e\udd14 Frequently Asked Questions<\/p>\n<p>What if the player can&#8217;t see the commands after loading the plugin? (There is a slight possibility of a bug that will be fixed later)<\/p>\n<p>The server administrator can run the command \/si sync to synchronize commands to all online players.<br \/>\nOr have players log back into the server.<\/p>\n<p>## What should I do if I get an error compiling the script?<\/p>\n<p>Make sure:<\/p>\n<p>Java code is syntactically correct<\/p>\n<p>All required metadata fields (VERSION, DESCRIPTION, AUTHOR) are included.<\/p>\n<p>The server is running on JDK and not JRE (JDK is required for compilation)<\/p>\n<p>## How to remove dynamically loaded plugin files?<\/p>\n<p>When unloading a plugin using the \/si unload command, Scriptirc tries to completely free the JAR file so that it can be deleted or replaced. If it still cannot be deleted, it may be necessary to restart the server.<\/p>\n<p>## Recognize<\/p>\n<p>There is code related to plugin unload loading I refer to the PlugManX project<\/p>\n","protected":false},"excerpt":{"rendered":"<p>AI write plugins for  Bukkit\/Spigot\/Paper servers.<br \/>\nJust put .java file in the folders to load.<\/p>\n","protected":false},"featured_media":136420,"template":"","meta":{"_minecraft_slug":"scriptirc","_minecraft_project_id":"Ql58FVwI","_minecraft_author":"Player9753193","_minecraft_license":"Apache-2.0","_minecraft_downloads":731,"_minecraft_follows":7,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"scriptirc.zip","_minecraft_size_bytes":26299237,"_minecraft_version_count":7,"_minecraft_updated_at":"2026-05-16T09:27:46.171961Z","_minecraft_date_created":"2025-05-28T06:27:34.306719Z","_minecraft_date_modified":"2026-03-28T00:31:59.889538Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/scriptirc","_minecraft_icon_attachment_id":136420,"_minecraft_imported_at":"2026-06-08T01:24:16+00:00","_minecraft_import_hash":"b580e15564ba8e604c602c1cc6ee50e0","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[124,125,89,873,126,127,128,129,123,92],"mod_loader":[130,131,132,133,134],"minecraft_version":[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,41,73,74,38,78,79,80,81,82],"class_list":["post-136419","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-bukkit","mod_category-folia","mod_category-game-mechanics","mod_category-library","mod_category-management","mod_category-paper","mod_category-purpur","mod_category-spigot","mod_category-technology","mod_category-utility","mod_loader-bukkit","mod_loader-folia","mod_loader-paper","mod_loader-purpur","mod_loader-spigot","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-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"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Scriptirc - 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\/scriptirc\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Scriptirc - Minecraft\" \/>\n<meta property=\"og:description\" content=\"AI write plugins for Bukkit\/Spigot\/Paper servers. Just put .java file in the folders to load.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/scriptirc\/\" \/>\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\\\/scriptirc\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/scriptirc\\\/\",\"name\":\"Scriptirc - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/scriptirc\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/scriptirc\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/scriptirc-icon-4ce0a7ac7fc107cc43b34c2453162770fc3c503a_96.webp\",\"datePublished\":\"2026-06-08T01:24:15+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/scriptirc\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/scriptirc\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/scriptirc\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/scriptirc-icon-4ce0a7ac7fc107cc43b34c2453162770fc3c503a_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/scriptirc-icon-4ce0a7ac7fc107cc43b34c2453162770fc3c503a_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/scriptirc\\\/#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\":\"Scriptirc\"}]},{\"@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":"Scriptirc - 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\/scriptirc\/","og_locale":"en_US","og_type":"article","og_title":"Scriptirc - Minecraft","og_description":"AI write plugins for Bukkit\/Spigot\/Paper servers. Just put .java file in the folders to load.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/scriptirc\/","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\/scriptirc\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/scriptirc\/","name":"Scriptirc - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/scriptirc\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/scriptirc\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/scriptirc-icon-4ce0a7ac7fc107cc43b34c2453162770fc3c503a_96.webp","datePublished":"2026-06-08T01:24:15+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/scriptirc\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/scriptirc\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/scriptirc\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/scriptirc-icon-4ce0a7ac7fc107cc43b34c2453162770fc3c503a_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/scriptirc-icon-4ce0a7ac7fc107cc43b34c2453162770fc3c503a_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/scriptirc\/#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":"Scriptirc"}]},{"@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\/136419","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\/136420"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=136419"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=136419"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=136419"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=136419"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}