> For the complete documentation index, see [llms.txt](https://edseries-plugins.gitbook.io/p/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://edseries-plugins.gitbook.io/p/developer-api/economies.md).

# Economies

```java
/**
 * Retrieves the balance of a specific economy type for a player.
 *
 * @param uuid The UUID of the player.
 * @param eco The name of the economy type.
 * @return The balance of the economy type for the player.
 */
public double getEco(UUID uuid, String eco) {
    // Method implementation
}

/**
 * Adds a certain amount to the balance of a specific economy type for a player.
 *
 * @param uuid The UUID of the player.
 * @param eco The name of the economy type.
 * @param amount The amount to add.
 */
public void addEco(UUID uuid, String eco, double amount) {
    // Method implementation
}

/**
 * Removes a certain amount from the balance of a specific economy type for a player.
 *
 * @param uuid The UUID of the player.
 * @param eco The name of the economy type.
 * @param amount The amount to remove.
 */
public void removeEco(UUID uuid, String eco, double amount) {
    // Method implementation
}

/**
 * Sets the balance of a specific economy type for a player to a certain amount.
 *
 * @param uuid The UUID of the player.
 * @param eco The name of the economy type.
 * @param amount The new balance amount.
 */
public void setEco(UUID uuid, String eco, double amount) {
    // Method implementation
}
```
