Advertisement
Itsyuumello

Untitled

Sep 11th, 2019
449
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.37 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: true
  11.  
  12. # Replace names in general (non-command) incoming messages
  13. general: true
  14. scoreboard: false
  15. scoreboardScore: false
  16. scoreboardTeam: false
  17. tabComplete:
  18. chat: true
  19.  
  20. updateSelf: false
  21.  
  22. random:
  23. join:
  24. nick: true
  25. skin: true
  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. # Allow names with spaces. This replaces underscores ("_") in names with a space - Double underscores ("__") are displayed as single underscores.
  45. spaces: false
  46.  
  47. #Enable this if this server is behind a BungeeCord server
  48. bungeecord: false
  49.  
  50. storage:
  51. # Storage type
  52. # - temporary
  53. # saves all data in memory until the server is stopped
  54. # - local (recommended)
  55. # creates a local database
  56. # - sql
  57. # uses an SQL server
  58. # - redis
  59. # uses a Redis server
  60. type: "local"
  61. sql:
  62. address: "jdbc:mysql://localhost:3306/minecraft"
  63. user: ""
  64. pass: ""
  65. redis:
  66. host: "localhost"
  67. port: 6379
  68. pass: ""
  69. max-connections: 4
  70.  
  71.  
  72. messages:
  73. command:
  74. name:
  75. changed: "&aあなたのニックネームを &7%name% &aに変更しました!"
  76. cleared: "&7%player% &aのニックネームをリセットしました!"
  77. list:
  78. used: "&eUsed names:"
  79. format: "&r%s &eis used by&r %s"
  80. error:
  81. length: "&cThe specified name is too long"
  82. category:
  83. unknown: "&cUnknown category: %s"
  84. list:
  85. empty: "&cThere are no used names"
  86. skin:
  87. changing: "&aあなたのスキンを &7%skin% &aに変更しました!"
  88. changed: "&aあなたのスキンを &7%skin% &aに変更しました!"
  89. cleared: "&aスキンをリセットしました!"
  90. list:
  91. used: "&eUsed skins:"
  92. format: "&7%s &aによって &7%s に変更されました"
  93. error:
  94. length: "&c名前が長すぎます!"
  95. category:
  96. unknown: "&fUnknown command. Type '/help' for help."
  97. list:
  98. empty: "&cThere are no used skins"
  99. error:
  100. unknown: "&cUnknown command. Type '/help' for help."
  101. permission: "&cあなたはランクを持っていないため ニックネームの変更またはスキンの変更をできません &aランクは &d/realm /buy /store &aで購入することができます!"
  102. illegalSender: "&cThis command is only available to players"
  103. unhandled: "&cInternal exception. See console for details."
  104. length:
  105. short: "&cMissing arguments. Usage: %s"
  106. long: "&cToo many arguments. Usage: %s"
  107. parse: "&cFailed to parse argument '%s' to %s"
  108. target:
  109. notFound: "&cPlayer could not be found"
  110.  
  111. # Disable the features below, if you're only interested in utilizing the API.
  112. pluginFeatures:
  113. commands:
  114. general: true
  115. nick: true
  116. skin: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement