Advertisement
Guest User

config.yml

a guest
Jul 19th, 2014
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. # Inventory Drop Chance v1.6 Config
  2. # An item on the whitelist will always be kept.
  3. # An item on the blacklist will always be dropped.
  4. # Retain percentage is the percentage of the inv that will be kept. If this is 0, nothing will be kept and everything is dropped
  5. # Delete percentage is the percentage of the inv that will be deleted. If this is 0, nothing will be deleted
  6. # Xp loss is the percentage of the xp that will be lost. The rest will be given back to you when you respawn
  7. # Check first is the first thing to check:
  8. # 'save' = First the save check will be run, then the delete check. This way the delete check will only check from the saved items
  9. # 'delete' = First the delete check will be run, then the save check. This way the save check will only check the not-deleted items
  10. # When 'per-stack-check' is true, IDC will check every stack and will keep a % of it and delete a % of that. (Follows check-first rules)
  11. # When you have a stack of 64 diamonds and your retain and delete percentage is 50%, IDC will calculate:
  12. # stack amount * (retain percentage / 100) = kept amount. (Amount a player keeps)
  13. # kept amount * (delete percentage / 100) = delete amount. (Amount of the kept amount that will be deleted)
  14. # stack amount - kept amount = drop amount. (Amount that is dropped on the ground)
  15. # In the example:
  16. # kept amount = 64 * (50 / 100) = 32
  17. # delete amount = 32 * (50 / 100) = 16
  18. # drop amount = 64 - 32 = 32
  19. # A player will keep 16 diamonds after his death. 32 will be dropped at his death location.
  20. # You don't need to touch the default values. These are used when a player is not in a group.
  21. verboseLogging: true
  22. DisabledWorlds:
  23. - DisabledWorld
  24. - DisabledWorld_nether
  25. - DisabledWorld_the_end
  26. Groups:
  27. ExampleGroup:
  28. retain percentage: 0
  29. delete percentage: 0
  30. check first: save
  31. per-stack-check: false
  32. blacklist:
  33. - ''
  34. whitelist:
  35. - ''
  36. legend:
  37. retain percentage: 80
  38. delete percentage: 0
  39. check first: save
  40. per-stack-check: false
  41. blacklist:
  42. - ''
  43. whitelist:
  44. - ''
  45. Default values:
  46. retain percentage: 0
  47. delete percentage: 0
  48. xp loss: 100
  49. Updater:
  50. doCheckUpdate: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement