Advertisement
Guest User

Untitled

a guest
Mar 29th, 2021
863
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.59 KB | None | 0 0
  1. # The main command prefix that is typed before all commands #
  2. main-command: mobcoins
  3. # The command users type to open the mobshop #
  4. mob-shop-command: mobshop
  5. # The name of the currency displayed in the mobshop and when players obtain mobcoins through kills #
  6. currency-name: 'coins'
  7. # The main prefix displayed before messages sent to the player #
  8. plugin-prefix: "&6&lMobCoinsPlus &8&l>> "
  9. # Toggles a currency sign displayed next to the currency #
  10. enable-currency-symbol: false
  11. # Set the currency symbol that is used if the above option is true #
  12. currency-symbol: '$'
  13. # Name displayed in the mobshop #
  14. mobshop-gui-name: '&c&lMob Shop'
  15. # Toggles player message for when mobcoins are obtained through kills #
  16. drop-messages: true
  17. # Toggles sound played for players when mobcoins are obtained through kills #
  18. drop-sounds: true
  19. # Toggles if permissions are needed in this plugin for non-admin commands #
  20. enable-permissions: true
  21. # Toggles if a player should be able to send their mobcoins to another player #
  22. send-money: true
  23. # Set the default player starting amount #
  24. starting-amount: 0
  25. # Set the default percentage of a player's mobcoins that they lose on death (keep as 0 to disable) #
  26. # Range is (0.01 - 1) -- 1% == 0.01 and 100% == 1 #
  27. default-percent-loss-on-death: 0
  28. # Toggles whether or not the player help message in the messages.yml file will be used #
  29. # If disabled, the player will be sent the no-permission message #
  30. enable-player-help: true
  31. # If enabled, this will return the players mobcoin balance instead of the help command when they type /mobcoins #
  32. return-mobcoins-amount: false
  33. # Here you can put any worlds where the player cannot gain mobcoins #
  34. disabled-worlds:
  35.  - "world1"
  36.   - "world2"
  37. # These are the colors of the stained glass that appear in the mobshop #
  38. gui-colors:
  39.   border: 'BLACK'
  40.   dummy: 'YELLOW'
  41. # Create groups that can be assigned with permissions - more info for this can be found on the spigot page #
  42. groups:
  43.   member:
  44.     percent_loss_on_death: 0.25
  45.     # Multipliers must be a whole number that can be multiplied with the mobcoin amount #
  46.     coin_multiplier: 2
  47.   vip:
  48.     percent_loss_on_death: 0.05
  49.     coin_multiplier: 3
  50. # To add a mob, simply find it's name on https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/entity/EntityType.html and copy the format below #
  51. # If you are in a pre 1.16 version and would like to add zombie pigmans, their name is 'PIG_ZOMBIE' #
  52. mob-drops:
  53.   COW:
  54.    # Percent chance of this mob dropping mobcoins (1-100) #
  55.     chance: 0
  56.     # Amount of mobcoins to be dropped when a player gets mobcoins from this mob #
  57.     amount: 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement