Advertisement
Guest User

Untitled

a guest
Jul 25th, 2016
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.65 KB | None | 0 0
  1. # ChangeSkin config
  2.  
  3. # Here you can specify default skins for player who do not have a skin
  4. # The entries from this list will be selected in random order
  5. #
  6. # Lists are created like this:
  7. #default-skins:
  8. # - 0aaa2c13-922a-411b-b655-9b8c08404695
  9. # - 069a79f4-44e9-4726-a5be-fca90e38aaf5
  10. #
  11. # If this list is empty no skin will be selected
  12. default-skins: []
  13.  
  14. # If the player does not have a skin and hasn't chosen one with /setskin
  15. # this will try to redownload using the username of the player
  16. restoreSkins: true
  17.  
  18. # Should the skins apply instantly without relogins
  19. # The player will be invisible for a shorten time
  20. instantSkinChange: true
  21.  
  22. # Should the plugin check for skin specific permissions nodes like
  23. # changeskin.skin.whitelist.uuid
  24. # changeskin.skin.whitelist.* allows all skins
  25. #
  26. # The plugin checks only if the player has one of these and will not check all of them
  27. # Examples:
  28. # Whitelist:
  29. # Give the players the permission changeskin.skin.whitelist.uuid
  30. # or changeskin.skin.whitelist.* for all skins
  31. #
  32. # Blacklist:
  33. # Give your players this permission changeskin.skin.whitelist.*
  34. # and a negative (- before the permission) permission: '-changeskin.skin.whitelist.uuid'
  35. # |-> This means all skins are allowed except the ones with the uuid in the blacklist list
  36. skinPermission: false
  37.  
  38. # A number in seconds which the player have to wait before changing the skin again
  39. cooldown: 0
  40.  
  41. # How many requests should be established until the plugin uses the third-party API https://mcapi.ca/
  42. # Once this number is reached in a range of ten minutes it will start connecting to https://mcapi.ca/ for the next ten minutes
  43. # This option exists in order to workaround the rate-limiting. Name -> UUID are fetched in the same way like heads
  44. mojang-request-limit: 600
  45.  
  46. # In order to use a skin, the player name have to be resolve to the UUID and then have to be downloaded using the UUID.
  47. # Both requests are rate-limited. The first request is 600 requests per 10 minutes. The second one is rate-limited with
  48. # one request per indivual skin per minute. So unlike the name resolve there cannot be two requests for the
  49. # same skin within one minute.
  50. #
  51. # This might conflict with some heads plugins. Due this stricter rate-limiting this feature is added.
  52. # The option above is for name resolving while this is only for skin downloading.
  53. #
  54. # This feature makes use of https://mcapi.de/. If you actively use this feature, please support the author.
  55. independent-skin-downloading: true
  56.  
  57. # Only relevant for BungeeCord
  58. # Here you can ignore certain servers in order to make use of lazy loading -> load the player data only
  59. # if they are on the allowed servers
  60. #
  61. # This can be used against bot attacks
  62. # If this is empty, nothing will be ignored
  63. # Lists are created like this:
  64. server-blacklist:
  65. - Hub-1
  66. - Hub-2
  67.  
  68. # If you have a BungeeCord server, this option might be relevant for you.
  69. # If you activate this option, the permission will be checked on the bukkit server and only on the bukkit server.
  70. #
  71. # This requires to install the plugin on the bukkit server too in order to send the response to the bungeecord server
  72. #
  73. # You still have to give the users the permission on the BungeeCord server in order to execute the command, but the bukkit
  74. # server will verify if the user has the permissions on the backend server too.
  75. bukkit-permissions: false
  76.  
  77. # Database configuration
  78. # Warning: If you use BungeeCord, you should switch to MySQL, because BungeeCord has only a driver for MySQL
  79. storage:
  80. driver: com.mysql.jdbc.Driver
  81. host: xxxx
  82. port: 3306
  83. database: bungeecord
  84. username: root
  85. password: xxxx
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement