Advertisement
Guest User

Untitled

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