Momshroom

Untitled

Feb 24th, 2016
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.95 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: 10
  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. - fly
  49. - disguise
  50.  
  51. # Set onLagout to true to remove CombatTags when players lag out.
  52. # Set onKick to true to remove CombatTags when players are kicked.
  53. Remove-Tag-On-Kick: true
  54. Remove-Tag-On-Lagout: false
  55.  
  56. # Set Remove-Potions-Enabled to true to remove Potions.
  57. # List potion effects you want removed under Potions.
  58. Remove-Potions-Enabled: true
  59. Potions:
  60. - invisibility
  61.  
  62. # Set Block-Commands-Enabled to true to block Commands during Combat.
  63. # Set Block-All-Commands to true to block all commands during Combat.
  64. # List commands you want blocked under Commands.
  65. Block-Commands-Enabled: true
  66. Block-All-Commands: false
  67. Commands:
  68. - home
  69. - spawn
  70. - tpa
  71. - tpaccept
  72. - tpahere
  73. - warp
  74. - back
  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. - world_custom
  86.  
  87. ############################################################
  88. # +------------------------------------------------------+ #
  89. # |                      Punishments                     | #
  90. # +------------------------------------------------------+ #
  91. ############################################################
  92.  
  93. # Set Enabled to true to fine players when they CombatLog.
  94. # Set Amount to the amount of money you want the fine to be.
  95. Fine:
  96.   Enabled: false
  97.   Amount: 100.00
  98.  
  99. # Set Inventory to true to drop players' inventories when they CombatLog.
  100. # Set Armor to true to drop players' armor when they CombatLog.
  101. # Set Exp to true to drop players' experience points when they CombatLog.
  102. Drop:
  103.   Inventory: true
  104.   Armor: true
  105.   Exp: true
  106.  
  107. # Set Enabled to true to kill players when they CombatLog.
  108. Kill:
  109.   Enabled: true
  110.  
  111. # Set Enabled to true to temporarily ban players when they CombatLog.
  112. # Set Duration to how long you want them to be banned for in seconds.
  113. Ban:
  114.   Enabled: false
  115.   Duration: 60
Add Comment
Please, Sign In to add comment