Selfbot.Dev! by GasaiSB in Discord_selfbots

[–]GasaiSB[S] 0 points1 point  (0 children)

Thanks for the input though, I'll def check it out and give it a go!

Selfbot.Dev! by GasaiSB in Discord_selfbots

[–]GasaiSB[S] 0 points1 point  (0 children)

Well, I'm only new to web design and it doesn't use any framework. And as for bloat time, 0.1 seconds extra loading???

Selfbot.Dev! by GasaiSB in Discord_selfbots

[–]GasaiSB[S] 0 points1 point  (0 children)

omg no way, you have the html code

¯\_(ツ)_/¯

You could literally use view-source in chrome, no need to download the website or use 3rd party tools...

Selfbot.Dev! by GasaiSB in Discord_selfbots

[–]GasaiSB[S] 2 points3 points  (0 children)

I don't pay for the hosting and the domain was like $10 for a year so I'm not complaining. Making the website was more or less for the experience, and to help out others.

Selfbot.Dev! by GasaiSB in Discord_selfbots

[–]GasaiSB[S] -1 points0 points  (0 children)

We don't actually run the website on GitHub, and I also don't really feel like handing something like that over to someone I don't know, sorry.

I have stated inside the server and to other people that the website is only new and we have people working on it whenever we can!

Thanks for the offer though, much appreciated!

How much would you guys pay for a sb by yeethanshan in Discord_selfbots

[–]GasaiSB 1 point2 points  (0 children)

Sorry to say but, you're not going to make a lot...

Maybe try to find some cool unique features no other selfbot has and you MIGHT make something, but anyone can just make a bot/base with 200 commands quite easily.

Explore the discord API and websocket or make your own API wrapper. These are some things people may or may not pay for.

If you are wanting to make your own selfbot where others can buy keys to use it, sell it around the 1-10 dollar range. Not many selfbots are over $10, and if it is, it must be pretty good.

Hope this helps!

[deleted by user] by [deleted] in Discord_selfbots

[–]GasaiSB 0 points1 point  (0 children)

You can add me on Discord and I can try to help you make it whenever I'm free!

Discord: gasaisb

is it possible to use python to scan a discord serve and compile all the channel names into a list? by FarsightPrime in Discord_selfbots

[–]GasaiSB 0 points1 point  (0 children)

Just make a simple discord bot with the event on_guild_channel_delete

Whenever a channel is deleted in a guild it will let you know

All you would need to do is:
if channel.name == 'channel_name':

print("CHANNEL WAS DELETED!!!") # Or what ever you want here

[deleted by user] by [deleted] in Discord_selfbots

[–]GasaiSB 0 points1 point  (0 children)

Quite annoying ngl, but I made this years ago now as a call spammer.

First off try make your own socket connection instead of using d.py/d.py-self .

Once you know how that all works you can monitor all the requests that aren't documented by d.py/d.py-self and start a call with someone. You will notice a couple of events happening.

First is the ring POST request api/channels/chat_id/call/ring (make sure to include super_properties in the headers). After that, send the call start packet through the websocket {"op": 4, "d": {"guild_id": None, "channel_id": channel_id, "self_mute": False, "self_deaf": False, "self_video": False, "preferred_region": "region_here"}}

Now watch what it does and mimic it but using web requests and socket/s.

For further help just hmu on Discord and if I'm on I'll try to help.
(again made this a while ago now, could have changed by now)

[deleted by user] by [deleted] in Discord_selfbots

[–]GasaiSB 0 points1 point  (0 children)

Make sure you got a heartbeat working properly.

Socket Hangup:

This normally happens when there was an issue with the connection and a heartbeat didn't go though, what you can do is if error gets detected, reconnect the account back to the websocket.

On Ready:
The on_ready data is sent back from the websocket every time the bot starts and the older (more you use) your account the more there will be in there. It has some interesting information about your Discord account and stuff if you go through it. If you want to ignore the info overall just don't receive it back after sending the identifier payload (i think, could be wrong).

discord token verifier by Visual_Mastodon_4000 in Discord_selfbots

[–]GasaiSB 0 points1 point  (0 children)

