{"id":7121,"date":"2026-05-31T17:36:09","date_gmt":"2026-05-31T14:36:09","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/advancedcommandblocker\/"},"modified":"2026-05-31T17:36:09","modified_gmt":"2026-05-31T14:36:09","slug":"advancedcommandblocker","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/advancedcommandblocker\/","title":{"rendered":"AdvancedCommandBlocker"},"content":{"rendered":"<p>## \ud83d\udeab AdvancedCommandBlocker<\/p>\n<p>&#8211; Based on Bukkit and Spigot APIs. Supports Minecraft 1.12.2 to 1.21.1+ and future versions.<br \/>\n&#8211; Professional command interception plugin, extremely flexible, can intercept various commands or Tab-completion through configuration of different rules!<\/p>\n<p>## \u2728 Features<br \/>\n&#8211; \ud83d\udd12 Block specific commands by exact match, prefix, or regex<br \/>\n&#8211; \ud83d\udc65 Apply different rules per player group or permission<br \/>\n&#8211; \ud83c\udf10 Supports PlaceholderAPI and custom deny messages<br \/>\n&#8211; \ud83e\udde9 Fully configurable via YAML<br \/>\n&#8211; \ud83d\udd04 Reloadable in-game without restarting the server<\/p>\n<p>## \u2699\ufe0f US Example Configuration<\/p>\n<p>&#8220;`yaml<br \/>\n# Commands for the AdvancedCommandBlocker plugin<br \/>\n# \/acb reload \u2013 Reload the configuration!<br \/>\n# \/advancedcommandblocker reload &#8211; Reload the configuration!<\/p>\n<p>rules:<br \/>\n  allSubCommands:<br \/>\n    # BLACKLIST mode: block the listed commands<br \/>\n    # WHITELIST mode: only allow the listed commands<br \/>\n    # Warning: You cannot configure both BLACKLIST and WHITELIST at the same time; although allowed by YAML, the plugin will conflict!<br \/>\n    type: BLACKLIST<br \/>\n    # Permission that bypasses this rule; players with this permission will not be blocked<br \/>\n    permission: &#8220;cab.allSubCommands&#8221;<br \/>\n    # Message sent to the player when a command is blocked; supports PlaceholderAPI placeholders<br \/>\n    blockMessage: &#8220;&#038;l&#038;8| &#038;cError &#038;8\u00bb &#038;cYou do not have permission to use this command.&#8221;<br \/>\n    commands:<br \/>\n      # &#8211; &#8220;\/help*&#8221;<br \/>\n      # The asterisk (*) blocks all commands starting with \/help.<br \/>\n      &#8211; &#8220;\/help*&#8221;<\/p>\n<p>  commands:<br \/>\n    # BLACKLIST mode: block the listed commands<br \/>\n    # WHITELIST mode: only allow the listed commands<br \/>\n    # Warning: You cannot configure both BLACKLIST and WHITELIST at the same time; although allowed by YAML, the plugin will conflict!<br \/>\n    type: BLACKLIST<br \/>\n    # Permission that bypasses this rule; players with this permission will not be blocked<br \/>\n    permission: &#8220;cab.command&#8221;<br \/>\n    # Message sent to the player when a command is blocked; supports PlaceholderAPI placeholders<br \/>\n    blockMessage: &#8220;&#038;l&#038;8| &#038;cError &#038;8\u00bb &#038;cYou do not have permission to use Bukkit commands.&#8221;<br \/>\n    commands:<br \/>\n      # &#8211; &#8220;\/bukkit:?&#8221;<br \/>\n      # Blocks the exact \/bukkit:? command.<br \/>\n      &#8211; &#8220;\/bukkit:?&#8221;<br \/>\n      &#8211; &#8220;\/plugins&#8221;<\/p>\n<p>  tp:<br \/>\n    # BLACKLIST mode: block the listed commands<br \/>\n    # WHITELIST mode: only allow the listed commands<br \/>\n    # Warning: You cannot configure both BLACKLIST and WHITELIST at the same time; although allowed by YAML, the plugin will conflict!<br \/>\n    type: BLACKLIST<br \/>\n    # Permission that bypasses this rule; players with this permission will not be blocked<br \/>\n    permission: &#8220;acb.tpCommand&#8221;<br \/>\n    # Message sent to the player when a command is blocked; supports PlaceholderAPI placeholders<br \/>\n    blockMessage: &#8220;&#038;l&#038;8| &#038;cError &#038;8\u00bb &#038;cYou do not have permission to use the tp command.&#8221;<br \/>\n    commands:<br \/>\n      # &#8211; &#8220;\/tp <s:t> <s:f>&#8221;<br \/>\n      # <s:t> is a true-text placeholder, <s:f> is a false-text placeholder<br \/>\n      # Explanation: A player trying to use \/tp player01 player02 will be blocked, but \/tp player01 will not be.<\/p>\n<p>      # &#8211; &#8220;\/tp <s:t> <n:t> <n:t> <n:f>&#8221;<br \/>\n      # <n:t> is a true-number placeholder, <n:f> is a false-number placeholder<br \/>\n      # The following numeric placeholders are supported: &#8220;123&#8221;, &#8220;-45.6&#8221;, &#8220;~&#8221;, &#8220;~0&#8221;, &#8220;~1.23&#8221;, &#8220;1e10&#8221;, &#8220;1.8e308&#8221;<br \/>\n      # Explanation: A player trying to use \/tp player01 0 0 10 will be blocked, but \/tp player01 0 0 will not be.<br \/>\n      #              Players cannot use \/tp player01 player02 or \/tp player01 0 0 10, but can use \/tp 0 0 10 unless you add more specific rules.<\/p>\n<p>      # Use placeholders to indicate which argument position to start blocking (arguments are space-separated; e.g. \/tp player01 player02 has three arguments).<br \/>\n      &#8211; &#8220;\/tp <s:t> <s:f>&#8221;<br \/>\n      &#8211; &#8220;\/tp <s:t> <n:t> <n:t> <n:f>&#8221;<\/p>\n<p>  tab:<br \/>\n    # HIDE_TAB_BLACKLIST: hide tab completions for listed commands (but do not block execution)<br \/>\n    # HIDE_TAB_WHITELIST: only show tab completions for listed commands (but do not block execution)<br \/>\n    # Warning: You cannot configure both HIDE_TAB_BLACKLIST and HIDE_TAB_WHITELIST at the same time; although allowed by YAML, the plugin will conflict!<br \/>\n    type: HIDE_TAB_BLACKLIST<br \/>\n    # Force-close the player&#8217;s chat input when they press Tab: true = close chat and block Tab; false = do not close but block Tab<br \/>\n    closeChat: false<br \/>\n    # Permission that bypasses this rule; players with this permission will not be blocked when pressing Tab<br \/>\n    permission: &#8220;acb.tabCommand&#8221;<br \/>\n    # In tab mode, the <s:t>, <s:f>, <n:t>, <n:f> and * placeholders work the same way as in command mode.<br \/>\n    commands:<br \/>\n      &#8211; &#8220;\/tp <n:t> <n:t> <n:f>&#8221;<br \/>\n      &#8211; &#8220;\/help*&#8221;<br \/>\n&#8220;` <\/p>\n","protected":false},"excerpt":{"rendered":"<p>Professional command interception plugin, extremely flexible, can intercept various commands or Tab-completion through configuration of different rules!<\/p>\n","protected":false},"featured_media":0,"template":"","meta":{"_minecraft_slug":"advancedcommandblocker","_minecraft_project_id":"oHRHRfgk","_minecraft_author":"MaddyJace","_minecraft_license":"MIT","_minecraft_downloads":118,"_minecraft_follows":0,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"advancedcommandblocker.zip","_minecraft_size_bytes":29713,"_minecraft_version_count":2,"_minecraft_updated_at":"2026-05-15T19:24:24.072348Z","_minecraft_date_created":"2025-06-28T08:46:18.528072Z","_minecraft_date_modified":"2025-06-19T08:52:41.893946Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/advancedcommandblocker","_minecraft_icon_attachment_id":0,"_minecraft_imported_at":"2026-05-31T14:36:10+00:00","_minecraft_import_hash":"49d01a09a8af9c854747814e0a585e85","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[124,126,127,129,92],"mod_loader":[130,132,134],"minecraft_version":[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,73,74,38,78,79],"class_list":["post-7121","mod","type-mod","status-publish","hentry","mod_category-bukkit","mod_category-management","mod_category-paper","mod_category-spigot","mod_category-utility","mod_loader-bukkit","mod_loader-paper","mod_loader-spigot","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-2","minecraft_version-1-21-3","minecraft_version-1-21-4","minecraft_version-1-21-5","minecraft_version-1-21-6"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>AdvancedCommandBlocker - 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\/advancedcommandblocker\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"AdvancedCommandBlocker - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Professional command interception plugin, extremely flexible, can intercept various commands or Tab-completion through configuration of different rules!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/advancedcommandblocker\/\" \/>\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\\\/advancedcommandblocker\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/advancedcommandblocker\\\/\",\"name\":\"AdvancedCommandBlocker - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"datePublished\":\"2026-05-31T14:36:09+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/advancedcommandblocker\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/advancedcommandblocker\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/advancedcommandblocker\\\/#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\":\"AdvancedCommandBlocker\"}]},{\"@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":"AdvancedCommandBlocker - 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\/advancedcommandblocker\/","og_locale":"en_US","og_type":"article","og_title":"AdvancedCommandBlocker - Minecraft","og_description":"Professional command interception plugin, extremely flexible, can intercept various commands or Tab-completion through configuration of different rules!","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/advancedcommandblocker\/","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\/advancedcommandblocker\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/advancedcommandblocker\/","name":"AdvancedCommandBlocker - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"datePublished":"2026-05-31T14:36:09+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/advancedcommandblocker\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/advancedcommandblocker\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/advancedcommandblocker\/#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":"AdvancedCommandBlocker"}]},{"@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\/7121","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:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=7121"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=7121"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=7121"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=7121"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}