Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.16 KB | None | 0 0
  1. ############################################################
  2. # +-------- Designed and Developed by JackProehl --------+ #
  3. # |--- Please consider donating to my PayPal account. ---| #
  4. # +----------------- JohnProehl@me.com ------------------+ #
  5. ############################################################
  6.  
  7. # **** WATCH VIDEO ON PLUGIN PAGE FOR CONFIG HELP! ****
  8. # **** http://dev.bukkit.org/server-mods/combatlog ****
  9.  
  10. # Add me on Skype (John.Proehl) if you have any issues.
  11.  
  12. # Please report all bugs and glitches on BukkitDev.
  13.  
  14. # Do not backspace the Version number!
  15. Version: 1.7.11
  16.  
  17. ############################################################
  18. # +------------------------------------------------------+ #
  19. # | Miscellaneous | #
  20. # +------------------------------------------------------+ #
  21. ############################################################
  22.  
  23. # Set UpdateCheck-Enabled to true to check for available updates.
  24. UpdateCheck-Enabled: false
  25.  
  26. # Set MOTD-Enabled to true to send players a message upon logging in.
  27. MOTD-Enabled: false
  28.  
  29. # Set Broadcast-Enabled to true to broadcast when a player CombatLogs.
  30. Broadcast-Enabled: true
  31.  
  32. ############################################################
  33. # +------------------------------------------------------+ #
  34. # | Combat | #
  35. # +------------------------------------------------------+ #
  36. ############################################################
  37.  
  38. # Set Tag-Duration to how long a player is in Combat in seconds.
  39. # Set PvP-Enabled to true to enable tagging from Player vs Player combat.
  40. # Set PvE-Enabled to true to enable tagging from Player vs Mob combat.
  41. Tag-Duration: 3
  42. PvP-Enabled: true
  43. PvE-Enabled: false
  44.  
  45. # Add modes you want removed during Combat under Remove-Modes.
  46. # Available Modes: creative, fly, disguise.
  47. Remove-Modes:
  48. - disguise
  49. - fly
  50. - creative
  51. - dis
  52.  
  53. # Set onLagout to true to remove CombatTags when players lag out.
  54. # Set onKick to true to remove CombatTags when players are kicked.
  55. Remove-Tag-On-Kick: true
  56. Remove-Tag-On-Lagout: false
  57.  
  58. # Set Remove-Potions-Enabled to true to remove Potions.
  59. # List potion effects you want removed under Potions.
  60. Remove-Potions-Enabled: true
  61. Potions:
  62. - invisibility
  63.  
  64. # Set Block-Commands-Enabled to true to block Commands during Combat.
  65. # Set Block-All-Commands to true to block all commands during Combat.
  66. # List commands you want blocked under Commands.
  67. Block-Commands-Enabled: true
  68. Block-All-Commands: false
  69. Commands:
  70. - home
  71. - spawn
  72. - tpa
  73. - tpask
  74. - tpaccept
  75. - warp
  76. - back
  77. - tpyes
  78. - etpyes
  79. - etpa
  80. - etpaccept
  81. - espawn
  82. - ewarp
  83. - essentials:tpyes
  84. - essentials:tpa
  85. - essentials:tpaccept
  86. - f home
  87. - essentials:warp
  88. - tpask
  89. - etpask
  90. - essentials:tpask
  91. - enderchest
  92.  
  93. # Set Block-Teleportation-Enable to true to block all teleportation.
  94. # Set Block-Enderpearls-Enabled to true to block enderpearling.
  95. Block-Teleportation-Enabled: false
  96. Block-Enderpearls-Enabled: false
  97.  
  98. # Set Disabled-Worlds-Enabled to true to disable CombatTag in worlds listed under Worlds.
  99. # List the worlds you want disabled under Worlds.
  100. Disabled-Worlds-Enabled: true
  101. Worlds:
  102. - practice
  103.  
  104. ############################################################
  105. # +------------------------------------------------------+ #
  106. # | Punishments | #
  107. # +------------------------------------------------------+ #
  108. ############################################################
  109.  
  110. # Set Enabled to true to fine players when they CombatLog.
  111. # Set Amount to the amount of money you want the fine to be.
  112. Fine:
  113. Enabled: false
  114. Amount: 100.00
  115.  
  116. # Set Inventory to true to drop players' inventories when they CombatLog.
  117. # Set Armor to true to drop players' armor when they CombatLog.
  118. # Set Exp to true to drop players' experience points when they CombatLog.
  119. Drop:
  120. Inventory: true
  121. Armor: true
  122. Exp: true
  123.  
  124. # Set Enabled to true to kill players when they CombatLog.
  125. Kill:
  126. Enabled: true
  127.  
  128. # Set Enabled to true to temporarily ban players when they CombatLog.
  129. # Set Duration to how long you want them to be banned for in seconds.
  130. Ban:
  131. Enabled: false
  132. Duration: 60
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement