Advertisement
Marcely99

MBedwars Cosmetics: currencies.yml

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