Advertisement
Guest User

Untitled

a guest
Jan 10th, 2017
1,626
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.70 KB | None | 0 0
  1. ## VPN GUARD (Bukkit Edition) ##
  2. prefix: "&f[&4VPNGuard&f]&r "
  3.  
  4. # If you have purchased the premium API enter the key otherwise leave blank.
  5. # You can purchase a key from: http://xioax.com/host-blocker/
  6. api-key: ""
  7.  
  8. # Enable caching of API requests?
  9. api-cache: true
  10.  
  11. # Time to keep the cached files before overwriting them with an updated API result
  12. # Intervals are in days.
  13. api-cache-time: 1
  14.  
  15. # Keeps track of players who connect using a anonymizer and later allows you to
  16. # generate a report.
  17. # NOTE: This feature is currently experimental, please report any issues.
  18. report-logging: true
  19.  
  20. # Command to run if player has connected with a anonymizer
  21. commands:
  22. - "kick %p You seem to be using a VPN or Proxy"
  23.  
  24. # Delay time in milliseconds to run the above commands
  25. commands-delay: 1000
  26.  
  27. # Kick message to display if the connecting users country is blacklisted or not on the whitelist
  28. country-deny-message: "&cSorry %p, Players from your country %countryname are prohibited from joining our server"
  29.  
  30. # Kick message to display if the connecting user is subnet banned
  31. subnet-banned-message: "You are subnet banned!"
  32.  
  33. # Timeout in Milliseconds for connecting to the API server.
  34. # If it takes longer to connect the plugin will assume API server is down.
  35. timeout: 10000
  36.  
  37. # Console Logging, displays detailed information every time a player joins
  38. # the server on console.
  39. logging: true
  40.  
  41. # Bypass VPNGuard checks for operatives?
  42. bypass-ops: false
  43.  
  44. # Allow users to connect if API Server encounters any errors (Such as Timeout or Rate Limit)?
  45. bypass-check: true
  46.  
  47. # Kick message to display if bypass-check is on false.
  48. bypass-message: "&cUnable to perform anonymization checks try connecting again later."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement