Advertisement
Guest User

wolf

a guest
Mar 19th, 2016
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.74 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: 'Gettobengel.29569'
  27. pass: 'serverteam'
  28. port: 21
  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.  
  35.  
  36. # Explanation
  37. # enabled | Enable or not the cheat check
  38. # warning-threshold | Threshold to send a warning to moderators
  39. # delay | Delay between each warning sent
  40. # warnings-to-ban | Not implemented yet
  41. checks:
  42. fly:
  43. enabled: true
  44. warning-threshold: 4
  45. delay: 1000
  46. warnings-to-ban: 5
  47. killaura:
  48. enabled: true
  49. warning-threshold: 1
  50. delay: 1000
  51. warnings-to-ban: 5
  52. autoclick:
  53. enabled: true
  54. warning-threshold: 1
  55. delay: 1000
  56. warnings-to-ban: 5
  57. inventoryhack:
  58. enabled: true
  59. warning-threshold: 2
  60. delay: 1000
  61. warnings-to-ban: 5
  62. nofall:
  63. enabled: true
  64. warning-threshold: 1
  65. delay: 1000
  66. warnings-to-ban: 5
  67. speedhack:
  68. enabled: true
  69. warning-threshold: 3
  70. delay: 1000
  71. warnings-to-ban: 5
  72. freecam:
  73. enabled: true
  74. warning-threshold: 1
  75. delay: 1000
  76. warnings-to-ban: 5
  77. hackedclient:
  78. enabled: true
  79. warning-threshold: 2
  80. delay: 1000
  81. warnings-to-ban: 5
  82. fastbow:
  83. enabled: true
  84. warning-threshold: 2
  85. delay: 1000
  86. warnings-to-ban: 5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement