Advertisement
Guest User

config

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