EmpireEco (Skript Item Based Economy) | [BANKER] [API]

Script EmpireEco (Skript Item Based Economy) | [BANKER] [API] 1.2 BETA

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

Supported Minecraft Versions
  1. 1.8
  2. 1.9
  3. 1.10
  4. 1.11
  5. 1.12
87cea29f14c5f70ce7c7ffca9049cebeb0bd7314.png

EmpireEco is an Item-Based Economy plugin.
It was meant for RPG servers that wish to have a similar
coin system like MMO games (e. g. WoW or GuildWars 2)
This version is BETA. Please report any bugs you can find in the discussions section and not in the reviews.

8225b8300815f6c1a95336be89973a844f1ea4e7.png
- Item-based economy, which means you can hold your money in your hand.
- API (You can use the features in your own scripts)
- YML Configuration and Data Storage
- 3 Types of coins (Bronze, Silver, Gold)
- Banker to view the amount of coins you have and withdraw|dopiste them.
- Well-written coins system.
- Pickup-message module. (When you pick up a coin, it will send you a message telling you the amount you picked up. You can enable or disable this in the config)
- Chat withdraw system
- Withdraw with 3 different mouse buttons, each button defines one type of coins.
- Admin commands that have the ability to control everything around the script
- and much more...

8225b8300815f6c1a95336be89973a844f1ea4e7.png
Player Commands = epe.player
- /banker - opens the main banker menu
- /coins - Tells you what you have in your vault without the need of the banker's menu

Admin Commands = epe.admin
- /epe - open the help menu for admin commands
- /epe coins <give/take/reset> <player> <amount> - give/take/reset player's stats
- /epe coins <list/stats/get> <player> - get the stats from another player
- /epe reload - reload the plugin


8225b8300815f6c1a95336be89973a844f1ea4e7.png

Banker's GUI
dsssdssss.gif




Auto coin transformation. When Bronze reaches 100 it will add 1 to silver and remove the 100 from bronze. Just like in WoW or Guild Wars 2
ssss.gif




Chat Withdraw system
sss.gif




Smooth and fast deposite system
sssss.gif
8225b8300815f6c1a95336be89973a844f1ea4e7.png

YAML:
currency:
    onStart:
        bronze: 25
        silver: 0
        gold: 0
    banker:
        enderchest: true

modules:
    pickup_message:
        bronze: true
        silver: true
        gold: true

8225b8300815f6c1a95336be89973a844f1ea4e7.png
Code:
- effects:

  # remove a specific amount of type of coins from player's vault. Behaves just like the command.
  [empire[eco]] (remove|subtract) %number% [(1¦bronze)] [(2¦silver)] [(3¦gold)] (from|of) [(the)] (%player%'s vault|vault of %player%)

    example:
        subtract 5 bronze from player's vault


  # add a specific amount of type of coins to player's vault. Behaves just like the command.
  [empire[eco]] (give|add) %number% [(1¦bronze)] [(2¦silver)] [(3¦gold)] to [(the)] (%player%'s vault|vault of %player%)

     example:
         add 5 bronze to player's vault

  # Remove an amount of type of coin from player's inventory.
  [empire[eco]] remove %number% [of] [(1¦bronze)] [(2¦silver)] [(3¦gold)] coin[s] from [the] %player%'s inventory

    example:
        remove 5 bronze from player's inventory


- expressions:


  # If you want to get the amount of the player's type of coin.
  [empire[eco]] [(1¦%player%'s bronze)] [(2¦%player%'s silver)] [(3¦%player%'s gold)]

     example:
         set {_value} to player's bronze
         broadcast "%{_value}%"


  # Get the amount of type of coin from player's inventory. Physical items.
  [empire[eco]] [amount of] [(1¦bronze)] [(2¦silver)] [(3¦gold)] [found] in [the] %player%'s inventory

     example:
         set {_value} to amount of bronze in player's inventory
         broadcast "%{_value}%"


  # Get the yml value of a module.
  [empire[eco]] status (of|from) module %text%

     example:
         set {_value} to status of module "pickup_message.bronze"
         broadcast "%{_value}%"


- conditions:

  # Condition to check of the module is true or false
  [empire[eco]] status (of|from) module %text% is [(1¦true|enabled)] [(2¦false|disabled)]

     example:
         if status of module "pickup_message.bronze" is true:
              broadcast "null 1"

8225b8300815f6c1a95336be89973a844f1ea4e7.png
- Skript [Tested with Bensku 2.2 Dev37]
- SkQuery v3.6.1-lime+
- Skellett v1.9.6b+
- skript-mirror v0.18.0+
- skript-yaml v1.2.4+
- TuSKe 1.8.2-Pikachu-Patch-3+

8225b8300815f6c1a95336be89973a844f1ea4e7.png
Support will only be given through discord, here or on Github.
If you report a bug in the reviews and ask for support, you will be ignored.
Use the discussions.


ToS:
- You may not claim this as yours
- You may not re-post this code anywhere without permission
Author
Dabriel
Downloads
588
Views
588
First release
Last update
Rating
0.00 star(s) 0 ratings

Latest updates

  1. Less add-ons!

    I realized some add-ons weren't really required. Now they are removed.
  2. Page Update!

    Finally, the page design is done. I also added a better-explained API with examples.