Answers for "basic discord bot"

0

discord bot

const Discord = require('discord.js');
const client = new Discord.Client();

client.on('ready', () => {
	console.log(`Logged in as ${client.user.tag}!`);
});

client.on('interactionCreate', async interaction => {
	if (!interaction.isCommand()) return;
	if (interaction.commandName === 'ping') {
		await interaction.reply('Pong!');
	}
});

client.login('token');
Posted by: Guest on July-28-2021
0

Discord Bot

import discord
from discord.ext import commands

client = commands.Bot(command_prefix ='')

@client.event
async def on_ready(): #Bot on
    print ("Player One, Ready")

@client.event
async def on_message(ctx):
    #code

client.run('TOKEN')
Posted by: Guest on March-31-2021

Python Answers by Framework

Browse Popular Code Answers by Language