Angel_knight

bungeeconfig

Apr 2nd, 2020
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.51 KB | None | 0 0
  1. ############################################################
  2. # +------------------------------------------------------+ #
  3. # | MultiChat | #
  4. # +------------------------------------------------------+ #
  5. ############################################################
  6.  
  7. # By Revilo410
  8.  
  9. ##################
  10. # DON'T EDIT #
  11. version: "1.7.5" #
  12. ##################
  13.  
  14. # 1. General
  15. # 2. Private Messaging
  16. # 3. Global Chat
  17. # 4. Group Chats
  18. # 5. Staff Chats
  19. # 6. Other
  20.  
  21. ############################################################
  22. # +------------------------------------------------------+ #
  23. # | General | #
  24. # +------------------------------------------------------+ #
  25. ############################################################
  26.  
  27. # Should MultiChat fetch the display names from players respective spigot servers rather than those set on bungeecord to use in the global chat?
  28. # Set this to true if you want to use display names set by plugins such as Essentials, Vault etc.
  29. # If you want to use display names set by a bungeecord plugin such as BungeePerms then set this to false.
  30. # PLEASE NOTE THAT IF THIS IS SET TO TRUE, CHAT WILL ONLY WORK IF YOU ALSO PUT THE MULTICHAT.JAR IN THE SPIGOT SERVERS PLUGIN FOLDERS AS WELL
  31. # AS IN THE BUNGEECORD PLUGINS FOLDER!
  32. fetch_spigot_display_names: true
  33.  
  34. # Should MultiChat set the display name of users to be used in things like the tab list and /glist?
  35. set_display_name: true
  36.  
  37. # Display name format
  38. # You can use %NAME% %NICK% %PREFIX% %SUFFIX%
  39. display_name_format: "%SERVER%%PREFIX%%NICK%"
  40.  
  41. ############################################################
  42. # +------------------------------------------------------+ #
  43. # | Private Messaging | #
  44. # +------------------------------------------------------+ #
  45. ############################################################
  46.  
  47. #############
  48. # PM MODULE #
  49. #############
  50.  
  51. # Use private messaging?
  52. pm: true
  53.  
  54. # Servers to exclude from private messaging
  55. # List like:
  56. # no_pm:
  57. # - Server1
  58. # - Server2
  59. # etc.
  60.  
  61. no_pm: []
  62.  
  63. # Allow players to toggle PMs by just typing /msg <playername>
  64. toggle_pm: true
  65.  
  66. ##############
  67. # PM FORMATS #
  68. ##############
  69.  
  70. # USES STANDARD MINECRAFT '&X' COLOUR/FORMAT CODES
  71. # %MESSAGE% = The sent message
  72. # %NAME% = The name of the sender
  73. # %NAMET% = The name of the target player
  74. # %DISPLAYNAME% = The display name of the sender
  75. # %DISPLAYNAMET% = The display name of the target player
  76. # %PREFIX% = The prefix of the sender
  77. # %PREFIXT% = The prefix of the target
  78. # %SUFFIX% = The suffix of the sender
  79. # %SUFFIXT% = The suffix of the target
  80. # %NICK% = The nickname of the sender
  81. # %NICKT% = The nickname of the target
  82. # %SERVER% = The server of the sender
  83. # %SERVERT% = The server of the target player
  84. # %WORLD% = The world of the sender
  85. # %WORLDT% = The world of the target player
  86.  
  87. # Sending PM Format
  88.  
  89. pmout: "&6[&cYou &6-> &c%DISPLAYNAMET%&6] &f%MESSAGE%"
  90.  
  91. # Receving PM Format
  92.  
  93. pmin: "&6[&c%DISPLAYNAME% &6-> &cMe&6] &f%MESSAGE%"
  94.  
  95. # SocialSpy Format
  96.  
  97. pmspy: "&8&l<< &f%NAME% &7-> &f%NAMET%&8: &7%MESSAGE% &8&l>>"
  98.  
  99. ##############
  100. # PM ALIASES #
  101. ##############
  102.  
  103. # The /msg command has the following aliases (other than /msg)
  104. msgcommand:
  105. - m
  106. - message
  107. - t
  108. - tell
  109. - w
  110. - whisper
  111. - chat
  112. - pm
  113.  
  114. # The /r command has the following aliases (other than /r)
  115. rcommand:
  116. - reply
  117. - respond
  118.  
  119. # The /socialspy command has the following aliases (other than /socialspy)
  120. socialspycommand:
  121. - spy
  122. - sspy
  123.  
  124. ############################################################
  125. # +------------------------------------------------------+ #
  126. # | Chat Channels | #
  127. # +------------------------------------------------------+ #
  128. ############################################################
  129.  
  130. # The default chat channel that players will be assigned when they first join
  131. # Must be "local" or "global", if anything else is specified then will default to "global"
  132. default_channel: "global"
  133.  
  134. # Force players into default channel when they join the server?
  135. force_channel_on_join: false
  136.  
  137. # The /channel command has the following aliases (other than /channel)
  138. channelcommand:
  139. - ch
  140.  
  141. ############################################################
  142. # +------------------------------------------------------+ #
  143. # | Global Chat | #
  144. # +------------------------------------------------------+ #
  145. ############################################################
  146.  
  147. ######################
  148. # Global Chat Module #
  149. ######################
  150.  
  151. # Use global public chat?
  152. global: true
  153.  
  154. # Servers to exclude from global chat
  155. # List like:
  156. # no_global:
  157. # - Server1
  158. # - Server2
  159. # etc.
  160.  
  161. no_global: []
  162.  
  163. #######################
  164. # Global Chat Formats #
  165. #######################
  166.  
  167. # USES STANDARD MINECRAFT '&X' COLOUR/FORMAT CODES
  168. # %NAME% = The name of the sender
  169. # %DISPLAYNAME% = The display name of the sender
  170. # %PREFIX% = The prefix of the sender
  171. # %SUFFIX% = The suffix of the sender
  172. # %NICK% = The nickname of the sender
  173. # %SERVER% = The server of the sender
  174. # %WORLD% = The world of the sender
  175.  
  176. # Global Chat Format
  177. # Will display as [FORMAT] [MESSAGE]
  178.  
  179. globalformat: "%SERVER%%PREFIX%%NICK%&f: "
  180.  
  181. ############################################################
  182. # +------------------------------------------------------+ #
  183. # | Group Chats | #
  184. # +------------------------------------------------------+ #
  185. ############################################################
  186.  
  187. ######################
  188. # Group Chat Formats #
  189. ######################
  190.  
  191. # USES STANDARD MINECRAFT '&X' COLOUR/FORMAT CODES
  192. # %NAME% = The name of the sender
  193. # %MESSAGE% = The sent message
  194. # %CC% = The chat color set by players
  195. # %NC% = The name color set by players
  196. # %GROUPNAME% = Name of the group chat
  197.  
  198. groupchat:
  199. format: "%CC%(%NC%%GROUPNAME%%CC%)(%NC%%NAME%%CC%) %MESSAGE%"
  200. ccdefault: "a"
  201. ncdefault: "f"
  202.  
  203. ############################################################
  204. # +------------------------------------------------------+ #
  205. # | Staff Chats | #
  206. # +------------------------------------------------------+ #
  207. ############################################################
  208.  
  209. ######################
  210. # Staff Chat Formats #
  211. ######################
  212.  
  213. # USES STANDARD MINECRAFT '&X' COLOUR/FORMAT CODES
  214. # %NAME% = The name of the sender
  215. # %DISPLAYNAME% = The display name of the sender
  216. # %SERVER% = The server of the sender
  217. # %WORLD% = The world of the sender
  218. # %MESSAGE% = The sent message
  219. # %CC% = The chat color set by players
  220. # %NC% = The name color set by players
  221.  
  222. modchat:
  223. format: "%CC%{%NC%%NAME%%CC%} %MESSAGE%"
  224. ccdefault: "b"
  225. ncdefault: "d"
  226.  
  227. adminchat:
  228. format: "%CC%{%NC%%NAME%%CC%} %MESSAGE%"
  229. ccdefault: "d"
  230. ncdefault: "b"
  231.  
  232. ############################################################
  233. # +------------------------------------------------------+ #
  234. # | Other | #
  235. # +------------------------------------------------------+ #
  236. ############################################################
  237.  
  238. # Set to false to disable the '/staff' staff list command
  239. staff_list: true
  240.  
  241. # MultiChat bypass command aliases (other than /multichatbypass)
  242. multichatbypasscommand:
  243. - mcb
  244. - bypass
  245.  
  246. # MultiChat execute command aliases (other than /multichatexecute)
  247. multichatexecutecommand:
  248. - mcexecute
  249. - mce
  250. - gexecute
  251. - gexe
  252. - gcommand
Advertisement
Add Comment
Please, Sign In to add comment