Advertisement
Guest User

Untitled

a guest
Mar 7th, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.08 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: '37.187.25.123'
  11.   port: '3306'
  12.   username: carlkauf32387
  13.   password: ****
  14.   database: carlkauf32387DB
  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: 1
  24.   donator: 5
  25.   custom:
  26.     Knight: 1
  27.     Noble: 2
  28.     Duke: 3
  29.     GrandDuke: 4
  30.     Prince: 5
  31.  
  32. # Costs
  33. # If mode is set to price you can set a price players have to pay, requires Vault
  34. # If mode is set to item you can set an item players have to pay
  35. # If mode is set to enjinpoints you can set a number of Enjin points players have to pay, requires Enjin
  36. # If mode is set to playerpoints you can set a number of PlayerPoints players have to pay, requires PlayerPoints
  37. # You can set amount to change how many items it should cost
  38. # To see what items you can use, check this page: https://sharpdev.nl/soulbound/
  39. costs:
  40.   mode: 'price'
  41.   price: 0
  42.   item: diamond
  43.   amount: 3
  44.   enjinpoints: 5
  45.   playerpoints: 5
  46.  
  47. # Destroy item
  48. # If set to true the item will be destroyed when a player unsoulbinds it
  49. destroy-on-unbind: false
  50.  
  51. # Exp soulbound
  52. # If enabled players will be able soulbind their exp
  53. # The way the price works is the same as above
  54. exp-soulbound:
  55.   enabled: false
  56.  
  57. # Unsoulbind GUI
  58. # If enabled players will be to use a GUI for unsoulbinding
  59. unsoulbind-gui:
  60.   enabled: false
  61.  
  62. # Set lore
  63. # If enabled the item will show 'Soulbound to [name]' as lore
  64. use-lore: true
  65.  
  66. # Soulchests
  67. # Here you can enable or disable the use of soulchests
  68. # If disabled players will be able to store their soulbound items in regular chests
  69. soulchests:
  70.   enabled: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement