Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2018
687
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. - 7311
  14.  
  15. # If the player does not have a skin and hasn't chosen one with /setskin
  16. # this will try to re-download using the username of the player
  17. restoreSkins: true
  18.  
  19. # Should the skins apply instantly without re-login
  20. # The player will be invisible for a shorten time
  21. instantSkinChange: true
  22.  
  23. # Should the plugin check for skin specific permissions nodes like
  24. # changeskin.skin.whitelist.uuid
  25. # changeskin.skin.whitelist.* allows all skins
  26. #
  27. # The plugin checks only if the player has one of these and will not check all of them
  28. # Examples:
  29. # Whitelist:
  30. # Give the players the permission changeskin.skin.whitelist.uuid
  31. # or changeskin.skin.whitelist.* for all skins
  32. #
  33. # Blacklist:
  34. # Give your players this permission changeskin.skin.whitelist.*
  35. # and a negative (- before the permission) permission: '-changeskin.skin.whitelist.uuid'
  36. # |-> This means all skins are allowed except the ones with the uuid in the blacklist list
  37. skinPermission: false
  38.  
  39. # A number in seconds which the player have to wait before changing the skin again
  40. cooldown: 0
  41.  
  42. # How many requests should be established until the plugin uses the third-party API https://mcapi.ca/
  43. # Once this number is reached in a range of ten minutes it will start connecting to https://mcapi.ca/ for the next ten
  44. # minutes.
  45. # This option exists in order to workaround the rate-limiting. Name -> UUID are fetched in the same way like heads
  46. mojang-request-limit: 600
  47.  
  48. # Only relevant for BungeeCord
  49. # Here you can ignore certain servers in order to make use of lazy loading -> load the player data only
  50. # if they are on the allowed servers
  51. #
  52. # This can be used against bot attacks
  53. # If this is empty, nothing will be ignored
  54. server-blacklist: []
  55. # Lists are created like this:
  56. #server-blacklist:
  57. # - pvp
  58. # - lobby
  59.  
  60. # Actually I don't want that you put your credentials here, but it seems there is no easier way to do it.
  61. # See my statement here: https://www.spigotmc.org/threads/changeskin.138380/page-15#post-1736265
  62. #
  63. # You can follow this guide on how to upload and use a skin:
  64. # https://www.spigotmc.org/threads/changeskin.138380/page-19#post-1792019
  65. #
  66. # Example:
  67. # upload-accounts:
  68. # - EMAIL:PASSWORD
  69. # - EMAIL:PASSWORD
  70. upload-accounts:
  71. - info@koridorius.lt:lioskinas1
  72. # If you have a BungeeCord server, this option might be relevant for you.
  73. # If you activate this option, the permission will be checked on the bukkit server and only on the bukkit server.
  74. #
  75. # This requires to install the plugin on the bukkit server too in order to send the response to the bungeecord server
  76. #
  77. # You still have to give the users the permission on the BungeeCord server in order to execute the command, but the bukkit
  78. # server will verify if the user has the permissions on the backend server too.
  79. bukkit-permissions: false
  80.  
  81. # This automatically re-fetches the skin from Mojang if the skin is older than x minutes
  82. # This value should be at least one minute, because that's the rate-limit by Mojang
  83. # -1 disables it
  84. auto-skin-update: -1
  85.  
  86. # Database configuration
  87. # Warning: If you use BungeeCord, you should switch to MySQL, because BungeeCord has only a driver for MySQL
  88. storage:
  89. # Single file SQLite database
  90. driver: org.sqlite.JDBC
  91. # File location
  92. database: '{pluginDir}/ChangeSkin.db'
  93.  
  94. # MySQL / MariaDB
  95. # If you using Sponge please change the driver name to org.mariadb.jdbc.Driver
  96. # driver: com.mysql.jdbc.Driver
  97. # host: localhost
  98. # port: 3306
  99. # database: ChangeSkin
  100. # username: myUser
  101. # password: myPassword
  102. # It's strongly recommended to enable SSL and setup a SSL certificate if the MySQL server isn't running on the same
  103. # machine
  104. # useSSL: false
  105.  
  106.  
  107. # HTTP proxies for connecting to the Mojang servers in order to resolve the player name to UUID.
  108. # This is a workaround to prevent rate-limiting by Mojang. These proxies will only be used once your server hit
  109. # the rate-limit or the custom value above.
  110. # Please make sure you use reliable proxies.
  111. proxies:
  112. # 'IP:Port' or 'Domain:Port'
  113. # - 'xyz.com:1337'
  114. # - 'test.com:5131'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement