Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.33 KB | None | 0 0
  1. #### MATRIX CONFIG FILE
  2. # MATRIX ANTI CHEAT
  3. # file: config.yml | Customize general settings here
  4. #
  5. # Links:
  6. # 1. Issue Tracker: https://github.com/jiangdashao/Matrix-Issues/issues
  7. # 2. SpigotMC Overview Page: https://www.spigotmc.org/resources/64635/
  8. # 3. bStats: https://bstats.org/plugin/bukkit/Matrix
  9. # 4. Discord Group: https://discord.gg/pEvY55J
  10. #
  11. # Contributors:
  12. # Performance#1955: Report a lot of bugs and manage the Github issue tracker
  13. # Zak#6435 & Alex#2237: Provide the test server and report some bugs
  14. # Kruize#9138 & VariationTime#2942: Report a lot of bugs and test in the production environment
  15. #
  16. # Thanks for using Matrix! <3
  17.  
  18. ## Check update when starting up?
  19. check_update: true
  20.  
  21. ## Player Latency Protection
  22. # Description: Increases the amount of violations needed to
  23. # trigger the Punish Commands (checks.yml) for players with
  24. # high latency. Good for servers with less RAM.
  25. player_latency_protection:
  26. # Enable this feature?
  27. enable: true
  28.  
  29. ## Permission Cache refresh interval (seconds)
  30. # default: 15 seconds
  31. permission_refresh_interval: 1
  32.  
  33. ## Kick Lighting Effect
  34. # Should there be a lightning bolt visual effect if
  35. # someone is getting kicked using /matrix kick
  36. kick_strike_lightning: true
  37.  
  38. ## Ghost Mode
  39. # If you enable Ghost Mode, Matrix will Not setback player
  40. # or cancel illegal actions. I don't recommend turning this feature on,
  41. # which can lead to bypasses, such as teleport
  42. ghost_mode: true
  43.  
  44. ## Cloud Service
  45. # Matrix can connect to the cloud service and provide some
  46. # service for you. You also can buy the premium user to gain
  47. # more checks and services
  48. cloud:
  49. # Enable Cloud Service ?
  50. enable: true
  51.  
  52. # Login user name
  53. user: ''
  54.  
  55. # Login password
  56. password: ''
  57.  
  58. # Auto close cloud service after verified premium user
  59. # If you don't need cloud service and you still need
  60. # verify premium user, you can set this to true
  61. auto_close_after_verified: true
  62.  
  63. ## Server Lag Protection
  64. # Description: Automatically disables some checks when your
  65. # server is lagging. This prevents most, but not all, false
  66. # positives from occuring.
  67. tps_protection:
  68. # Enable this feature?
  69. enable: true
  70.  
  71. # Minimum TPS needed to trigger protection
  72. min_tps: 18.0
  73.  
  74. ## Log Violations
  75. # Description: Logs all violations to a file. Files can be
  76. # found in /plugins/Matrix/logs
  77. # Warning: If you are using BungeeCord, I recommend setting
  78. # this to FALSE. This will prevent useless log files from
  79. # being stored and using up precious disk space.
  80. log_file: true
  81.  
  82. ## Deny Bypass Permission
  83. # Description: By setting this option to TRUE, you are
  84. # forcing Matrix to check everyone on the server, INCLUDING
  85. # anyone who has Operator status. By setting this option to
  86. # TRUE you can run the necessary tests without having to
  87. # remove your operator status.
  88. disable_bypass_permission: true
  89.  
  90. ## Relog time
  91. # How long after a player is kicked should he be allowed to log in (seconds)
  92. # also, you can set -1 to disable this feature
  93. relog_time: -1
  94.  
  95. ## Disabled components
  96. # You can disable a specific sub check here, instead of disabling
  97. # the whole check, you can find component name in the end of verbose
  98. # messages
  99. # Example: If you add "speed.web" in the blow, the fast web check will
  100. # be disabled
  101. disabled_components:
  102. - 'example entry'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement