Oct-10-2017, 07:28 PM
Hi, so i got this code, and i can't get it to modify the bot's own message, can anyone help me with this ?
I want it to, when somebody sends "_test" that it responds "testing" bot then modifies it to "tester".
I want it to, when somebody sends "_test" that it responds "testing" bot then modifies it to "tester".
1 2 3 4 |
@client .command(pass_context = True ) async def test(ctx): await client.say( 'testing' ) await client.edit_message( 'tester' ) |
COol Dudes love programmING