how to develope discord bot code example
Example 1: How to setup discord.py bot
import discord
from discord.ext import commands
import asyncio
client = commands.Bot(command_prefix='!')
token = 'YOUR TOKEN HERE'
@client.command()
async def hello(ctx):
await ctx.send('Hello I am a Test Bot!')
@client.event
async def on_ready():
print('Hello, I am now running')
client.run(token)
Example 2: how to get a bot online on discord
const Discord = require('discord.js');
const bot = new Discord.Client();
const TOKEN = "put ur token";
bot.login(TOKEN);