Advertisement
Guest User

Untitled

a guest
Sep 14th, 2013
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.93 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: true
  25.  
  26. # Set MOTD-Enabled to true to send players a message upon logging in.
  27. MOTD-Enabled: true
  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: 25
  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.  
  49.  
  50. # Set onLagout to true to remove CombatTags when players lag out.
  51. # Set onKick to true to remove CombatTags when players are kicked.
  52. Remove-Tag-On-Kick: true
  53. Remove-Tag-On-Lagout: false
  54.  
  55. # Set Remove-Potions-Enabled to true to remove Potions.
  56. # List potion effects you want removed under Potions.
  57. Remove-Potions-Enabled: true
  58. Potions:
  59. - invisibility
  60.  
  61. # Set Block-Commands-Enabled to true to block Commands during Combat.
  62. # Set Block-All-Commands to true to block all commands during Combat.
  63. # List commands you want blocked under Commands.
  64. Block-Commands-Enabled: true
  65. Block-All-Commands: false
  66. Commands:
  67. - home
  68. - spawn
  69. - tpa
  70. - tpaccept
  71. - tpahere
  72. - warp
  73. - back
  74.  
  75. # Set Block-Teleportation-Enable to true to block all teleportation.
  76. # Set Block-Enderpearls-Enabled to true to block enderpearling.
  77. Block-Teleportation-Enabled: true
  78. Block-Enderpearls-Enabled: false
  79.  
  80. # Set Disabled-Worlds-Enabled to true to disable CombatTag in worlds listed under Worlds.
  81. # List the worlds you want disabled under Worlds.
  82. Disabled-Worlds-Enabled: true
  83. Worlds:
  84. - world_custom
  85.  
  86. ############################################################
  87. # +------------------------------------------------------+ #
  88. # | Punishments | #
  89. # +------------------------------------------------------+ #
  90. ############################################################
  91.  
  92. # Set Enabled to true to fine players when they CombatLog.
  93. # Set Amount to the amount of money you want the fine to be.
  94. Fine:
  95. Enabled: false
  96. Amount: 100.00
  97.  
  98. # Set Inventory to true to drop players' inventories when they CombatLog.
  99. # Set Armor to true to drop players' armor when they CombatLog.
  100. # Set Exp to true to drop players' experience points when they CombatLog.
  101. Drop:
  102. Inventory: true
  103. Armor: true
  104. Exp: true
  105.  
  106. # Set Enabled to true to kill players when they CombatLog.
  107. Kill:
  108. Enabled: true
  109.  
  110. # Set Enabled to true to temporarily ban players when they CombatLog.
  111. # Set Duration to how long you want them to be banned for in seconds.
  112. Ban:
  113. Enabled: false
  114. Duration: 60
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement