Advertisement
Guest User

matrixconfig

a guest
Mar 26th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.24 KB | None | 0 0
  1. ########################################################################################################
  2. #
  3. #
  4. # Matrix Anti-Cheat
  5. # checks.yml
  6. #
  7. # This file checks and prevents the player from
  8. # using most combat related hacks including but not
  9. # limited to KillAura, Reach, HitBox, & More!
  10. #
  11. # Proofreading/Translation By: DJRedNightMC#6027
  12. # Free & Paid Plugin Proofreading for Non-Native English Speaking Developers
  13. #
  14. ########################################################################################################
  15.  
  16.  
  17. ############################################################
  18. #
  19. # KillAura
  20. #
  21. # Description: This check prevents the player from using
  22. # the KillAura hack
  23. #
  24. ############################################################
  25. killaura:
  26. # Enable KillAura check?
  27. enable: true
  28.  
  29. # Enable Machine Learning KillAura check?
  30. # (If set to true, you must also set the above check to true)
  31. machine_learning: true
  32.  
  33. # Max clicks per second (CPS)
  34. max_cps: 15
  35.  
  36. # Number of violations in order to start to canceling hits
  37. cancel_vl: -1
  38.  
  39. # Punish Commands
  40. # number_of_violations: '<command>'
  41. commands:
  42. 50: 'matrix notify %player% might be using combat hacks (KillAura)'
  43. 100: 'matrix notify %player% is using combat hacks (KillAura) #2'
  44.  
  45.  
  46. ############################################################
  47. #
  48. # HitBox/Angle/Reach
  49. #
  50. # Description: This check prevents players from using HitBox,
  51. # Angle, & Reach hacks.
  52. #
  53. ############################################################
  54. hitbox:
  55. # Enable HitBox check?
  56. enable: true
  57.  
  58. # Angle check settings
  59. angle:
  60. # Max angle (degrees)
  61. max: 90
  62.  
  63. # Min distance check
  64. min_dist: 1.5
  65.  
  66. # Reach check settings
  67. reach:
  68. # Max attack reach distance
  69. max_reach: 3.5
  70.  
  71. # Enable reach distance analyser?
  72. # This is a math check that can detect slightly modified reach hacks
  73. enable_analyser: true
  74.  
  75. # Number of violations in order to start to canceling illegal hits (-1 = never cancel)
  76. cancel_vl: -1
  77.  
  78. # Punish Commands
  79. # number_of_violations: '<command>'
  80. commands:
  81. 25: 'matrix notify %player% tried to reach entity outside max reach distance (HitBox)'
  82. 30: 'matrix notify %player% tried to reach entity outside max reach distance (HitBox) #2'
  83.  
  84.  
  85. ############################################################
  86. #
  87. # Movement Speed
  88. #
  89. # Description: This checks how fast a player moves, and
  90. # prevents the player from moving too fast.
  91. #
  92. ############################################################
  93. speed:
  94. # Enable this check?
  95. # Warning: If you disable
  96. # speed check, fly check
  97. # will not work!
  98. enable: true
  99.  
  100. # Setback violations (-1 = never setback)
  101. cancel_vl: -1
  102.  
  103. # Punish Commands
  104. # number_of_violations: '<command>'
  105. commands:
  106. 65: 'matrix notify %player% tried to move faster than usual (Speed) #1'
  107. 100: 'matrix notify %player% tried to move faster than usual (Speed) #2'
  108.  
  109.  
  110. ############################################################
  111. #
  112. # Fly
  113. #
  114. # Description: Prevents the player from using both vanilla
  115. # and non-vanilla fly hacks.
  116. #
  117. ############################################################
  118. fly:
  119. # Enable this check?
  120. # Warning: If you enable
  121. # fly check, speed check
  122. # MUST be ENABLED!
  123. enable: true
  124.  
  125. # Setback violations (-1 = never setback)
  126. cancel_vl: -1
  127.  
  128. # Ability Check
  129. # This check can quickly detect vanilla fly hack, but maybe not compatible with some plugins!
  130. ability: true
  131.  
  132. # Punish Commands
  133. # number_of_violations: '<command>'
  134. commands:
  135. 100: 'matrix notify %player% tried to fly (Fly) #1'
  136. 200: 'matrix notify %player% tried to fly (Fly) #2'
  137.  
  138.  
  139. ############################################################
  140. #
  141. # BadPackets
  142. #
  143. # Description: Prevents player from sending too many
  144. # movement packets or sending illegal packets
  145. #
  146. # Warning: Don't disable this check! This check includes
  147. # many hidden checks that are vital for Matrix to run!
  148. ############################################################
  149. badpackets:
  150. # Enable this check?
  151. enable: true
  152.  
  153. # Number of violations needed to start canceling illegal move packets
  154. cancel_vl: -1
  155.  
  156. # Punish Commands
  157. # number_of_violations: '<command>'
  158. commands:
  159. 150: 'matrix notify %player% is sending unusual packets to server (BadPackets) #1'
  160. 300: 'matrix notify %player% is sending unusual packets to server (BadPackets) #2'
  161.  
  162.  
  163. ############################################################
  164. #
  165. # FastUse
  166. #
  167. # Description: Check prevents player from eating or using
  168. # an item too quickly.
  169. #
  170. ############################################################
  171. fastuse:
  172. # Enable this check?
  173. enable: true
  174.  
  175. # Number of violations needed to start canceling use of item
  176. # (-1 = Never Cancel)
  177. cancel_vl: -1
  178.  
  179. # Punish Commands
  180. # number_of_violations: '<command>'
  181. commands:
  182. 15: 'matrix notify %player% tried to use an item faster than usual (FastUse)'
  183.  
  184.  
  185. ############################################################
  186. #
  187. # FastBow
  188. #
  189. # Description: Check prevents player from shooting a bow
  190. # too quickly.
  191. #
  192. ############################################################
  193. fastbow:
  194. # Enable this check?
  195. enable: true
  196.  
  197. # Number of violations needed to start canceling use of bow
  198. cancel_vl: -1
  199.  
  200. # Punish Commands
  201. # number_of_violations: '<command>'
  202. commands:
  203. 15: 'matrix notify %player% is trying to shoot a bow too quickly (FastBow)'
  204.  
  205.  
  206. ############################################################
  207. #
  208. # FastHeal
  209. #
  210. # Description: Check prevents player from regaining health
  211. # too quickly.
  212. #
  213. ############################################################
  214. fastheal:
  215. # Enable this check?
  216. enable: true
  217.  
  218. # Punish Commands
  219. # number_of_violations: '<command>'
  220. commands:
  221. 15: 'matrix notify %player% tried to regain health too quickly (FastHeal)'
  222.  
  223.  
  224. ############################################################
  225. #
  226. # FastPlace/Block Interact
  227. #
  228. # Description: Check prevents the player from breaking,
  229. # placing, or interacting with a block too quikcly.
  230. #
  231. ############################################################
  232. block:
  233. # Enable this check?
  234. enable: true
  235.  
  236. # Number of violations to start canceling the placing/breaking of blocks
  237. cancel_vl: -1
  238.  
  239. # Punish Commands
  240. # number_of_violations: '<command>'
  241. commands:
  242. 20: 'matrix notify %player% tried to place/break a block too quickly (FastPlace)'
  243.  
  244.  
  245. ############################################################
  246. #
  247. # Jesus / Water Walking
  248. #
  249. # Description: Check prevents the player from moving too
  250. # too quickly in liquids, or walking on liquid.
  251. #
  252. ############################################################
  253. jesus:
  254. # Enable this check?
  255. enable: true
  256.  
  257. # Number of violations to start canceling liquid movement
  258. cancel_vl: -1
  259.  
  260. # Punish Commands
  261. # number_of_violations: '<command>'
  262. commands:
  263. 30: 'matrix notify %player% tried to move illegally in liquid (Jesus)'
  264.  
  265.  
  266. ############################################################
  267. #
  268. # ChestSteal / InventoryMove
  269. #
  270. # Description: Check prevents the player from using illegal
  271. # inventory modifications such as Steal. Also prevents quick
  272. # inventory movement hacks.
  273. #
  274. ############################################################
  275. inventory:
  276. # Enable this check?
  277. enable: true
  278.  
  279. # Number of violations to start canceling the movement of items
  280. cancel_vl: -1
  281.  
  282. # Punish Commands
  283. # number_of_violations: '<command>'
  284. commands:
  285. 15: 'matrix notify %player% moved items in inventory too quickly (ChestSteal)'
  286.  
  287.  
  288. ############################################################
  289. #
  290. # Velocity / Anti-Knockback
  291. #
  292. # Description: Check prevents the player from using any type
  293. # of anti-knockback hacks.
  294. #
  295. ############################################################
  296. velocity:
  297. # Enable this check?
  298. enable: true
  299.  
  300. # Modules List
  301. # You can turn off some velocity modules here
  302. # Set it to false to disable the module
  303. modules:
  304. vertical: true
  305. horizon: true
  306. air: true
  307. air_direction: true
  308.  
  309. # Punish Commands
  310. # number_of_violations: '<command>'
  311. commands:
  312. 15: 'matrix notify %player% tried to ignore server velocity (Anti-Knockback)'
  313. 20: 'matrix notify %player% tried to ignore server velocity (Anti-Knockback) #2'
  314.  
  315.  
  316. ############################################################
  317. #
  318. # Chat Spam
  319. #
  320. # Description: Check prevents a player from spamming
  321. # messages in the servers chat.
  322. #
  323. ############################################################
  324. chat:
  325. # Enable this check?
  326. enable: false
  327.  
  328. # Minimum amount of time between messages (Seconds)
  329. min_time: 3
  330.  
  331. # Number of violations to start canceling messages from being sent
  332. cancel_vl: 3
  333.  
  334. # Punish Commands
  335. # number_of_violations: '<command>'
  336. commands:
  337. 4: 'matrix notify %player% is spamming the chat (ChatSpam)'
  338.  
  339.  
  340. ############################################################
  341. #
  342. # Interact
  343. #
  344. # Description: Check prevents the player from illegally
  345. # interacting with entities and blocks.
  346. #
  347. ############################################################
  348. interact:
  349. # Enable this check?
  350. enable: true
  351.  
  352. # Punish Commands
  353. # number_of_violations: '<command>'
  354. commands:
  355. 15: 'matrix notify %player% tried to illegally interact with Entity/Block (Interact)'
  356.  
  357.  
  358. ############################################################
  359. #
  360. # AutoFish
  361. #
  362. # Description: Check prevents the player from using an
  363. # Auto-Fishing mod or hack.
  364. #
  365. ############################################################
  366. autofish:
  367. # Enable this check?
  368. enable: false
  369.  
  370. # Punish Commands
  371. # number_of_violations: '<command>'
  372. commands:
  373. 6: 'matrix notify %player% is using auto fish (AutoFish)'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement