-
-
Save doge/a4871f8371098ba4a44f2eb99b79e12a to your computer and use it in GitHub Desktop.
import discord | |
client = discord.Client() | |
token = "your-client-token" | |
whitelist = [ | |
# discord guild ids you don't want to leave | |
123456789012345678, | |
876543210987654321 | |
] | |
@client.event | |
async def on_ready(): | |
for guild in client.guilds: | |
try: | |
if guild.id not in whitelist: | |
server = client.get_guild(guild.id) | |
await server.leave() | |
except Exception as e: | |
print(e) | |
client.run(token, bot=False) |
through repl.it
through repl.it
can u help?
through repl.it
can u help?
you must have some knowledge of coding if you're on github. import the code into a site like repl.it and fill in the variables.
through repl.it
can u help?
you must have some knowledge of coding if you're on github. import the code into a site like repl.it and fill in the variables.
k , thanks <3
I did but won't work it say something about import discord then something with home with an error
I did but won't work it say something about import discord then something with home with an error
You need the discord module installed on your computer.
This works Thank you
I think you should make a do's and don't file thingy where you should explain how using repl can be unsafe so better use you're own pc and stuff or if you still wanna use repl after use it's better to change password and enable 2fa for a while
hi! i cloned your clone and made an easy to use version using google colab, i hope you don't mind. https://colab.research.google.com/gist/chrstnglmtc/2517392541515f079b757c64ec4980fe/discordleave.ipynb
this one is so easy i don't understand how u guys struggle with 24 lines
I think you should make a do's and don't file thingy where you should explain how using repl can be unsafe so better use you're own pc and stuff or if you still wanna use repl after use it's better to change password and enable 2fa for a while
you can use env in replit it's now secure
modified it a bit but worked like a charm
discord.py migrated so you can no longer login to user accounts only bots
bruh it says missing intents
please update
Nice job. needed some janking but worked as it said on the tin. thanks.
Nice job. needed some janking but worked as it said on the tin. thanks.
What did you change. Cant get it to work.
Nice job. needed some janking but worked as it said on the tin. thanks.
Can you please tell what worked for you ?
Useless script, does not work please delete or close so we have less bait and outdated content on here!
Does it still work or is it outdated?
It is outdated, doesn't work.
works with very minor modifications:
import discord
client = discord.Client(intents=discord.Intents.none())
token = input("bot token:")
whitelist = [
# discord guild ids you don't want to leave
876543210987654321
]
@client.event
async def on_ready():
for guild in client.guilds:
print(guild.id)
try:
if guild.id not in whitelist:
server = client.get_guild(guild.id)
await server.leave()
except Exception as e:
print(e)
client.run(token)
Wow this was a long time ago old times bruh
doesnt work anymore. @ryleu your code also doesn't work.
doesnt work anymore. @ryleu your code also doesn't work.
https://discordpy.readthedocs.io/en/stable/api.html?highlight=guild%20leave#discord.Guild.leave rtfm
For folks coming from Google, I made an updated version of the script that works: https://gist.github.com/SkyfallWasTaken/f35a11cd8c49efaa375b3b30b856c1a4
How do I import this code into discord?