Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.93 KB | None | 0 0
  1. # Cheat Prevention Configuration File
  2.  
  3. teleportation:
  4. # Set this to true if players should be allowed to teleport during combat
  5. # Default: false
  6. allow during combat: false
  7.  
  8. # If the above option is true, these types of teleports won't be blocked
  9. # Valid Types can be found here: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/event/player/PlayerTeleportEvent.TeleportCause.html
  10. #
  11. # Pro Tip: The 'PLUGIN' cause will allow all teleports from any plugin and command, so use it wisely!
  12. #
  13. # Default: false
  14. allowed causes:
  15. - "ENDER_PEARL"
  16. - "PLUGIN"
  17.  
  18. # If the above option is true, set this to true to make ender pearls tag the player again
  19. # Default: false
  20. ender pearls restart timer: false
  21.  
  22. flight:
  23. # Set this to true if players should be allowed to fly during combat
  24. # Default: false
  25. allow during combat: false
  26.  
  27. # Set this to true if players should be allowed to use elytras
  28. # Default: false
  29. allow elytras: false
  30.  
  31. # Set this to true if players should be allowed to use the riptide trident enchant
  32. # Warning: This option is a bit buggy, if you are having issues set it to `true`
  33. # Default: false
  34. allow riptide: false
  35.  
  36. # This option only works for players who had their flight disabled by CombatLogX
  37. # Set this to true to cancel the first fall damage they take
  38. # Default: false
  39. prevent fall damage: false
  40.  
  41. # Set this to '' if you don't want to enable flight for anyone
  42. # Set this to a permission if you want players to have flight enabled after combat
  43. # Default: 'combatlogx.flight.enable'
  44. enable permission: 'combatlogx.flight.enable'
  45.  
  46. gamemode:
  47. # Set this to true if a player's gamemode should be changed when they are tagged
  48. # Default: true
  49. change: true
  50.  
  51. # If the above option is true, what gamemode should the player be changed to?
  52. # Valid Options: SURVIVAL, ADVENTURE, CREATIVE, SPECTATOR
  53. # Default: SURVIVAL
  54. gamemode: SURVIVAL
  55.  
  56. commands:
  57. # Set this to true if the command list is not a blacklist
  58. # Default: false
  59. whitelist: false
  60.  
  61. # This is a list of commands that will be blocked
  62. # You must type the / or the command will not be blocked
  63. # If a plugin does not register commands properly, they may not be blocked
  64. # Make sure you also put command aliases here (such as /etp)
  65. commands:
  66. - "/tp"
  67. - "/tpa"
  68. - "/tpaccept"
  69. - "/tpo"
  70. - "/fly"
  71. - "/gamemode"
  72. - "//wand"
  73. - "/f home"
  74. - "/warp"
  75. - "/pv"
  76. - "/enderchest"
  77. - "/spawn"
  78.  
  79. potions:
  80. # A list of potions that will be removed when a player is tagged
  81. # Valid Options can be found here: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/potion/PotionEffectType.html
  82. # Invalid effects will be ignored and may cause errors
  83. # Set this to [] to disable potion blocking
  84. # Example: "blocked potions: []"
  85. blocked potions:
  86. - "INVISIBILITY"
  87. - "INCREASE_DAMAGE"
  88.  
  89. inventories:
  90. # Set this to true to close the inventory that the player has open when they are tagged
  91. # For some reason the chat is counted as an inventory so that will also be closed
  92. # Default: true
  93. close on tag: true
  94.  
  95. # Set this to true to prevent players from opening an inventory during combat
  96. # Default: true
  97. prevent opening: true
  98.  
  99. chat:
  100. # Set this to true if players should be allowed to chat during combat
  101. # Default: false
  102. allow during combat: false
  103.  
  104. blocks:
  105. # Set this to true to allow breaking blocks during combat
  106. # Default: false
  107. allow breaking: false
  108.  
  109. # Set this to true to allow placing blocks during combat
  110. # Default: false
  111. allow placing: false
  112.  
  113. items:
  114. # Set this to true to allow players to pick up items during combat
  115. # Default: false
  116. allow picking up: false
  117.  
  118. # Set this to true to allow players to drop items during combat
  119. # Default: false
  120. allow dropping: false
  121.  
  122. # Set this to true to prevent players from using totems of undying during combat
  123. # Default: false
  124. prevent totem usage: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement