Advertisement
Guest User

Untitled

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