19 lines
323 B
Python
19 lines
323 B
Python
#!/usr/bin/env python3
|
|
import discord
|
|
from discord.ext import commands
|
|
|
|
config = {
|
|
'token': 'your-token',
|
|
'prefix': 'prefix',
|
|
}
|
|
|
|
bot = commands.Bot(command_prefix=config['prefix'])
|
|
|
|
|
|
@bot.event
|
|
async def on_message(ctx):
|
|
if ctx.author != bot.user:
|
|
await ctx.reply(ctx.content)
|
|
|
|
bot.run(config['token'])
|