Advertisement
Guest User

DispNameChanger

a guest
Dec 3rd, 2014
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.96 KB | None | 0 0
  1. # Global-Announce sets whether a global announcement of display
  2. # names to users should be made whenever one is changed.
  3. # Target represents either Admins only, or All users.
  4. # ALL: All users will recieve the name change broadcast.
  5. # ADMIN: Only users with the permission node 'dispname.announce'
  6. # will recieve broadcasts.
  7. # ----
  8. # Integration is used to determine support for various Plugin API's
  9. # that DNC will use. For instance, to turn off setting titles
  10. # above a player's head in Spout, setting Spout.title:false will
  11. # turn off titles, but not announcement messages.
  12. # True: Integration enabled for API or Specific Feature.
  13. # False: Integration disabled.
  14. # ----
  15. # Language is used to set the language that the plugin will
  16. # use for it's messages.
  17. # Valid values: en_US, fr
  18. # ----
  19. # Message settings change the behavior of DNC in regards to
  20. # the login/logout, kick, and death messages including the
  21. # display name.
  22. # true: message should be changed to include display name.
  23. # false: message should be left alone.
  24. # ----
  25. # Pagination is for the Display List command. This allows you to
  26. # to specify how many names per page are listed when you type the
  27. # command. If Pagination is set to 0 or a none-positive number,
  28. # pagination will be disabled.
  29. # Valid Values: 0 - N
  30. # Default: 20
  31. # ----
  32. # Prefix toggles whether a character is prepended to display
  33. # names. The default character is +. If a string is provided,
  34. # the first character in the string is used as the prefix.
  35. # If the string is blank, the default is used.
  36. # The prefix character MUST BE ENCLOSED IN SINGLE QUOTES (' ')!
  37. # The color code allows you to change the color of the prefix
  38. # to be used. You do not have to put a & or # to specify the color
  39. # code.
  40. # Color Codes can be found here:
  41. # http://www.minecraftwiki.net/wiki/Classic_server_protocol#Color_Codes
  42. # ----
  43. # Save sets when you want DNC to save the Display Names to the
  44. # database. This allows you to adjust DNC's saving behaviour to
  45. # match your plugin configuration. An example of this is if you
  46. # use MobDisguise on your server. If you quite while disguised,
  47. # your Display Name will be erased or changed if you have save
  48. # on quit enabled. Another Example is if you have a plugin that
  49. # colors DisplayNames seperatly from DNC. If you color your display
  50. # name after changing it, you will lose those changes if saving is
  51. # disabled on quit.
  52. # Valid Values: True or False
  53. # Rename: Save whenever a player is renamed.
  54. # Quit: Save whenever a player leaves the server.
  55. # ----
  56. # Scoreboard toggles the use of the scoreboard integration.
  57. # Note: Integration into scoreboard will force the player
  58. # display names to be unique. Names longer than 16 characters
  59. # will be truncated on the player list. Each color code counts
  60. # for two characters.
  61. # ----
  62. # Commands allows a user to filter out commands from going under the
  63. # display name replacement process that allow the use of display
  64. # names in commands. i.e /msg SuperBob heya SuperBob how are you?
  65. # In the example, SuperBob would normaly be replaced by userbob225,
  66. # SuperBob's actual user name.
  67. # To use this feature, add a command followed by how many replacements
  68. # should be allowed. i.e. msg: 0 would completly prevent any names
  69. # from being replaced. msg: 1 would allow 1 name to be replaced, and
  70. # so on and so forth.
  71. # Valid Values: Command followed by any integer between 0 and N where
  72. # N is infinite. If an invalid value or negative number is used, 0 is
  73. # used by default.
  74. # Example:
  75. # commands:
  76. # msg: 1
  77. global-announce:
  78. enabled: true
  79. target: ALL
  80. integration:
  81. spout:
  82. title: true
  83. announcements: true
  84. tagAPI:
  85. title: true
  86. language: en_US
  87. messages:
  88. death: true
  89. kick: true
  90. login: true
  91. pagination: 20
  92. prefix:
  93. enabled: false
  94. character: +
  95. color:
  96. enabled: true
  97. code: e
  98. save:
  99. rename: true
  100. quit: false
  101. scoreboard: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement