• Comandos prefixo;
• Comandos Slash;
• Comandos App/User;
• Suporte Database sqlite;
• Suporte MongoDB.
1.
Entre no Discord Developer Portal e clique na opçãoApplications
;2.
No lado superior direito clique no botãoNew Application
e nomeie seu bot;3.
No lado esquerdo clique na opçãoBot
, logo seguida, no lado direito clique no botãoAdd Bot
;4.
Role para baixo e ative as três intenções dePrivileged Gateaway Intents
:
┕ (PRESENCE INTENT, SERVER MEMBERS INTENT e MESSAGE CONTENT INTENT);5.
No lado esquerdo clique na opçãoOAuth2
, em seguida,URL Generator
. Selecione os escoposbot
eapplication.commands
, role para baixo até BOT PERMISSIONS, selecioneAdministrator
(para todas as permissões da guilda);6.
Copie o link que é gerado abaixo, abra uma nova aba do navegador, cole a URL, escolha um servidor onde ficará seu bot.
1.
Baixe o projeto ou clone com:
git clone https://github.com/Downzin01/Bot_Template-Discord.js-V14
2.
Abre a pasta do projeto;3.
No terminal para instalação das dependências, execute o comando:
npm install
4.
Acesseconfig/config.js
e altere todos os valores:
module.exports = {
Client: {
Prefixo: "seu_prefixo",
Token: "token_do_bot",
ID: "id_do_bot"
},
Handlers: {
MongoDB: "link_MongoDB"
},
Users: {
OWNERS: ["id_do_dono"]
},
};
Ou acesse .env
e altere todos os valores:
TOKEN=TOKEN_DO_BOT
PREFIXO=SEU_PREFIXO
ID=ID_DO_BOT
MONGODB=LINK_MONGODB
OWNERS=ID_DO_DONO
⚠️ Por favor, não compartilhar com alguém os dados apresentados acima, principalmente o TOKEN. Problemas relacionados com esses dados não se aplicarão ao dono desse projeto, e sim do próprio usuário, proteja bem seus dados para garantir a segurança do seu bot.
5.
Para iniciar o bot, basta ir no terminal, executar:
npm run start
OU
node .
6.
Deu certo? É só aproveitar adiante. 😁
• Prefix commands;
• Slash Commands;
• Application/User Commands;
• Database sqlite support;
• MongoDB support.
1.
Enter the Discord Developer Portal and click on theApplications
option;2.
At the top right click on theNew Application
button and name your bot;3.
On the left side click on theBot
option, then on the right side click on theAdd Bot
button;4.
Scroll down and enable the threePrivileged Gateaway Intents
:
┕ (PRESENCE INTENT, SERVER MEMBERSHIP INTENT, and MESSAGE CONTENT INTENT);5.
On the left side click on theOAuth2
option, thenURL Generator
. Select thebot
andapplication.commands
scopes, scroll down to BOT PERMISSIONS, selectAdministrator
(for all guild permissions);6.
Copy the link that is generated below, open a new browser tab, paste the URL, choose a server where your bot will live.
1.
Download the project or clone with:
git clone https://github.com/Downzin01/Bot_Template-Discord.js-V14
2.
Opens the project folder;3.
In the terminal to install the dependencies, run the command:
npm install
4.
Go toconfig/config.js
and change all the values:
module.exports = {
Client: {
Prefixo: "your_prefix",
Token: "token_bot",
ID: "id_bot"
},
Handlers: {
MongoDB: "link_MongoDB"
},
Users: {
OWNERS: ["id_OWNER"]
},
};
Or go to .env
and change all the values:
TOKEN=TOKEN_BOT
PREFIXO=YOUR_PREFIX
ID=ID_BOT
MONGODB=LINK_MONGODB
OWNERS=ID_OWNER
⚠️ Please do not share the data presented above with anyone, especially the TOKEN. Problems related to this data will not apply to the owner of this project, but to the user himself, protect your data well to guarantee the security of your bot.
5.
To start the bot, just go to the terminal, run:
npm run start
OR
node .
6.
Did it work? Just enjoy it ahead. 😁