Advertisement
Guest User

Proper DiscordIntegration mod config

a guest
May 28th, 2018
476
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.54 KB | None | 0 0
  1. {
  2.   "discord": {
  3.     "token": "YOUR TOKEN HERE",
  4.     "ignoresBots": true,
  5.     "allowLinking": true,
  6.     "ignoresUsers": [],
  7.     "channels": {
  8.       "generic": {
  9.         "commandPrefix": "!",
  10.         "canExecuteCommands": false,
  11.         "stripMinecraftCodes": true,
  12.         "allowDMCommands": false,
  13.         "relayChat": true,
  14.         "messages": {
  15.           "chatMessage": "[{USER}] {MESSAGE}"
  16.         },
  17.         "commands": []
  18.       },
  19.       "channels": {
  20.         "YOUR CHANNEL ID HERE": {
  21.         }
  22.       }
  23.     }
  24.   },
  25.   "minecraft": {
  26.     "dimensions": {
  27.       "generic": {
  28.         "ignoreFakePlayerChat": true,
  29.         "relaySayCommand": true,
  30.         "relayMeCommand": true,
  31.         "canMentionEveryone": false,
  32.         "canMentionHere": false,
  33.         "messageIgnoreRegex": [],
  34.         "relayServerStart": true,
  35.         "relayServerStop": false,
  36.         "relayServerCrash": true,
  37.         "chatPrefix": "",
  38.         "canMentionUsers": true,
  39.         "canMentionRoles": true,
  40.         "discordChannel": [YOUR CHANNEL ID HERE],
  41.         "relayAchievements": true,
  42.         "relayChat": true,
  43.         "relayCommands": false,
  44.         "relayPlayerJoin": true,
  45.         "relayPlayerLeave": true,
  46.         "relayPlayerDeath": true,
  47.         "messages": {
  48.           "chatMessage": {
  49.             "normal": "**[{USER}]** {MESSAGE}",
  50.             "webhook": "{MESSAGE}"
  51.           },
  52.           "command": {
  53.             "normal": "**[{USER}]** executed **{COMMAND} {ARGUMENTS}**",
  54.             "webhook": "*executed **{COMMAND} {ARGUMENTS}***"
  55.           },
  56.           "playerJoin": {
  57.             "normal": "**{USER}** just joined the server!",
  58.             "webhook": "*Joined the server!*"
  59.           },
  60.           "playerLeave": {
  61.             "normal": "**{USER}** just left the server!",
  62.             "webhook": "*Left the server!*"
  63.           },
  64.           "playerDeath": {
  65.             "normal": "**{USER}** just died due to {REASON}!",
  66.             "webhook": "*{REASON}*"
  67.           },
  68.           "achievement": {
  69.             "normal": "**{USER}** just gained the achievement **{ACHIEVEMENT}**!\n*{DESCRIPTION}*",
  70.             "webhook": "*Gained the achievement **{ACHIEVEMENT}**!\n{DESCRIPTION}*"
  71.           },
  72.           "serverStart": "Server restarted!",
  73.           "serverStop": "Server stopped!",
  74.           "serverCrash": "Server crash detected!"
  75.         }
  76.       },
  77.       "dimensions": {}
  78.     },
  79.     "integrations": {
  80.       "dynmapEnabled": true
  81.     }
  82.   },
  83.   "imc": {
  84.     "enabled": true,
  85.     "mode": "whitelist",
  86.     "list": []
  87.   }
  88. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement