Advertisement
Guest User

config.yml

a guest
Jun 16th, 2019
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.87 KB | None | 0 0
  1. # This config option won't do anything
  2. # Its just here to provide information
  3. generated-by-version: "9.7.1.0"
  4.  
  5. # Config Options for CombatLogX
  6. options:
  7. # Set this to true to see more information in console
  8. # You don't need to use this unless you like spam
  9. # Default: false
  10. debug: true
  11.  
  12. # Set this to true if you want to check for updates
  13. # This will not automatically download them
  14. # Default: true
  15. check for updates: true
  16.  
  17. # Add worlds to this list if you do not want players to be tagged in them
  18. disabled worlds:
  19. - "Hub"
  20. - "Epic Lobby"
  21. - "Hub_nether"
  22. - "Hub_the_end"
  23.  
  24. broadcasts:
  25. # Set this to true if you want to broadcast a message when the plugin is enabled.
  26. # Default: true
  27. on enable: true
  28.  
  29. # Set this to true if you want to broadcast a message when the plugin is disabled.
  30. # Default: true
  31. on disable: true
  32.  
  33. # The amount of time (in seconds) that players will be tagged before they can log out.
  34. # If they leave before this time ends, they will be punished.
  35. # Default: 30
  36. time: 30
  37.  
  38. link:
  39. # Set this to true to link arrows, potions, snowballs, eggs, and other projectiles to the entity that shot them
  40. # This will only link the shooter if they are the attacker
  41. # Default: true
  42. projectiles: true
  43.  
  44. # Set this to true to link wolves, ocelots, parrots, and other pets to the entity that owns them
  45. # This will only link the owner if their pet is the attacker
  46. # Default: true
  47. pets: true
  48.  
  49. # Punishment options for CombatLogX
  50. punish:
  51. # Set this to true if players should be punished when they log out during combat
  52. # Default: true
  53. on quit: true
  54.  
  55. # Set this to true if players should be punished when they get kicked by a plugin or staff member during combat
  56. # Default: false
  57. on kick: false
  58.  
  59. # Set this to true if players should be punished when their combat timer expires
  60. # You should never need this option but its here for debugging purposes
  61. # Default: false
  62. on expire: false
  63.  
  64. # Set this to true if players should be killed when they are punished
  65. # Default: true
  66. kill: true
  67.  
  68. sudo:
  69. # Set this to true if players/console should run commands when a player is punished
  70. # Default: false
  71. enabled: false
  72.  
  73. # List of commands if the above option is set to true
  74. # Prefix with [CONSOLE] to run as console
  75. # Prefix with [PLAYER] to run as the player
  76. # Prefix with [OP] to run as the player but with "Server Operator" permissions
  77. commands:
  78. - "[CONSOLE]eco take {player} 100"
  79. - "[PLAYER]me logged out during combat!"
  80.  
  81. # Combat options for CombatLogX
  82. combat:
  83. # Set this to true if players should be untagged when their current enemy dies
  84. # Default: false
  85. untag on enemy death: false
  86.  
  87. # Set this to true if players should be untagged when they die
  88. # Default: true
  89. untag on self death: true
  90.  
  91. bypass:
  92. # Set this to true if players should be allowed to bypass combat. You will need to give them the permission that is configured below
  93. # Default: false
  94. allow: false
  95.  
  96. # Change this if you don't like the default permission
  97. permission: "combatlogx.bypass"
  98.  
  99. # Set this to true to allow players to tag themselves
  100. # Default: true
  101. self: false
  102.  
  103. mobs:
  104. # Set this to true to allow mobs to tag players
  105. # Default: true
  106. enabled: false
  107.  
  108. # List of mobs that do not cause combat
  109. blacklist:
  110. - WITHER
  111. - ARMOR_STAND
  112.  
  113. sudo:
  114. # Set this to true if players/console should run commands when a player is tagged
  115. # Default: false
  116. enabled: false
  117.  
  118. # List of commands if the above option is set to true
  119. # Prefix with [CONSOLE] to run as console
  120. # Prefix with [PLAYER] to run as the player
  121. # Prefix with [OP] to run as the player but with "Server Operator" permissions
  122. commands:
  123. - "[PLAYER]me is now in Combat"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement