Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/imperazim/easyeconomy
EasyEconomy is a simple to use economy plugin that provides an economy system for your minecraft server.
https://github.com/imperazim/easyeconomy
minecraft-plugin pocketmine pocketmine-mp pocketmine-plugins server-plugin
Last synced: 3 months ago
JSON representation
EasyEconomy is a simple to use economy plugin that provides an economy system for your minecraft server.
- Host: GitHub
- URL: https://github.com/imperazim/easyeconomy
- Owner: ImperaZim
- License: gpl-3.0
- Created: 2022-12-05T18:58:56.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-21T23:40:56.000Z (over 1 year ago)
- Last Synced: 2024-10-09T23:21:17.034Z (3 months ago)
- Topics: minecraft-plugin, pocketmine, pocketmine-mp, pocketmine-plugins, server-plugin
- Language: PHP
- Homepage:
- Size: 57.6 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#
EasyEconomy v2.0.0
![EasyEconomy](https://raw.githubusercontent.com/ImperaZim/EasyEconomy/main/coin_frame_1.gif)EasyEconomy is a simple to use economy plugin that provides an economy system for your minecraft server.
- - - -
## Software support
**[EasyEconomy](https://github.com/ImperaZim/EasyEconomy)** is a PHP plugin for **[PocketMine-MP](https://github.com/pmmp/PocketMine-MP )**, designed specifically for versions 5.0 and higher. It may not work on older versions or other webserver APIs!## Addons
- [EasyEconomyTycoonAddon](https://github.com/ImperaZim/EasyEconomyTycoonAddon):
It is an add-on to perform certain actions when the player is richer and changed.## For developers
### EasyEconomy API
Use [Provider.php](https://github.com/ImperaZim/EasyEconomy/blob/main/src/ImperaZim/EasyEconomy/provider/types/Provider.php) methods in your own projects!
```php
use ImperaZim\EasyEconomy\EasyEconomy;
$api = EasyEconomy::getInstance()->getProvider();
```
### EasyEconomy's events
EasyEconomy provides a number of events that can be used to hook into the plugin's code. Currently, the following events can be used:
- [PlayerMoneyUpdateEvent](https://github.com/ImperaZim/EasyEconomy/blob/main/src/ImperaZim/EasyEconomy/event/PlayerMoneyUpdateEvent.php): **Always** called when a player has their **money** amount updated.- [PlayerTranferMoneyEvent](https://github.com/ImperaZim/EasyEconomy/blob/main/src/ImperaZim/EasyEconomy/event/PlayerTransferMoneyEvent.php): **Always** called when a player **transfer** money to another player.