Advertisement
Guest User

Untitled

a guest
Dec 17th, 2019
935
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.81 KB | None | 0 0
  1. #############################
  2. # AntiClicker Configuartion #
  3. #############################
  4.  
  5. # Which prefix should AntiClicker have in chat?
  6. prefix: "&7[&6AntiClicker&7]"
  7.  
  8. # Should ops bypass the checks?
  9. op-bypass: false
  10.  
  11. # Should AntiClicker show debug messages in console?
  12. debug-to-console: false
  13.  
  14. # Ban-Message ("none" to disable)
  15. ban-message: "%prefix% &7Banning &c%player% &7in %sec% seconds."
  16.  
  17. # Starting checks message ("none" to disable)
  18. starting-message: "%prefix% &7Starting checks on &c%player% &7..."
  19.  
  20. # Alert message
  21. alert-message: "%prefix% &c%player% &7might be cheating &e(%certain% % certain)"
  22.  
  23. # Debug message ("none" to disable)
  24. debug-message: "%prefix% &c%player% &7failed &e%check% &c(%vl% VL)"
  25.  
  26. # If the player has this high ping, don't check them
  27. max-ping: 250
  28.  
  29. # Enter Key for Premium Features here
  30. premium-key: "XXXXXXXXXX"
  31.  
  32.  
  33.  
  34. ##############
  35. # Violations #
  36. ##############
  37.  
  38. # Commands executed when autoban is enabled (without slash)
  39. bancommand: "ban %player% [AntiClicker] Unfair Advantage;say %player% got banned for cheating"
  40.  
  41. # Delay before ban in seconds
  42. ban-delay: 10
  43.  
  44. # How confident should AntiClicker be in order to alert staff about a player (set to 0.0 to disable, max: 1.0)
  45. alert-certainty: 0.3
  46.  
  47. # How confident should AntiClicker be in order to cancel a players clicks (set to 0.0 to disable, max: 1.0)
  48. cancel-certainty: 0.0
  49.  
  50. # How confident should AntiClicker be in order to ban a player (set to 0.0 to disable, max: 1.0)
  51. ban-certainty: 0.9
  52.  
  53. # Decrease the violation level of a player by this much every minute
  54. # suggested value: (1.0-2.5)
  55. decrease: 2.0
  56.  
  57.  
  58.  
  59. ##########################
  60. # AutoClickerA - Average #
  61. ##########################
  62. #
  63. # Looks for a consistent high click speeds.
  64. #
  65. # Accuracy: XXXXO (4/5)
  66. # Efficiency: XXXXO (4/5 - useful for more obvious high cps autoclickers)
  67.  
  68. # Should AutoClickerA be enabled?
  69. enable-autoclickera: true
  70.  
  71. # What is the maximum number of CPS a player can get consistently?
  72. max-average: 12.0
  73.  
  74. # How many violations are added when failing this check?
  75. weight-autoclickera: 4
  76.  
  77.  
  78.  
  79. #########################
  80. # AutoClickerB - MaxCPS #
  81. #########################
  82. #
  83. # Looks for high cps spikes.
  84. #
  85. # Accuracy: XXXXX (5/5)
  86. # Efficiency: XXXOO (3/5 - detects insane autoclickers)
  87.  
  88. # Should AutoClickerB be enabled?
  89. enable-autoclickerb: true
  90.  
  91. # What is the maximum number of CPS a player could ever reach?
  92. max-cps: 14.0
  93.  
  94. # How many violations are added when failing this check?
  95. weight-autoclickerb: 5
  96.  
  97.  
  98.  
  99. ##############################
  100. # AutoClickerC - Consistency #
  101. ##############################
  102. #
  103. # Looks for consistent differences between clicks.
  104. #
  105. # Accuracy: XOOOO (1/5)
  106. # Efficiency: XXXXO (4/5 - detects some advanced autoclickers)
  107.  
  108. # Should AutoClickerC be enabled?
  109. enable-autoclickerc: false
  110.  
  111. # How strict should this check be? (lower=more lentient, less detections)
  112. # suggested value: (1-5)
  113. strictness: 2
  114.  
  115. # How many violations are added when failing this check?
  116. weight-autoclickerc: 1
  117.  
  118.  
  119.  
  120. ##########################
  121. # AutoClickerD - Pattern #
  122. ##########################
  123. #
  124. # Looks for patterns in click speeds and tries to estimate the settings
  125. # an autoclicker might be set to.
  126. #
  127. # Accuracy: XXXXO (4/5)
  128. # Efficiency: XXXXO (4/5 - good and stable check)
  129.  
  130. # Should AutoClickerD be enabled?
  131. enable-autoclickerd: true
  132.  
  133. # How lentient should ClickChecker be when looking for patterns? (higher=more lentient, less detections)
  134. # suggested value: (0.6-0.7)
  135. latency: 0.65
  136.  
  137. # How many violations are added when failing this check?
  138. weight-autoclickerd: 4
  139.  
  140.  
  141.  
  142. ########################
  143. # AutoClickerE - Delay #
  144. ########################
  145. #
  146. # Looks for consistent delays inbetween two individual clicks.
  147. #
  148. # Accuracy: XXXXO (4/5)
  149. # Efficiency: XXXXO (4/5 - stable check for blatant autoclickers)
  150.  
  151. # Should AutoClickerE be enabled?
  152. enable-autoclickere: true
  153.  
  154. # How many violations are added when failing this check?
  155. weight-autoclickere: 5
  156.  
  157.  
  158.  
  159. #########################
  160. # AutoClickerF - Double #
  161. #########################
  162. #
  163. # Looks for double clicks in macros by enforcing a minimum click delay.
  164. #
  165. # Accuracy: XXXXO (4/5)
  166. # Efficiency: XXOOO (2/5 - only useful for macros)
  167.  
  168. # Should AutoClickerF be enabled?
  169. enable-autoclickerf: true
  170.  
  171. # How many violations are added when failing this check?
  172. weight-autoclickerf: 4
  173.  
  174.  
  175.  
  176. ########################
  177. # AutoClickerG - Abort #
  178. ########################
  179. #
  180. # Looks for short clicks when hitting or breaking blocks.
  181. #
  182. # Accuracy: XXXXX (5/5)
  183. # Efficiency: XXOOO (2/5 - small number of detections)
  184.  
  185. # Should AutoClickerG be enabled?
  186. enable-autoclickerg: true
  187.  
  188. # How many violations are added when failing this check?
  189. weight-autoclickerg: 5
  190.  
  191.  
  192.  
  193. ############################
  194. # AutoClickerH - Heuristic #
  195. ############################
  196. #
  197. # Looks for specific patterns and compares them to previous data.
  198. #
  199. # Accuracy: XXXXX (5/5)
  200. # Efficiency: XXXXX (5/5 - detects the best autoclickers and killauras)
  201.  
  202. # Should AutoClickerH be enabled?
  203. enable-autoclickerh: true
  204.  
  205. # How many violations are added when failing this check?
  206. weight-autoclickerh: 10
  207.  
  208.  
  209.  
  210. ##############
  211. # ItemSwitch #
  212. ##############
  213. #
  214. # Looks for patterns when moving items in inventories.
  215. #
  216. # Accuracy: XXXXO (4/5)
  217. # Efficiency: XXXXO (4/5 - stable and good check)
  218.  
  219. # Should ItemSwitch be enabled?
  220. enable-itemswitch: true
  221.  
  222. # How many violations are added when failing this check?
  223. weight-itemswitch: 2
  224.  
  225.  
  226.  
  227. ###########
  228. # FastEat #
  229. ###########
  230. #
  231. # Looks for fast consumption of food/potions.
  232. #
  233. # Accuracy: XXXXX (5/5)
  234. # Efficiency: XXXXO (4/5 - very good check)
  235.  
  236. # Should FastEat be enabled?
  237. enable-fasteat: true
  238.  
  239. # How many violations are added when failing this check?
  240. weight-fasteat: 3
  241.  
  242.  
  243.  
  244. #######################
  245. # VelocityA - Predict #
  246. #######################
  247. #
  248. # Looks for expected velocity values and compares them to the actual position.
  249. #
  250. # Accuracy: XXXOO (3/5)
  251. # Efficiency: XXXXO (4/5 - very efficient on most clients)
  252.  
  253. # Should VelocityA be enabled?
  254. enable-velocitya: true
  255.  
  256. # How many violations are added when failing this check?
  257. weight-velocitya: 2
  258.  
  259.  
  260.  
  261. #########################################
  262. # ReachA - Horizontal [Premium Feature] #
  263. #########################################
  264. #
  265. # Looks for players using reach to their advantage.
  266. #
  267. # Accuracy: XXXXX (5/5)
  268. # Efficiency: XXXXO (4/5 - detects most reach with 3.1+ blocks)
  269.  
  270. # Should ReachA be enabled?
  271. enable-reacha: true
  272.  
  273. # What reach should AntiClicker limit a player to?
  274. # suggested value: (3.1-3.5)
  275. max-reach: 3.2
  276.  
  277. # How many violations are added when failing this check?
  278. weight-reacha: 4
  279.  
  280.  
  281.  
  282. ##########################################
  283. # KillAuraA - Analysis [Premium Feature] #
  284. ##########################################
  285. #
  286. # Looks for many advanced patterns and compares them to player behaviour.
  287. #
  288. # Accuracy: XXXXX (5/5)
  289. # Efficiency: XXXXX (5/5 - designed to detect any KillAura)
  290.  
  291. # Should KillAuraA be enabled?
  292. enable-killauraa: true
  293.  
  294. # How many violations are added when failing this check?
  295. weight-killauraa: 7
  296.  
  297.  
  298.  
  299. ##########################################
  300. # KillAuraB - Accuracy [Premium Feature] #
  301. ##########################################
  302. #
  303. # Looks for players attacking entities and not missing any hits.
  304. #
  305. # Accuracy: XXXXX (5/5)
  306. # Efficiency: XXXXO (4/5 - some KillAuras bypass this check)
  307.  
  308. # Should KillAuraB be enabled?
  309. enable-killaurab: true
  310.  
  311. # How many violations are added when failing this check?
  312. weight-killaurab: 5
  313.  
  314.  
  315.  
  316. ##############################
  317. # AutoSoup [Premium Feature] #
  318. ##############################
  319. #
  320. # Looks for faster switching times between item slots.
  321. #
  322. # Accuracy: XXXXX (5/5)
  323. # Efficiency: XXXXX (5/5 - the most stable check ever)
  324.  
  325. # Should AutoSoup be enabled?
  326. enable-autosoup: true
  327.  
  328. # How many violations are added when failing this check?
  329. weight-autosoup: 4
  330.  
  331.  
  332.  
  333. ###################################
  334. # InventoryMove [Premium Feature] #
  335. ###################################
  336. #
  337. # Looks for actions in inventories while still moving.
  338. #
  339. # Accuracy: XXXXX (5/5)
  340. # Efficiency: XXXXO (4/5 - some actions are ignored)
  341.  
  342. # Should InvMove be enabled?
  343. enable-invmove: true
  344.  
  345. # How many violations are added when failing this check?
  346. weight-invmove: 3
  347.  
  348.  
  349.  
  350. ###############################
  351. # Criticals [Premium Feature] #
  352. ###############################
  353. #
  354. # Looks for packets and patterns in hops.
  355. #
  356. # Accuracy: XXXXX (5/5)
  357. # Efficiency: XXXXO (4/5 - few settings may bypass)
  358.  
  359. # Should Criticals be enabled?
  360. enable-criticals: true
  361.  
  362. # How many violations are added when failing this check?
  363. weight-criticals: 3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement