Skip to content

Instantly share code, notes, and snippets.

@dank-tagg

dank-tagg/bot.py Secret

Created May 5, 2021 13:49
Show Gist options
  • Save dank-tagg/42349435b675573094c5891ce7605f0f to your computer and use it in GitHub Desktop.
Save dank-tagg/42349435b675573094c5891ce7605f0f to your computer and use it in GitHub Desktop.
# Instead of using discord.Client()
import discord
from discord.ext import commands
bot = commands.Bot(command_prefix="lb! ")
# simple bot command example
@bot.command()
async def startlife(ctx): # ctx being the context the command is used in.
pass
bot.run("token")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment