Advertisement
Guest User

Untitled

a guest
Feb 3rd, 2018
117
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: true
  5.  
  6. # Replaces names in ALL outgoing messages
  7. out: true
  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: "%s"
  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: false
  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
  53. # - sql
  54. # uses an SQL server
  55. # - redis
  56. # uses a Redis server
  57. type: "local"
  58. sql:
  59. address: "jdbc:mysql://localhost:3306/minecraft"
  60. user: ""
  61. pass: ""
  62. redis:
  63. host: "localhost"
  64. port: 6379
  65. pass: ""
  66. max-connections: 4
  67.  
  68.  
  69. messages:
  70. command:
  71. name:
  72. changed: "&aChanged &b%player%'s &aname to &b%name%&a."
  73. cleared: "&aCleared &b%player%'s &aname"
  74. list:
  75. used: "&eUsed names:"
  76. format: "&r%s &eis used by&r %s"
  77. error:
  78. length: "&cThe specified name is too long"
  79. category:
  80. unknown: "&cUnknown category: %s"
  81. list:
  82. empty: "&cThere are no used names"
  83. skin:
  84. changed: "&aChanged &b%player%'s &askin to &b%skin%''s&a skin."
  85. cleared: "&aCleared &b%player%'s &askin"
  86. list:
  87. used: "&eUsed names:"
  88. format: "&r%s &eis used by&r %s"
  89. error:
  90. length: "&cThe specified skin is too long"
  91. category:
  92. unknown: "&cUnknown category: %s"
  93. list:
  94. empty: "&cThere are no used skins"
  95. error:
  96. unknown: "&cUnknown error while executing command. See console for details."
  97. permission: "&cYou are missing the following permission: %s"
  98. illegalSender: "&cThis command is only available to players"
  99. unhandled: "&cInternal exception. See console for details."
  100. length:
  101. short: "&cMissing arguments. Usage: %s"
  102. long: "&cToo many arguments. Usage: %s"
  103. parse: "&cFailed to parse argument '%s' to %s"
  104. target:
  105. notFound: "&cPlayer could not be found"
  106.  
  107. # Disable the features below, if you're only interested in utilizing the API.
  108. pluginFeatures:
  109. commands:
  110. general: true
  111. nick: true
  112. skin: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement