Advertisement
Guest User

My Config

a guest
Jan 26th, 2014
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.65 KB | None | 0 0
  1. # Inventory Drop Chance v1.5.1 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. - DisableWorld
  24. - DisabledWorld_nether
  25. - DisabledWorld_the_end
  26. Groups:
  27. ExampleGroup:
  28. retain percentage: 0
  29. delete percentage: 0
  30. xp loss: 100
  31. use xp loss: false
  32. check first: save
  33. per-stack-check: false
  34. blacklist:
  35. - '35:7'
  36. - '273'
  37. whitelist:
  38. - '276'
  39. - '25'
  40. default:
  41. retain percentage: 0
  42. delete percentage: 0
  43. xp loss: 100
  44. use xp loss: false
  45. check first: save
  46. blacklist: []
  47. whitelist: []
  48. donordrop:
  49. retain percentage: 90
  50. delete percentage: 0
  51. xp loss: 0
  52. use xp loss: false
  53. check first: save
  54. blacklist: []
  55. whitelist: []
  56. guard:
  57. retain percentage: 100
  58. delete percentage: 0
  59. xp loss: 0
  60. use xp loss: false
  61. check first: save
  62. blacklist: []
  63. whitelist: []
  64. Default values:
  65. retain percentage: 0
  66. delete percentage: 0
  67. xp loss: 100
  68. Updater:
  69. doCheckUpdate: true
  70. Group List:
  71. - default
  72. - donordrop
  73. - guard
  74. Use XP Loss Percentage: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement