Advertisement
No4NaMe

Untitled

Mar 28th, 2021
365
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. # Multipass, Nukkit permission system
  2. general:
  3. # Messages language. Supported languages:
  4. # eng - English
  5. # rus - Russian
  6. # tur - Turkish
  7. # esp - Spanish
  8. # fra - French
  9. # jap - Japanese
  10. # kor - Korean
  11. language: eng
  12. # Save translation file
  13. language-save: true
  14. # Debug mode. Usually you don't need to turn it on
  15. debug: false
  16. permissions:
  17. group:
  18. # Default group. All new players will automagically join this group
  19. default-group: default
  20. # Default priority value for groups
  21. default-priority: 10
  22. # Use group name to add additional permission. If this option is enabled all
  23. # group members will have additional permission: permission.group.<groupId>
  24. group-as-permission: true
  25. user:
  26. # Default priority value for users
  27. default-priority: 100
  28. multiworld:
  29. # Enable multiworld support
  30. enable: true
  31. # Enable world mirroring
  32. mirrors:
  33. world: nether_world, end_world
  34. storage:
  35. # Database type:
  36. # - YAML - yaml files
  37. # - DATABASE - MySQL or SQLite. DbLib plugins is required: https://nukkitx.com/resources/dblib.12/
  38. type: DATABASE
  39. # Auto-update interval (for multi-server system). If this values is not equal to '0'
  40. # groups and permissions will be automatically updated.
  41. # Time format: 1s - 1 second, 1m - 1 minute, 1h - one hour
  42. auto-update-interval: '1m'
  43. database:
  44. # Database configuration:
  45. # - DEFAULT - default database, configured in plugin DbLib
  46. # - SQLITE - custom SQLite file (filename provided below)
  47. # - MYSQL - custom MySQL database (configuration provided below)
  48. source: DEFAULT
  49. sqlite:
  50. # Custom SQLite file name
  51. file: permissions.db
  52. # Custom MySQL configuration
  53. mysql:
  54. host: localhost
  55. port: 3306
  56. database: test
  57. username: test
  58. password: test
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement