How to run other things after client.run #140
Answered
by
dolfies
invertedEcho
asked this question in
Help
-
Hello, so i want to do a discord terminal client, but i have the problem that once ive run the client, nothing else gets run. |
Beta Was this translation helpful? Give feedback.
Answered by
dolfies
Dec 4, 2021
Replies: 1 comment 10 replies
-
In your case, you need to use |
Beta Was this translation helpful? Give feedback.
10 replies
Answer selected by
dolfies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
client.run()
is meant to be an easy way out.In your case, you need to use
client.login()
andclient.connect()
.