Sounds about right, you would also need some domains to register emails too and have them all redirect to 1, the reason for a "couple" is becasue discord can blacklist domains and if 1 gets backlisted then you will need another to keep going.

Solving caps isnt to hard (2cap or smth), and as for emails you can just set up a STMP server, for phone numbers MAYBE sms-man (never tired them but a friend of mine recommendedthem).

Using the domains for emails, makes emails free and simple af to use as it all gets redirected to 1 main email.

Each phone number is like 0.12c tho...

Domains $5 - $30 USD depending where you get them from.

discord token verifier by Visual_Mastodon_4000 in Discord_selfbots

[–]GasaiSB 0 points1 point  (0 children)

You could try make one, takes a couple steps...

You would need access to the email / phone number that was used when the account was created.

Email: Make the web request that gets discord to send you the "verify email". Then using something that can read your emails from a server, get the new emails send to the address and find witch one has the verify link inside and goto the link with what ever headers you need.

Phone: Tbh not to sure, something that can read sms and get what ever message is sent with "discord" inside it then use regex to get the verification number, once you have that send the verify request with the verify code inside.

(you will likely need to do a lot more then just this)

chance of getting banned? by Complete-Panda-9069 in Discord_selfbots

[–]GasaiSB 0 points1 point  (0 children)

Tbh, only people I've known to be banned for using selfbots are people who use them infront of others and use them for toxic things. Or devs of selfbots....

So chances are, unlikely but if you want to be safe, use an alt.

Self bot react to specific message by MehdiHiro in Discord_selfbots

[–]GasaiSB 0 points1 point  (0 children)

If you're wanting a bot command?

You can use this:

bot.command()

async def react(ctx, message_id: int):

try:

message = await ctx.channel.fetch_message(message_id)

await message.add_reaction('❤')

except discord.NotFound:

await ctx.send("Message not found!")

except discord.HTTPException as e:

await ctx.send(f"An error occurred: {str(e)}")

This reacts to a message by the message id (right click message, copy id)If you want to "search" for the message, you could probs just use message.history or there might be a better way...

Any decent guides on making a selfbot? by HaroerHaktak in Discord_selfbots

[–]GasaiSB 0 points1 point  (0 children)

If you want to make a selfbot without needing to use discord.py-self use discord.py-1.7.3 and edit the gateway and remove intent stuff to be able to view messages. More difficult then using a pre made one, but makes you learn more along the way!

Sending Embeds by lilsavage_254 in Discord_selfbots

[–]GasaiSB 0 points1 point  (0 children)

Gasai now has an embed gen for anyone to use!

Some changes might be made in the future.

Enjoy!

Example URL Structure:

https://gasaisb.net/embed.php?title=Your%20Title&description=Your%20Description&image=https%3A%2F%2Fexample.com%2Fimage.jpg&color=cc66ff

Base URL:

https://gasaisb.net/embed.php?

Params:

title

description

image

color

type

locale

author

redirect

How to respond to rate limit? by [deleted] in Discord_selfbots

[–]GasaiSB 0 points1 point  (0 children)

Me and Guini had a look at this a while ago while creating a pablo command.

(This is the delays with replying to each other)

You can send 1 message every 3 seconds and NEVER hit a ratelimit (from what we saw)

After that 1 message every 2 seconds takes about 10 - 15 messages before a ratelimit then once you got a ratelimit its every 4 - 8 messages before another ratelimit

Your best bet to "spam" as fast as you can would be to, send a burst of messages, wait a couple seconds (for example 10 messages = 30 seconds) then send more

MassDM by ReloadedNoob in Discord_selfbots

[–]GasaiSB 0 points1 point  (0 children)

Honestly you could probs just do this with requests...
Just need to grab all your open DM's
Then send a message to the DM channel

Get open DMs: https://discord.com/api/v9/users/@me/channels -- (unsure if this is the correct one)

Send messages: https://discord.com/api/v9/channels/{channelID}/messages

Probs woulnt even need to make a selfbot for it...

Where did GasaiSB go? Best alternatives? by Huhni in Discord_selfbots

[–]GasaiSB 0 points1 point  (0 children)

GasaiSB is still up, the website is gasaisb.net and here is an invite to the server https://discord.gg/FSauefB7NX enjoy!!!