Advertisement
Guest User

Untitled

a guest
May 29th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. # Soulbound
  2. # By ItsMaarten
  3. # https://www.spigotmc.org/resources/soulbound.15909/
  4.  
  5. # MySQL settings
  6. # If enabled is set to false it will use yml for storage
  7. # If you don't know what host or port to use you usually don't have to change it
  8. mysql:
  9. enabled: false
  10. host: '127.0.0.1'
  11. port: '3306'
  12. username: username
  13. password: password
  14. database: database
  15.  
  16. # Limit
  17. # Set the max number of soulbound items a player can have
  18. # Players with the permission 'soulbound.donator' will be able to soulbound more items
  19. # Use custom to set more than two limits
  20. # Custom permissions are soulbound.limit.[custom]
  21. # Currently 27 is the max limit, this will be fixed in the future
  22. limit:
  23. default: 27
  24. donator: 27
  25. custom: 27
  26. vip: 27
  27.  
  28. # Costs
  29. # If mode is set to price you can set a price players have to pay, requires Vault
  30. # If mode is set to item you can set an item players have to pay
  31. # If mode is set to enjinpoints you can set a number of Enjin points players have to pay, requires Enjin
  32. # If mode is set to playerpoints you can set a number of PlayerPoints players have to pay, requires PlayerPoints
  33. # You can set amount to change how many items it should cost
  34. # To see what items you can use, check this page: https://sharpdev.nl/soulbound/
  35. costs:
  36. mode: 'price'
  37. price: 1000
  38. item: diamond
  39. amount: 3
  40. enjinpoints: 5
  41. playerpoints: 5
  42.  
  43. # Destroy item
  44. # If set to true the item will be destroyed when a player unsoulbinds it
  45. destroy-on-unbind: true
  46.  
  47. # Exp soulbound
  48. # If enabled players will be able soulbind their exp
  49. # The way the price works is the same as above
  50. exp-soulbound:
  51. enabled: false
  52.  
  53. # Unsoulbind GUI
  54. # If enabled players will be to use a GUI for unsoulbinding
  55. unsoulbind-gui:
  56. enabled: true
  57.  
  58. # Set lore
  59. # If enabled the item will show 'Soulbound to [name]' as lore
  60. use-lore: true
  61.  
  62. # Soulchests
  63. # Here you can enable or disable the use of soulchests
  64. # If disabled players will be able to store their soulbound items in regular chests
  65. soulchests:
  66. enabled: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement