{"id":3287,"date":"2023-05-18T12:27:07","date_gmt":"2023-05-18T12:27:07","guid":{"rendered":"https:\/\/xgamingserver.com\/blog\/?p=3287"},"modified":"2026-06-15T19:21:36","modified_gmt":"2026-06-15T19:21:36","slug":"how-to-give-balance-using-essentialsx-plugin","status":"publish","type":"post","link":"https:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/","title":{"rendered":"How to give balance using EssentialsX Plugin"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">One of the most common questions new Minecraft server owners ask is &#8220;how do I give a player money?&#8221; If you run a survival, RPG, or shop-driven server with the EssentialsX plugin, the answer is the built-in economy and a single admin command: <code>\/eco give<\/code>. This guide walks through the entire EssentialsX economy system in depth, from giving and taking balance as an admin, to letting players pay each other, to checking balances, plus every permission node you need to lock it down for staff. Everything here is verified against the EssentialsX command definitions, so you can copy the commands straight into your server.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What the EssentialsX Economy Actually Is<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The first thing to understand is that the economy is <strong>part of the EssentialsX core (Essentials) module<\/strong>. You do not need to install a separate economy plugin to track player balances. EssentialsX ships with its own internal economy that powers <code>\/eco<\/code>, <code>\/pay<\/code>, and <code>\/balance<\/code> out of the box.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This is the single biggest point of confusion for server owners, so let&#8217;s be clear about <strong>Vault<\/strong>. Vault is an economy bridge plugin, and a lot of guides tell you to install it. You only need Vault so that <em>other<\/em> plugins, like shop plugins, auction houses, or job plugins, can read and write the same balance that EssentialsX manages. EssentialsX does <strong>not<\/strong> require Vault for its own <code>\/eco<\/code>, <code>\/pay<\/code>, and <code>\/balance<\/code> commands to function. If you are running a bare-bones economy with nothing but EssentialsX, you can skip Vault entirely. Install it only when you add a third-party plugin that needs to talk to the economy.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">One platform note before we go further: EssentialsX is a Bukkit-API plugin, which means it runs on <strong>Spigot, Paper, and forks like Purpur<\/strong> for Minecraft: Java Edition. It does <strong>not<\/strong> run on vanilla, Bedrock, Fabric, or Forge. If you are setting up a fresh box, a <a href=\"https:\/\/xgamingserver.com\/minecraft-server-hosting\">managed Minecraft server hosting plan<\/a> running Paper gives you the cleanest base to drop EssentialsX onto, and our <a href=\"https:\/\/xgamingserver.com\/docs\/minecraft\">Minecraft documentation<\/a> covers the plugin-installation steps in detail.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Giving Balance: The \/eco Command<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The <code>\/eco<\/code> command is the administrative tool for managing player balances. It is what you use to hand out starting cash, reward event winners, refund a player, or wipe a balance clean. The full command structure is:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/eco <give|take|set|reset> <player> <amount><\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">It has the aliases <code>\/eeco<\/code>, <code>\/economy<\/code>, and <code>\/eeconomy<\/code>, so any of those will work interchangeably. The permission node that controls the entire command is:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>essentials.eco<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Grant <code>essentials.eco<\/code> only to trusted staff, because it gives full control over every player&#8217;s money. Here is what each of the four subcommands does:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong><code>\/eco give <player> <amount><\/code><\/strong> \u2014 adds the specified amount to the player&#8217;s balance. To give Steve 500: <code>\/eco give Steve 500<\/code>.<\/li>\n<li><strong><code>\/eco take <player> <amount><\/code><\/strong> \u2014 removes the specified amount from the player&#8217;s balance.<\/li>\n<li><strong><code>\/eco set <player> <amount><\/code><\/strong> \u2014 sets the balance to an exact value, ignoring whatever they had before. <code>\/eco set Steve 1000<\/code> makes their balance exactly 1000.<\/li>\n<li><strong><code>\/eco reset <player> <amount><\/code><\/strong> \u2014 resets the player back to the configured starting balance.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">The practical difference between <code>give<\/code> and <code>set<\/code> trips up a lot of admins. If a player has 200 and you run <code>\/eco give Steve 500<\/code>, they end up with 700. If you instead run <code>\/eco set Steve 500<\/code>, they end up with exactly 500, no matter what they started with. Use <code>give<\/code> for rewards and bonuses; use <code>set<\/code> when you need a balance to be a precise figure.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Affecting Every Player at Once with *<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The <code><player><\/code> argument accepts the wildcard <code>*<\/code> to affect <strong>all players<\/strong> at once. This is enormously useful for server-wide events, an economy reset, or a launch-day cash bonus for everyone. For example, to give every player 1000:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/eco give * 1000<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">This is the documented EssentialsX behavior. Because it touches everyone&#8217;s balance simultaneously, double-check the subcommand before you hit enter, especially with <code>set<\/code> or <code>reset<\/code> and the wildcard, since <code>\/eco set * 0<\/code> would zero out your entire server&#8217;s economy.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Letting Players Pay Each Other: \/pay<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">While <code>\/eco<\/code> is for admins minting or removing money, <code>\/pay<\/code> is the player-facing transfer command. It moves money <strong>out of one player&#8217;s balance and into another&#8217;s<\/strong>, so it never creates new currency the way <code>\/eco give<\/code> does. The command is:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/pay <player> <amount><\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Its alias is <code>\/epay<\/code>. To send another player 250: <code>\/pay Alex 250<\/code>. Following the standard EssentialsX <code>essentials.<command><\/code> naming convention, the permission node is:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>essentials.pay<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">You typically grant <code>essentials.pay<\/code> to your default player group so everyone can trade money. A payment will fail if the sender does not have enough balance to cover the amount, which keeps the economy honest without you needing to police it manually.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Checking Balances: \/balance<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The command to see how much money someone has is <code>\/balance<\/code>, and it has a generous set of aliases that players will recognize:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/balance [player]<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">The aliases are <code>\/bal<\/code>, <code>\/ebal<\/code>, <code>\/ebalance<\/code>, <code>\/money<\/code>, and <code>\/emoney<\/code>. Run it with no argument to see your own balance; add a player name to check someone else&#8217;s. The permission for checking your own balance is:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>essentials.balance<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Checking <em>another<\/em> player&#8217;s balance conventionally uses <code>essentials.balance.others<\/code>. This follows the standard EssentialsX permission convention rather than being a verbatim documented node, and the exact behavior can depend on your EssentialsX version and configuration, so confirm it against your permissions plugin if it does not behave as expected.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Economy Command Cheat Sheet<\/h2>\n\n\n\n<figure class=\"wp-block-table is-style-stripes\"><table><thead><tr><th>Task<\/th><th>Command<\/th><th>Permission<\/th><\/tr><\/thead><tbody><tr><td>Give money<\/td><td><code>\/eco give <player> <amount><\/code><\/td><td><code>essentials.eco<\/code><\/td><\/tr><tr><td>Take money<\/td><td><code>\/eco take <player> <amount><\/code><\/td><td><code>essentials.eco<\/code><\/td><\/tr><tr><td>Set exact balance<\/td><td><code>\/eco set <player> <amount><\/code><\/td><td><code>essentials.eco<\/code><\/td><\/tr><tr><td>Reset to starting balance<\/td><td><code>\/eco reset <player> <amount><\/code><\/td><td><code>essentials.eco<\/code><\/td><\/tr><tr><td>Give every player money<\/td><td><code>\/eco give * <amount><\/code><\/td><td><code>essentials.eco<\/code><\/td><\/tr><tr><td>Pay another player<\/td><td><code>\/pay <player> <amount><\/code><\/td><td><code>essentials.pay<\/code><\/td><\/tr><tr><td>Check own balance<\/td><td><code>\/balance<\/code> (<code>\/bal<\/code>)<\/td><td><code>essentials.balance<\/code><\/td><\/tr><tr><td>Check another balance<\/td><td><code>\/balance <player><\/code><\/td><td><code>essentials.balance.others<\/code> (convention)<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Setting Up the Economy on a Fresh Server<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">If you have just installed EssentialsX and want a working economy, the practical setup is short:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Confirm your server is running Spigot, Paper, or Purpur. EssentialsX will not load on vanilla, Bedrock, Fabric, or Forge.<\/li>\n<li>Drop the EssentialsX jar into your <code>plugins<\/code> folder and restart. The economy is active immediately.<\/li>\n<li>Open the EssentialsX <code>config.yml<\/code> and set the <strong>starting balance<\/strong> new players receive, plus the currency symbol you want displayed.<\/li>\n<li>Grant <code>essentials.pay<\/code> and <code>essentials.balance<\/code> to your default player group through your permissions plugin (or rely on EssentialsX defaults).<\/li>\n<li>Reserve <code>essentials.eco<\/code> for staff ranks only.<\/li>\n<li>Only if you plan to add a shop plugin, an auction house, or jobs, install <strong>Vault<\/strong> so those plugins can read the EssentialsX balance.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">That is genuinely all it takes. Many server owners overcomplicate the economy by stacking multiple money plugins; in reality EssentialsX alone covers giving, taking, transferring, and checking balances, and Vault is the only optional extra most servers ever need.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Permission Strategy for the Economy<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Because money is the lifeblood of an RPG or shop server, getting permissions right matters. A clean tiered setup looks like this:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Default players<\/strong> get <code>essentials.pay<\/code> and <code>essentials.balance<\/code> so they can trade and check their cash.<\/li>\n<li><strong>Moderators<\/strong> may additionally get the conventional <code>essentials.balance.others<\/code> node so they can see player balances when investigating disputes, without the power to alter them.<\/li>\n<li><strong>Admins<\/strong> get <code>essentials.eco<\/code>, the only node that can create, remove, or overwrite balances. Keep this circle small.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">This separation means a moderator can help a player figure out where their money went without being able to hand themselves a fortune. The <code>essentials.eco<\/code> node is the one to audit if you ever notice the economy behaving strangely.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Beyond the Economy: Other EssentialsX Tools<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The economy is just one slice of what EssentialsX does, and the same permission patterns carry across the whole plugin. Once your economy is running you&#8217;ll likely want to set up the rest of your admin toolkit:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>To inspect what players are carrying, see our guide on <a href=\"https:\/\/xgamingserver.com\/blog\/how-to-see-players-inventory-using-essentialsx\/\">viewing a player&#8217;s inventory with EssentialsX<\/a> using <code>\/invsee<\/code>.<\/li>\n<li>To check stored loot, read <a href=\"https:\/\/xgamingserver.com\/blog\/how-to-see-players-ender-chest-using-essentialsx\/\">viewing a player&#8217;s ender chest with EssentialsX<\/a> via <code>\/enderchest <player><\/code>.<\/li>\n<li>To give staff custom display names, follow <a href=\"https:\/\/xgamingserver.com\/blog\/how-to-get-a-nickname-using-essentialsx-in-your-minecraft-server\/\">setting nicknames with EssentialsX<\/a> using <code>\/nick<\/code>.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Each of those follows the same <code>essentials.<command><\/code> convention you have already learned with the economy, so the mental model transfers cleanly.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Frequently Asked Questions<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">What is the EssentialsX give money command?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The command is <code>\/eco give <player> <amount><\/code>. For example, <code>\/eco give Steve 500<\/code> adds 500 to Steve&#8217;s balance. It requires the <code>essentials.eco<\/code> permission, which should be reserved for admins.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Do I need Vault to use the EssentialsX economy?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">No. EssentialsX has its own built-in economy, so <code>\/eco<\/code>, <code>\/pay<\/code>, and <code>\/balance<\/code> work without Vault. You only install Vault when a third-party plugin (a shop, auction house, or jobs plugin) needs to read or write the EssentialsX balance.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">What is the difference between \/eco give and \/eco set?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><code>\/eco give<\/code> adds the amount on top of the player&#8217;s current balance, while <code>\/eco set<\/code> overwrites the balance to an exact value. If a player has 200 and you run <code>\/eco give Steve 500<\/code> they end with 700; <code>\/eco set Steve 500<\/code> leaves them with exactly 500.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How do I give money to all players at once?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Use the wildcard <code>*<\/code> in place of a player name: <code>\/eco give * 1000<\/code> gives every player 1000. This is documented EssentialsX behavior. Be careful combining the wildcard with <code>set<\/code> or <code>reset<\/code>, since it affects the entire server&#8217;s balances at once.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How do players send money to each other?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Players use <code>\/pay <player> <amount><\/code> (alias <code>\/epay<\/code>), which transfers money from their own balance to the target. It requires <code>essentials.pay<\/code> and fails if the sender lacks sufficient funds.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Does EssentialsX work on Bedrock or Fabric servers?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">No. EssentialsX is a Bukkit-API plugin that runs only on Spigot, Paper, and forks like Purpur for Minecraft: Java Edition. It does not run on vanilla, Bedrock, Fabric, or Forge. A Paper-based host is the recommended foundation.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Wrapping Up<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The EssentialsX economy is one of the easiest systems to set up on a Minecraft server and one of the most powerful for player engagement. With just three commands, <code>\/eco<\/code> for admin management, <code>\/pay<\/code> for player transfers, and <code>\/balance<\/code> for checking funds, plus the <code>essentials.eco<\/code>, <code>essentials.pay<\/code>, and <code>essentials.balance<\/code> permission nodes, you have a complete, self-contained currency system. Remember that Vault is optional and only matters when you bolt on other economy-aware plugins. Set a sensible starting balance, keep <code>essentials.eco<\/code> in trusted hands, and your server&#8217;s economy will run itself.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you are still choosing where to run your world, our <a href=\"https:\/\/xgamingserver.com\/minecraft-server-hosting\">Paper-ready Minecraft hosting<\/a> comes set up for plugins like EssentialsX, and the <a href=\"https:\/\/xgamingserver.com\/docs\/minecraft\">Minecraft setup docs<\/a> walk through installation step by step.<\/p>\n\n\n<!-- xg-tools-mesh -->\n\n<div class=\"wp-block-group xg-tools-box is-layout-flow wp-block-group-is-layout-flow\" style=\"border:1px solid rgba(255,255,255,.1);border-radius:12px;padding:18px 22px;margin-top:8px;background:rgba(76,175,80,.04);\">\n<h3 class=\"wp-block-heading\">Free Minecraft Tools<\/h3>\n<p class=\"wp-block-paragraph\">Speed up your server with our free Minecraft tools:<\/p>\n<ul class=\"wp-block-list\"><li><a href=\"https:\/\/xgamingserver.com\/tools\/minecraft\/give-command\">Give Command Generator<\/a><\/li><li><a href=\"https:\/\/xgamingserver.com\/tools\/minecraft\/ore-distribution\">Ore Distribution Chart<\/a><\/li><li><a href=\"https:\/\/xgamingserver.com\/tools\/minecraft\/enchantment-calculator\">Enchantment Calculator<\/a><\/li><li><a href=\"https:\/\/xgamingserver.com\/tools\/minecraft\/achievement-generator\">Achievement Generator<\/a><\/li><\/ul>\n<\/div>\n\n","protected":false},"excerpt":{"rendered":"<p>One of the most common questions new Minecraft server owners ask is &#8220;how do I give a player money?&#8221; If you run a survival, RPG, or shop-driven server with the EssentialsX plugin, the answer is the built-in economy and a single admin command: \/eco give. This guide walks through the entire EssentialsX economy system in [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":3288,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_gspb_post_css":"","_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[19,66],"tags":[],"class_list":["post-3287","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-minecraft-server-docs","category-plugins-mods"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v24.5 (Yoast SEO v26.7) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to give balance using EssentialsX Plugin - XGamingServer<\/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:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to give balance using EssentialsX Plugin\" \/>\n<meta property=\"og:description\" content=\"One of the most common questions new Minecraft server owners ask is &#8220;how do I give a player money?&#8221; If you run a survival, RPG, or shop-driven server with the EssentialsX plugin, the answer is the built-in economy and a single admin command: \/eco give. This guide walks through the entire EssentialsX economy system in [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/\" \/>\n<meta property=\"og:site_name\" content=\"XGamingServer\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/web.facebook.com\/xgamingserver69\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-05-18T12:27:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-15T19:21:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/05\/blog-background-28.png\" \/>\n\t<meta property=\"og:image:width\" content=\"770\" \/>\n\t<meta property=\"og:image:height\" content=\"433\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Youssef Ayman\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@xgamingserver\" \/>\n<meta name=\"twitter:site\" content=\"@xgamingserver\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Youssef Ayman\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/\"},\"author\":{\"name\":\"Youssef Ayman\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/d76089853704ac189e01449b0e449e3e\"},\"headline\":\"How to give balance using EssentialsX Plugin\",\"datePublished\":\"2023-05-18T12:27:07+00:00\",\"dateModified\":\"2026-06-15T19:21:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/\"},\"wordCount\":1591,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/05\/blog-background-28.png\",\"articleSection\":[\"Minecraft\",\"Plugins &amp; Mods\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/\",\"url\":\"https:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/\",\"name\":\"How to give balance using EssentialsX Plugin - XGamingServer\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/05\/blog-background-28.png\",\"datePublished\":\"2023-05-18T12:27:07+00:00\",\"dateModified\":\"2026-06-15T19:21:36+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/#primaryimage\",\"url\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/05\/blog-background-28.png\",\"contentUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/05\/blog-background-28.png\",\"width\":1920,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/xgamingserver.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Minecraft\",\"item\":\"https:\/\/xgamingserver.com\/blog\/category\/minecraft-server-docs\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to give balance using EssentialsX Plugin\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#website\",\"url\":\"https:\/\/xgamingserver.com\/blog\/\",\"name\":\"XGamingServer\",\"description\":\"Dedicated Game Server Hosting\",\"publisher\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/xgamingserver.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\",\"name\":\"XGamingServer\",\"url\":\"https:\/\/xgamingserver.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg\",\"contentUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg\",\"width\":\"1024\",\"height\":\"1024\",\"caption\":\"XGamingServer\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/web.facebook.com\/xgamingserver69\/\",\"https:\/\/x.com\/xgamingserver\",\"https:\/\/www.instagram.com\/xgamingserver\/\",\"https:\/\/www.linkedin.com\/company\/xgamingserver\/\",\"https:\/\/www.pinterest.com\/xgamingserver\/\",\"https:\/\/www.youtube.com\/channel\/UCHnOtWxpzaL2r3jM9Jm40EQ\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/d76089853704ac189e01449b0e449e3e\",\"name\":\"Youssef Ayman\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/fa92e71017a2bb7ab969b798cba0c8f3f827d2d4733dbe2cacf7f195db920fe1?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/fa92e71017a2bb7ab969b798cba0c8f3f827d2d4733dbe2cacf7f195db920fe1?s=96&d=mm&r=g\",\"caption\":\"Youssef Ayman\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to give balance using EssentialsX Plugin - XGamingServer","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:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/","og_locale":"en_US","og_type":"article","og_title":"How to give balance using EssentialsX Plugin","og_description":"One of the most common questions new Minecraft server owners ask is &#8220;how do I give a player money?&#8221; If you run a survival, RPG, or shop-driven server with the EssentialsX plugin, the answer is the built-in economy and a single admin command: \/eco give. This guide walks through the entire EssentialsX economy system in [&hellip;]","og_url":"https:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/","og_site_name":"XGamingServer","article_publisher":"https:\/\/web.facebook.com\/xgamingserver69\/","article_published_time":"2023-05-18T12:27:07+00:00","article_modified_time":"2026-06-15T19:21:36+00:00","og_image":[{"url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/05\/blog-background-28.png","width":770,"height":433,"type":"image\/png"}],"author":"Youssef Ayman","twitter_card":"summary_large_image","twitter_creator":"@xgamingserver","twitter_site":"@xgamingserver","twitter_misc":{"Written by":"Youssef Ayman","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/#article","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/"},"author":{"name":"Youssef Ayman","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/d76089853704ac189e01449b0e449e3e"},"headline":"How to give balance using EssentialsX Plugin","datePublished":"2023-05-18T12:27:07+00:00","dateModified":"2026-06-15T19:21:36+00:00","mainEntityOfPage":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/"},"wordCount":1591,"commentCount":0,"publisher":{"@id":"https:\/\/xgamingserver.com\/blog\/#organization"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/05\/blog-background-28.png","articleSection":["Minecraft","Plugins &amp; Mods"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/","url":"https:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/","name":"How to give balance using EssentialsX Plugin - XGamingServer","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/#primaryimage"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/05\/blog-background-28.png","datePublished":"2023-05-18T12:27:07+00:00","dateModified":"2026-06-15T19:21:36+00:00","breadcrumb":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/#primaryimage","url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/05\/blog-background-28.png","contentUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/05\/blog-background-28.png","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/xgamingserver.com\/blog\/how-to-give-balance-using-essentialsx-plugin\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xgamingserver.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Minecraft","item":"https:\/\/xgamingserver.com\/blog\/category\/minecraft-server-docs\/"},{"@type":"ListItem","position":3,"name":"How to give balance using EssentialsX Plugin"}]},{"@type":"WebSite","@id":"https:\/\/xgamingserver.com\/blog\/#website","url":"https:\/\/xgamingserver.com\/blog\/","name":"XGamingServer","description":"Dedicated Game Server Hosting","publisher":{"@id":"https:\/\/xgamingserver.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/xgamingserver.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/xgamingserver.com\/blog\/#organization","name":"XGamingServer","url":"https:\/\/xgamingserver.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg","contentUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg","width":"1024","height":"1024","caption":"XGamingServer"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/web.facebook.com\/xgamingserver69\/","https:\/\/x.com\/xgamingserver","https:\/\/www.instagram.com\/xgamingserver\/","https:\/\/www.linkedin.com\/company\/xgamingserver\/","https:\/\/www.pinterest.com\/xgamingserver\/","https:\/\/www.youtube.com\/channel\/UCHnOtWxpzaL2r3jM9Jm40EQ"]},{"@type":"Person","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/d76089853704ac189e01449b0e449e3e","name":"Youssef Ayman","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/fa92e71017a2bb7ab969b798cba0c8f3f827d2d4733dbe2cacf7f195db920fe1?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/fa92e71017a2bb7ab969b798cba0c8f3f827d2d4733dbe2cacf7f195db920fe1?s=96&d=mm&r=g","caption":"Youssef Ayman"}}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/05\/blog-background-28.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/3287","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/comments?post=3287"}],"version-history":[{"count":3,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/3287\/revisions"}],"predecessor-version":[{"id":22488,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/3287\/revisions\/22488"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media\/3288"}],"wp:attachment":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media?parent=3287"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/categories?post=3287"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/tags?post=3287"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}