Advertisement
Guest User

s

a guest
May 24th, 2018
1,015
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.76 KB | None | 0 0
  1. module.exports = {
  2.   // *Required* Prefix for commands.
  3.   PREFIX: 'p@',
  4.   PORT: 5000,
  5.  
  6.   // *Required* Bot token. Can be found in your bots application page.
  7.   // https://discordapp.com/developers/applications/me
  8.   TOKEN: 'NDM4NjEyODcwMTE3NDU3OTIw.DeYuRg.hEtHAUN4n7993Z89TLchTEis17g',
  9.  
  10.   // *Required* Bot client ID. Can be found in your bots application page.
  11.   // https://discordapp.com/developers/applications/me
  12.   CLIENT_ID: '438612870117457920',
  13.  
  14.   // *Required* Redis URL. Can be left blank if Redis is opened locally.
  15.   // Learn more here. http://redis.io/topics/quickstart
  16.   REDIS_URL: '',
  17.  
  18.   // Time to wait between commands per user in seconds. Default is 1.
  19.   MESSAGE_TTL: '',
  20.  
  21.   // Youtube API key, used for searching videos with `!youtube`.
  22.   // Learn more here. https://developers.google.com/youtube/v3/getting-started
  23.   YOUTUBE_KEY: 'AIzaSyBYR0rislX5EpkagbjfxrktsA77joKj9Bo',
  24.  
  25.   // Imgflip username and password, used for creating memes with `!meme`.
  26.   // Create an account here. https://imgflip.com
  27.   IMGFLIP_USERNAME: 'prime187',
  28.   IMGFLIP_PASSWORD: 'smsg1998',
  29.  
  30.   // Champion.gg API key, used for the League of Legends `!lol` commands.
  31.   // Create a key here. http://api.champion.gg
  32.   CHAMPIONGG_KEY: '',
  33.  
  34.   // Riot's API key, used for player and match search commands.
  35.   // BE WARNED, a development key will be very limited and most of the time will not work,
  36.   // as there is a lot of requests made in order to complete these data sets.
  37.   RIOT_KEY: 'RGAPI-3febe6e5-9411-4b02-b979-0bb1f28dbdc8',
  38.  
  39.   // Wolfram Alpha API key, used to query Wolfram Alpha with `!wolfram`.
  40.   // Apply for a key here. http://products.wolframalpha.com/developers
  41.   WOLFRAM_KEY: 'QLX273-U44JT9JT6W',
  42.  
  43.   // PasteBin API key, used to create pastes with `!paste`.
  44.   // Get a key here. http://pastebin.com/api
  45.   PASTEBIN_KEY: 'f1744822d8ba78882151c07991fb206f',
  46.  
  47.   // Popkey API key, used for searching GIFs with `!popkey`.
  48.   // Apply for a key here. http://popkey.co/api/submit
  49.   POPKEY_KEY: '',
  50.  
  51.   // Random.org API key, used for getting random numbers and strings with `!random`.
  52.   // Get a key here. https://api.random.org/api-keys
  53.   RANDOM_KEY: '',
  54.  
  55.   // Cleverbot API key, used for talking with `!chat`.
  56.   // Get a key here. https://www.cleverbot.com/api
  57.   CLEVERBOT_KEY: '',
  58.  
  59.   // Carbon and Discord Bots key, used for displaying server count on specific websites.
  60.   // More information here. https://www.carbonitex.net/discord/bots & https://bots.discord.pw/api
  61.   CARBON_KEY: '',
  62.   DBOTS_KEY: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VySUQiOiIyMTc5OTg0NTQxOTcxOTA2NTYiLCJyYW5kIjo4NjksImlhdCI6MTUyNzAzMDYwOH0.rWUOGduHKEgkh77lJU8vFzAGTljbAjz9jrEP8sxRJLg
  63.  
  64. ',
  65.  
  66.   // Feedback Channel ID, used for storing feedback with `!feedback`.
  67.   FEEDBACK_CHANNEL_ID: ''
  68. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement