Advertisement
Guest User

Untitled

a guest
Oct 21st, 2022
7
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. ###############################################################
  2. # +---------------------------------------------------------+ #
  3. # | Images Configuration | #
  4. # +---------------------------------------------------------+ #
  5. ###############################################################
  6.  
  7. # Item frames and maps will appear invisible behind
  8. # the image giving the effect that the pixels are
  9. # floating without anything behind them while also
  10. # not rendering blank space on an image.
  11. # NOTE: only supported in 1.16+
  12. invisible-frames: true
  13.  
  14. database:
  15. # The type of database that can be used
  16. # Options: MYSQL, SQLITE, FILE - Default: SQLITE
  17. type: SQLITE
  18. # If using MYSQL above, below is the applicable login information
  19. # The IP or hostname of the database
  20. host: localhost
  21. # The port to connect on
  22. port: 3306
  23. # The database or catalog to initially connect to
  24. schema: test
  25. # The username and password to login with
  26. user: username
  27. password: password
  28. # If the database needs to be initialized (e.g. the tables created etc.)
  29. # Unless you manually manage your database you probably won't need to touch this
  30. initialize: true
  31.  
  32. permissions:
  33.  
  34. # Note that, if moving to a legacy version (1.0.x-SNAPSHOT), then
  35. # images should be re-created before enabling this feature
  36.  
  37. # If images, once created, should only be able to be modified
  38. # by the original image creator
  39. # This excludes players with the permission 'images.restricted.bypass'
  40. creator-restricted: false
  41.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement