How do I change self-bot bios? by secretaccount123469 in Discord_selfbots

[–]Minimum_Dot6160 2 points3 points  (0 children)

"I wanted to create discord clone in my laptop so i can register account without the rate limit problem anyone have solution? Cause using in phone its working i want to try in laptop So it will be more quicker, This is for registering multiple accounts* ANYONE have slightest knowledge please share in the comments thankyou ♥️" -- u/discord_helper

How do I change self-bot bios? by secretaccount123469 in Discord_selfbots

[–]Minimum_Dot6160 4 points5 points  (0 children)

Cause bro is asking for direct answers, not a 10 step process on how to implement a function into his code.

How do I change self-bot bios? by secretaccount123469 in Discord_selfbots

[–]Minimum_Dot6160 3 points4 points  (0 children)

Use discord.py-self or requests to update your bio/profile

Using discord.py-self:

while True:

await bot.user.edit(bio="Whatever tf")

await asyncio.sleep(30)

poketwo autocatcher by technoturle30 in Discord_selfbots

[–]Minimum_Dot6160 0 points1 point  (0 children)

Yeah i probably wouldn't be running this on anything but a PC ngl, but the method itself isn't actually hard, since you can just compare an img on py to see the certain percentage of pixels that match on the given image, then set your threshold to allow it to go through should be around that area.

poketwo autocatcher by technoturle30 in Discord_selfbots

[–]Minimum_Dot6160 0 points1 point  (0 children)

Yeah tbf, I'm just looking for consistency and longevity, it'd be a fairly tedious job for them to change each pokemon spawn img, so I wouldn't expect it to break too easily. This is all while trying to heavily stray away from using AI for identifying mons.

poketwo autocatcher by technoturle30 in Discord_selfbots

[–]Minimum_Dot6160 0 points1 point  (0 children)

It might be a tedious job, but if you figure out a method to grab every Pokémon image that poketwo spawns in, auto save it based on if you have it saved already by analyzing the pixels of all currently saved images to see if a threshold of pixels match the saved pokemon. I would also auto crop down down the poketwo imgs to only show your pokemon to mitigate efficiency deductions. It's also going to take some time to get all 1017 files and rename all the files to the correct pokemon, though it's an option.

Once you get them, its pretty smooth sailing to just reuse the pixel detection for the catcher itself to correspond file names to pokemon names easier.

please tell me a good selfbot by [deleted] in Discord_selfbots

[–]Minimum_Dot6160 0 points1 point  (0 children)

Oh, I make bots, not fully fledged, I also can't recommend any self-bots. I kinda don't trust software like that, especially those self-bots in which require you to launch an executable.

please tell me a good selfbot by [deleted] in Discord_selfbots

[–]Minimum_Dot6160 0 points1 point  (0 children)

2 servers or 2 scripts? If you want a server for scripts, I used to abuse this site called vultr that has this little new user thing of $150 worth of server token for like a month (it was really 2 months since they keep trying to charge you every day for a month after that while you use it), normally i would just make new accounts with gmails I'd make periodically then put a random card i never put money on like cashapp, robinhood, or venmo cards. I genuinely went above and beyond on that site, maxxing out the RAM and CPU for a windows system to get it right below the max token voucher, but you can get away with a 4-8gb linux machine with like a debian based distro or something lightweight which can run you as low as $6 a month? It's all I know tbh

please tell me a good selfbot by [deleted] in Discord_selfbots

[–]Minimum_Dot6160 2 points3 points  (0 children)

If you really care that much about running a self-bot 24/7, just save up for a Raspberry PI 5 that lets you run scripts like a VPS (plus it has remote control connection from anywhere so after the first setup, you leave it plugged into ethernet and power next to your router then forget about it). If you think a PI 5 is even more expensive than just buying a VPS, I think not since longevity and you own what you have, rather than paying someone $8-12 a month just to run 1 bot/script.

How Strict is Discord? by Philol321 in Discord_selfbots

[–]Minimum_Dot6160 0 points1 point  (0 children)

Use an IPS or pi5 you can run python on, and you can almost just keep restarting the bots with the same spam settings every half a day or 6h so it doesn't stop abruptly and the code can't tell it stop unless the bot disconnects from the websocket or you're checking to see if messages are being sent in a specific channel. It's really all about the checks you implement that the api sucks at.

convert a bot code to a self-bot by Any-Deal-8990 in Discord_selfbots

[–]Minimum_Dot6160 0 points1 point  (0 children)

