{"id":125717,"date":"2026-06-07T12:15:12","date_gmt":"2026-06-07T09:15:12","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/pronounsmc\/"},"modified":"2026-06-07T12:15:12","modified_gmt":"2026-06-07T09:15:12","slug":"pronounsmc","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/pronounsmc\/","title":{"rendered":"PronounsMC"},"content":{"rendered":"<p># PronounsMC<\/p>\n<p>**PronounsMC** is a Minecraft Spigot plugin that allows players to set and display their pronouns. It supports multiple database types (**MySQL** and **SQLite**) and provides customizable messages via language files.<\/p>\n<p>## Notes<\/p>\n<p>&#8211; PlaceholderAPI is required for placeholders.<br \/>\n&#8211; We reccomend using a plugin like ChatInjector for use with plugins that **don&#8217;t** support PlaceholderAPI like EssentialsX Chat.<\/p>\n<p>## Features<\/p>\n<p>&#8211; Players can set and display their pronouns using simple commands.<br \/>\n&#8211; Pronouns are color-coded and configurable via `config.yml`.<br \/>\n&#8211; Supports **MySQL** or **SQLite** for data storage.<br \/>\n&#8211; Fully customizable messages via language files (e.g., `lang\/en_US.yml`).<br \/>\n&#8211; Reload settings and messages without restarting the server.<\/p>\n<p>&#8212;<\/p>\n<p>## Installation<\/p>\n<p>1. **Download** the plugin jar file and place it in your server&#8217;s `plugins\/` folder.<br \/>\n2. **Start your server** to generate the default configuration files.<br \/>\n3. **Edit `config.yml`** to configure:<br \/>\n    &#8211; **Database type**: Choose between `mysql` or `sqlite`.<br \/>\n    &#8211; **Available pronouns**: Customize the list of pronouns and their color-coded formats.<br \/>\n    &#8211; **Language file**: Specify the language file (default: `en_US`).<br \/>\n4. **Restart your server** or use `\/pronouns reload` to apply changes. *(Does not work for database changes)*<\/p>\n<p>&#8212;<\/p>\n<p>## Placeholders<\/p>\n<p>| Placeholder            | 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;&#8211;|<br \/>\n| `%pronouns%`           | Displays users pronouns. Works with PlaceholderAPI   |<\/p>\n<p>&#8212;<\/p>\n<p>## Configuration<\/p>\n<p>### `config.yml`<\/p>\n<p>Colour formatting can be used in pronouns as shown below, this is optional.<\/p>\n<p>&#8220;`yaml<br \/>\nlangFile: &#8220;en_US&#8221;<\/p>\n<p>database:<br \/>\n   type: sqlite # Use either &#8216;mysql&#8217; or &#8216;sqlite&#8217;<br \/>\n   host: localhost<br \/>\n   port: 3306<br \/>\n   name: minecraft<br \/>\n   user: root<br \/>\n   password: &#8220;password&#8221;<\/p>\n<p>userSuppliedPronouns: false # This setting can be abused by players.<br \/>\ndefaultProunounTemplate: &#8220;&#038;7(%s)&#038;r&#8221;<\/p>\n<p>availablePronouns:<br \/>\n   he\/him: &#8220;&#038;3(&#038;bHe&#038;3\/&#038;bHim&#038;3)&#038;r&#8221;<br \/>\n   she\/her: &#8220;&#038;5(&#038;dShe&#038;5\/&#038;dHer&#038;5)&#038;r&#8221;<br \/>\n   they\/them: &#8220;&#038;2(&#038;aThey&#038;2\/&#038;aThem&#038;2)&#038;r&#8221;<br \/>\n   it\/its: &#8220;&#038;8(&#038;7It&#038;8\/&#038;7Its&#038;8)&#038;r&#8221;<br \/>\n   he\/they: &#8220;&#038;3(&#038;bHe&#038;3\/&#038;bThey&#038;3)&#038;r&#8221;<br \/>\n   she\/they: &#8220;&#038;4(&#038;cShe&#038;4\/&#038;cThey&#038;4)&#038;r&#8221;<br \/>\n   xe\/xem: &#8220;&#038;8(&#038;7Xe&#038;8\/&#038;7Xem&#038;8)&#038;r&#8221;<br \/>\n   ze\/zir: &#8220;&#038;8(&#038;7Ze&#038;8\/&#038;7Zir&#038;8)&#038;r&#8221;<br \/>\n&#8220;`<\/p>\n<p>### `lang\/en_US.yml`<\/p>\n<p>All user-facing messages are customizable in the language file. Example:<\/p>\n<p>&#8220;`yaml<br \/>\nmessages:<br \/>\n   usageMain: &#8220;&#038;cUsage: \/pronouns <command>&#8221;<br \/>\n   usageSet: &#8220;&#038;cUsage: \/pronouns set <pronoun>&#8221;<br \/>\n   usageGet: &#8220;&#038;cUsage: \/pronouns get <username>&#8221;<br \/>\n   noPermission: &#8220;&#038;cYou don&#8217;t have permission to use this command.&#8221;<br \/>\n   playerNotFound: &#8220;&#038;cPlayer not found!&#8221;<br \/>\n   invalidPronoun: &#8220;&#038;cInvalid pronoun. Use \/pronouns list to see available options.&#8221;<br \/>\n   notSet: &#8220;&#038;7Not set&#8221;<br \/>\n   pluginReloaded: &#8220;&#038;aPronounsMC config reloaded.&#8221;<br \/>\n   pronounSet: &#8220;&#038;aYour pronouns have been set to: &#038;r{pronouns}&#8221;<br \/>\n   availablePronounsHeader: &#8220;&#038;aAvailable pronouns:&#8221;<br \/>\n   playerPronounFormat: &#8220;&#038;a{player}&#8217;s pronouns: &#038;r{pronouns}&#8221;<br \/>\n   playerPronounNone: &#8220;&#038;a{player}&#8217;s pronouns: &#038;bNot set&#8221; # Used for \/pronouns get <username><br \/>\n   onlyPlayers: &#8220;&#038;cOnly players can set pronouns.&#8221;<br \/>\n   availablePronounsFooter: &#8220;&#038;9You can also set your own pronouns using \/pronouns set <pronoun>&#8221;<br \/>\n   pronounResetTarget: &#8220;&#038;aReset pronouns for {player}.&#8221;<br \/>\n&#8220;`<\/p>\n<p>&#8212;<\/p>\n<p>## Commands<\/p>\n<p>| Command                   | Description                                  | Permission        |<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;-|<br \/>\n| `\/pronouns set <pronoun>` | Sets your pronouns to the specified pronoun. | None              |<br \/>\n| `\/pronouns reset`         | Resets previously set pronouns by user       | None              |<br \/>\n| `\/pronouns reset <user>`  | Resets other users pronouns                  | `pronouns.admin`  |<br \/>\n| `\/pronouns get <user>`    | Displays the pronouns of another player.     | `pronouns.get`    |<br \/>\n| `\/pronouns list`          | Lists all available pronouns.                | None              |<br \/>\n| `\/pronouns reload`        | Reloads the configuration and language.      | `pronouns.reload` |<\/p>\n<p>&#8212;<\/p>\n<p>## Permissions<\/p>\n<p>| Permission        | Description                                      | Default |<br \/>\n|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|&#8212;&#8212;&#8212;|<br \/>\n| `pronouns.get`    | Allows retrieving another player&#8217;s pronouns.     | OP      |<br \/>\n| `pronouns.reload` | Allows reloading the configuration and language. | OP      |<br \/>\n| `pronouns.admin`  | Allows resetting other users pronouns.           | OP      |<\/p>\n<p>&#8212;<\/p>\n<p>## Database Support<\/p>\n<p>### MySQL<br \/>\nTo use MySQL:<br \/>\n1. Set `database.type: mysql` in `config.yml`.<br \/>\n2. Configure `host`, `port`, `name`, `user`, and `password`.<\/p>\n<p>### SQLite<br \/>\nTo use SQLite:<br \/>\n1. Set `database.type: sqlite` in `config.yml`.<br \/>\n2. The plugin will create a `pronouns.db` file in the plugin folder.<\/p>\n<p>&#8212;<\/p>\n<p>## License<br \/>\nThis project is licensed under the Apache License 2.0.<\/p>\n<p>&#8212;<\/p>\n<p>## Contribution<\/p>\n<p>Contributions are welcome! To contribute:<br \/>\n1. Fork the repository.<br \/>\n2. Create a new feature branch.<br \/>\n3. Submit a pull request explaining your changes.<\/p>\n<p>&#8212;<\/p>\n<p>## Thanks for using PronounsMC<\/p>\n","protected":false},"excerpt":{"rendered":"<p>PlaceholderAPI compatible Pronouns Plugin for Minecraft Spigot\/Paper.<\/p>\n","protected":false},"featured_media":125718,"template":"","meta":{"_minecraft_slug":"pronounsmc","_minecraft_project_id":"PzZLlW52","_minecraft_author":"Alfie51m","_minecraft_license":"Apache-2.0","_minecraft_downloads":291,"_minecraft_follows":1,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"pronounsmc.zip","_minecraft_size_bytes":1614255,"_minecraft_version_count":7,"_minecraft_updated_at":"2026-05-16T11:50:18.681013Z","_minecraft_date_created":"2025-01-29T21:21:59.760915Z","_minecraft_date_modified":"2026-02-13T23:38:58.133234Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/pronounsmc","_minecraft_icon_attachment_id":125718,"_minecraft_imported_at":"2026-06-07T09:15:13+00:00","_minecraft_import_hash":"d61e67ed0d7f901ffcec3834e74af579","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[124,127,867,129,92],"mod_loader":[130,132,134],"minecraft_version":[62,37,40,41,73,74,38,78,79,80,81,82],"class_list":["post-125717","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-bukkit","mod_category-paper","mod_category-social","mod_category-spigot","mod_category-utility","mod_loader-bukkit","mod_loader-paper","mod_loader-spigot","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>PronounsMC - 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\/pronounsmc\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PronounsMC - Minecraft\" \/>\n<meta property=\"og:description\" content=\"PlaceholderAPI compatible Pronouns Plugin for Minecraft Spigot\/Paper.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/pronounsmc\/\" \/>\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\\\/pronounsmc\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/pronounsmc\\\/\",\"name\":\"PronounsMC - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/pronounsmc\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/pronounsmc\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/pronounsmc-icon-22f1258a1b40106547f1c33dc802c6bc895fc2a2_96.webp\",\"datePublished\":\"2026-06-07T09:15:12+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/pronounsmc\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/pronounsmc\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/pronounsmc\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/pronounsmc-icon-22f1258a1b40106547f1c33dc802c6bc895fc2a2_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/pronounsmc-icon-22f1258a1b40106547f1c33dc802c6bc895fc2a2_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/pronounsmc\\\/#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\":\"PronounsMC\"}]},{\"@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":"PronounsMC - 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\/pronounsmc\/","og_locale":"en_US","og_type":"article","og_title":"PronounsMC - Minecraft","og_description":"PlaceholderAPI compatible Pronouns Plugin for Minecraft Spigot\/Paper.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/pronounsmc\/","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\/pronounsmc\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/pronounsmc\/","name":"PronounsMC - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/pronounsmc\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/pronounsmc\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/pronounsmc-icon-22f1258a1b40106547f1c33dc802c6bc895fc2a2_96.webp","datePublished":"2026-06-07T09:15:12+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/pronounsmc\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/pronounsmc\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/pronounsmc\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/pronounsmc-icon-22f1258a1b40106547f1c33dc802c6bc895fc2a2_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/pronounsmc-icon-22f1258a1b40106547f1c33dc802c6bc895fc2a2_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/pronounsmc\/#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":"PronounsMC"}]},{"@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\/125717","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\/125718"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=125717"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=125717"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=125717"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=125717"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}