Advertisement
Guest User

DiscordIntegration.json

a guest
Oct 19th, 2017
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 3.28 KB | None | 0 0
  1. {
  2.     "discord": {
  3.         "token": "AbCdEfGhIjKlMnOpQrStUvWxYz123AbCdEfGhIjKlMnOpQrStUvWxYz456",
  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": false,
  14.                 "messages": {
  15.                     "chatMessage": "[DISCORD]<{USER}> {MESSAGE}"
  16.                 }
  17.             },
  18.             "channels": {
  19.                 "12345678910111213": {
  20.                     "commandPrefix": "!",
  21.                     "canExecuteCommands": true,
  22.                     "stripMinecraftCodes": false,
  23.                     "allowDMCommands": true,
  24.                     "relayChat": true,
  25.                     "messages": {
  26.                         "chatMessage": "[DISCORD]<{USER}> {MESSAGE}"
  27.                     },
  28.                     "commands": [{
  29.                         "name": "stop",
  30.                         "command": "stop",
  31.                         "enabled": true,
  32.                         "aliases": [
  33.                             "close"
  34.                         ],
  35.                         "permissions": [
  36.                             "user:98765432109876543"
  37.                         ]
  38.                     }, {
  39.                         "name": "tps",
  40.                         "command": "discord tps",
  41.                         "enabled": true,
  42.                         "aliases": [
  43.                             "lag"
  44.                         ]
  45.                     }, {
  46.                         "name": "online",
  47.                         "command": "discord online",
  48.                         "enabled": true,
  49.                         "aliases": [
  50.                             "list"
  51.                         ]
  52.                     }, {
  53.                         "name": "kick",
  54.                         "command": "kick {ARG_1}",
  55.                         "enabled": false,
  56.                         "permissions": [
  57.                             "user:98765432109876543"
  58.                         ]
  59.                     }, {
  60.                         "name": "ban",
  61.                         "command": "ban {ARGS}",
  62.                         "enabled": false,
  63.                         "permissions": [
  64.                             "user:98765432109876543"
  65.                         ]
  66.                     }]
  67.                 }
  68.             }
  69.         }
  70.     },
  71.     "minecraft": {
  72.         "dimensions": {
  73.             "generic": {
  74.                 "ignoreFakePlayerChat": true,
  75.                 "relaySayCommand": true,
  76.                 "relayMeCommand": true,
  77.                 "canMentionEveryone": false,
  78.                 "canMentionHere": false,
  79.                 "messageIgnoreRegex": [],
  80.                 "relayServerStart": true,
  81.                 "relayServerStop": true,
  82.                 "relayServerCrash": true,
  83.                 "chatPrefix": "",
  84.                 "canMentionUsers": true,
  85.                 "canMentionRoles": true,
  86.                 "discordChannel": [
  87.                     12345678910111213
  88.                 ],
  89.                 "relayAchievements": true,
  90.                 "relayChat": true,
  91.                 "relayCommands": false,
  92.                 "relayPlayerJoin": true,
  93.                 "relayPlayerLeave": true,
  94.                 "relayPlayerDeath": true,
  95.                 "messages": {
  96.                     "chatMessage": {
  97.                         "normal": "<__{USER}__> {MESSAGE}",
  98.                         "webhook": "{MESSAGE}"
  99.                     },
  100.                     "command": {
  101.                         "normal": "**{USER}** executed **{COMMAND} {ARGUMENTS}**",
  102.                         "webhook": "*executed **{COMMAND} {ARGUMENTS}***"
  103.                     },
  104.                     "playerJoin": {
  105.                         "normal": "**__{USER}__** just joined the server!",
  106.                         "webhook": "*Joined the server!*"
  107.                     },
  108.                     "playerLeave": {
  109.                         "normal": "**__{USER}__** just left the server!",
  110.                         "webhook": "*Left the server!*"
  111.                     },
  112.                     "playerDeath": {
  113.                         "normal": "**__{USER}__ just died due to {REASON}!**",
  114.                         "webhook": "*{REASON}*"
  115.                     },
  116.                     "achievement": {
  117.                         "normal": "**__{USER}__** just gained the achievement **{ACHIEVEMENT}**!\n*{DESCRIPTION}*",
  118.                         "webhook": "*Gained the achievement **{ACHIEVEMENT}**!\n{DESCRIPTION}*"
  119.                     },
  120.                     "serverStart": "**SERVER STARTED**",
  121.                     "serverStop":  "**SERVER GRACEFUL SHUTDOWN**",
  122.                     "serverCrash": "**SERVER CRASH DETECTED**"
  123.                 }
  124.             }
  125.         },
  126.         "integrations": {
  127.             "dynmapEnabled": true
  128.         }
  129.     },
  130.     "imc": {
  131.         "enabled": true,
  132.         "mode": "whitelist",
  133.         "list": []
  134.     }
  135. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement