{"id":123055,"date":"2026-06-07T08:41:12","date_gmt":"2026-06-07T05:41:12","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/plugincontrol\/"},"modified":"2026-06-07T08:41:12","modified_gmt":"2026-06-07T05:41:12","slug":"plugincontrol","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/plugincontrol\/","title":{"rendered":"PluginControl"},"content":{"rendered":"<p># PluginControl<\/p>\n<p>## Description<\/p>\n<p>This plugin allows you to control which plugins have to be enabled for the server continues running.<\/p>\n<p>Inspired by this<br \/>\nand this comment and myself having the same<br \/>\nproblem.<\/p>\n<p>## Installation<\/p>\n<p>1. Download the PluginControl plugin.<br \/>\n2. Place the downloaded plugin file in the `plugins` folder of your server.<br \/>\n3. Restart the server to load the PluginControl plugin.<br \/>\n4. Add plugins to the list using the command `\/plugincontrol add <plugin-name>`.<br \/>\n5. Use the command `\/plugincontrol action <action-type>` to set the action to be taken if any of the listed plugins are not enabled. See the [Actions](#Actions) section for available actions.<br \/>\n6. Enable the PluginControl plugin by running the command `\/plugincontrol enable`.<br \/>\n7. Reload the PluginControl plugin configuration and language files with the command `\/plugincontrol reload`.<\/p>\n<p>Please note that the `<action-type>` and `<plugin-name>` placeholders should be replaced with the specific action and<br \/>\nplugin names as needed.<\/p>\n<p>**Note: This plugin needs Java 17 to work.**<\/p>\n<p>## Configuration<\/p>\n<p>| Option         | 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;&#8211;|<br \/>\n| `enabled`      | Whether the plugin is enabled or not.                                          |<br \/>\n| `action`       | [Action to take if all listed plugins are not enabled.](#actions)              |<br \/>\n| `kick-message` | Message sent to the player when the `disallow-player-login` action is enabled. |<br \/>\n| `plugins`      | List of plugins to be enabled when the server starts.                          |<\/p>\n<p>### Actions<\/p>\n<p>| Action Type             | 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;&#8212;&#8212;&#8212;&#8212;|<br \/>\n| `log-to-console`        | Sends a warning (`log-to-console` inside lang.yaml) in the console.                   |<br \/>\n| `disallow-player-login` | Block player from enter the server with a message (`kick-message` inside config.yml). |<br \/>\n| `shutdown-server`       | Shutdown the server with a warning (`disabling-server` inside lang.yml).              |<\/p>\n<p>### Kick Message<\/p>\n<p>Allows you to customize the message sent to the player when the `disallow-player-login` action is enabled.<\/p>\n<p>Can be customized using `&#038;#<hex>` code or legacy color codes (no MiniMessage support).<\/p>\n<p>### Default config.yml<\/p>\n<p>&#8220;`yaml<br \/>\nupdate-notifier: false<br \/>\nenabled: false<br \/>\n# Action to take if all listed plugins are not enabled.<br \/>\n# log-to-console<br \/>\n# disallow-player-login<br \/>\n# shutdown-server<br \/>\naction: log-to-console<br \/>\nplugins: [ ]<br \/>\ngroups: { }<br \/>\n&#8220;`<\/p>\n<p>## Messages<\/p>\n<p>Change the message formatting using MiniMessage<\/p>\n<p>### Placeholders<\/p>\n<p>| Placeholder      | Usage                                                                                     |<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;&#8212;&#8212;&#8212;-|<br \/>\n| `<prefix>`       | All messages accept this placeholder                                                      |<br \/>\n| `<action>`       | `command.action-type`                                                                     |<br \/>\n| `<actions>`      | `command.action-list`                                                                     |<br \/>\n| `<command>`      | `command.command-not-found`, `command.plugin-add-error` and `command.plugin-remove-error` |<br \/>\n| `<kick-message>` | `command.kick-message` and `command.kick-message-set`                                     |<br \/>\n| `<plugin>`       | `command.plugin-added`, `command.plugin-not-found` and `command.plugin-removed`           |<br \/>\n| `<plugins>`      | `console.disabling-server` and `command.plugin-list`                                      |<\/p>\n<p>### Default lang.yml<\/p>\n<p>&#8220;`yaml<br \/>\nprefix: &#8216;<dark_gray>[<red>PluginControl<dark_gray>]&#8217;<br \/>\nkick-message: &#8216;<red>[PluginControl] You are not allowed to join the server!&#8217;<br \/>\nconsole:<br \/>\n  checking-plugins: &#8216;<prefix> <red>Checking plugins&#8230;&#8217;<br \/>\n  disabling-server: &#8216;<prefix> <red>Disabling server because plugins or groups were not found or enabled!&#8217;<br \/>\n  finished-checking: &#8216;<prefix> <green>Plugins verified!&#8217;<br \/>\n  log-to-console-plugin: &#8216;<prefix> <red>Required plugins were not found: <plugins>&#8216;<br \/>\n  log-to-console-group: &#8216;<prefix> <red>Required groups were not found: <groups>&#8216;<br \/>\n  plugin-disabled: &#8216;<prefix> <red>Plugin Control is disabled!&#8217;<br \/>\ncommand:<br \/>\n  action-list: &#8216;<prefix> <green>Actions available: <yellow><actions>&#8216;<br \/>\n  action-set: &#8216;<prefix> <green>Action set to <yellow><action>&#8216;<br \/>\n  action-type: &#8216;<prefix> <green>Action type: <yellow><action>&#8216;<br \/>\n  checking-plugins: &#8216;<prefix> <green>Checking plugins&#8230; See the console for more information.&#8217;<br \/>\n  check-depend-error: &#8216;<red>Usage: <yellow>\/<command> check-depend <green><plugin-name>&#8216;<br \/>\n  check-depend-not-found: &#8216;<prefix> <red>No plugins depend or softdepend on <plugin>!&#8217;<br \/>\n  check-depend-depend: &#8216;<prefix> <yellow>Plugins that depend on <green><plugin>: <red><plugins>&#8216;<br \/>\n  check-depend-softdepend: &#8216;<prefix> <yellow>Plugins that softdepend on <green><plugin>: <red><plugins>&#8216;<br \/>\n  command-not-found: &#8216;<red>Usage: <yellow>\/<command> help <red>to see the available commands&#8217;<br \/>\n  kick-message: &#8216;<prefix> <green>Kick message: <yellow><kick-message>&#8216;<br \/>\n  kick-message-set: &#8216;<prefix> <green>Kick message set to <yellow><kick-message>&#8216;<br \/>\n  plugin-add-error: &#8216;<red>Usage: <yellow>\/<command> add <all|plugin-name>&#8216;<br \/>\n  plugin-added: &#8216;<prefix> <green>Plugin <yellow><plugin> <green>added!&#8217;<br \/>\n  plugin-added-all: &#8216;<prefix> <green>All plugins added to the list of required plugins!&#8217;<br \/>\n  plugin-already-added: &#8216;<prefix> <red>Plugin already added!&#8217;<br \/>\n  plugin-disabled: &#8216;<prefix> <red>Deactivating plugin features&#8230;&#8217;<br \/>\n  plugin-enabled: &#8216;<prefix> <green>Activating plugin features&#8230;&#8217;<br \/>\n  plugin-list: &#8216;<prefix> <yellow>Required Plugins: <plugins>&#8216;<br \/>\n  plugin-list-separator: &#8216;<gray>, &#8216;<br \/>\n  plugin-list-separator-last: &#8216;<gray> and &#8216;<br \/>\n  plugin-list-enabled-color: &#8216;<green>&#8216;<br \/>\n  plugin-list-disabled-color: &#8216;<red>&#8216;<br \/>\n  plugin-list-empty: &#8216;<prefix> <red>No plugins added!&#8217;<br \/>\n  plugin-not-found: &#8216;<prefix> <red>Plugin <yellow><plugin> <red>not found in the list!&#8217;<br \/>\n  plugin-reload: &#8216;<prefix> <green>Config and Language reloaded!&#8217;<br \/>\n  plugin-remove-error: &#8216;<red>Usage: <yellow>\/<command> remove <all|plugin-name>&#8216;<br \/>\n  plugin-removed: &#8216;<prefix> <green>Plugin <yellow><plugin> <green>removed!&#8217;<br \/>\n  plugin-removed-all: &#8216;<prefix> <green>All plugins removed!&#8217;<br \/>\n  plugin-click-remove: &#8216;<red>Click to remove the plugin&#8217;<br \/>\n  group-create-error: &#8216;<red>Usage: <yellow>\/<command> group create <group-name>&#8216;<br \/>\n  group-created: &#8216;<prefix> <green>Group <yellow><group> <green>created!&#8217;<br \/>\n  group-already-exist: &#8216;<prefix> <red>Group already exists!&#8217;<br \/>\n  group-remove-error: &#8216;<red>Usage: <yellow>\/<command> group delete <group-name>&#8216;<br \/>\n  group-removed: &#8216;<prefix> <green>Group <yellow><group> <green>removed!&#8217;<br \/>\n  group-not-found: &#8216;<prefix> <red>Group <yellow><group> <red>not found!&#8217;<br \/>\n  group-list-empty: &#8216;<prefix> <red>No groups added!&#8217;<br \/>\n  group-list: &#8216;<prefix> <yellow>Required Groups: <groups>&#8216;<br \/>\n  group-list-error: &#8216;<red>Usage: <yellow>\/<command> group list <group-name>&#8216;<br \/>\n  plugin-added-to-group: &#8216;<prefix> <green>Plugin <yellow><plugin> <green>added to group <yellow><group>&#8216;<br \/>\n  plugin-add-to-group-error: &#8216;<red>Usage: <yellow>\/<command> group add <group-name> <plugin-name>&#8216;<br \/>\n  plugin-removed-from-group: &#8216;<prefix> <green>Plugin <yellow><plugin> <green>removed from group <yellow><group>&#8216;<br \/>\n  plugin-removed-from-group-error: &#8216;<red>Usage: <yellow>\/<command> group remove <group-name> <plugin-name>&#8216;<br \/>\n  plugin-not-in-group: &#8216;<prefix> <red>Plugin <yellow><plugin> <red>not in group <yellow><group>&#8216;<br \/>\n  group-plugin-list-error: &#8216;<red>Usage: <yellow>\/<command> group list <group-name>&#8216;<br \/>\n  group-has-no-plugins: &#8216;<prefix> <red>Group <yellow><group> <red>has no plugins!&#8217;<br \/>\n  group-plugin-list: &#8216;<prefix> <yellow>Plugins in group <green><group><yellow>: <yellow><plugins>&#8216;<br \/>\n  group-list-name: &#8216;<yellow>Group <group>:&#8217;<br \/>\n  group-click-delete: &#8216;<red>Click to delete the group&#8217;<br \/>\n  group-click-remove-plugin: &#8216;<red>Click to remove the plugin from the group&#8217;<br \/>\n  group-click-info: &#8216;<yellow>Click to see the group info&#8217;<br \/>\n  group-help:<br \/>\n    &#8211; &#8216;<gradient:aqua:green>=== Plugin Control Group Help ===<\/gradient>&#8216;<br \/>\n    &#8211; &#8216;<aqua>\/<command> group create <green><group> <yellow>&#8211; Create a group&#8217;<br \/>\n    &#8211; &#8216;<aqua>\/<command> group delete <green><group> <yellow>&#8211; Remove a group&#8217;<br \/>\n    &#8211; &#8216;<aqua>\/<command> group list <yellow>&#8211; List all required groups&#8217;<br \/>\n    &#8211; &#8216;<aqua>\/<command> group add <green><group> <plugin> <yellow>&#8211; Add a plugin into a group&#8217;<br \/>\n    &#8211; &#8216;<aqua>\/<command> group remove <green><group> <plugin> <yellow>&#8211; Remove a plugin from a group&#8217;<br \/>\n    &#8211; &#8216;<aqua>\/<command> group list <green><group> <yellow>&#8211; List all plugins in a group&#8217;<br \/>\n    &#8211; &#8216;<aqua>\/<command> group help <yellow>&#8211; Show the group help&#8217;<br \/>\n    &#8211; &#8216;<gradient:aqua:green>================================<\/gradient>&#8216;<br \/>\n  help:<br \/>\n    &#8211; &#8216;<gradient:aqua:green>==== Plugin Control Help ====<\/gradient>&#8216;<br \/>\n    &#8211; &#8216;<aqua>\/<command> add <green><all|plugin> <yellow>&#8211; Add a plugin to the list&#8217;<br \/>\n    &#8211; &#8216;<aqua>\/<command> remove <green><all|plugin> <yellow>&#8211; Remove a plugin from the list&#8217;<br \/>\n    &#8211; &#8216;<aqua>\/<command> action <yellow>&#8211; List all actions available&#8217;<br \/>\n    &#8211; &#8216;<aqua>\/<command> action <green><action-type> <yellow>&#8211; Set an action type&#8217;<br \/>\n    &#8211; &#8216;<aqua>\/<command> group create <green><group> <yellow>&#8211; Create a group&#8217;<br \/>\n    &#8211; &#8216;<aqua>\/<command> group delete <green><group> <yellow>&#8211; Remove a group&#8217;<br \/>\n    &#8211; &#8216;<aqua>\/<command> group list <yellow>&#8211; List all required groups&#8217;<br \/>\n    &#8211; &#8216;<aqua>\/<command> group add <green><group> <plugin> <yellow>&#8211; Add a plugin into a group&#8217;<br \/>\n    &#8211; &#8216;<aqua>\/<command> group remove <green><group> <plugin> <yellow>&#8211; Remove a plugin from a group&#8217;<br \/>\n    &#8211; &#8216;<aqua>\/<command> group list <green><group> <yellow>&#8211; List all plugins in a group&#8217;<br \/>\n    &#8211; &#8216;<aqua>\/<command> group help <yellow>&#8211; Show the group help&#8217;<br \/>\n    &#8211; &#8216;<aqua>\/<command> kick-message <yellow>&#8211; Show the kick message&#8217;<br \/>\n    &#8211; &#8216;<aqua>\/<command> kick-message <green><message> <yellow>&#8211; Set the kick message&#8217;<br \/>\n    &#8211; &#8216;<aqua>\/<command> enable <yellow>&#8211; Enable the plugin&#8217;<br \/>\n    &#8211; &#8216;<aqua>\/<command> disable <yellow>&#8211; Disable the plugin&#8217;<br \/>\n    &#8211; &#8216;<aqua>\/<command> toggle <yellow>&#8211; Enable or disable the plugin&#8217;<br \/>\n    &#8211; &#8216;<aqua>\/<command> list <yellow>&#8211; List all required plugins&#8217;<br \/>\n    &#8211; &#8216;<aqua>\/<command> check <yellow>&#8211; Checks if required plugins are activated&#8217;<br \/>\n    &#8211; &#8216;<aqua>\/<command> check-depend <green><plugin> <yellow>&#8211; Check which plugins depend or softdepend on a plugin&#8217;<br \/>\n    &#8211; &#8216;<aqua>\/<command> reload <yellow>&#8211; Reload the config and language&#8217;<br \/>\n    &#8211; &#8216;<aqua>\/<command> help <yellow>&#8211; Show this help&#8217;<br \/>\n    &#8211; &#8216;<gradient:aqua:green>=========================<\/gradient>&#8216;<br \/>\n&#8220;`<\/p>\n<p>## Commands<\/p>\n<p>Main Command `\/plugincontrol` &#8211; Aliases: `\/pc` and `\/pcontrol`<\/p>\n<p>| Command          | Sub Command              | Description                                  |<br \/>\n|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|<br \/>\n| `\/plugincontrol` | `add <plugin-name>`      | Add a plugin to the list.                    |<br \/>\n| `\/plugincontrol` | `remove <plugin-name>`   | Remove a plugin from the list.               |<br \/>\n| `\/plugincontrol` | `action`                 | Check the current action.                    |<br \/>\n| `\/plugincontrol` | `action <action-type>`   | [Set the action to take.](#actions)          |<br \/>\n| `\/plugincontrol` | `kick-message`           | Check the current kick message.              |<br \/>\n| `\/plugincontrol` | `kick-message <message>` | Set the kick message.                        |<br \/>\n| `\/plugincontrol` | `enable | on`           | Enable PluginControl.                        |<br \/>\n| `\/plugincontrol` | `disable | off`         | Disable PluginControl.                       |<br \/>\n| `\/plugincontrol` | `toggle`                 | Toggle PluginControl on or off.              |<br \/>\n| `\/plugincontrol` | `list`                   | List all plugins in the list.                |<br \/>\n| `\/plugincontrol` | `check`                  | Checks if required plugins are activated.    |<br \/>\n| `\/plugincontrol` | `check-depend <plugin>`  | Check which plugins depend or softdepend on a plugin.|<br \/>\n| `\/plugincontrol` | `reload`                 | Reload the configuration and language files. |<br \/>\n| `\/plugincontrol` | `help | ?`              | Show the list of commands.                   |<\/p>\n<p>Please note that the `<plugin-name>`, `<action-type>` and `<message>` placeholders should be replaced with the specific<br \/>\nplugin name and kick message, respectively, as required.<\/p>\n<p>## Permissions<\/p>\n<p>| Permissions            | 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;|<br \/>\n| `plugincontrol.use`    | Permission to use all [commands](#commands)    |<br \/>\n| `plugincontrol.bypass` | Bypass the `disallow-player-login` in `action` |<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This plugin allows you to define which plugin have to be successful enabled after server startup<\/p>\n","protected":false},"featured_media":123056,"template":"","meta":{"_minecraft_slug":"plugincontrol","_minecraft_project_id":"x1mBubzh","_minecraft_author":"SrBedrock","_minecraft_license":"AGPL-3.0-only","_minecraft_downloads":974,"_minecraft_follows":9,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"plugincontrol.zip","_minecraft_size_bytes":2667580,"_minecraft_version_count":9,"_minecraft_updated_at":"2026-05-16T08:42:39.648140Z","_minecraft_date_created":"2023-06-06T00:57:58.429238Z","_minecraft_date_modified":"2025-10-08T04:59:13.050570Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/plugincontrol","_minecraft_icon_attachment_id":123056,"_minecraft_imported_at":"2026-06-07T05:41:13+00:00","_minecraft_import_hash":"ab44d950b9a95ecabef58558bf28ca68","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[124,126,127,128,129],"mod_loader":[130,132,133,134],"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,22,23,24,25,26,27,28,29,30,31,860,861,862,863,864],"class_list":["post-123055","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-bukkit","mod_category-management","mod_category-paper","mod_category-purpur","mod_category-spigot","mod_loader-bukkit","mod_loader-paper","mod_loader-purpur","mod_loader-spigot","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","minecraft_version-1-8-1","minecraft_version-1-8-2","minecraft_version-1-8-3","minecraft_version-1-8-4","minecraft_version-1-8-5","minecraft_version-1-8-6","minecraft_version-1-8-7","minecraft_version-1-8-8","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>PluginControl - 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\/plugincontrol\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PluginControl - Minecraft\" \/>\n<meta property=\"og:description\" content=\"This plugin allows you to define which plugin have to be successful enabled after server startup\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/plugincontrol\/\" \/>\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=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/plugincontrol\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/plugincontrol\\\/\",\"name\":\"PluginControl - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/plugincontrol\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/plugincontrol\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/plugincontrol-icon-864bdb623517c1b0f73bfb5b3fea0ce05f8f4d23.png\",\"datePublished\":\"2026-06-07T05:41:12+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/plugincontrol\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/plugincontrol\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/plugincontrol\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/plugincontrol-icon-864bdb623517c1b0f73bfb5b3fea0ce05f8f4d23.png\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/plugincontrol-icon-864bdb623517c1b0f73bfb5b3fea0ce05f8f4d23.png\",\"width\":128,\"height\":128},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/plugincontrol\\\/#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\":\"PluginControl\"}]},{\"@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":"PluginControl - 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\/plugincontrol\/","og_locale":"en_US","og_type":"article","og_title":"PluginControl - Minecraft","og_description":"This plugin allows you to define which plugin have to be successful enabled after server startup","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/plugincontrol\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/plugincontrol\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/plugincontrol\/","name":"PluginControl - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/plugincontrol\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/plugincontrol\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/plugincontrol-icon-864bdb623517c1b0f73bfb5b3fea0ce05f8f4d23.png","datePublished":"2026-06-07T05:41:12+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/plugincontrol\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/plugincontrol\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/plugincontrol\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/plugincontrol-icon-864bdb623517c1b0f73bfb5b3fea0ce05f8f4d23.png","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/plugincontrol-icon-864bdb623517c1b0f73bfb5b3fea0ce05f8f4d23.png","width":128,"height":128},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/plugincontrol\/#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":"PluginControl"}]},{"@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\/123055","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\/123056"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=123055"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=123055"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=123055"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=123055"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}