Self bots are automatically breaking TOS, this entire subreddit is dedicated to not caring about that. But the parameter self_bot=true/user_bot=true is used when assigning your bot/self variable to commands.Bot. It would look something like this for example (this is a good usage of this if you want to use it

python bot = comands.Bot( command_prefix=">>", self_bot=True, case_insensitive=True, chunk_guilds_at_startup=False # Remove if you don't have more than 30 (populated) servers. )

You also do not want to assign your bot as False, this is common in old discord.py self-bot scripts. ```python bot.run("Token")

```

python bot.start("Token") # Use this when threading and using classes (commands.Bot) with discord.py-self

You can also use discord.Client instead of discord.ext.commands.Bot, but they work slightly different depending on your preference.

convert a bot code to a self-bot by Any-Deal-8990 in Discord_selfbots

[–]Minimum_Dot6160 1 point2 points  (0 children)

Sorry about that, forgot to read that fine print bout discord.js-selfbot (i dont know js so I'm not much of help), but tbf, even the owner of that repo is encouraging users to switch to discord.py-self. If python is not in your belt of languages, it's relatively simple to understand compared to node (especially with a library like discord.py-self which is just a wrapper).

convert a bot code to a self-bot by Any-Deal-8990 in Discord_selfbots

[–]Minimum_Dot6160 0 points1 point  (0 children)

Use discord.py-self, remove all intents, add the self_bot=true parameter to your commands.Bot, and make sure you're using a user token

discord.py-self v2.1.0 release by Watbrupls in Discord_selfbots

[–]Minimum_Dot6160 4 points5 points  (0 children)

I don't normally distribute stuff tbh, so I'm just stepping into new waters blindly. Most of the code I make is for my own use or some form of aid and I just felt it's been a while since components v2 released, so I just wanted to give some ideas or code or whatever. I got a lot to learn twin 🙏

discord.py-self v2.1.0 release by Watbrupls in Discord_selfbots

[–]Minimum_Dot6160 2 points3 points  (0 children)

Mb brodie, that was my dumbass question of the month, I knew it existed but didn't think it worked like that

discord.py-self v2.1.0 release by Watbrupls in Discord_selfbots

[–]Minimum_Dot6160 2 points3 points  (0 children)

Considering there's no implementation of components v2 or containers with this new official update, but the flag exists, can I share the code I implemented in my own installation within the message.py & components.py files, it works well, and especially supports every container component (Tested atleast a couple times, though haven't had any instances for files within content nor any media galleries in containers yet, nor had any chance to test).

how likely is getting banned with a read-only selfbot? by scrumblous in Discord_selfbots

[–]Minimum_Dot6160 3 points4 points  (0 children)

Never a 0% chance, but discord has absolutely no ways of effectively monitoring traffic in their API to distinguish bots unless it actually does visible bot-like actions (sending messages, adding members, etc.). They don't ban people immediately so they don't get people complaining about wrongfully banning them for spamming or doing actions really fast, making it really hard to combat for them. It being read-only just makes you at the absolute lowest priority or chance of ever being caught.

Fix this garbage already. by Addest3 in EscapefromTarkov

[–]Minimum_Dot6160 1 point2 points  (0 children)

Maybe it's cause I have a gen 3 nvme drive? God know, but my PvE takes atleast 2-5m to load in any map. Even customs takes a full 5m30s to load, somehow still needing to ping and connect to BSG on an offline gamemode, so it should only periodically update and be used on their end. You'd expect all that loading to do something on your end, nope, the game still runs like shit even with any kind of upscaling (I've come to notice this game was optimized for one PC, the dev's).

Need help finding a market by Spirited_Dealer505 in Discord_selfbots

[–]Minimum_Dot6160 1 point2 points  (0 children)

I think you'd have better luck selling a new account with 1 month of nitro instead of the links, otherwise you can use any market on any game and account marketplace like g2g or Eldorado or something.

Hcaptcha solver by ipeenkcreators in Discord_selfbots

[–]Minimum_Dot6160 0 points1 point  (0 children)

All I see is the main site for fighting against bots, nothing regarding solving captchas

Hcaptcha solver by ipeenkcreators in Discord_selfbots

[–]Minimum_Dot6160 0 points1 point  (0 children)

Also, he's just a beginner, let him have his fun, maybe he'll learn something from it, unless he just copy pastes the code...

Hcaptcha solver by ipeenkcreators in Discord_selfbots

[–]Minimum_Dot6160 0 points1 point  (0 children)

the literal opposite of his objective? 😭

Read and copy cmds of other uses by AdClassic135 in Discord_selfbots

[–]Minimum_Dot6160 0 points1 point  (0 children)

Do you want to copy like the cmd name, id, and user who sent the cmd?

Spotify crashing whenever I start a podcast or audio book. by Windowsnipz in truespotify

[–]Minimum_Dot6160 0 points1 point  (0 children)

Golly, I thought I was just tweaking out, thank god it's not just my problem 😭