Advertisement
aspiriamc

Untitled

Aug 23rd, 2016
345
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.81 KB | None | 0 0
  1. ##############################################################################
  2. # +------------------------------------------------------------------------+ #
  3. # | LuckPerms Configuration | #
  4. # | https://github.com/lucko/LuckPerms | #
  5. # +------------------------------------------------------------------------+ #
  6. ##############################################################################
  7.  
  8. # The name of the server, used for server specific permissions. Set to 'global' to disable.
  9. server: global
  10.  
  11. # The default group assigned to all users on their first join.
  12. default-group: default
  13.  
  14. # If users on this server should have their global permissions/groups applied.
  15. include-global: false
  16.  
  17. # If this server is in offline or online mode.
  18. # This setting allows a player to have the same UUID across a network of offline mode/mixed servers.
  19.  
  20. # You should generally reflect the setting in server.properties here. Except when...
  21.  
  22. # 1. You have Spigot servers connected to a BungeeCord proxy, with online-mode set to false, but 'bungeecord' set to true in the spigot.yml
  23. # AND 'ip-forward' set to true in the BungeeCord config.yml
  24. # In this case, set online-mode in LuckPerms to true, despite the server being in offline mode.
  25.  
  26. # 2. You are only running one server instance using LuckPerms, (not a network)
  27. # In this case, set online-mode to true no matter what is set in server.properties. (we can just fallback to the servers uuid cache)
  28. online-mode: true
  29.  
  30. # If the plugin should apply wildcard permissions.
  31. # If set to true, LuckPerms will detect wildcard permissions, and resolve & apply all registered permissions matching
  32. # the wildcard. This will only work for plugins that define all of their permissions to the server.
  33. apply-wildcards: true
  34.  
  35. # If the plugin should parse regex permissions.
  36. # If set to true, LuckPerms will detect regex permissions, marked with "r=" at the start of the node, and resolve &
  37. # apply all registered permissions matching the regex. This will only work for plugins that define all of their
  38. # permissions to the server.
  39. apply-regex: true
  40.  
  41. # If the plugin should complete and apply shorthand permissions.
  42. # If set to true, LuckPerms will detect and expand shorthand node patterns.
  43. apply-shorthand: true
  44.  
  45. # Which storage method the plugin should use.
  46. # Currently supported: mysql, sqlite, h2, flatfile, mongodb
  47. # Fill out connection info below if you're using MySQL or MongoDB
  48. storage-method: flatfile
  49.  
  50. data:
  51. address: localhost:3306
  52. database: minecraft
  53. username: root
  54. password: ''
  55.  
  56. # Set to -1 to disable. If this is the only instance accessing the datastore, you can disable syncing.
  57. # e.g. if you're using sqlite or flatfile, this can be set to -1 to save resources.
  58. sync-minutes: 3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement