Answer the question
In order to leave comments, you need to log in
How to get the user object from its id?
Trying to get the user object by its id using "bot.get_user()" logs nothing and returns NoneType. I've been suffering for 2 days now, but I just can't figure out what to do. Help me please. Here is my code.
@bot.event
async def on_message(message):
if message.author.id != 787410465764278273:
print('From "' + message.channel.name + '" ' + message.author.name + ': ' + message.content)
if message.channel.id == 789899055814934568:
if ', только, что получил уровень' in message.content and 'Житель ' in message.content:
text = message.content #получаю объект сообщения в переменную
text = text.replace('Житель ', '', 1) #обрезаю сообщение
text = text.replace(', только, что получил уровень', '', 1)
text = text.replace('<@!', '', 1)
text = text.replace('>', '', 1) # до сюда
text = text.split() #разделяю оставшиеся два слова, а именно id пользователя и его уровень на сервере
member = bot.get_user(text[0]) #пытаюсь получить объект пользователя в переменную "member". В этой строке и заключается главная проблема
lvl = text[1] #получаю уровень в переменную
print(text[0]+'id and lvl'+lvl) #вывожу всё в консоль
print(member)
await bot.process_commands(message)
From "news●•2" Tonbix (Nikita): Resident <@!572024847442509825>, just got level 3
572024847442509825id and lvl3 #id and lvl are displayed here. And here everything is still correct
None #and here the member variable is already displayed, which is assigned NoneType
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