Advertisement
Guest User

Untitled

a guest
Apr 30th, 2019
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.17 KB | None | 0 0
  1. # DeathPenalties plugin configuration
  2. # For more information and/or support visit: https://www.spigotmc.org/resources/deathpenalties.58944/
  3.  
  4. ##### GENERAL CONFIGURATION VALUES #####
  5.  
  6. effects-duration-format-in-seconds: true
  7. # duration in effects formatting is in seconds instead of ticks
  8.  
  9. effects-level-format-true-level: true
  10. # level in effects formatting is entered level instead of starting from 0
  11.  
  12. ##### PER WORLD CONFIGURATION VALUES #####
  13.  
  14. # you can add worlds here to set per world custom values
  15. # if a world is not added here default values will be used instead
  16. # if an option is missing it will be set to its default value
  17. # be careful to respect the format otherwise the plugin will ignore it
  18.  
  19. #example_world:
  20. # enabled: true
  21. # # if enabled death penalties will be applied
  22. # respawn-health-flat: 0.0
  23. # # health penalized player will respawn with
  24. # # if value <= 0 percentage value is used instead
  25. # respawn-food-flat: 0
  26. # # food penalized player will respawn with (integer numbers)
  27. # # if value <= 0 percentage value is used instead
  28. # respawn-money-lost-flat: 10.0
  29. # # money penalized player will lose on respawn
  30. # # if value <= 0 percentage value is used instead
  31. # respawn-items-lost-flat: 1
  32. # # items penalized player will lose on respawn
  33. # # if value <= 0 percentage value is used instead
  34. # respawn-health-percentage: 0.21
  35. # # health penalized player will respawn with in percentage (0.21 is 21 percents)
  36. # # warning this value is ignored if you have set a flat health value > 0
  37. # respawn-food-percentage: 0.4
  38. # # food penalized player will respawn with in percentage
  39. # # warning this value is ignored if you have set a flat food value > 0
  40. # respawn-money-lost-percentage: 0.01
  41. # # money penalized player will lose on respawn in percentage
  42. # # warning this value is ignored if you have set a flat money lost value > 0
  43. # respawn-items-lost-percentage: 0.05
  44. # # items penalized player will lose on respawn in percentage
  45. # # warning this value is ignored if you have set a flat items lost value > 0
  46. # respawn-effects:
  47. # - SLOWNESS:30:1:false
  48. # - SLOW_DIGGING:60:1:false
  49. # - WEAKNESS:120:2:false
  50. # # effects format is EFFECT_NAME:DURATION:LEVEL:SHOW_PARTICLES
  51. # # list of all effects names available here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/potion/PotionEffectType.html
  52.  
  53. # values below are examples of use and for testing purpose replace it by your own values !
  54.  
  55. world:
  56. enabled: true
  57. respawn-health-percentage: 0.5
  58. respawn-food-flat: 20
  59. respawn-money-lost-flat: 0
  60. respawn-items-lost-flat: 0
  61. # respawn-effects:
  62. # - SLOW:30:1:false
  63. # - SLOW_DIGGING:60:1:false
  64. # - WEAKNESS:120:2:false
  65. #world_nether:
  66. # enabled: true
  67. # respawn-health-flat: 4
  68. # respawn-food-percentage: 0.5
  69. # respawn-money-lost-percentage: 0.01
  70. # respawn-items-lost-percentage: 0.0
  71. # respawn-effects:
  72. # - SLOW:60:2:false
  73. # - SLOW_DIGGING:90:2:false
  74. # - WEAKNESS:180:3:false
  75. #world_the_end:
  76. # enabled: true
  77. # respawn-food-flat: 2
  78. # respawn-health-percentage: 0.05
  79. # respawn-effects:
  80. # - SLOW:100:2:false
  81. # - SLOW_DIGGING:150:3:false
  82. # - WEAKNESS:200:4:false
  83. world_creative:
  84. enabled: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement