{"id":38709,"date":"2026-06-01T23:06:56","date_gmt":"2026-06-01T20:06:56","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/chat-games\/"},"modified":"2026-06-01T23:06:56","modified_gmt":"2026-06-01T20:06:56","slug":"chat-games","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/chat-games\/","title":{"rendered":"Chat Games"},"content":{"rendered":"<p># ChatGames<\/p>\n<p>A Minecraft plugin that adds interactive chat-based minigames to engage your server&#8217;s players with trivia, math challenges, word scrambles, and reaction games.<\/p>\n<p>## Why use ChatGames?<\/p>\n<p>&#8211; Instant, lightweight chat minigames that keep your chat active.<br \/>\n&#8211; Multi-platform: same core works across Spigot, Paper, Folia, and Sponge via a platform abstraction layer.<br \/>\n&#8211; Fully configurable games, schedules, messages and reward commands.<br \/>\n&#8211; Small, well-documented, and easy to extend.<\/p>\n<p>## Features<\/p>\n<p>&#8211; **Multiple Game Types:**<br \/>\n  &#8211; **Trivia** &#8211; Answer trivia questions correctly<br \/>\n  &#8211; **Math** &#8211; Solve math problems<br \/>\n  &#8211; **Unscramble** &#8211; Unscramble words<br \/>\n  &#8211; **Multiple Choice** &#8211; Pick the correct answer from several options<br \/>\n  &#8211; **Reaction** &#8211; Respond quickly<\/p>\n<p>&#8211; **Automatic Game Scheduling** &#8211; Games start automatically at configurable intervals<br \/>\n&#8211; **Customizable Rewards** &#8211; Configure commands to run when players win (economy rewards, items, etc.)<\/p>\n<p>## Quick Install<\/p>\n<p>1. Drop the plugin `.jar` into your server&#8217;s `plugins\/` folder.<br \/>\n2. Start the server once to generate default configurations.<br \/>\n3. Edit `config.yml`, `en-us.yml`, and the individual game files.<\/p>\n<p>## Configuration<\/p>\n<p>### Main Configuration<\/p>\n<details>\n<summary>config.yml<\/summary>\n<p>  &#8220;`yml<br \/>\n  # ChatGames Configuration<br \/>\n  # https:\/\/github.com\/RareHyperIon\/ChatGames<\/p>\n<p>  # Available: en-us<br \/>\n  language: en-us<\/p>\n<p>  # Interval between automatic games (in seconds)<br \/>\n  game-interval: 300<\/p>\n<p>  # Minimum players online to start automatic games<br \/>\n  minimum-players: 1<\/p>\n<p>  # Whether to automatically start games at intervals<br \/>\n  automatic-games: true<\/p>\n<p>  # Cooldown after wrong answer in multiple choice (in ticks, 20 ticks = 1 second)<br \/>\n  answer-cooldown-ticks: 60<\/p>\n<p>  # Enable debug logging<br \/>\n  debug: false<br \/>\n    &#8220;`<br \/>\n  <\/details>\n<details>\n<summary>language\/en-us.yml<\/summary>\n<p>    &#8220;`yml<br \/>\n  # ChatGames Language File &#8211; English (US)<\/p>\n<p>  # Message shown when a player tries to use a command they don&#8217;t have access to<br \/>\n  permission: &#8220;<red>You don&#8217;t have permission to use this command.<\/red>&#8221;<\/p>\n<p>  # Message shown when ChatGames has been successfully reloaded<br \/>\n  reload: &#8220;<green>Successfully reloaded ChatGames!<\/green>&#8221;<\/p>\n<p>  # Cooldown message when player tries to answer too quickly after wrong answer<br \/>\n  cooldown: &#8220;<red>You cannot answer this question as you&#8217;ve already tried recently.<\/red>&#8221;<br \/>\n  &#8220;`<br \/>\n<\/details>\n<p>### Game Configuration<\/p>\n<details>\n<summary>games\/math.yml<\/summary>\n<p>  &#8220;`yml<br \/>\n  name: math<br \/>\n  display-name: &#8220;<gold>Math Wizard<\/gold>&#8221;<br \/>\n  timeout: 60 # The time players have to win the game. (in seconds)<\/p>\n<p>  reward-commands:<br \/>\n    &#8211; &#8220;give {player} diamond {rand:1-3}&#8221;<\/p>\n<p>  messages:<br \/>\n    start: |<\/p>\n<p>      <gold><bold>MATH WIZARD<\/bold><\/gold><br \/>\n      <gray>Solve the equation below!<\/gray><\/p>\n<p>      {question}<\/p>\n<p>    win: |<\/p>\n<p>      <green><bold>\u2713<\/bold> <yellow>{player}<\/yellow> solved it!<\/green><br \/>\n      <gray>Answer: <white>{answer}<\/white><\/gray><\/p>\n<p>    timeout: |<\/p>\n<p>      <red><bold>\u2717<\/bold> Time&#8217;s up!<\/red><br \/>\n      <gray>Answer: <white>{answer}<\/white><\/gray><\/p>\n<p>  questions:<br \/>\n    &#8211; [&#8220;<yellow>12 + 8 = ?<\/yellow>&#8220;, &#8220;20&#8221;]<br \/>\n    &#8211; [&#8220;<yellow>25 &#8211; 7 = ?<\/yellow>&#8220;, &#8220;18&#8221;]<br \/>\n    &#8211; [&#8220;<yellow>6 \u00d7 7 = ?<\/yellow>&#8220;, &#8220;42&#8221;]<br \/>\n    &#8211; [&#8220;<yellow>144 \u00f7 12 = ?<\/yellow>&#8220;, &#8220;12&#8221;]<br \/>\n    &#8211; [&#8220;<yellow>15 + 23 = ?<\/yellow>&#8220;, &#8220;38&#8221;]<br \/>\n    &#8211; [&#8220;<yellow>50 &#8211; 18 = ?<\/yellow>&#8220;, &#8220;32&#8221;]<br \/>\n    &#8211; [&#8220;<yellow>9 \u00d7 8 = ?<\/yellow>&#8220;, &#8220;72&#8221;]<br \/>\n    &#8211; [&#8220;<yellow>100 \u00f7 5 = ?<\/yellow>&#8220;, &#8220;20&#8221;]<br \/>\n  &#8220;`<br \/>\n<\/details>\n<details>\n<summary>games\/multiple-choice.yml<\/summary>\n<p>  &#8220;`yml<br \/>\n  name: multiple choice<br \/>\n  display-name: &#8220;<green>Multiple Choice<\/green>&#8221;<br \/>\n  timeout: 45 # The time players have to win the game. (in seconds)<br \/>\n  cooldown: 60 # Ticks to wait after wrong answer (60 ticks = 3 seconds)<\/p>\n<p>  reward-commands:<br \/>\n    &#8211; &#8220;give {player} emerald {rand:1-3}&#8221;<\/p>\n<p>  messages:<br \/>\n    start: |<\/p>\n<p>      <green><bold>MULTIPLE CHOICE<\/bold><\/green><br \/>\n      <gray>Type the correct letter!<\/gray><\/p>\n<p>      {question}<\/p>\n<p>    win: |<\/p>\n<p>      <green><bold>\u2713<\/bold> <yellow>{player}<\/yellow> chose correctly!<\/green><br \/>\n      <gray>Answer: <white>{answer}<\/white><\/gray><\/p>\n<p>    timeout: |<\/p>\n<p>      <red><bold>\u2717<\/bold> Nobody answered!<\/red><br \/>\n      <gray>Correct: <white>{answer}<\/white><\/gray><\/p>\n<p>  questions:<br \/>\n    q1:<br \/>\n      question: &#8220;<yellow>What is the largest planet in our solar system?<\/yellow>&#8221;<br \/>\n      answers:<br \/>\n        &#8211; &#8220;A. Earth&#8221;<br \/>\n        &#8211; &#8220;B. Jupiter&#8221;<br \/>\n        &#8211; &#8220;C. Saturn&#8221;<br \/>\n        &#8211; &#8220;D. Mars&#8221;<br \/>\n      correct-answer: &#8220;B&#8221;<\/p>\n<p>    q2:<br \/>\n      question: &#8220;<yellow>Which programming language is Minecraft written in?<\/yellow>&#8221;<br \/>\n      answers:<br \/>\n        &#8211; &#8220;A. Python&#8221;<br \/>\n        &#8211; &#8220;B. C++&#8221;<br \/>\n        &#8211; &#8220;C. Java&#8221;<br \/>\n        &#8211; &#8220;D. JavaScript&#8221;<br \/>\n      correct-answer: &#8220;C&#8221;<\/p>\n<p>    q3:<br \/>\n      question: &#8220;<yellow>What is 2 + 2 \u00d7 2?<\/yellow>&#8221;<br \/>\n      answers:<br \/>\n        &#8211; &#8220;A. 6&#8221;<br \/>\n        &#8211; &#8220;B. 8&#8221;<br \/>\n        &#8211; &#8220;C. 4&#8221;<br \/>\n        &#8211; &#8220;D. 10&#8221;<br \/>\n      correct-answer: &#8220;A&#8221;<\/p>\n<p>    q4:<br \/>\n      question: &#8220;<yellow>Which mob drops blaze rods?<\/yellow>&#8221;<br \/>\n      answers:<br \/>\n        &#8211; &#8220;A. Ghast&#8221;<br \/>\n        &#8211; &#8220;B. Blaze&#8221;<br \/>\n        &#8211; &#8220;C. Wither Skeleton&#8221;<br \/>\n        &#8211; &#8220;D. Magma Cube&#8221;<br \/>\n      correct-answer: &#8220;B&#8221;<br \/>\n  &#8220;`<br \/>\n<\/details>\n<details>\n<summary>games\/reaction.yml<\/summary>\n<p>  &#8220;`yml<br \/>\n  name: reaction<br \/>\n  display-name: &#8220;<red>Reaction Test<\/red>&#8221;<br \/>\n  timeout: 30 # The time players have to win the game. (in seconds)<\/p>\n<p>  reward-commands:<br \/>\n    &#8211; &#8220;give {player} diamond {rand:1-3}&#8221;<\/p>\n<p>  messages:<br \/>\n    start: |<\/p>\n<p>      <red><bold>REACTION TEST<\/bold><\/red><br \/>\n      <gray>Be the first to respond!<\/gray><\/p>\n<p>      {question}<\/p>\n<p>    win: |<\/p>\n<p>      <green><bold>\u2713<\/bold> <yellow>{player}<\/yellow> was fastest!<\/green><\/p>\n<p>    timeout: |<\/p>\n<p>      <red><bold>\u2717<\/bold> Nobody reacted in time!<\/red><\/p>\n<p>  # Variants allow different reaction challenges<br \/>\n  # If answer is empty string &#8220;&#8221;, any message wins (fastest typer)<br \/>\n  # If answer is specified, must type that exact word<br \/>\n  # If answer is &#8220;CLICK&#8221;, then it will be clickable.<br \/>\n  #   &#8211; Optional: Add hover=&#8221;Your text&#8221; for custom hover message<br \/>\n  #   &#8211; Example: <button hover='Click me!'>Press here<\/button><br \/>\n  #   &#8211; Without hover attribute, no hover text will be shown<br \/>\n  #   &#8211; You can include colors in the hover attribute.<br \/>\n  variants:<br \/>\n    &#8211; name: &#8220;Type Fast&#8221;<br \/>\n      challenge: &#8220;<gold><bold>Type: <yellow>MINECRAFT<\/yellow><\/bold><\/gold>&#8221;<br \/>\n      answer: &#8220;MINECRAFT&#8221;<\/p>\n<p>    &#8211; name: &#8220;First Word&#8221;<br \/>\n      challenge: &#8220;<gold><bold>Type any word now!<\/bold><\/gold>&#8221;<br \/>\n      answer: &#8220;&#8221;<\/p>\n<p>    &#8211; name: &#8220;Click Fast&#8221;<br \/>\n      challenge: &#8220;<button hover='Click to win!' win><gold><bold>Click me to win!<\/bold><\/gold><\/button>&#8221;<br \/>\n      answer: &#8220;CLICK&#8221;<\/p>\n<p>    &#8211; name: &#8220;Click Fast&#8221;<br \/>\n      challenge: &#8220;<yellow>Click the star!<\/yellow>nn<button win>[<gold><bold>\u2b50<\/bold><\/gold>]<\/button> <button>[<red><bold>\u2764<\/bold><\/red>\ufe0f]<\/button> <button>[<green><bold>\ud83d\udfe2<\/bold><\/green>]<\/button>&#8221;<br \/>\n      answer: &#8220;CLICK&#8221;<\/p>\n<p>    &#8211; name: &#8220;Color&#8221;<br \/>\n      challenge: &#8220;<gold><bold>Type: <yellow>RED<\/yellow><\/bold><\/gold>&#8221;<br \/>\n      answer: &#8220;RED&#8221;<br \/>\n  &#8220;`<br \/>\n<\/details>\n<details>\n<summary>games\/trivia.yml<\/summary>\n<p>  &#8220;`yml<br \/>\n  name: trivia<br \/>\n  display-name: &#8220;<aqua>Trivia Time<\/aqua>&#8221;<br \/>\n  timeout: 45 # The time players have to win the game. (in seconds)<\/p>\n<p>  reward-commands:<br \/>\n    &#8211; &#8220;give {player} emerald {rand:1-3}&#8221;<\/p>\n<p>  messages:<br \/>\n    start: |<\/p>\n<p>      <aqua><bold>TRIVIA TIME<\/bold><\/aqua><br \/>\n      <gray>Answer the question below!<\/gray><\/p>\n<p>      {question}<\/p>\n<p>    win: |<\/p>\n<p>      <green><bold>\u2713<\/bold> <yellow>{player}<\/yellow> got it right!<\/green><br \/>\n      <gray>Answer: <white>{answer}<\/white><\/gray><\/p>\n<p>    timeout: |<\/p>\n<p>      <red><bold>\u2717<\/bold> Nobody got it!<\/red><br \/>\n      <gray>Answer: <white>{answer}<\/white><\/gray><\/p>\n<p>  questions:<br \/>\n    &#8211; [&#8220;<yellow>What is the capital of France?<\/yellow>&#8220;, &#8220;Paris&#8221;]<br \/>\n    &#8211; [&#8220;<yellow>How many continents are there?<\/yellow>&#8220;, &#8220;7&#8221;]<br \/>\n    &#8211; [&#8220;<yellow>What year did the Titanic sink?<\/yellow>&#8220;, &#8220;1912&#8221;]<br \/>\n    &#8211; [&#8220;<yellow>What is the largest ocean?<\/yellow>&#8220;, &#8220;Pacific&#8221;]<br \/>\n    &#8211; [&#8220;<yellow>Who painted the Mona Lisa?<\/yellow>&#8220;, &#8220;Leonardo da Vinci&#8221;]<br \/>\n    &#8211; [&#8220;<yellow>What is the speed of light?<\/yellow>&#8220;, &#8220;299792458&#8221;]<br \/>\n    &#8211; [&#8220;<yellow>What is H2O commonly known as?<\/yellow>&#8220;, &#8220;Water&#8221;]<br \/>\n  &#8220;`<br \/>\n<\/details>\n<details>\n<summary>games\/unscramble.yml<\/summary>\n<p>  &#8220;`yml<br \/>\n  name: unscramble<br \/>\n  display-name: &#8220;<light_purple>Word Scramble<\/light_purple>&#8221;<br \/>\n  timeout: 60 # The time players have to win the game. (in seconds)<\/p>\n<p>  reward-commands:<br \/>\n    &#8211; &#8220;give {player} gold_ingot {rand:1-5}&#8221;<\/p>\n<p>  messages:<br \/>\n    start: |<\/p>\n<light_purple><bold>WORD SCRAMBLE<\/bold><\/light_purple>\n      <gray>Unscramble the word!<\/gray><\/p>\n<p>      {question}<\/p>\n<p>    win: |<\/p>\n<p>      <green><bold>\u2713<\/bold> <yellow>{player}<\/yellow> unscrambled it!<\/green><br \/>\n      <gray>Word: <white>{answer}<\/white><\/gray><\/p>\n<p>    timeout: |<\/p>\n<p>      <red><bold>\u2717<\/bold> Time ran out!<\/red><br \/>\n      <gray>Word: <white>{answer}<\/white><\/gray><\/p>\n<p>  words: [<br \/>\n    &#8220;SMARTPHONE&#8221;, &#8220;COMPUTER&#8221;, &#8220;GAMING&#8221;,<br \/>\n    &#8220;KEYBOARD&#8221;, &#8220;MINECRAFT&#8221;, &#8220;DIAMOND&#8221;,<br \/>\n    &#8220;ADVENTURE&#8221;, &#8220;TREE&#8221;, &#8220;GOLD&#8221;, &#8220;LOG&#8221;<br \/>\n  ]<br \/>\n  &#8220;`<br \/>\n<\/details>\n<p>## Supported Platforms &#038; Versions<\/p>\n<p>| Platform | Supported Versions |<br \/>\n|&#8212;&#8212;&#8212;-|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|<br \/>\n| Spigot   | 1.13.x \u2013 1.21.x    |<br \/>\n| Paper    | 1.20.6 \u2013 1.21.x    |<br \/>\n| Folia    | 1.20.6 \u2013 1.21.x    |<br \/>\n| Sponge   | 1.21.x             |<\/p>\n<p>## Commands<\/p>\n<p>| Command                   | Permission         | Description                      |<br \/>\n|&#8212;&#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;-|<br \/>\n| `\/chatgames reload`       | `chatgames.reload` | Reload all configurations        |<br \/>\n| `\/chatgames start <game>` | `chatgames.start`  | Manually start a game            |<br \/>\n| `\/chatgames stop`         | `chatgames.stop`   | Stop the current game            |<br \/>\n| `\/chatgames list`         | `chatgames.list`   | List all available games         |<br \/>\n| `\/chatgames info`         | `chatgames.info`   | Show plugin information          |<br \/>\n| `\/chatgames toggle`       | `chatgames.toggle` | Toggle automatic games on or off |<\/p>\n<p>## Permissions<\/p>\n<p>| Permission         | Description                        |<br \/>\n|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;|<br \/>\n| `chatgames.reload` | Allows reloading the plugin        |<br \/>\n| `chatgames.start`  | Allows manually starting a game    |<br \/>\n| `chatgames.stop`   | Allows stopping the current game   |<br \/>\n| `chatgames.list`   | Allows listing all available games |<br \/>\n| `chatgames.info`   | Allows viewing plugin information  |<br \/>\n| `chatgames.toggle` | Allows toggling automatic games    |<\/p>\n<p>## Troubleshooting<\/p>\n<p>**Games not starting:**<br \/>\n&#8211; Check `minimum-players` setting in `config.yml`<br \/>\n&#8211; Verify enough players are online<br \/>\n&#8211; Check console for errors<\/p>\n<p>**Rewards not working:**<br \/>\n&#8211; Verify placeholder format is `{player}`<br \/>\n&#8211; Check console for command errors<\/p>\n<p>**Questions not loading:**<br \/>\n&#8211; Verify YAML syntax in game config files<br \/>\n&#8211; Use `\/chatgames reload` after making changes<br \/>\n&#8211; Check console for parsing errors<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A spigot plugin aimed to add chat based games into your server to increase user engagement.<\/p>\n","protected":false},"featured_media":38710,"template":"","meta":{"_minecraft_slug":"chat-games","_minecraft_project_id":"iOxY6frR","_minecraft_author":"RareHyperIon","_minecraft_license":"MIT","_minecraft_downloads":5063,"_minecraft_follows":20,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"chat-games.zip","_minecraft_size_bytes":4176099,"_minecraft_version_count":27,"_minecraft_updated_at":"2026-05-16T03:39:59.251445Z","_minecraft_date_created":"2024-07-30T21:47:26.675213Z","_minecraft_date_modified":"2026-03-12T10:37:15.729186Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/chat-games","_minecraft_icon_attachment_id":38710,"_minecraft_imported_at":"2026-06-01T20:06:57+00:00","_minecraft_import_hash":"996f7fced225d7eae78e09bd622b5d9a","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[124,844,125,89,866,127,128,867,129,1005],"mod_loader":[130,131,132,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,41,73,74,38,78,79,80,81,82,30,31,860,861,862,863,864],"class_list":["post-38709","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-bukkit","mod_category-economy","mod_category-folia","mod_category-game-mechanics","mod_category-minigame","mod_category-paper","mod_category-purpur","mod_category-social","mod_category-spigot","mod_category-sponge","mod_loader-bukkit","mod_loader-folia","mod_loader-paper","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-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-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>Chat Games - 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\/chat-games\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Chat Games - Minecraft\" \/>\n<meta property=\"og:description\" content=\"A spigot plugin aimed to add chat based games into your server to increase user engagement.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/chat-games\/\" \/>\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\\\/chat-games\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/chat-games\\\/\",\"name\":\"Chat Games - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/chat-games\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/chat-games\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/chat-games-icon-c1ac679ec41b20a4eeb02a48286d007043a9d158_96.webp\",\"datePublished\":\"2026-06-01T20:06:56+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/chat-games\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/chat-games\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/chat-games\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/chat-games-icon-c1ac679ec41b20a4eeb02a48286d007043a9d158_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/chat-games-icon-c1ac679ec41b20a4eeb02a48286d007043a9d158_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/chat-games\\\/#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\":\"Chat Games\"}]},{\"@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":"Chat Games - 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\/chat-games\/","og_locale":"en_US","og_type":"article","og_title":"Chat Games - Minecraft","og_description":"A spigot plugin aimed to add chat based games into your server to increase user engagement.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/chat-games\/","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\/chat-games\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/chat-games\/","name":"Chat Games - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/chat-games\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/chat-games\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/chat-games-icon-c1ac679ec41b20a4eeb02a48286d007043a9d158_96.webp","datePublished":"2026-06-01T20:06:56+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/chat-games\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/chat-games\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/chat-games\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/chat-games-icon-c1ac679ec41b20a4eeb02a48286d007043a9d158_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/chat-games-icon-c1ac679ec41b20a4eeb02a48286d007043a9d158_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/chat-games\/#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":"Chat Games"}]},{"@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\/38709","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\/38710"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=38709"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=38709"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=38709"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=38709"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}