Answers for "start a command in on_ready discord.py"

3

discord py on ready

@client.event			# Tells Discord that it's a event
async def on_ready():	# Important that the 
  						# name of the event is 
    					# "on_ready"
    print("Ready!")		# Prints ready to the console
Posted by: Guest on March-25-2021
1

ready command discord.py

@client.event
async def on_ready():
    print('The client is ready!')
Posted by: Guest on May-08-2021

Browse Popular Code Answers by Language