{"id":40538,"date":"2026-06-02T00:50:47","date_gmt":"2026-06-01T21:50:47","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/clairvoyant\/"},"modified":"2026-06-02T00:50:47","modified_gmt":"2026-06-01T21:50:47","slug":"clairvoyant","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/clairvoyant\/","title":{"rendered":"Clairvoyant"},"content":{"rendered":"<p>![Logo](https:\/\/github.com\/nitg3n\/clairvoyant\/blob\/master\/clairvoaynt_logo.png?raw=true)<\/p>\n<p># \ud83d\udc40 Clairvoyant Anti-X-ray<\/p>\n<p>**Clairvoyant** is a powerful, modern anti-x-ray plugin designed for PaperMC servers. It moves beyond simple ore obfuscation and instead focuses on **intelligent data analysis** to identify suspicious player behavior. By meticulously logging every mining action and analyzing patterns, Clairvoyant provides server administrators with the clear, evidence-based insights needed to catch cheaters and maintain a fair gameplay environment.<\/p>\n<p>The goal of Clairvoyant is not to automatically ban players, but to empower administrators. It calculates a &#8220;Suspicion Score&#8221; for each player, allowing you to make informed decisions based on detailed reports and interactive in-game visualizations.<\/p>\n<p>&#8212;&#8211;<\/p>\n<p>## \u2728 Features<\/p>\n<p>* **Detailed Action Logging**: Logs every block break, block place, and specific interactions to a local SQLite database for later analysis.<br \/>\n* **Advanced Heuristic Engine**: Analyzes player data against multiple configurable heuristics (e.g., ore-to-stone ratio, tunneling patterns, mining at suspicious Y-levels) to calculate an overall suspicion score.<br \/>\n* **Interactive In-Game Visualization**: The `\/cv trace` command generates interactive, admin-only visual markers in the world, showing exactly where a player has mined. Right-click a marker to get detailed information about the action.<br \/>\n* **Comprehensive Reports**: The `\/cv check` command provides a detailed report, breaking down the player&#8217;s suspicion score by each heuristic, complete with color-coded status levels ([NORMAL], [SUSPICIOUS], [DANGEROUS]).<br \/>\n* **Highly Configurable**: Almost every aspect of the analysis engine\u2014from heuristic weights to what ores are considered valuable\u2014can be customized in the `config.yml` file. This includes full support for adding modded or custom items.<br \/>\n* **Performance-Focused**: Built with an asynchronous architecture to minimize impact on server performance (TPS).<\/p>\n<p>&#8212;&#8211;<\/p>\n<p>## \u2754 Compatibility<\/p>\n<p>This plugin is built on the **Paper API**. It will work on any server software that is a fork of Paper and maintains plugin compatibility.<\/p>\n<p>#### \u2705 Supported Server Software:<\/p>\n<p>* **Paper** (Recommended)<br \/>\n* **Purpur**<br \/>\n* And other direct forks of Paper.<\/p>\n<p>#### \u274c Unsupported Server Software:<\/p>\n<p>* **Folia**<br \/>\n* **Velocity, Waterfall, BungeeCord**<br \/>\n* **Spigot\/Bukkit**<\/p>\n<p>&#8212;&#8211;<\/p>\n<p>## \ud83d\udee0\ufe0f Commands &#038; Permissions<\/p>\n<p>The main command is `\/clairvoyant`, with alias `\/cv`. All commands require the permission `clairvoyant.admin` by default.<\/p>\n<p>| Command | Arguments   | 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;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;|<br \/>\n| `\/cv stats` | `<player>`  | Shows detailed mining statistics for the specified player, including counts for each block type broken.                 |<br \/>\n| `\/cv trace` | `<player>`  | Generates an interactive, in-game visualization of the player&#8217;s recent mining activity. Only you can see the markers.   |<br \/>\n| `\/cv check`| `<player>`  | Runs a full heuristic analysis on the player and displays a detailed suspicion report with an overall score and status. |<br \/>\n| `\/cv help` |             | Displays the list of available commands.                                                                                |<br \/>\n|`\/cv autopunish`| `<on|off>` | Toggles the auto-punish feature                                                                                         |<\/p>\n<p>&#8212;&#8211;<\/p>\n<p>## \u2699\ufe0f Installation<\/p>\n<p>1.  Download the latest `clairvoyant-vX.X.X.jar` from the releases page.<br \/>\n2.  Place the JAR file into your server&#8217;s `\/plugins` directory.<br \/>\n3.  Start or restart your server.<br \/>\n4.  The plugin will generate a `Clairvoyant` folder containing the `config.yml` and `clairvoyant.db` files.<\/p>\n<p>&#8212;&#8211;<\/p>\n<p>## \ud83d\udd27 Configuration Guide (`config.yml`)<\/p>\n<p>All configuration is handled in the `plugins\/Clairvoyant\/config.yml` file. This guide explains each section in detail.<\/p>\n<p>### `weights`<\/p>\n<p>This section controls how much influence each heuristic has on the final suspicion score. It&#8217;s recommended to keep the sum of all weights equal to `1.0`.<\/p>\n<p>* **Example**: If you think `tunneling-pattern` is a more reliable indicator of cheating than `torch-usage`, you can increase its weight and decrease the other.<\/p>\n<p><!-- end list --><\/p>\n<p>&#8220;`yaml<br \/>\nweights:<br \/>\n  high-value-ore-ratio: 0.15<br \/>\n  tunneling-pattern: 0.25 # Increased weight<br \/>\n  torch-usage: 0.05<br \/>\n  # &#8230; and so on<br \/>\n&#8220;`<\/p>\n<p>### `ore-lists`<\/p>\n<p>This is where you define which blocks the plugin should care about. **You can add items from mods or custom plugins here** using their unique namespaced ID (e.g., `mod_id:item_id`).<\/p>\n<p>* `high-value`: A list of rare and valuable ores. Mining these ores in unusual ways will significantly impact the suspicion score.<br \/>\n* `common`: A map of common ores. Used by some heuristics to detect if a player is abnormally focusing on one type of common ore.<br \/>\n* `stones`: A list of common blocks that are typically ignored during mining (like stone, dirt, deepslate). This list is crucial for calculating ore-to-stone ratios.<\/p>\n<p>### `visualization-mapping`<\/p>\n<p>This section customizes the visual feedback for the `\/cv trace` command.<\/p>\n<p>* `default-marker`: The block that will be used for any mined block not specified in the `ores` list below.<br \/>\n* `ores`: A map that defines which block to show for a specific mined ore. For example, when a `DIAMOND_ORE` is mined, the trace will show a `DIAMOND_BLOCK`.<\/p>\n<p>### `thresholds`<\/p>\n<p>This section allows you to fine-tune the sensitivity of each heuristic.<\/p>\n<p>* `min-blocks-for-analysis`: The minimum number of blocks a player must break before their data can be analyzed. This prevents inaccurate reports for new players.<br \/>\n* `high-value-ratio`: The ore-to-stone ratio above which the heuristic will start adding to the suspicion score.<br \/>\n* `suspicious-y-levels`: Defines the Y-level ranges that are considered optimal for finding valuable ores. Players who spend an unusual amount of time mining in these specific zones will get a higher score.<br \/>\n* And many others to control the sensitivity of each specific analysis.<\/p>\n<p>### `suspicion-levels`<\/p>\n<p>This section sets the score boundaries for the status levels displayed in the `\/cv check` report.<\/p>\n<p>* `suspicious`: Any score above this value will be flagged as **[SUSPICIOUS]**.<br \/>\n* `dangerous`: Any score above this value will be flagged as **[DANGEROUS]**.<\/p>\n<p>### `auto-punish`<\/p>\n<p>This section sets the threshold level and punishment command for the auto-punish feature.<\/p>\n<p>* `enabled`: Turns the auto-punish feature on and off.<br \/>\n* `threshold-level`: Sets the threshold level for the auto-punish feature.<br \/>\n* `command`: Sets the command to execute when the critical level is reached.<\/p>\n<p><!-- end list --><\/p>\n","protected":false},"excerpt":{"rendered":"<p>A plugin for detecting X-ray users by logging and visualizing their activities.<\/p>\n","protected":false},"featured_media":40539,"template":"","meta":{"_minecraft_slug":"clairvoyant","_minecraft_project_id":"ssG5wQAM","_minecraft_author":"nitg3n","_minecraft_license":"MIT","_minecraft_downloads":179,"_minecraft_follows":4,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"clairvoyant.zip","_minecraft_size_bytes":84489100,"_minecraft_version_count":4,"_minecraft_updated_at":"2026-05-16T13:00:39.965719Z","_minecraft_date_created":"2025-08-13T20:21:51.867742Z","_minecraft_date_modified":"2025-08-19T08:39:40.203828Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/clairvoyant","_minecraft_icon_attachment_id":40539,"_minecraft_imported_at":"2026-06-01T21:50:48+00:00","_minecraft_import_hash":"f91baabfcfe2f753f858deb7bf4ec9dd","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[89,126,127,128,867,92],"mod_loader":[132,133],"minecraft_version":[62,37,73,74,38,78,79,80,81],"class_list":["post-40538","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-game-mechanics","mod_category-management","mod_category-paper","mod_category-purpur","mod_category-social","mod_category-utility","mod_loader-paper","mod_loader-purpur","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","minecraft_version-1-21-7","minecraft_version-1-21-8"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Clairvoyant - 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\/clairvoyant\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Clairvoyant - Minecraft\" \/>\n<meta property=\"og:description\" content=\"A plugin for detecting X-ray users by logging and visualizing their activities.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/clairvoyant\/\" \/>\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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/clairvoyant\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/clairvoyant\\\/\",\"name\":\"Clairvoyant - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/clairvoyant\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/clairvoyant\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/clairvoyant-icon-b0dfc5e03da196f9e46db07fbb9b09b4c61443fc.png\",\"datePublished\":\"2026-06-01T21:50:47+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/clairvoyant\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/clairvoyant\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/clairvoyant\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/clairvoyant-icon-b0dfc5e03da196f9e46db07fbb9b09b4c61443fc.png\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/clairvoyant-icon-b0dfc5e03da196f9e46db07fbb9b09b4c61443fc.png\",\"width\":400,\"height\":400},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/clairvoyant\\\/#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\":\"Clairvoyant\"}]},{\"@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":"Clairvoyant - 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\/clairvoyant\/","og_locale":"en_US","og_type":"article","og_title":"Clairvoyant - Minecraft","og_description":"A plugin for detecting X-ray users by logging and visualizing their activities.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/clairvoyant\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/clairvoyant\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/clairvoyant\/","name":"Clairvoyant - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/clairvoyant\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/clairvoyant\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/clairvoyant-icon-b0dfc5e03da196f9e46db07fbb9b09b4c61443fc.png","datePublished":"2026-06-01T21:50:47+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/clairvoyant\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/clairvoyant\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/clairvoyant\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/clairvoyant-icon-b0dfc5e03da196f9e46db07fbb9b09b4c61443fc.png","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/clairvoyant-icon-b0dfc5e03da196f9e46db07fbb9b09b4c61443fc.png","width":400,"height":400},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/clairvoyant\/#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":"Clairvoyant"}]},{"@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\/40538","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\/40539"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=40538"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=40538"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=40538"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=40538"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}