Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.63 KB | None | 0 0
  1. # Nameless Plugin configuration
  2.  
  3. # For example http(s)://yoursite.com/api/v2/API_KEY or http(s)://yoursite.com/index.php?route=/api/v2/API_KEY
  4. # Enable the API and obtain the API URL in StaffCP > Configuration > API
  5. # After setting this, you need to do a full server restart, because the plugin's reload command won't work.
  6. api-url: "http://bloxcraft.co.uk/api/v2/5E7cdpX1LDTNF0uHwJ4lMzxrqR96VQtb"
  7.  
  8. # Enter this if you wish for the plugin to send data about this server
  9. # and its players to the website. This is required for username and rank synchronisation.
  10. # You can find this in StaffCP > Integrations > Minecraft > Minecraft Servers
  11. server-id: 1
  12.  
  13. # This feature sends information about the server and online players to
  14. # your NamelessMC website. This value is in seconds. Increase to lower
  15. # the frequency that data is sent. Decrease to send data more frequently.
  16. # Setting this too low can cause lag. Set to 0 to disable.
  17. server-data-upload-rate: 10
  18.  
  19. # You can add PlaceholderAPI placeholders (without {} or %%) here, they will be sent to the website to be used by NamelessMC or addons.
  20. # The placeholders can be global or player-specific
  21. # This option will work regardless of the "enable-placeholders" option
  22. upload-placeholders:
  23. - player_level
  24.  
  25.  
  26. # Enable PlaceholderAPI and MVdWPlaceholderAPI placeholders
  27. # This will increase traffic to your NamelessMC website (depending on placeholders-request-delay)
  28. # This option will be ignored if PlaceholderAPI and MVdWPlaceholderAPI are not installed
  29. enable-placeholders: false
  30.  
  31. # Number of milliseconds in between notifications request
  32. # Lower number means more frequent updates of placeholders, but higher
  33. # network usage.
  34. placeholders-request-delay: 2000
  35.  
  36. # Turn on debug mode for the underlying NamelessMC Java API
  37. api-debug-mode: false
  38.  
  39. # Send a message to players who don't have a NamelessMC account when they join
  40. not-registered-join-message: false
  41.  
  42. # Auto whitelist registered players.
  43. #
  44. # When enabled, the plugin will automatically whitelist players that are registered on the website.
  45. # Warning: Anyone who is not registered on the website will be removed from the whitelist, also
  46. # if they were added before enabling this option!
  47. # By default, the plugin will poll the website every 5 minutes to get a list of registered users.
  48. # You need to fully restart the server after changing this option.
  49. auto-whitelist-registered:
  50. enabled: false
  51. # Do not whitelist banned users
  52. exclude-banned: true
  53. # Do not whitelist users who have not activated their account
  54. exclude-inactive: false
  55. # Number of seconds to wait in between updating the whitelist
  56. poll-interval: 300
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement