Advertisement
Guest User

Config CombatLog

a guest
Jul 3rd, 2014
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.98 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: 15
  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.  
  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: false
  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. - oitc lobby
  75.  
  76. # Set Block-Teleportation-Enable to true to block all teleportation.
  77. # Set Block-Enderpearls-Enabled to true to block enderpearling.
  78. Block-Teleportation-Enabled: true
  79. Block-Enderpearls-Enabled: false
  80.  
  81. # Set Disabled-Worlds-Enabled to true to disable CombatTag in worlds listed under Worlds.
  82. # List the worlds you want disabled under Worlds.
  83. Disabled-Worlds-Enabled: true
  84. Worlds:
  85. - Coldwar
  86. - Faarah
  87. - oitc1
  88. - hg2
  89. - hg1
  90.  
  91. ############################################################
  92. # +------------------------------------------------------+ #
  93. # | Punishments | #
  94. # +------------------------------------------------------+ #
  95. ############################################################
  96.  
  97. # Set Enabled to true to fine players when they CombatLog.
  98. # Set Amount to the amount of money you want the fine to be.
  99. Fine:
  100. Enabled: false
  101. Amount: 100.00
  102.  
  103. # Set Inventory to true to drop players' inventories when they CombatLog.
  104. # Set Armor to true to drop players' armor when they CombatLog.
  105. # Set Exp to true to drop players' experience points when they CombatLog.
  106. Drop:
  107. Inventory: true
  108. Armor: true
  109. Exp: true
  110.  
  111. # Set Enabled to true to kill players when they CombatLog.
  112. Kill:
  113. Enabled: true
  114.  
  115. # Set Enabled to true to temporarily ban players when they CombatLog.
  116. # Set Duration to how long you want them to be banned for in seconds.
  117. Ban:
  118. Enabled: false
  119. Duration: 60
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement