Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. import discord
  2. from discord.ext.commands import Bot
  3. from discord.ext import commands
  4. import asyncio
  5.  
  6. Client=discord.Client()
  7. bot=commands.Bot(command_prefix="!")
  8.  
  9. @bot.event
  10. async def on_ready():
  11. print('Logged in as')
  12. print(bot.user.name)
  13. print(bot.user.id)
  14. print('------')
  15.  
  16. bot.run("NDcwMzIxNjk4MzAyODUzMTIx.DjYotQ.e3pLSDNvwFiVYYyOXHqwzTALgXQ")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement