Advertisement
Guest User

Untitled

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