This repo gives you boilerplate for developing fast discord bot with discord.js.
Your first step is to browse over to the Discord Developer Portal: https://discordapp.com/developers/applications/
This portal shows all of your applications and bots.
If you already have a bot created, click it in the list. If you don’t have any discord bots, click the “New Application” button.
Here you’ll be prompted to give your application (bot) a name.
You’re likely making a Discord Bot here, or you need your token for a Discord Bot. If this is true, then think about what you want your bot to be named and enter it here.
Awesome! You’ve created your very first Discord Application! The only thing left is to bring your bot to life by giving it a description and an icon…
The best size for your bot’s icon is 1024×1024 pixels, but you can go lower and achieve quality results. I personally go with 512×512 most of the time (based on the icons I choose).
Next I uploaded that icon into Discord and hit the green “Save Changes” button.
“The Token Master” is looking much better already!
Your next step is to go over the menu on the left side of the screen and click “Bot”. It’s the icon that looks like a little puzzle piece.
Now you want to click the blue “Add Bot” button
Click the “Yes, do it!” button…
You’ll see a green message, “A wild bot has appeared!”
You’ll also see a “Token” and a blue link you can click called “Click to Reveal Token”
As soon as you click this link, your token will be revealed…
And that’s it! You have your token!
A natural next step, however, is to add your bot into your Discord Server.
In order to add your bot to your Discord Server, you’ll need to navigate back to the “OAuth2” tab.
Once there, scroll down to the “Oauth2 URL Generator” section. In the “Scopes” section, you’ll want to select the “bot” checkbox.
You’ll notice that a URL appeared as soon as you clicked “bot” — this will be your URL for adding your bot to a server.
But we’re not quite there yet!
Scroll down some more to the “Bot Permissions” section. This is where you choose what permissions to give your bot, and what it can and can’t do.
Based on what type of bot you’re planning on building, you’ll want to select permissions that most closely match what it’ll be doing day-to-day.
Important: Do not select all of the permissions “just to make things easy”. Your permissions are the second line of defense in case somebody gets their hands on your bot token. Only give your bot the permissions it really needs, that way you lower the risk of compromising your server.
After you’ve selected your permissions, scroll up a little bit and look at the URL that was generated.
Click the blue “Copy” button on the right side. This is the URL you’ll navigate to in order to add your bot to a server.
Go to that URL and you’ll see a page that looks sort of like this (see below). Here you’ll want to select the server you’re adding your bot to, double-check the permissions you’re giving your bot, and then continue to the next step.
You’ll likely get an “I’m not a robot” captcha message on the next screen. Solve the captcha and continue.
Success! Your bot has been authorized, and you should see it pop up in the list of participants on your server!
That wasn’t so hard, was it? You’ve successfully created a Discord Bot Token and added your own bot to a server!
After you clone go to the config.json file and insert your bot token. And if you want you can change prefix of bot.
{
"token": "your token",
"prefix": "!"
}
This README file uses external images and descriptions from cdn.writebots.com.