{"id":27341588,"url":"https://github.com/hsgamer/bettereconomy","last_synced_at":"2025-04-12T16:12:47.504Z","repository":{"id":39877534,"uuid":"414453983","full_name":"HSGamer/BetterEconomy","owner":"HSGamer","description":"A simple Economy plugin","archived":false,"fork":false,"pushed_at":"2024-05-09T09:26:45.000Z","size":206,"stargazers_count":21,"open_issues_count":1,"forks_count":11,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-05-09T10:36:48.220Z","etag":null,"topics":["bukkit","economy","economy-plugin","minecraft","spigot","spigot-api"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/HSGamer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null},"funding":{"github":"HSGamer","patreon":"hsgamer","open_collective":null,"ko_fi":"hsgamer_mc","tidelift":null,"community_bridge":null,"liberapay":"HSGamer","issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":["https://paypal.me/HSGamer1234"]}},"created_at":"2021-10-07T03:57:55.000Z","updated_at":"2024-05-09T09:26:49.000Z","dependencies_parsed_at":"2024-03-20T17:30:16.723Z","dependency_job_id":"7f6c5dbe-b7ab-47e6-8be0-e4a93a2c13e9","html_url":"https://github.com/HSGamer/BetterEconomy","commit_stats":null,"previous_names":[],"tags_count":21,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HSGamer%2FBetterEconomy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HSGamer%2FBetterEconomy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HSGamer%2FBetterEconomy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HSGamer%2FBetterEconomy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/HSGamer","download_url":"https://codeload.github.com/HSGamer/BetterEconomy/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248594138,"owners_count":21130313,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bukkit","economy","economy-plugin","minecraft","spigot","spigot-api"],"created_at":"2025-04-12T16:12:46.960Z","updated_at":"2025-04-12T16:12:47.483Z","avatar_url":"https://github.com/HSGamer.png","language":"Java","funding_links":["https://github.com/sponsors/HSGamer","https://patreon.com/hsgamer","https://ko-fi.com/hsgamer_mc","https://liberapay.com/HSGamer","https://paypal.me/HSGamer1234"],"categories":[],"sub_categories":[],"readme":"# BetterEconomy\nA simple economy plugin\n\n## Commands \u0026 Permissions\n| Command                       | Permission                                            |\n|-------------------------------|-------------------------------------------------------|\n| `/eco give \u003cplayer\u003e \u003camount\u003e` | bettereconomy.set                                     |\n| `/eco take \u003cplayer\u003e \u003camount\u003e` | bettereconomy.set                                     |\n| `/eco set \u003cplayer\u003e \u003camount\u003e`  | bettereconomy.set                                     |\n| `/eco reload`                 | bettereconomy.reload                                  |\n| `/balance`                    | bettereconomy.balance\u003cbr\u003ebettereconomy.balance.others |\n| `/baltop`                     | bettereconomy.balancetop                              |\n| `/pay \u003cplayer\u003e \u003camount\u003e`      | bettereconomy.pay                                     |\n\n## Config\n```yaml\n# The file handler to store the balance\n# Allow: file, mysql, sqlite, json\nhandler-type: file\n\n# Enable if the plugin should hook to other economy cores (Vault, Treasury, etc)\nhook-enabled: true\n\n# Settings on formatting the balance\ncurrency:\n  symbol: $\n  singular: $\n  plural: $\n  format-fractional-digits: 2\n\n# Settings on balance tasks\nbalance:\n  top-update-period: 100\n  file-save-period: 200\n  start-amount: 0.0\n  min-amount: 0.0\n\n# Settings on database\ndatabase:\n  mysql:\n    host: localhost\n    port: '3306'\n    dbname: ''\n    username: root\n    password: ''\n```\n\n## Placeholders\n\n\u003e Requires [PlaceholderAPI](https://www.spigotmc.org/resources/placeholderapi.6245/)\n\n| Placeholder                                      | Description                                                                    |\n|--------------------------------------------------|--------------------------------------------------------------------------------|\n| `%bettereconomy_balance%`                        | The balance of the player                                                      |\n| `%bettereconomy_balance_formatted%`              | The formatted balance of the player                                            |\n| `%bettereconomy_top%`                            | The current top position of the player                                         |\n| `%bettereconomy_top_name_\u003cnumber\u003e%`              | The name of the player at the position `\u003cnumber\u003e` (starts from 1)              |\n| `%bettereconomy_top_uuid_\u003cnumber\u003e%`              | The uuid of the player at the position `\u003cnumber\u003e` (starts from 1)              |\n| `%bettereconomy_top_balance_\u003cnumber\u003e%`           | The balance of the player at the position `\u003cnumber\u003e` (starts from 1)           |\n| `%bettereconomy_top_balance_formatted_\u003cnumber\u003e%` | The formatted balance of the player at the position `\u003cnumber\u003e` (starts from 1) |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhsgamer%2Fbettereconomy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhsgamer%2Fbettereconomy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhsgamer%2Fbettereconomy/lists"}