how to make it so people can reply to bot messages discord.py code example
Example 1: discord bot python message that's being replied to
message.reference.resolved
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);