Advertisement
Guest User

here, maybe?

a guest
Jul 16th, 2018
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.38 KB | None | 0 0
  1. import discord
  2. import asyncio
  3. from discord.ext.commands import Bot
  4.  
  5. say = 0
  6. XII = Bot('xii!')
  7.  
  8. client = discord.Client()
  9.  
  10. @client.event
  11. async def on_ready():
  12.     print('Logged in as')
  13.     print(client.user.name)
  14.     print(client.user.id)
  15.     print('------')
  16.  
  17. @bot.event
  18. channel = client.get_channel("444429335684841475")
  19. say = input("Say: ")
  20.  
  21. client.run('token')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement