Discord Dm Bots,Get easy members for just 50$

Status
This thread has been locked.

Faker

Banned
Feedback score
-1
Posts
34
Reactions
3
Resources
0
Yes, my bots work. That's the prime question these days.

My bots bypass phone verification, and DM rate limits.

If you'd like to buy my bot,please add me in discord Senpai#1414

Because of my bots, I get over 1,000+ members a day. Also The cost is 50$. Its a script,you can use it on as many accounts as u want after you buy the script from me for 50$. It can be used infinitely amount of times. Dm me if Interested,Also i got proof.


Don't buy from User called Bubble#6366
Check the screenshot i have uploaded with this post. I haven't given him resell rights. Don't buy it off him
 

Attachments

  • buble reseller.jpg
    buble reseller.jpg
    115 KB · Views: 36
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

Harry

Rustacean
Management
Feedback score
10
Posts
1,607
Reactions
876
Resources
0
This 'script' is not worth anything near $50, as it literally takes 5-10 minutes to code.

Also, there's no way to bypass the rate limiting. Of course, you could simply not reach the limit, so you aren't rate limited, but this isn't bypassing it.

Not sure what you mean by bypassing phone verification, as this is a DM bot, not messaging within a server?

Edit: Also, stop creating multiple threads. This is like the forth I've seen of this...
 
Last edited:

Faker

Banned
Feedback score
-1
Posts
34
Reactions
3
Resources
0
This 'script' is not worth anything near $50, as it literally takes 5-10 minutes to code.

Also, there's no way to bypass the rate limiting. Of course, you could simply not reach the limit, so you aren't rate limited, but this isn't bypassing it.

Not sure what you mean by bypassing phone verification, as this is a DM bot, not messaging within a server?
I really suggest to keep quite if you really don't know tbh. Can u show mr a script which takes 10min to make? Also i want u to see my script and tell how many days would it take to make?
 
Banned forever. Reason: Creating Multiple Accounts (Halo Man, https://builtbybit.com/members/halo-man.141173/)

Harry

Rustacean
Management
Feedback score
10
Posts
1,607
Reactions
876
Resources
0
I really suggest to keep quite if you really don't know tbh. Can u show mr a script which takes 10min to make? Also i want u to see my script and tell how many days would it take to make?
You haven't posted any code snippets etc, and from what you described, it isn't complicated. You don't need to bypass phone verification for a simple DM...

Below is a simple bit of code in java to get all members/users in every guild you're in, and then DM them with a certain message and a set delay. It's pretty simple and can be improved with an executor service etc.

From what you've described, and haven't shown, it isn't anything more than this. Yes, you could improve it with a UI etc, but there's no need and doesn't make a bot such as this worth $50.

Code:
public void getAllMembers() {
    for (Guild guild : jda.getGuilds()) {
        for (Member member : guild.getMembers())
               users.add(member.getUser());
        }
    }
}

public void startSending(String content, int waitLength, List<User> users) {
        for (User user : users) {
            user.openPrivateChannel().queue((channel) ->
            {
                channel.sendMessage(content).queue();
            });
       
            try {
                Thread.currentThread().wait(waitLength);
            } catch (InterruptedException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
    }
 
Last edited:

Foot

Restricted
Feedback score
0
Posts
54
Reactions
8
Resources
0
Devouch
This dosen't take any effort to make
 

Harry

Rustacean
Management
Feedback score
10
Posts
1,607
Reactions
876
Resources
0
I really suggest to keep quite if you really don't know tbh. Can u show mr a script which takes 10min to make? Also i want u to see my script and tell how many days would it take to make?
Might as well post the full thing, not just the main part of it. Could I ask what's so different that makes it worth $50 because as I've already said, you haven't described any differences?

https://gitlab.com/Majored/discord-massdm/tree/v1/
 
Status
This thread has been locked.
Top