Answer the question
In order to leave comments, you need to log in
Why is Discord Bot not showing up online on Heroku Hosting?
File name: Goa.py
Code itself:
import discord
from discord.ext import commands
from discord.ext.commands import Bot
bot = commands.Bot(command_prefix = '!')
@bot.event
async def on_ready():
print('Bot connected')
@bot.event
async def on_member_join(member):
channel = bot.get_channel(667108089538805802)
role = discord.utils.get(member.guild.roles, id = 696646683072921610)
await member.add_roles(role)
await channel.send(f'{member.mention} присоеденился к нам!')
bot.run('TOKEN')
worker: python3 Goa.py
discord.py==1.3.3
python-3.8.3
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question