Advertisement
GlobooX

Untitled

Oct 1st, 2019
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.55 KB | None | 0 0
  1.  
  2. #Prefix, that will be displayed in outputs
  3. prefix: "&f[&9&lMox&b&lAntiBot&f] "
  4.  
  5.  
  6. #MySQL database configuration where will be stored all whitelisted IP addresses.
  7. #If it will be turned off, whitelisting normal players with blocked IP will be not possible!
  8. #Create or define database in MySQL, plugin will only create a table if it not exists.
  9. mysql:
  10. enabled: true
  11. host: "localhost"
  12. port: "3306"
  13. user: "moxantixxbot"
  14. password: "prxx4xxxx"
  15. database: "moxanxxxtibot"
  16. antibot:
  17. table-name: "Addresses"
  18. ip-column: "ip"
  19. date-column: "date"
  20. punishments:
  21. nicks:
  22. table-name: "BlockedNicks"
  23. nick-column: "nick"
  24. date-column: "date"
  25. reason-column: "reason"
  26. ips:
  27. table-name: "BlockedIPs"
  28. ip-column: "ip"
  29. date-column: "date"
  30. reason-column: "reason"
  31.  
  32.  
  33. #You should set it to true if you are using RedisBungee plugin (multi bungeecord).
  34. #It enables feature to find players through redis and, for example, disconnect them when they are getting blocked.
  35. #Also, AntiMasslog will count connected IP from all bungees, not only from proxy where plugin is installed.
  36. redis-bungee: false
  37.  
  38. #Message when player will be forcibly disconnected from the server.
  39. #Only displayed if custom message is not set
  40. force-disconnect-message: "&cZostałeś wyrzucony z serwera!"
  41.  
  42.  
  43. punishments:
  44. #Do you want to enable punishment commands for your proxy? MySQL enabled required!
  45. #It will add /ban and /ban-ip. If player or IP will be banned, it will never connect through proxy to your minecraft server.
  46. enabled: true
  47.  
  48. #Message of disconnect that will see player with blocked IP.
  49. disconnect-ip-message: "&cTwoje IP jest zablokowane. Powód: %reason%"
  50.  
  51. #Message of disconnect that will see player with blocked nickname.
  52. disconnect-nick-message: "&c---&4*&c-------- &4Ochrona przeciw botom &c--------&4*&c--- \n &r \n&7Wykryto, że Twoje IP znajduje się na liscie botów. \n Wejdź na naszą stronę &bwww.MinecraftPolska.net/bot \n &7a następnie kliknij &8NIE JESTEM ROBOTEM \n &r \n &c---&4*&c----------- --------------- &c-----------&4*&c---"
  53.  
  54. #Default reason. It will be shown when reason in command will not be set.
  55. default-reason: "Brak podanego powodu."
  56.  
  57.  
  58.  
  59. antimasslog:
  60. #Do you want to set amount limit of same ip logged to your proxy?
  61. #Note that if attacker will find IP that is not blocked by filters, this option will not allow bots join at all to your server!
  62. enabled: true
  63.  
  64. #How big do you want to be the amount limit of same ip logged to your proxy?
  65. max-ip-logins: 2
  66.  
  67. #Message that will be displayed when player will try to join when there is too many connected IPs same as his.
  68. disconnect-message: "&cTwoim adresem IP aktualnie łączy się aktualnie za dużo graczy do tego serwera. Spróbuj później."
  69.  
  70.  
  71.  
  72. #Here you can set up your antibot protection.
  73. antibot:
  74. #This option is giving posibility to delete whitelisted IP's after some time.
  75. #If you want to use website captcha if real player will be detected, enable it.
  76. #Blacklisted player will have to authorize his blacklisted IP every some time.
  77. #It can be unsafe to let this globally banned IPs be whitelisted forever.
  78. purger:
  79. enabled: true
  80. time-days: 14
  81.  
  82. #Do you want to enable protection on plugin start?
  83. #If it will be false, you will have to enable it manually using command /moxab on.
  84. #Also, after config reload, protection will be disabled or enabled depend on this value
  85. protection-start-enable: true
  86.  
  87. #API URLs that will be asked for trust content with connecting ip.
  88. #Use only this trusted ones, because a lot of sites are blocking normal network delievers due to reports!
  89. black-lists:
  90. 1: "http://www.stopforumspam.com/api?ip=%ip%"
  91.  
  92. #The detect content. Plugin will search for this words in return data.
  93. #If return will CONTAIN (not equal) this string, connection will be dropped on pre-login stage.
  94. #Use same special ID to match URL (black-lists) with return (detect-content).
  95. detect-content:
  96. 1: "true"
  97.  
  98. #Message that will be displayed when proxy will be detected and player's IP will not be whitelisted
  99. #You can place there your link to website antibot whitelist page.
  100. disconnect-reason: "&c---&4*&c-------- &4Ochrona przeciw botom &c--------&4*&c--- \n &r \n&7Wykryto, że Twoje IP znajduje się na liscie botów. \n Wejdź na naszą stronę &bwww.MinecraftPolska.net/bot \n &7a następnie kliknij &8NIE JESTEM ROBOTEM \n &r \n &c---&4*&c----------- --------------- &c-----------&4*&c---"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement