Advertisement
Guest User

fe

a guest
Jun 24th, 2016
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.34 KB | None | 0 0
  1. #########################################################
  2. # WOLF ANTI-CHEAT 1.7/1.8 #
  3. # BY SEVENINGFUL #
  4. # Warning mode only #
  5. #########################################################
  6.  
  7. # This value is just for BungeeCord servers who have WOL-BC.jar into their plugins
  8. # Data will be send with BungeeCord Messaging Channel , so there will be a little delay (~50ms) for each check
  9. # The plugin will detect if Bungeecord boolean value is set to true in the spigot.yml file and if not it will take
  10. # the value set in this config file
  11. bungeecord: false
  12.  
  13. # Set this to true if your server is a CraftBukkit Server
  14. # Please consider updating your server to Spigot to get better performances
  15. craftbukkit: false
  16.  
  17. # If this value is set to 'true' MYSQL database will be used
  18. # The plugin will connect to the MySQL server
  19. # And if the chosen database is not created , it will be created with tables
  20. # If this value is set to 'false' File database will be used
  21. # /!\ If you're in a BungeeCord server please use MySQL database /!\
  22. # /!\ If you have a single huge server (~50 connected people) use the MySQL database too ! /!\
  23. # THIS OVER HERE IS NOT IMPLEMENTED YET !
  24. mysql:
  25. enabled: true
  26. user: 'root'
  27. pass: ''
  28. port: 3306
  29. # This sets the name of the used database to store WOLF data
  30. # If not created, it will be created with tables
  31. # If created, it will add just tables
  32. mysql-databse-name: 'Wolf'
  33.  
  34. # MESSAGES
  35. # %PLAYER% : Username of the player
  36. # %HACK% : Hack name
  37. # %PING% : Ping of the player (not accurate at all)
  38. # %KAD% : More accurate ping (real)
  39. # %TPS% : Actual TPS of the server
  40. # %CHECKS% : Number of verifications before warning sent
  41. messages:
  42. warnings: '&EIl player &a%PLAYER% &eรจ sospettato di &a%HACK% &e(&a%PING%ms di ping | %KAD% di ping piu' accurato / TPS : %TPS%) (%CHECKS% controlli fatti)'
  43.  
  44.  
  45. # Different detections modes
  46. # Recommended mode is 2
  47. #Available modes : 1 - 2
  48. onground-mode: 2;
  49.  
  50. # Explanation
  51. # enabled | Enable or not the cheat check
  52. # warning-threshold | Threshold to send a warning to moderators
  53. # delay | Delay between each warning sent
  54. # warnings-to-ban | Not implemented yet
  55. checks:
  56. fly:
  57. enabled: true
  58. #Makes player comeback to the correct position
  59. #If it is used with Blink hack it will rollback the whole path that Blink sent to the server so player will not be teleported
  60. cancel-mode: true
  61. warning-threshold: 3
  62. delay: 1000
  63. warnings-to-ban: 5
  64. killaura:
  65. enabled: true
  66. warning-threshold: 3
  67. delay: 1000
  68. warnings-to-ban: 5
  69. autoclick:
  70. enabled: true
  71. cancel-mode: true
  72. warning-threshold: 3
  73. delay: 1000
  74. warnings-to-ban: 5
  75. inventoryhack:
  76. enabled: true
  77. cancel-mode: true
  78. warning-threshold: 3
  79. delay: 1000
  80. warnings-to-ban: 5
  81. nofall:
  82. enabled: true
  83. #Makes player take damage when using NoFall
  84. cancel-mode: true
  85. warning-threshold: 3
  86. delay: 1000
  87. warnings-to-ban: 5
  88. speedhack:
  89. enabled: true
  90. #Makes player comeback to the correct position
  91. cancel-mode: true
  92. warning-threshold: 3
  93. delay: 1000
  94. warnings-to-ban: 5
  95. freecam:
  96. enabled: true
  97. warning-threshold: 3
  98. delay: 1000
  99. warnings-to-ban: 5
  100. hackedclient:
  101. enabled: true
  102. cancel-mode: true
  103. warning-threshold: 3
  104. delay: 1000
  105. warnings-to-ban: 5
  106. fastbow:
  107. enabled: true
  108. #Cancels hacked arrows
  109. cancel-mode: true
  110. warning-threshold: 3
  111. delay: 1000
  112. warnings-to-ban: 5
  113. antiknockback:
  114. enabled: true
  115. warning-threshold: 3
  116. delay: 1000
  117. warnings-to-ban: 5
  118. jetpack:
  119. enabled: true
  120. #Makes player comeback to the correct position
  121. cancel-mode: true
  122. warning-threshold: 3
  123. delay: 0
  124. warnings-to-ban: 5
  125. waterwalk:
  126. enabled: true
  127. #Makes player fall into water
  128. cancel-mode: true
  129. warning-threshold: 3
  130. delay: 1000
  131. warnings-to-ban: 5
  132. blink:
  133. enabled: true
  134. cancel-mode: true
  135. warning-threshold: 3
  136. delay: 1000
  137. warnings-to-ban: 5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement