Advertisement
Guest User

Untitled

a guest
Feb 9th, 2018
564
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.45 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 re-download using the username of the player
  16. restoreSkins: false
  17.  
  18. # Should the skins apply instantly without re-login
  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
  43. # minutes.
  44. # This option exists in order to workaround the rate-limiting. Name -> UUID are fetched in the same way like heads
  45. mojang-request-limit: 600
  46.  
  47. # Only relevant for BungeeCord
  48. # Here you can ignore certain servers in order to make use of lazy loading -> load the player data only
  49. # if they are on the allowed servers
  50. #
  51. # This can be used against bot attacks
  52. # If this is empty, nothing will be ignored
  53. server-blacklist: []
  54. # Lists are created like this:
  55. #server-blacklist:
  56. # - pvp
  57. # - lobby
  58.  
  59. # Actually I don't want that you put your credentials here, but it seems there is no easier way to do it.
  60. # See my statement here: https://www.spigotmc.org/threads/changeskin.138380/page-15#post-1736265
  61. #
  62. # You can follow this guide on how to upload and use a skin:
  63. # https://www.spigotmc.org/threads/changeskin.138380/page-19#post-1792019
  64. #
  65. # Example:
  66. # upload-accounts:
  67. # - EMAIL:PASSWORD
  68. # - EMAIL:PASSWORD
  69. upload-accounts: []
  70.  
  71. # If you have a BungeeCord server, this option might be relevant for you.
  72. # If you activate this option, the permission will be checked on the Bukkit server and only on the Bukkit server.
  73. #
  74. # This requires to install the plugin on the Bukkit server too in order to send the response to the bungeecord server
  75. #
  76. # You still have to give the users the permission on the BungeeCord server in order to execute the command, but the
  77. # Bukkit server will verify if the user has the permissions on the backend server too.
  78. bukkit-permissions: false
  79.  
  80. # This automatically re-fetches the skin from Mojang if the skin is older than x minutes
  81. # This value should be at least one minute, because that's the rate-limit by Mojang
  82. # -1 disables it
  83. auto-skin-update: -1
  84.  
  85. # Database configuration
  86. # Warning: If you use BungeeCord, you should switch to MySQL, because BungeeCord has only a driver for MySQL
  87. storage:
  88. # Single file SQLite database
  89.  
  90. # MySQL / MariaDB
  91. # If you using Sponge please change the driver name to org.mariadb.jdbc.Driver
  92. # driver: com.mysql.jdbc.Driver
  93. # host: 127.0.0.1
  94. # port: 3306
  95. # database: ChangeSkin
  96. # username: myUser
  97. # password: myPassword
  98. # It's strongly recommended to enable SSL and setup a SSL certificate if the MySQL server isn't running on the same
  99. # machine
  100. # useSSL: false
  101. driver: org.mysql.jdbc.Driver
  102. host: ****
  103. port: 3306
  104. database: db1
  105. username: db1
  106. password: ****
  107. useSSL: false
  108.  
  109. # HTTP proxies for connecting to the Mojang servers in order to resolve the player name to UUID.
  110. # This is a workaround to prevent rate-limiting by Mojang. These proxies will only be used once your server hit
  111. # the rate-limit or the custom value above.
  112. # Please make sure you use reliable proxies.
  113. proxies:
  114. # 'IP:Port' or 'Domain:Port'
  115. # - 'xyz.com:1337'
  116. # - 'test.com:5131'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement