discord bot files code example
Example 1: bot discord python
import discord
from discord.ext import commands
bot = commands.Bot(command_prefix="!", description="The description")
@bot.event
async def on_ready():
print("Ready !")
@bot.command()
async def ping(ctx):
await ctx.send('**pong**')
bot.run("enter the token here between the quotes")
Example 2: how to import discord in python
py -3 -m pip install -U discord.py
Example 3: discord js ping command
// If the command sent in the chat is "ping"
if(cmd === `${prefix}ping `) {
// It sends the user "Pinging"
message.channel.send("Pinging...").then(m =>{
// The math thingy to calculate the user's ping
var ping = m.createdTimestamp - message.createdTimestamp;
// Basic embed
var embed = new Discord.MessageEmbed()
.setAuthor(`Your ping is ${ping}`)
.setColor("Your Color")
// Then It Edits the message with the ping variable embed that you created
m.edit(embed)
});
}
Example 4: Bots latency discord js
var yourping = new Date().getTime() - message.createdTimestamp
var botping = Math.round(bot.ws.ping)
message.channel.send(`Your ping: ${yourping} \nBots ping: ${botping}`)