Advertisement
Guest User

Untitled

a guest
Jul 15th, 2016
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.06 KB | None | 0 0
  1. replace:
  2. chat:
  3. # Replace names in messages sent by players
  4. player: true
  5.  
  6. # Replaces names in ALL outgoing messages
  7. out: false
  8. in:
  9. # Replace names in incoming commands
  10. command: false
  11.  
  12. # Replace names in general (non-command) incoming messages
  13. general: false
  14. scoreboard: false
  15. scoreboardScore: false
  16. scoreboardTeam: false
  17. tabComplete:
  18. chat: false
  19.  
  20. updateSelf: true
  21.  
  22. random:
  23. join:
  24. nick: false
  25. skin: false
  26. nick:
  27. - "inventivetalent"
  28. - "md_5"
  29. - mojang: # Name category
  30. - "jeb_"
  31. - "Notch"
  32. - "Dinnerbone"
  33. skin:
  34. - "md_5"
  35. - "inventivetalent"
  36.  
  37. names:
  38. # Format for names, for example '&9%s' would color all names blue. Note: names can't be longer than 16 charcters and will be shortened.
  39. format: ""
  40.  
  41. # Format for names in chat messages
  42. chatFormat: "%s&r"
  43.  
  44. #Enable this if this server is behind a BungeeCord server
  45. bungeecord: true
  46.  
  47. storage:
  48. # Storage type
  49. # - temporary
  50. # saves all data in memory until the server is stopped
  51. # - local (recommended)
  52. # creates a local database or uses the database specified in bukkit.yml
  53. # - sql
  54. # uses an SQL server
  55. # - redis
  56. # uses a Redis server
  57. type: "sql"
  58. sql:
  59. address: #deleted in my Main Config is the right and successful connected
  60. user: #deleted in my Main Config is the right and successful connected
  61.  
  62. pass: #deleted in my Main Config is the right and successful connected
  63.  
  64. redis:
  65. host: "localhost"
  66. port: 6379
  67. pass: ""
  68. max-connections: 4
  69.  
  70.  
  71. messages:
  72. command:
  73. name:
  74. changed: "&aChanged &b%player%'s &aname to &b%name%&a."
  75. cleared: "&aCleared &b%player%'s &aname"
  76. list:
  77. used: "&eUsed names:"
  78. format: "&r%s &eis used by&r %s"
  79. error:
  80. length: "&cThe specified name is too long"
  81. category:
  82. unknown: "&cUnknown category: %s"
  83. list:
  84. empty: "&cThere are no used names"
  85. skin:
  86. changed: "&aChanged &b%player%'s &askin to &b%skin%''s&a skin."
  87. cleared: "&aCleared &b%player%'s &askin"
  88. list:
  89. used: "&eUsed names:"
  90. format: "&r%s &eis used by&r %s"
  91. error:
  92. length: "&cThe specified skin is too long"
  93. category:
  94. unknown: "&cUnknown category: %s"
  95. list:
  96. empty: "&cThere are no used skins"
  97. error:
  98. unknown: "&cUnknown error while executing command. See console for details."
  99. permission: "&cYou are missing the following permission: %s"
  100. illegalSender: "&cThis command is only available to players"
  101. unhandled: "&cInternal exception. See console for details."
  102. length:
  103. short: "&cMissing arguments. Usage: %s"
  104. long: "&cToo many arguments. Usage: %s"
  105. parse: "&cFailed to parse argument '%s' to %s"
  106. target:
  107. notFound: "&cPlayer could not be found"
  108.  
  109. # Disable the features below, if you're only interested in utilizing the API.
  110. pluginFeatures:
  111. commands:
  112. general: true
  113. nick: true
  114. skin: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement