Guest User

Untitled

a guest
Jun 25th, 2016
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.19 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. - 2dff0383-5c0a-4778-ba8b-12c02ebc6fe7
  14. - 8731593b-e545-455f-9a68-3d2b5dd2244d
  15.  
  16. # If the player does not have a skin and hasn't chosen one with /setskin
  17. # this will try to redownload using the username of the player
  18. restoreSkins: false
  19.  
  20. # Should the skins apply instantly without relogins
  21. # The player will be invisible for a shorten time
  22. instantSkinChange: true
  23.  
  24. # Should the plugin check for skin specific permissions nodes like
  25. # changeskin.skin.whitelist.uuid
  26. # changeskin.skin.whitelist.* allows all skins
  27. #
  28. # The plugin checks only if the player has one of these and will not check all of them
  29. # Examples:
  30. # Whitelist:
  31. # Give the players the permission changeskin.skin.whitelist.uuid
  32. # or changeskin.skin.whitelist.* for all skins
  33. #
  34. # Blacklist:
  35. # Give your players this permission changeskin.skin.whitelist.*
  36. # and a negative (- before the permission) permission: '-changeskin.skin.whitelist.uuid'
  37. # |-> This means all skins are allowed except the ones with the uuid in the blacklist list
  38. skinPermission: false
  39.  
  40. # A number in seconds which the player have to wait before changing the skin again
  41. cooldown: 0
  42.  
  43. # How many requests should be established until the plugin uses the third-party API us.mcapi.com
  44. # Once this number is reached in a range of ten minutes it will start connecting to us.mcapi.com for the next ten 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. # Database configuration
  49. storage:
  50. # Single file SQLite database
  51. driver: org.sqlite.JDBC
  52. # File location
  53. database: '{pluginDir}/ChangeSkin.db'
  54.  
  55. MySQL:
  56. driver: com.mysql.jdbc.Driver
  57. host: ????????????
  58. port: 3306
  59. database: changeskin
  60. username: changeskin
  61. password: ???????????
Add Comment
Please, Sign In to add comment