Advertisement
Guest User

Untitled

a guest
May 24th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.82 KB | None | 0 0
  1. # Don't touch pls
  2. ConfigVersion: 1.16.9
  3.  
  4. # Bot token; don't know what this is? Look at the video on the plugin page for instructions
  5. BotToken: "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXIpxTxIcAhiMlf-t2Ffrb2GUV4"
  6.  
  7. # Channel links from game to Discord
  8. # syntax is Channels: {"in-game channel name": "numerical channel ID from Discord", "another in-game channel name": "another numerical channel ID from Discord"}
  9. # The first channel pair specified in this config option will be the "main" channel, used for sending player joins/quits/deaths/achievements/etc
  10. #
  11. Channels: {"global": "XXXXXXXXXXXXX10016"}
  12.  
  13. # Console channel numerical ID (NOT NAME), leave blank to disable the console channel all together
  14. DiscordConsoleChannelId: "XXXXXXXXXXXX122054"
  15.  
  16. # Debug options, don't touch unless needed
  17. #
  18. # DebugLevel: 0 = no debug, 1 = debug, 2 = debug with stack traces
  19. #
  20. DebugLevel: 2
  21. DebugJDA: true
  22. CancelConsoleCommandIfLoggingFailed: true
  23. RespectChatPlugins: true
  24. ForcedLanguage: none
  25. Experiment_WebhookChatMessageDelivery: false
  26. PrintGuildsAndChannels: true
  27.  
  28. # Disabled plugin hooks
  29. # Generally, unless you have a reason to touch this, don't
  30. #
  31. DisabledPluginHooks: []
  32.  
  33. # Game information, this sets the "Playing ______" indicator for the bot, set to "" to disable
  34. DiscordGameStatus: "Minecraft"
  35.  
  36. # Chat channel information
  37. # The chat channel is the text channel that all messages in-game will be sent to and all messages sent
  38. # to this channel on Discord will be sent in-game
  39. #
  40. # DiscordChatChannelDiscordToMinecraft: whether or not to send messages in the chat channel to the server chat
  41. # DiscordChatChannelMinecraftToDiscord: whether or not to send messages in the server chat to the chat channel
  42. # DiscordChatChannelTruncateLength: the maximum length of messages from Discord to be sent to Minecraft
  43. # DiscordChatChannelTranslateMentions: whether or not to translate mentions like @Person for Minecraft to Discord messages
  44. # DiscordChatChannelPrefix: the character(s) required to prefix a message for it to be sent from Minecraft to Discord (example "!")
  45. # DiscordChatChannelRolesAllowedToUseColorCodesInChat: list of roles allowed to use color/format codes in Discord to Minecraft chat
  46. # DiscordChatChannelBroadcastDiscordMessagesToConsole: whether or not to print processed discord messages to the console
  47. # DiscordChatChannelRequireLinkedAccount: whether or not to require players have their Discord account linked to their Minecraft to have their Discord messages sent to Minecraft
  48. # DiscordChatChannelBlockBots: whether or not bots should be blocked from Discord -> MC chat
  49. # DiscordChatChannelBlockedIds: ids of discord users (or bots) that should not have their messages processed & sent to MC
  50. # DiscordChatChannelColorTranslations: hex representations of Discord roles to be matched with for showing role colors in-game with their in-game equivalent
  51. # DiscordChatChannelRolesSelectionAsWhitelist: if the following list should be treated as a whitelist (true) or a blacklist (false)
  52. # DiscordChatChannelRolesSelection: list of roles that are should be filtered from all of a user's roles
  53. #
  54. DiscordChatChannelDiscordToMinecraft: true
  55. DiscordChatChannelMinecraftToDiscord: true
  56. DiscordChatChannelTruncateLength: 256
  57. DiscordChatChannelTranslateMentions: true
  58. DiscordChatChannelPrefix: ""
  59. DiscordChatChannelRolesAllowedToUseColorCodesInChat: ["Developer", "Owner", "Admin", "Moderator"]
  60. DiscordChatChannelBroadcastDiscordMessagesToConsole: true
  61. DiscordChatChannelRequireLinkedAccount: false
  62. DiscordChatChannelBlockBots: false
  63. DiscordChatChannelBlockedIds: ["000000000000000000", "000000000000000000", "000000000000000000"]
  64. DiscordChatChannelColorTranslations: {
  65. "99AAB5": "&f",
  66. "1ABC9C": "&a",
  67. "2ECC71": "&a",
  68. "3498DB": "&3",
  69. "9B59B6": "&5",
  70. "E91E63": "&d",
  71. "F1C40F": "&e",
  72. "E67E22": "&6",
  73. "E74C3C": "&c",
  74. "95A5A6": "&7",
  75. "607D8B": "&8",
  76. "11806A": "&2",
  77. "1F8B4C": "&2",
  78. "206694": "&1",
  79. "71368A": "&5",
  80. "AD1457": "&d",
  81. "C27C0E": "&6",
  82. "A84300": "&6",
  83. "992D22": "&4",
  84. "979C9F": "&7",
  85. "546E7A": "&8"
  86. }
  87. DiscordChatChannelRolesSelectionAsWhitelist: false
  88. DiscordChatChannelRolesSelection: ["Don't show me!", "Misc role"]
  89.  
  90. # Console channel information
  91. # The console channel is the text channel that receives messages which are then run as server commands
  92. # by the console as well as having the server's console being streamed to line by line
  93. #
  94. # You can customize the message including removing timestamps in messages.yml
  95. #
  96. # DiscordConsoleChannelLogRefreshRateInSeconds: rate in seconds between sending lines from the console
  97. # DiscordConsoleChannelUsageLog: the file that logs all commands being executed by users in the console channel
  98. # DiscordConsoleChannelBlacklistActsAsWhitelist: whether or not the blacklisted commands list acts as a whitelist instead of blacklist
  99. # DiscordConsoleChannelBlacklistedCommands: phrases wrapped in quotation marks that users should not be able to send as commands to the console
  100. # DiscordConsoleChannelDoNotSendPhrasesActsAsWhitelist: whether or not the do not send phrases list acts as a whitelist instead of blacklist
  101. # DiscordConsoleChannelDoNotSendPhrases: phrases wrapped in quotation marks that should not be sent to the console channel
  102. # DiscordConsoleChannelRegexFilter: the regex filter to be applied to console lines being sent to Discord
  103. # DiscordConsoleChannelRegexReplacement: what the regex filter will replace with where matches are found
  104. # DiscordConsoleChannelLevels: levels to send to console channel via appender
  105. #
  106. DiscordConsoleChannelLogRefreshRateInSeconds: 5
  107. DiscordConsoleChannelUsageLog: "DiscordConsole.log"
  108. DiscordConsoleChannelBlacklistActsAsWhitelist: false
  109. DiscordConsoleChannelBlacklistedCommands: ["?", "op", "deop"]
  110. DiscordConsoleChannelDoNotSendPhrasesActsAsWhitelist: false
  111. DiscordConsoleChannelDoNotSendPhrases: ["async chat thread"]
  112. DiscordConsoleChannelRegexFilter: ""
  113. DiscordConsoleChannelRegexReplacement: ""
  114. DiscordConsoleChannelLevels: [info, warn, error]
  115.  
  116. # Chat channel command execute command
  117. # These options control the ability to say "!c kick Notch", or whatever the prefix is to run a command,
  118. # as the console, from a registered chat channel.
  119. #
  120. # DiscordChatChannelConsoleCommandEnabled: whether or not to allow console commands from a chat channel.
  121. # DiscordChatChannelConsoleCommandNotifyErrors: whether or not to send a user who tries to run a command without permission that they don't have permission
  122. # DiscordChatChannelConsoleCommandPrefix: prefix to use for console commands. e.g. "!c tps"
  123. # DiscordChatChannelConsoleCommandRolesAllowed: the user roles that are allowed to execute server commands from the chat channel
  124. # DiscordChatChannelConsoleCommandWhitelist: list of commands that are able to be ran with DiscordChatChannelConsoleCommandPrefix
  125. # DiscordChatChannelConsoleCommandWhitelistBypassRoles: list of roles that bypass the whitelist
  126. # DiscordChatChannelConsoleCommandWhitelistActsAsBlacklist: should the command whitelist act as a blacklist instead
  127. # DiscordChatChannelConsoleCommandExpiration: time in seconds until a sent command output is automatically removed by the bot. set to 0 to disable expiration.
  128. # DiscordChatChannelConsoleCommandExpirationDeleteRequest: whether or not to delete the message of the person that originally issued the command
  129. #
  130. DiscordChatChannelConsoleCommandEnabled: true
  131. DiscordChatChannelConsoleCommandNotifyErrors: true
  132. DiscordChatChannelConsoleCommandPrefix: "!c"
  133. DiscordChatChannelConsoleCommandRolesAllowed: ["Developer", "Owner"]
  134. DiscordChatChannelConsoleCommandWhitelist: ["say", "lag", "tps"]
  135. DiscordChatChannelConsoleCommandWhitelistBypassRoles: ["Owner", "Developer"]
  136. DiscordChatChannelConsoleCommandWhitelistActsAsBlacklist: false
  137. DiscordChatChannelConsoleCommandExpiration: 0
  138. DiscordChatChannelConsoleCommandExpirationDeleteRequest: true
  139.  
  140. # Chat channel player list command
  141. # All the config stuff for the player list command
  142. #
  143. # DiscordChatChannelListCommandEnabled: whether the command is enabled
  144. # DiscordChatChannelListCommandMessage: the command people can type to get the player list
  145. # DiscordChatChannelListCommandExpiration: time in seconds until a sent player list message is automatically removed by the bot. set to 0 to disable expiration.
  146. # DiscordChatChannelListCommandExpirationDeleteRequest: whether or not to delete the message of the person that originally requested for the player list
  147. #
  148. DiscordChatChannelListCommandEnabled: true
  149. DiscordChatChannelListCommandMessage: "playerlist"
  150. DiscordChatChannelListCommandExpiration: 10
  151. DiscordChatChannelListCommandExpirationDeleteRequest: true
  152.  
  153. # Chat channel blacklisted phrases & regex
  154. #
  155. # DiscordChatChannelBlockedPhrases: phrases which if a message is sent in the chat channel containing a phrase here, the message won't be processed
  156. # DiscordChatChannelCutPhrases: phrases which if said in the Minecraft chat will be removed from the message before sending it to the chat channel
  157. # DiscordChatChannelRegex: regex to filter the chat going to Minecraft by
  158. # DiscordChatChannelRegexReplacement: replacement for above option
  159. #
  160. DiscordChatChannelBlockedPhrases: ["Online players (", "**No online players**"]
  161. DiscordChatChannelCutPhrases: ["@everyone"]
  162. DiscordChatChannelRegex: ""
  163. DiscordChatChannelRegexReplacement: ""
  164.  
  165. # Channel topic updater settings
  166. #
  167. # ChannelTopicUpdaterChannelTopicsAtShutdownEnabled: whether or not the channel topics should be changed at server shutdown at all
  168. # ChannelTopicUpdaterRateInMinutes: amount of minutes between automatically updating the channel topics with fresh information
  169. #
  170. ChannelTopicUpdaterChannelTopicsAtShutdownEnabled: true
  171. ChannelTopicUpdaterRateInMinutes: 5
  172.  
  173. # Discord canned responses
  174. # These are triggers (commands in a way) that will trigger a "canned response" to be sent as a reply to them
  175. # You should probably change these from their defaults or add your own
  176. #
  177. # Syntax is {"TRIGGER": "RESPONSE", "TRIGGER": "RESPONSE", ...}
  178. # If you do not want any canned responses, set this to just {}
  179. # PlaceholderAPI placeholders are supported for the values
  180. #
  181. DiscordCannedResponses: {"!ip": "yourserveripchange.me", "!site": "http://yoursiteurl.net"}
  182.  
  183. # Minecraft to Discord account linking
  184. # These are the config options pertaining to how linking a Minecraft account to a Discord account functions
  185. #
  186. # MinecraftDiscordAccountLinkedConsoleCommands: commands to run when an account is linked, see below for possible placeholders
  187. # MinecraftDiscordAccountUnlinkedConsoleCommands: commands to run when an account is unlinked, see below for possible placeholders
  188. # %minecraftplayername%: player's Minecraft username
  189. # example: Notch
  190. # %minecraftuuid%: player's uuid
  191. # example: you know what a uuid looks like
  192. # %discordid%: linked discord account's id
  193. # example: 12345678901234567890
  194. # %discordname%: linked discord account's username
  195. # example: Notch
  196. #
  197. # MinecraftDiscordAccountLinkedRoleToAddUserTo: the name of a discord role to add a discord user to when they link their account
  198. # MinecraftDiscordAccountLinkedSetDiscordNicknameAsInGameName: whether or not to set the discord user's nickname to their in-game account name
  199. #
  200. MinecraftDiscordAccountLinkedConsoleCommands: ["", "", ""]
  201. MinecraftDiscordAccountUnlinkedConsoleCommands: ["", "", ""]
  202. MinecraftDiscordAccountLinkedRoleNameToAddUserTo: "Linked"
  203. MinecraftDiscordAccountLinkedSetDiscordNicknameAsInGameName: false
  204.  
  205. # Minecraft group -> Discord role synchronization
  206. #
  207. # GroupRoleSynchronizationRoleIdsToSync: these are Discord role IDs that you want to be synchronized from Minecraft to Discord
  208. # if a role ID is not here, the permission for it (discordsrv.sync.[role id]) is effectively useless
  209. # to get your Discord guild's role IDs, run "/discord debug" and look at the first section
  210. # GroupRoleSynchronizationCycleTime: amount of minutes between repeatedly triggering synchronization for all online players
  211. # GroupRoleSynchronizationRemoveRolesOnUnlink: whether or not to remove synced roles from a Discord user when unlinking accounts
  212. #
  213. GroupRoleSynchronizationRoleIdsToSync: ["000000000000000000", "000000000000000000", "000000000000000000"]
  214. GroupRoleSynchronizationCycleTime: 5
  215. GroupRoleSynchronizationRemoveRolesOnUnlink: true
  216.  
  217. # Server watchdog
  218. #
  219. # The watchdog constantly monitors the last time your server performed a game tick
  220. # If the time since the last tick goes above the set interval in seconds, Discord messages can be triggered
  221. #
  222. # ServerWatchdogEnabled: whether or not the watchdog is enabled at all
  223. # ServerWatchdogTimeout: time in seconds that need to elapse before the watchdog takes action (Spigot's crash detection uses 60 for this)
  224. # the minimum for this value is 10
  225. # ServerWatchdogMessageCount: the amount of times ServerWatchdogMessage is sent. useful if you *really* want to make sure you know something's up
  226. #
  227. ServerWatchdogEnabled: true
  228. ServerWatchdogTimeout: 30
  229. ServerWatchdogMessageCount: 3
  230.  
  231. # Ban synchronization
  232. # When a player gets banned on the server when they have a linked Discord account you can optionally ban them on the Discord server and vice versa
  233. #
  234. # BanSynchronizationDiscordToMinecraft: whether or not to ban people on the Minecraft server if they get banned from the Discord server
  235. # BanSynchronizationDiscordToMinecraftReason: the message to be used as the ban reason for banning players from the Minecraft server
  236. # BanSynchronizationMinecraftToDiscord: whether or not to ban people on the Discord server if they get banned from the Minecraft server
  237. #
  238. BanSynchronizationDiscordToMinecraft: false
  239. BanSynchronizationDiscordToMinecraftReason: "&cYou have been banned until further notice from the server because you were banned on our Discord server."
  240. BanSynchronizationMinecraftToDiscord: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement