Welcome to Bot-link
version 1.0
Here you can Make a Discord Bot without coding experience
Go to the Documentation
Bot token:
input Bot token
Command line not in use
onMessageSend
onAnyMessageSend
onCommand
onSlashCommand: Experimental
onNewUserJoin
reply
sendMessage
sendDirectMessage
mentionEveryone
giveRoleUsingId
Command line2 not in use
onMessageSend
onAnyMessageSend
onCommand
onSlashCommand: Experimental
onNewUserJoin
Else
reply
sendMessage
sendDirectMessage
mentionEveryone
giveRoleUsingId
Preveiw Command1
Preveiw Command2
Compile Code
const token = ("") const Discord = require("discord.js"); const GatewayIntentBits = Discord.GatewayIntentBits const client = new Discord.Client({ intents: [ GatewayIntentBits.Guilds, GatewayIntentBits.GuildMessages, GatewayIntentBits.GuildMembers, GatewayIntentBits.DirectMessages, GatewayIntentBits.MessageContent, ], }); client.on('messageCreate', async (message) => { if(message.content.toLowerCase() === ""){ message.reply('') } }) client.login(token); client.on('ready', async () => { console.log('Bot-Link Bot Activated') });
Copy Code to ClipBoard