From d75c3db533d8e39f3edea0d9247067aaca1c04b5 Mon Sep 17 00:00:00 2001 From: unknownplayer27 <126305902+1proprogrammerchant@users.noreply.github.com> Date: Tue, 30 May 2023 21:34:46 -0500 Subject: [PATCH] Create dequerun.py can you ban this discord ID he's been selling and showing child porn on your app this is the person's user ID 1107056036122198026 and their user tag Vibin#4155 --- dequerun.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 dequerun.py diff --git a/dequerun.py b/dequerun.py new file mode 100644 index 0000000..394d4dc --- /dev/null +++ b/dequerun.py @@ -0,0 +1,20 @@ +import discord + +client = discord.Client() + +@client.event +async def on_message(message): + if message.content == "!run": + # Get the code from the message + code = message.content[5:] + + # Run the code + try: + result = eval(code) + except Exception as e: + result = str(e) + + # Send the result back to the user + await message.channel.send(result) + +client.run("YOUR_TOKEN")