{"id":95266,"date":"2026-06-05T13:56:00","date_gmt":"2026-06-05T10:56:00","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/login-system\/"},"modified":"2026-06-05T13:56:00","modified_gmt":"2026-06-05T10:56:00","slug":"login-system","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/login-system\/","title":{"rendered":"LoginSystem"},"content":{"rendered":"<p>### Advanced, Secure, and Fully Customizable Authentication<\/p>\n<p>**LoginSystem** is a modern, high-performance authentication plugin designed from the ground up to maximize your server&#8217;s security. Tired of old and clunky plugins? LoginSystem will add a professional touch to your server with its **multi-database support**, **advanced hashing options**, and **fully translatable structure**.<\/p>\n<p>All database operations run **asynchronously**, meaning your server will not experience any lag.<\/p>\n<p>**Wide Database Support:** SQLite, H2, MySQL, MariaDB, PostgreSQL, and even MongoDB!<\/p>\n<p>**Top-Tier Security:** SHA256 hashing by default, automatic migration from legacy algorithms (SHA1, MD5, etc.), and unsafe password prevention.<\/p>\n<p>**100% Translatable:** All messages are managed through language files. New languages can be downloaded automatically from GitHub.<\/p>\n<p>**Highly Customizable:** Login timeout, registration limit per IP, movement\/chat\/command restrictions before login, and much more.<\/p>\n<p>**Admin Commands:** Many useful commands like force-registering players, changing passwords, unregistering accounts, and reloading the plugin.<\/p>\n<p>**Developer API:** A powerful API that allows other plugins to integrate with LoginSystem.<\/p>\n<p>**Automatic Update Checker:** Checks for new versions on SpigotMC (Resource ID: 74894) and notifies admins.<\/p>\n<p>**GUI Support:** The API allows for the creation of modern Anvil GUI login screens instead of using chat.<\/p>\n<p>![Commands](https:\/\/i.ibb.co\/sKTKCwD\/Commands.png)<br \/>\n# Player Commands<br \/>\n\/login <password> &#8211; Allows you to log in to the server.<\/p>\n<p>\/register <password> <confirmPassword> &#8211; Allows you to register on the server.<\/p>\n<p>\/changepassword <oldPassword> <newPassword> &#8211; Changes your password.<\/p>\n<p>\/unregister <password> &#8211; Deletes your registration from the server.<\/p>\n<p>\/logout &#8211; Allows you to log out securely.<\/p>\n<p>\/email add <email> &#8211; Adds or changes the email address for your account.<\/p>\n<p>\/email remove &#8211; Removes the email address from your account.<\/p>\n<p># Admin Commands (\/ls)<br \/>\n\/ls help &#8211; Lists all admin commands.<\/p>\n<p>\/ls reload &#8211; Reloads the plugin&#8217;s configuration and language files.<\/p>\n<p>\/ls lang <language> &#8211; Changes the plugin&#8217;s language and reloads it.<\/p>\n<p>\/ls register <player> <password> &#8211; Forcibly registers a player.<\/p>\n<p>\/ls unregister <player> &#8211; Deletes a player&#8217;s registration.<\/p>\n<p>\/ls changepass <player> <newPassword> &#8211; Changes a player&#8217;s password.<\/p>\n<p>\/ls forcelogin <player> &#8211; Forces an online player to log in.<\/p>\n<p>![Permissions](https:\/\/i.ibb.co\/7Vy45Gq\/Permissions.png)<br \/>\nloginsystem.admin &#8211; Grants access to all admin commands. (Default: OP)<\/p>\n<p>loginsystem.admin.help &#8211; Permission for \/ls help.<\/p>\n<p>loginsystem.admin.reload &#8211; Permission for \/ls reload.<\/p>\n<p>loginsystem.admin.lang &#8211; Permission for \/ls lang.<\/p>\n<p>loginsystem.admin.register &#8211; Permission for \/ls register.<\/p>\n<p>loginsystem.admin.unregister &#8211; Permission for \/ls unregister.<\/p>\n<p>loginsystem.admin.changepass &#8211; Permission for \/ls changepass.<\/p>\n<p>loginsystem.admin.forcelogin &#8211; Permission for \/ls forcelogin.<\/p>\n<p>loginsystem.admin.update &#8211; Receive update notifications upon joining.<\/p>\n<p>![Screenshots](https:\/\/i.ibb.co\/SK49GQF\/Screenshots.png)<br \/>\n![Screenshot](https:\/\/i.ibb.co\/FbMjhywp\/Screenshot-422.png)<br \/>\n![Screenshot](https:\/\/i.ibb.co\/0yGkwz2j\/Screenshot-423.png)<br \/>\n![Screenshot](https:\/\/i.ibb.co\/DDSbXdSS\/Screenshot-424.png)<\/p>\n<p>**Configuration**<br \/>\nThe plugin is almost entirely customizable through the `config.yml` file.<br \/>\n&#8220;`<br \/>\n# LoginSystem Plugin Configuration<\/p>\n<p># Specify which method to use for data storage.<br \/>\n# Available options: sqlite, h2, mysql, mariadb, postgresql, mongodb<br \/>\nstorage:<br \/>\n  type: sqlite<\/p>\n<p># H2 settings (used if type is set to h2)<br \/>\nh2:<br \/>\n  # The name of the database file to be created in the plugin&#8217;s folder (without extension).<br \/>\n  # For example: &#8216;loginsystem_data&#8217; -> creates plugins\/LoginSystem\/loginsystem_data.mv.db<br \/>\n  filename: &#8220;loginsystem_data&#8221;<\/p>\n<p># MySQL\/MariaDB settings<br \/>\ndatabase:<br \/>\n  host: &#8220;localhost&#8221;<br \/>\n  port: 3306<br \/>\n  dbname: &#8220;loginsystem&#8221;<br \/>\n  user: &#8220;root&#8221;<br \/>\n  password: &#8220;password&#8221;<\/p>\n<p># PostgreSQL settings<br \/>\npostgresql:<br \/>\n  host: &#8220;localhost&#8221;<br \/>\n  port: 5432<br \/>\n  dbname: &#8220;loginsystem&#8221;<br \/>\n  user: &#8220;postgres&#8221;<br \/>\n  password: &#8220;password&#8221;<\/p>\n<p># MongoDB settings<br \/>\nmongodb:<br \/>\n  # Example connection URI. Edit according to your own server information.<br \/>\n  # Simple structure: &#8220;mongodb:\/\/host:port&#8221;<br \/>\n  # With authentication: &#8220;mongodb:\/\/user:password@host:port\/?authSource=admin&#8221;<br \/>\n  connection-uri: &#8220;mongodb:\/\/localhost:27017&#8221;<br \/>\n  database: &#8220;loginsystem&#8221;<\/p>\n<p>settings:<\/p>\n<p>  # Check for new updates on SpigotMC when the server starts.<br \/>\n  update_checker:<br \/>\n    enabled: true<\/p>\n<p>  # Specifies the language file to be used.<br \/>\n  # Example: en, tr, az, de<br \/>\n  # A list of all available languages can be found at: https:\/\/github.com\/BartuAbiHD\/LoginSystem\/tree\/main\/messages<br \/>\n  messagesLanguage: &#8220;en&#8221;<\/p>\n<p>  security:<br \/>\n    # Minimum password length.<br \/>\n    minPasswordLength: 6<br \/>\n    # Maximum password length.<br \/>\n    passwordMaxLength: 32<br \/>\n    # The hashing algorithm to be used.<br \/>\n    # Options: SHA256, BCRYPT, MD5<br \/>\n    # WARNING: Avoid using old and insecure algorithms like MD5.<br \/>\n    passwordHash: &#8220;SHA256&#8221;<br \/>\n    # If a password check fails, LoginSystem will also try to check with the following algorithms.<br \/>\n    # This setting is useful when migrating from one hashing method to another.<br \/>\n    # LoginSystem will automatically update the password to the new hash method if it matches a legacy one.<br \/>\n    # legacyHashes:<br \/>\n    # &#8211; &#8216;SHA1&#8217;<br \/>\n    # &#8211; &#8216;MD5&#8217;<br \/>\n    legacyHashes: []<\/p>\n<p>    # Prevent unsafe (easily guessable) passwords from being used.<br \/>\n    # The list is case-insensitive.<br \/>\n    unsafePasswords:<br \/>\n      &#8211; &#8216;123456&#8217;<br \/>\n      &#8211; &#8216;password&#8217;<br \/>\n      &#8211; &#8216;qwerty&#8217;<br \/>\n      &#8211; &#8216;12345&#8217;<br \/>\n      &#8211; &#8216;54321&#8217;<br \/>\n      &#8211; &#8216;123456789&#8217;<br \/>\n      &#8211; &#8216;help&#8217;<br \/>\n      &#8211; &#8216;test&#8217;<br \/>\n      &#8211; &#8216;deneme&#8217;<\/p>\n<p>  restrictions:<br \/>\n    # Can unauthenticated players chat?<br \/>\n    # This setting also blocks all commands not listed below.<br \/>\n    allowChat: false<br \/>\n    # Should chat be hidden from unauthenticated players?<br \/>\n    hideChat: false<\/p>\n<p>    # Allowed commands for unauthenticated players.<br \/>\n    allowCommands:<br \/>\n      &#8211; \/login<br \/>\n      &#8211; \/register<br \/>\n      &#8211; \/l<br \/>\n      &#8211; \/reg<br \/>\n      &#8211; \/giris<br \/>\n      &#8211; \/girisyap<br \/>\n      &#8211; \/oturumac<br \/>\n      &#8211; \/kayit<br \/>\n      &#8211; \/kayitol<br \/>\n      &#8211; \/kaydol<\/p>\n<p>    # Maximum number of allowed registrations per IP.<br \/>\n    # A value of 0 means unlimited registrations!<br \/>\n    maxRegPerIp: 2<\/p>\n<p>    # Minimum allowed username length.<br \/>\n    minNicknameLength: 3<br \/>\n    # Maximum allowed username length.<br \/>\n    maxNicknameLength: 16<\/p>\n<p>    # When this setting is enabled, an already online player cannot be kicked due to &#8220;Logged in from another location&#8221;.<br \/>\n    # This prevents potential security exploits.<br \/>\n    ForceSingleSession: true<\/p>\n<p>    ForceSpawnLocOnJoin:<br \/>\n      # If enabled, every player that joins in one of the worlds listed below will be teleported<br \/>\n      # to the world&#8217;s spawn point after successful authentication.<br \/>\n      # The player&#8217;s quit location will be overwritten.<br \/>\n      enabled: false<br \/>\n      # World names where forcing the spawn location is required (Case-sensitive!)<br \/>\n      worlds:<br \/>\n        &#8211; world<br \/>\n        &#8211; world_nether<\/p>\n<p>    # Should non-registered players be kicked immediately?<br \/>\n    kickNonRegistered: false<br \/>\n    # Should players be kicked on wrong password?<br \/>\n    kickOnWrongPassword: true<\/p>\n<p>    # After how many seconds should players who fail to login or register be kicked?<br \/>\n    # Set to 0 to disable.<br \/>\n    timeout: 30<\/p>\n<p>    # Regex pattern for allowed characters in player names.<br \/>\n    allowedNicknameCharacters: &#8220;[a-zA-Z0-9_]*&#8221;<br \/>\n    # Regex pattern for allowed characters in passwords.<br \/>\n    allowedPasswordCharacters: &#8220;[!-~]*&#8221;<br \/>\n    # Regex pattern for allowed characters in emails.<br \/>\n    allowedEmailCharacters: &#8220;^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\\.[a-zA-Z]{2,}$&#8221;<br \/>\n&#8220;`<\/p>\n<p>**For Developers**<br \/>\nLoginSystem provides a powerful **v2 API** to facilitate integration with other plugins.<br \/>\n# API Example<br \/>\nAccessing the API:<br \/>\n&#8220;`java<br \/>\nLoginSystemAPI api = LoginSystem.getApi();<br \/>\n&#8220;`<br \/>\nChecking if a player is logged in:<br \/>\n&#8220;`java<br \/>\nif (api.isLoggedIn(player)) {<br \/>\n    \/\/ &#8230;<br \/>\n}<br \/>\n&#8220;`<br \/>\nListening for a successful login event:<br \/>\n&#8220;`java<br \/>\nimport me.bartuabihd.loginsystem.api.v2.event.LoginEvent;<\/p>\n<p>@EventHandler<br \/>\npublic void onPlayerAuthLogin(LoginEvent event) {<br \/>\n    Player player = event.getPlayer();<br \/>\n    player.sendMessage(&#8220;Welcome back via API!&#8221;);<br \/>\n}<br \/>\n&#8220;`<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Advanced &#038; Secure Auth | Multi-DB &#038; API<\/p>\n","protected":false},"featured_media":95267,"template":"","meta":{"_minecraft_slug":"login-system","_minecraft_project_id":"ZpXC2cU8","_minecraft_author":"BartuAbiHD","_minecraft_license":"MIT","_minecraft_downloads":6181,"_minecraft_follows":3,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"login-system.zip","_minecraft_size_bytes":24583543,"_minecraft_version_count":1,"_minecraft_updated_at":"2026-05-16T02:54:48.637717Z","_minecraft_date_created":"2025-10-27T07:35:05.624553Z","_minecraft_date_modified":"2025-10-16T08:45:50.084992Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/login-system","_minecraft_icon_attachment_id":95267,"_minecraft_imported_at":"2026-06-05T10:56:01+00:00","_minecraft_import_hash":"7d56db48a1346b73517f52ee29eb7376","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[124,873,126,127,128,867,129,92],"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-95266","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-bukkit","mod_category-library","mod_category-management","mod_category-paper","mod_category-purpur","mod_category-social","mod_category-spigot","mod_category-utility","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>LoginSystem - 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\/login-system\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"LoginSystem - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Advanced &amp; Secure Auth | Multi-DB &amp; API\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/login-system\/\" \/>\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\\\/login-system\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/login-system\\\/\",\"name\":\"LoginSystem - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/login-system\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/login-system\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/login-system-icon-0d990b4a020780a9026eeb23afafe9f21260d465.png\",\"datePublished\":\"2026-06-05T10:56:00+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/login-system\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/login-system\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/login-system\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/login-system-icon-0d990b4a020780a9026eeb23afafe9f21260d465.png\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/login-system-icon-0d990b4a020780a9026eeb23afafe9f21260d465.png\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/login-system\\\/#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\":\"LoginSystem\"}]},{\"@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":"LoginSystem - 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\/login-system\/","og_locale":"en_US","og_type":"article","og_title":"LoginSystem - Minecraft","og_description":"Advanced & Secure Auth | Multi-DB & API","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/login-system\/","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\/login-system\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/login-system\/","name":"LoginSystem - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/login-system\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/login-system\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/login-system-icon-0d990b4a020780a9026eeb23afafe9f21260d465.png","datePublished":"2026-06-05T10:56:00+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/login-system\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/login-system\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/login-system\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/login-system-icon-0d990b4a020780a9026eeb23afafe9f21260d465.png","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/login-system-icon-0d990b4a020780a9026eeb23afafe9f21260d465.png","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/login-system\/#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":"LoginSystem"}]},{"@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\/95266","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\/95267"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=95266"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=95266"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=95266"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=95266"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}