{"id":61533,"date":"2026-06-03T16:52:21","date_gmt":"2026-06-03T13:52:21","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/economic-additions\/"},"modified":"2026-06-03T16:52:21","modified_gmt":"2026-06-03T13:52:21","slug":"economic-additions","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/economic-additions\/","title":{"rendered":"Economic Additions"},"content":{"rendered":"<p># Assailents Economic Additions<br \/>\n## Introduction<br \/>\nAssailents Economic Additions is my solution to the current struggle to find a good bloat-free and customizable economy plugin. After a while of running\/developing servers (Homieworld and Aeros before they shut down and while they were under original owners) and struggling to find good Economy Plugins I decided to make my own.<br \/>\n## Requirements:<br \/>\n* Vault (Even thought it says last test version is 1.17 it works for 1.20.4): https:\/\/www.spigotmc.org\/resources\/vault.34315\/<br \/>\n* PlaceholderAPI<br \/>\nhttps:\/\/www.spigotmc.org\/resources\/placeholderapi.6245\/<\/p>\n<p>## Commands &#038; Permissions<br \/>\nAs the Introduction says, with the goal to stay bloat free there are only a couple commands.<br \/>\n### Admin Commands<br \/>\n* \/economy <bal | give | take | set> <player> <amount><br \/>\nGet the balance of a player, give the player money, take money from the player, or set the player&#8217;s balance.<br \/>\nPermission Required: `EconomicAdditions.economygui`<br \/>\nAliases: N\/A<\/p>\n<p>### User Commands<br \/>\n* \/bal [player]<br \/>\nThis returns the balance of a player.<br \/>\nPermission Required: `EconomicAdditions.balance` and `EconomicAdditions.balance.others`<br \/>\nAliases: \/balance<\/p>\n<p>* \/pay <player> <amount><br \/>\nThis pays a player from you&#8217;re balance.<br \/>\nPermission Required: `EconomicAdditions.pay`<br \/>\nAliases: N\/A<\/p>\n<p>* \/toggleactionbar<br \/>\nThis toggles the action bar above the players hotbar (See Custom Features)<br \/>\nPermission Required: `EconomicAdditions.toggleactionbar`<br \/>\nAliases: \/actionbar \/ab<\/p>\n<p>* \/economygui<br \/>\nOpens the economy gui (Allows for paying and balances, Balances are viewable no matter the permissions)<br \/>\nPermission Required: `EconomicAdditions.economygui`<br \/>\nAliases: \/econgui \/econ \/egui \/money<\/p>\n<p>* \/stockdisplay<br \/>\nThis toggles the Stock display (See Custom Features)<br \/>\nPermission Required: `EconomicAdditions.stockdisplay`<br \/>\nAliases: \/toggledisplay \/togglestock \/toggletickdisplay \/stock \/display \/tickdisplay<\/p>\n<p>## Custom Features<br \/>\n### Mini Message support<br \/>\nEvery message supports AdventureLib mini message formatting! Allowing for gradients, custom colours and etc&#8230;<br \/>\nLink to MiniMessage Formats: https:\/\/docs.advntr.dev\/minimessage\/format.html<\/p>\n<p>### Action Bar<br \/>\nThe action bar is a display that can be toggled in the lang.yml (See Configuration), By default it updates every 2 seconds and displays the balance of the player and the name of the currency above it.<\/p>\n<p>### Stock display<br \/>\nThis essentially is just a title that appears and ticks up from 80% of an amount of money recieved or taken up to the full %. Can be toggled in the lang.yml (See Configuration)<\/p>\n<p>### Economy Gui<br \/>\nJust a basic UI that allows the player to Pay, View Balances, And other stats in the form of a UI!<br \/>\nIt also has page support if you have more than 27 players online and everything is customisable!<\/p>\n<p>## Configuration<\/p>\n<p>In the configuration files pretty much two types of configuration that you need to know about;<br \/>\nNormal Configuration,<br \/>\nItems.<\/p>\n<p>### Normal Configuration<br \/>\nThis is pretty straight forward. Things like `starting-money: 1500` mean that players start with 1500. And doesn&#8217;t require much thought. This is also where almost EVERY message in the plugin can be customised (Including translated or completely different messages.<\/p>\n<p>### Items<br \/>\nItems are mainly defined within the `gui\/economy:` section; and have a few key features!<br \/>\nHere is an example item<br \/>\n&#8220;`yml<br \/>\nTestItem:<br \/>\n  Material: &#8220;DIAMOND&#8221; # Grab materials from https:\/\/hub.spigotmc.org\/javadocs\/bukkit\/org\/bukkit\/Material.html besides &#8220;PLAYERHEAD&#8221; more on that later.<br \/>\n  Amount: 1 # How many in the ItemStack<br \/>\n  Title: &#8220;Diamond Stick&#8221; # Name of the item<br \/>\n  Lore:<br \/>\n    &#8211; &#8220;This is the first line of lore!&#8221;<br \/>\n    &#8211; &#8220;This is the second!&#8221;<br \/>\n    &#8211; &#8220;You can have as many lines as you want!&#8221;<br \/>\n    &#8211; &#8220;I support MiniMessage and PlaceholderAPI format!&#8221;<br \/>\n &#8220;`<br \/>\n This item wouldn&#8217;t show up as the plugin doesnt call for it. This is why you must NOT! Change the names of the variables in the lang.yml.<br \/>\n You can add CustomModelData to the items with just a simple line at the bottom<br \/>\n Example:<br \/>\n &#8220;`yml<br \/>\n TestItem:<br \/>\n   Material: &#8220;DIAMOND&#8221;<br \/>\n   Amount: 1<br \/>\n   Title: &#8220;Diamond Stick&#8221;<br \/>\n   Lore:<br \/>\n     &#8211; &#8220;Some Cool Lore&#8221;<br \/>\n     &#8211; &#8220;Yep!&#8221;<br \/>\n   CustomModelData: 1<br \/>\n   &#8220;`<br \/>\n   Custom model data is only useful if you know what you&#8217;re doing!<\/p>\n<p>### Full Config Files<\/p>\n<p>#### Lang.yml<br \/>\n&#8220;`yml<br \/>\ncommon:<br \/>\n  prefix: &#8220;<gray>[<gold>Economic Additions<gray>] &#8221;<br \/>\n  currency-singular: &#8220;Sheep&#8221;<br \/>\n  currency-plural: &#8220;Sheeps&#8221;<br \/>\n  starting-money: 1500<br \/>\n  error-color: &#8220;<#EB7272>&#8221;<br \/>\n  success-color: &#8220;<#A6F8C6>&#8221;<br \/>\n  non-valid-number: &#8220;The amount must be a valid decimal number. Got: &#8221;<br \/>\n  sender-not-a-player: &#8220;Only players can use this command!&#8221;<br \/>\n  target-hasnt-player-before: &#8220;The player %parse% has never played on this server before!&#8221;<br \/>\n  no-permission: &#8220;You don&#8217;t have permission for this command!&#8221;<br \/>\neconomy:<br \/>\n  took-money: &#8220;Took %currency% from %parse%&#8217;s account.&#8221;<br \/>\n  gave-money: &#8220;Gave %currency% to %parse%&#8217;s account.&#8221;<br \/>\n  set-money: &#8220;Set %parse%&#8217;s account to %currency%.&#8221;<br \/>\n  balance: &#8220;%parse%&#8217;s balance: %currency%&#8221;<br \/>\n  paid-player: &#8220;You paid %parse% %currency%&#8221;<br \/>\n  recieved-money: &#8220;You were paid %currency% from %parse%&#8221;<br \/>\n  not-enough-money: &#8220;You don&#8217;t have enough money for that!&#8221;<br \/>\nactionbar:<br \/>\n  enabled: true<br \/>\n  update: 2<br \/>\n  text: &#8220;<gray>%vault_eco_balance% Sheeps&#8221;<br \/>\n  toggle-on-text: &#8220;Action bar toggled ON!&#8221;<br \/>\n  toggle-off-text: &#8220;Action bar toggled OFF!&#8221;<br \/>\nstockdisplay:<br \/>\n  enabled: true<br \/>\n  min-amount: 2000<br \/>\n  negative:<br \/>\n    prefix: &#8220;<gray>[<red>&#8211;<gray>] &#8221;<br \/>\n    suffix: &#8221; <gray>Sheeps&#8221;<br \/>\n  positive:<br \/>\n    prefix: &#8220;<gray>[<green>+<gray>] &#8221;<br \/>\n    suffix: &#8221; <gray>Sheeps&#8221;<br \/>\n  toggle-on-text: &#8220;Stock Display toggled ON!&#8221;<br \/>\n  toggle-off-text: &#8220;Stock Display toggled OFF!&#8221;<br \/>\ngui:<br \/>\n  economy:<br \/>\n    messages:<br \/>\n      cancel-payment: &#8220;Cancelling Payment!&#8221;<br \/>\n    mainMenu:<br \/>\n      Title: &#8220;Economic Additions&#8221;<br \/>\n      payItem:<br \/>\n        Material: &#8216;DIAMOND&#8217;<br \/>\n        Amount: 1<br \/>\n        Title: &#8220;<gold>Pay Players!&#8221;<br \/>\n        Lore:<br \/>\n          &#8211; &#8220;<gray>Click on this to open the pay player menu!&#8221;<br \/>\n          &#8211; &#8220;<gray>EconomicAdditions&#8221;<br \/>\n      balItem:<br \/>\n        Material: &#8216;GOLD_INGOT&#8217;<br \/>\n        Amount: 2<br \/>\n        Title: &#8220;<gold>Balances!&#8221;<br \/>\n        Lore:<br \/>\n          &#8211; &#8220;<gray>Click on this to check the balances of other players!&#8221;<br \/>\n          &#8211; &#8220;<gray>EconomicAdditions&#8221;<br \/>\n      statsItem:<br \/>\n        Material: &#8220;PLAYERHEAD&#8221;<br \/>\n        Amount: 1<br \/>\n        Title: &#8220;<gold>Stats!&#8221;<br \/>\n        Lore:<br \/>\n          &#8211; &#8220;You %player_displayname% have: &#8221;<br \/>\n          &#8211; &#8220;%vault_eco_balance% Sheeps!&#8221;<br \/>\n      emptyItem:<br \/>\n        Material: &#8220;GRAY_STAINED_GLASS_PANE&#8221;<br \/>\n        Amount: 1<br \/>\n        Title: &#8220;&#8221;<br \/>\n    payMenu:<br \/>\n      Title: &#8220;\u1d18\u1d00\u028f \u1d18\u029f\u1d00\u028f\u1d07\u0280\ua731&#8221;<br \/>\n      pay-message: &#8220;How much would you like to pay?&#8221;<br \/>\n      nextFullItem:<br \/>\n        Material: &#8220;LIME_DYE&#8221;<br \/>\n        Amount: 1<br \/>\n        Title: &#8220;<green>\u0274\u1d07x\u1d1b \u1d18\u1d00\u0262\u1d07&#8221;<br \/>\n      nextEmptyItem:<br \/>\n        Material: &#8220;GRAY_DYE&#8221;<br \/>\n        Amount: 1<br \/>\n        Title: &#8220;<gray>\u0274\u1d07x\u1d1b \u1d18\u1d00\u0262\u1d07&#8221;<br \/>\n      prevFullItem:<br \/>\n        Material: &#8220;LIME_DYE&#8221;<br \/>\n        Amount: 1<br \/>\n        Title: &#8220;<green>\u1d18\u0280\u1d07\u1d20\u026a\u1d0f\u1d1c\ua731 \u1d18\u1d00\u0262\u1d07&#8221;<br \/>\n      prevEmptyItem:<br \/>\n        Material: &#8220;GRAY_DYE&#8221;<br \/>\n        Amount: 1<br \/>\n        Title: &#8220;<gray>\u1d18\u0280\u1d07\u1d20\u026a\u1d0f\u1d1c\ua731 \u1d18\u1d00\u0262\u1d07&#8221;<br \/>\n      playerHead:<br \/>\n        Material: &#8220;PLAYERHEAD&#8221;<br \/>\n        Amount: 1<br \/>\n        Title: &#8220;<#C7FFEA>%player_displayname%&#8221;<br \/>\n        Lore:<br \/>\n          &#8211; &#8220;<#A2A2A2>Left Click to pay this player!&#8221;<br \/>\n      emptyItem:<br \/>\n        Material: &#8220;GRAY_STAINED_GLASS_PANE&#8221;<br \/>\n        Amount: 1<br \/>\n        Title: &#8220;&#8221;<br \/>\n    balMenu:<br \/>\n      Title: &#8220;\u1d18\u029f\u1d00\u028f\u1d07\u0280 \u0299\u1d00\u029f\u1d00\u0274\u1d04\u1d07\ua731&#8221;<br \/>\n      nextFullItem:<br \/>\n        Material: &#8220;LIME_DYE&#8221;<br \/>\n        Amount: 1<br \/>\n        Title: &#8220;<green>\u0274\u1d07x\u1d1b \u1d18\u1d00\u0262\u1d07&#8221;<br \/>\n      nextEmptyItem:<br \/>\n        Material: &#8220;GRAY_DYE&#8221;<br \/>\n        Amount: 1<br \/>\n        Title: &#8220;<gray>\u0274\u1d07x\u1d1b \u1d18\u1d00\u0262\u1d07&#8221;<br \/>\n      prevFullItem:<br \/>\n        Material: &#8220;LIME_DYE&#8221;<br \/>\n        Amount: 1<br \/>\n        Title: &#8220;<green>\u1d18\u0280\u1d07\u1d20\u026a\u1d0f\u1d1c\ua731 \u1d18\u1d00\u0262\u1d07&#8221;<br \/>\n      prevEmptyItem:<br \/>\n        Material: &#8220;GRAY_DYE&#8221;<br \/>\n        Amount: 1<br \/>\n        Title: &#8220;<gray>\u1d18\u0280\u1d07\u1d20\u026a\u1d0f\u1d1c\ua731 \u1d18\u1d00\u0262\u1d07&#8221;<br \/>\n      playerHead:<br \/>\n        Material: &#8220;PLAYERHEAD&#8221;<br \/>\n        Amount: 1<br \/>\n        Title: &#8220;<#C7FFEA>%player_displayname%&#8217;s Balance&#8221;<br \/>\n        Lore:<br \/>\n          &#8211; &#8220;<#A2A2A2>%vault_eco_balance% Sheeps!&#8221;<br \/>\n      emptyItem:<br \/>\n        Material: &#8220;GRAY_STAINED_GLASS_PANE&#8221;<br \/>\n        Amount: 1<br \/>\n        Title: &#8220;&#8221;<br \/>\n&#8220;`<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A Basic Economy Plugin that allows for \/pay \/bal and more!<\/p>\n<p>(Bloat Free, Highly Customisable!)<\/p>\n","protected":false},"featured_media":61534,"template":"","meta":{"_minecraft_slug":"economic-additions","_minecraft_project_id":"hzhCHJ0z","_minecraft_author":"AssailentDev","_minecraft_license":"GPL-3.0-only","_minecraft_downloads":879,"_minecraft_follows":1,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"economic-additions.zip","_minecraft_size_bytes":94935306,"_minecraft_version_count":7,"_minecraft_updated_at":"2026-05-16T09:03:43.855455Z","_minecraft_date_created":"2024-03-11T06:32:41.016260Z","_minecraft_date_modified":"2024-04-22T10:25:08.728705Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/economic-additions","_minecraft_icon_attachment_id":61534,"_minecraft_imported_at":"2026-06-03T13:52:22+00:00","_minecraft_import_hash":"1542b6555a17d8654df4209eaee50eda","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[844,89,126,127,129],"mod_loader":[132,134],"minecraft_version":[59,36,60,93,94],"class_list":["post-61533","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-economy","mod_category-game-mechanics","mod_category-management","mod_category-paper","mod_category-spigot","mod_loader-paper","mod_loader-spigot","minecraft_version-1-20","minecraft_version-1-20-1","minecraft_version-1-20-2","minecraft_version-1-20-3","minecraft_version-1-20-4"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Economic Additions - 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\/economic-additions\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Economic Additions - Minecraft\" \/>\n<meta property=\"og:description\" content=\"A Basic Economy Plugin that allows for \/pay \/bal and more! (Bloat Free, Highly Customisable!)\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/economic-additions\/\" \/>\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\\\/economic-additions\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/economic-additions\\\/\",\"name\":\"Economic Additions - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/economic-additions\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/economic-additions\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/economic-additions-icon-2f84d99bc9599e0541fbe14d73ca95c2d1b9fb87_96.webp\",\"datePublished\":\"2026-06-03T13:52:21+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/economic-additions\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/economic-additions\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/economic-additions\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/economic-additions-icon-2f84d99bc9599e0541fbe14d73ca95c2d1b9fb87_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/economic-additions-icon-2f84d99bc9599e0541fbe14d73ca95c2d1b9fb87_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/economic-additions\\\/#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\":\"Economic Additions\"}]},{\"@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":"Economic Additions - 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\/economic-additions\/","og_locale":"en_US","og_type":"article","og_title":"Economic Additions - Minecraft","og_description":"A Basic Economy Plugin that allows for \/pay \/bal and more! (Bloat Free, Highly Customisable!)","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/economic-additions\/","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\/economic-additions\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/economic-additions\/","name":"Economic Additions - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/economic-additions\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/economic-additions\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/economic-additions-icon-2f84d99bc9599e0541fbe14d73ca95c2d1b9fb87_96.webp","datePublished":"2026-06-03T13:52:21+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/economic-additions\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/economic-additions\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/economic-additions\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/economic-additions-icon-2f84d99bc9599e0541fbe14d73ca95c2d1b9fb87_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/economic-additions-icon-2f84d99bc9599e0541fbe14d73ca95c2d1b9fb87_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/economic-additions\/#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":"Economic Additions"}]},{"@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\/61533","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\/61534"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=61533"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=61533"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=61533"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=61533"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}