Advertisement
NORTBE

Untitled

Dec 9th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.19 KB | None | 0 0
  1. # The duration in seconds that both the attacker and victim should be tagged in combat.
  2. tag-duration: 15
  3.  
  4. # This message is displayed to both the attacker and victim when newly tagged. Set this to '' to display nothing. {opponent} is the other player.
  5. tag-message: '&cYou have engaged in combat with &b{opponent}&c. Type &b/ct &cto check your timer.'
  6.  
  7. # This message is displayed to both the attacker and victim when newly tagged if the opponent is unknown. Set this to '' to display nothing.
  8. tag-unknown-message: '&cYou have engaged in combat. Type &b/ct &cto check your timer.'
  9.  
  10. # This message is displayed the player when their tag expires. Set this to '' to display nothing.
  11. untag-message: '&aYou are no longer in combat.'
  12.  
  13. # This message is displayed to the player when they attempt to check the remaining time on their tag, while not being tagged
  14. command-untag-message: '&aYou are not in combat.'
  15.  
  16. # This message is displayed to the player when they check the remaining time on their tag via command. {time} will be replaced with the remaining tag time.
  17. command-tag-message: '&c{time} seconds remaining on your combat timer.'
  18.  
  19. # Resets the tag time when the tagged player throws an enderpearl.
  20. reset-tag-on-pearl: false
  21.  
  22. # Disables players being able to tag themselves.
  23. disable-self-tagging: true
  24.  
  25. # Prevent players in creative from getting tagged.
  26. disable-creative-tags: true
  27.  
  28. # Prevent tagged players throwing enderpearls while tagged.
  29. disable-enderpearls: false
  30.  
  31. # This message is displayed when a player attempts to enderpearl within pvp if enderpearls are disabled in pvp.
  32. disable-enderpearls-message: '&bEnderpearls &care disabled in combat.'
  33.  
  34. # Prevent tagged players from flying during combat.
  35. disable-flying: false
  36.  
  37. # This message is displayed when a player attempts to fly within pvp if flying is disabled in pvp.
  38. disable-flying-message: '&bFlying &cis disabled in combat.'
  39.  
  40. # Prevent tagged players from teleporting during combat.
  41. disable-teleportation: false
  42.  
  43. # This message is displayed when a player attempts to teleport within pvp if teleportation is disabled in pvp.
  44. disable-teleportation-message: '&bTeleportation &cis disabled in combat.'
  45.  
  46. # Enables BarAPI integration for displaying a boss bar counting down with the remaining tag time.
  47. barapi: true
  48.  
  49. # Message to be displayed on BarAPI when players' pvp timer has ended.
  50. barapi-ended-message: '&aYou are no longer in combat!'
  51.  
  52. # Message to be displayed on BarAPI when the player is still in pvp.
  53. barapi-countdown-message: '&eCombatTag: &f{remaining}'
  54.  
  55.  
  56. # Enables WorldGuard integration for disabling combat tagging in regions with PVP disabled.
  57. worldguard: true
  58.  
  59.  
  60. # This is a list of worlds where combat tagging should be disabled.
  61. disabled-worlds: [world_the_end]
  62.  
  63. # This message is displayed when the player tries to execute a disabled command whilst in combat.
  64. disabled-command-message: '&b{command}&c is disabled in combat.'
  65.  
  66. # These commands are unusable by players who are combat tagged. Use '*' to blacklist all commands.
  67. command-blacklist:
  68. - '*'
  69.  
  70. # These commands are exceptions to the blacklist.
  71. command-whitelist:
  72. - ct
  73. - ctplus
  74. - combattag
  75. - ctlog
  76. - logout
  77. - ctlogout
  78. - ctpluslogout
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement