Advertisement
ssamjh

Untitled

Jun 3rd, 2017
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. # default config.yml
  2.  
  3. # Database
  4. type: mysql
  5. host: localhost
  6. database: minecraft
  7. prefix: ""
  8. port: 3306
  9. username: root
  10. password: potato
  11.  
  12. # Redis
  13. redis: true
  14. redis_ip: 127.0.0.1
  15. redis_port: 6379
  16. redis_password: ""
  17.  
  18. # Server name used for per-server Bukkit sided permissions to work. Use the same as in BungeeCord config.
  19. # This is not used Bungee-side.
  20. servername: ""
  21.  
  22. # Set "onlinemode: false" if you run your server in offline mode. Set to "onlinemode: mixed" for mixed mode, more details about this on the PowerfulPerms wiki. Defaults to true.
  23. # This should be set to the mode of the network, not the mode of the current server. If Bungee is running online mode it will forward online mode UUIDs to Spigot(hopefully) which means onlinemode should be set to true.
  24. onlinemode: true
  25.  
  26. # Chat format used along with PlaceholderAPI. PlaceholderAPI must be installed. Disable if you are using a different chat plugin.
  27. # Use PlaceholderAPI's placeholders but with brackets instead of percentage.
  28. # This is not used Bungee-side.
  29. use_chatformat: true
  30. chatformat: "{powerfulperms_prefix}{player_name}{powerfulperms_suffix}{message}"
  31.  
  32. # Disable all chat formatting(If you want to use vanilla formatting)
  33. disable_chatformat: false
  34.  
  35. # Vault assumption is either "local" or "global". If it's local, any Vault modifications will have the current server as a parameter. If it's global, the modification will be executed as
  36. # global. For example, if you add a permission through Vault and this is set to "local" it will be added only for the current server. (See the command reference)
  37. # This is not used Bungee-side.
  38. vault_assumption: local
  39.  
  40. # Should Vault support offline player checks?
  41. # Will cause heavy lag on server main thread.
  42. vault_offline: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement