Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # This file includes all currencies that can be used for inter alia the shop.
- # You may create custom currencies by setting the provider of the currency to "CUSTOM".
- # It's also possible to hook into other plugins, such as Vault. Simply modify the currency's provider for that.
- # Keep in mind that it's also very important that you do not change the id of the currency after you're within production,
- # as that one is being used to store the players balance internally and is being used within other parts, such as the shop.
- # Generally, you may add as many currencies as you want. However, all entries must have the following structure:
- #
- # <id>
- # name: <name>
- # format: <the way it shall be displayed including the currency sign> (Example: format: "${number}") This is optional!
- # provider: <either CUSTOM>
- # provider-configs:
- # asd: asd
- coins:
- name: "%Cosmetics_Currency_Coins%" # Surrounded by % as it'll be taken from the MBedwars' messages file
- provider: CUSTOM
- start-amount: 7500 # How much new players start with
- prizes:
- win: 100
- lose: 20
- tie: 40 # nobody won
- non-final-kill: 3
- final-kill: 10
- bed-break: 15
- play-time: 50 # per hour
- achievement: 200
- # Examples for further currencies:
- #
- # gems:
- # name: "Gems"
- # provider: CUSTOM
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement