Guest User

Untitled

a guest
Jul 10th, 2016
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.11 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: false
  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 us.mcapi.com
  42. # Once this number is reached in a range of ten minutes it will start connecting to us.mcapi.com 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. # Only relevant for BungeeCord
  47. # Here you can ignore certain servers in order to make use of lazy loading -> load the player data only
  48. # if they are on the allowed servers
  49. #
  50. # This can be used against bot attacks
  51. # If this is empty, nothing will be ignored
  52. server-blacklist: []
  53. # Lists are created like this:
  54. #server-blacklist:
  55. # - Gate
  56. # - Survival194
  57.  
  58. # If you have a BungeeCord server, this option might be relevant for you.
  59. # If you activate this option, the permission will be checked on the bukkit server and only on the bukkit server.
  60. #
  61. # This requires to install the plugin on the bukkit server too in order to send the response to the bungeecord server
  62. #
  63. # You still have to give the users the permission on the BungeeCord server in order to execute the command, but the bukkit
  64. # server will verify if the user has the permissions on the backend server too.
  65. bukkit-permissions: true
  66.  
  67. # Database configuration
  68. # Warning: If you use BungeeCord, you should switch to MySQL, because BungeeCord has only a driver for MySQL
  69. storage:
  70. # Single file SQLite database
  71. #driver: org.sqlite.JDBC
  72. # File location
  73. #database: '{pluginDir}/ChangeSkin.db'
  74.  
  75. # MySQL
  76. driver: com.mysql.jdbc.Driver
  77. host: localhost
  78. port: 3306
  79. database: changeskin
  80. username: root
  81. password: a010778a
Add Comment
Please, Sign In to add comment