- Joined
- Oct 6, 2020
- Messages
- 1,273
- Reaction score
- 3,385
No, not anymore.Are you still in Prague?
No, not anymore.Are you still in Prague?
Will get there, but I like to make smaller goals.Hello I'm in love with your journey can you make another thread with a new goal xD like "Road to 500KK a Month " is achievable if you can add more social medias
Not quite right, competition is huge, bot detection was quite hard as well - it took weeks to find approaches that work on my scale. This same method now successfully works on discord and Instagram. I've finished integrations and need to start scaling them. Last few months I've taken off from my projects and worked on a side project related to youtube that I cannot discuss here. But you are right that it's not wise to depend on a single traffic channel.man, it seems that you have found a social network website, with low competition, and less BOT detection capabilities, and the proof,is that until now, you were not able to replicate the same method successfully using bigger social networks, and that's why if I were you, I would be careful, and start looking for other opportunities, cause no one knows when your traffic resource will stop working for you, as well as this spamming method, good luck
tier 3 for most of the time are excluded from offers but yes, mostly every. 80% of profit comes from US tho
Thank you!I love your journeys and your great success factors.
Keep up the good work!
Christmas holidays were a good increase in traffic by about 30-40% and ended up in a successful week. Now it declined a bit but I never expected anything else from begining of january.Is there any update on this journey since the christmas holidays are over since 1 week everywhere and the traffic may have changed?
I just give blank page if visitors IP comes from tier 3, nothing fancy. I let the smartlink network deal with those who use vpn, not my problem anyways, I just blocked tier 3 so they do not mess with my statistics.How to you filter out visitors from tier 3 countries? I mean they could also use a VPN located at the US and such...
Now working on Discord automation, all major parts cracked now have to scale up.
There is nothing much to tell about it.Thanks for the quick reply.
I would love to read more about your Discord setup. I searched your recent posts but couldn't find much information so far.
Or maybe another journey thread in February or so?
Any update about the new earnings?There is nothing much to tell about it.
To bypass registration captcha I use capmonster solver. wonderful service tbh, you can use selfhosted version for as low as 10$ per month.
Overall Discord is a mix of HTTP requests and Websockets.
Most of the actions - sending DM's, joining servers, accepting friend requests - can be done by executing simple HTTP requests. Some of them require additional security headers to be passed that can be easily decrypted and contain primitive information of what spoofing takes no effort at all. Discord API is easy and self-explanatory but github is full of examples as well.
To get users from the server - WebSockets must be used, that took some hacking and was quite annoying because of how discord does it but nothing of rocket science either.
As I like to build my bots as close as possible to real humans - they must stay online thus all active accounts that is used at the same moment for chatting - uses node threads and its a bit limiting, probably to just blast spam messages - it could be done by just processing HTTP requests but I like to do it fancy.
What else..
- Discord HATES malformed requests, one mistake and it will freak out and throw phone validation request. which is not a big deal as I hooked up some SMS providers and account gets verified in no time.
- When IP changes and the token is expired - Discord will ask for IP to be authorized through an email link even if your cookies is same, so if you want to keep longlivity of your accounts - you need some sort of system to easily receive and parse those emails to get those validations llinks. idk perhaps Im missing something there like some sort of localstorage variables that would allow passing this but as Im not automating browser but building it all pretty raw - this is ok to deal with as I have such system for email processing in place anyways. Perhaps I will look into this problem but its not a big deal.
- Obviously, its recommended to filter out roles that should not be contacted, for now I use a list of bad words['mod', 'admin', 'owner', 'staff', 'developer', 'engineer', 'ceo', 'manager'], if role contains the keyword, the user will be skipped. Another user group I skip is people that have those fancy usernames with premium numbers like ['0000', '1001', '0001', '0002', '1000','1111', '1337 ', '9999', '2222', '3333', '4444', '5555', '6666', '7777', '8888', '9999'] as I automatically assume that they are too veteran to be considered as valuable recepitents for any kind of spam messages. You know, if the man has Hack0rZ#1337 nickname on discord, you probably don't want to spam him, the fucker knows at least how to report button works.
a lot more you can find in @FatBee thread where he answers questions about discord botting.
This is such a nice explanation of how Discord works.There is nothing much to tell about it.
To bypass registration captcha I use capmonster solver. wonderful service tbh, you can use selfhosted version for as low as 10$ per month.
Overall Discord is a mix of HTTP requests and Websockets.
Most of the actions - sending DM's, joining servers, accepting friend requests - can be done by executing simple HTTP requests. Some of them require additional security headers to be passed that can be easily decrypted and contain primitive information of what spoofing takes no effort at all. Discord API is easy and self-explanatory but github is full of examples as well.
To get users from the server - WebSockets must be used, that took some hacking and was quite annoying because of how discord does it but nothing of rocket science either.
As I like to build my bots as close as possible to real humans - they must stay online thus all active accounts that is used at the same moment for chatting - uses node threads and its a bit limiting, probably to just blast spam messages - it could be done by just processing HTTP requests but I like to do it fancy.
What else..
- Discord HATES malformed requests, one mistake and it will freak out and throw phone validation request. which is not a big deal as I hooked up some SMS providers and account gets verified in no time.
- When IP changes and the token is expired - Discord will ask for IP to be authorized through an email link even if your cookies is same, so if you want to keep longlivity of your accounts - you need some sort of system to easily receive and parse those emails to get those validations llinks. idk perhaps Im missing something there like some sort of localstorage variables that would allow passing this but as Im not automating browser but building it all pretty raw - this is ok to deal with as I have such system for email processing in place anyways. Perhaps I will look into this problem but its not a big deal.
- Obviously, its recommended to filter out roles that should not be contacted, for now I use a list of bad words['mod', 'admin', 'owner', 'staff', 'developer', 'engineer', 'ceo', 'manager'], if role contains the keyword, the user will be skipped. Another user group I skip is people that have those fancy usernames with premium numbers like ['0000', '1001', '0001', '0002', '1000','1111', '1337 ', '9999', '2222', '3333', '4444', '5555', '6666', '7777', '8888', '9999'] as I automatically assume that they are too veteran to be considered as valuable recepitents for any kind of spam messages. You know, if the man has Hack0rZ#1337 nickname on discord, you probably don't want to spam him, the fucker knows at least how the report button works.
a lot more you can find in @FatBee thread where he answers questions about discord botting.
what exactly do you mean by way more? what I told is what works for me(and how) and I do not see any underwater rocks, at least for now. scraping users, requesting friendships and chatting with them works, no bans for weeks. running 6 accounts from 1 mobile proxy, havent tried to find the limits yet. probably there will be some issues to deal with larger scale but for now it seems ok.This is such a nice explanation of how Discord works.
However, there is way more 2 it.
And trust me, nobody will just go out and tell every trick of the trade, especially with discord.
Every method, trick, hidden stuff that got told got leaked and patched shortly after.
Yup, it works for you cause you are not pushing the limitswhat exactly do you mean by way more? what I told is what works for me(and how) and I do not see any underwater rocks, at least for now. scraping users, requesting friendships and chatting with them works, no bans for weeks. running 6 accounts from 1 mobile proxy, havent tried to find the limit yet. probably there will be some issues to deal with larger scale but for now it seems ok.
so there is some fun avalable afterallYup, it works for you cause you are not pushing the limits
once you need to test and break the limits and find ways around the issues will become nightmares
Thats the best way to go with discord if you are not going on a scale or SaaSso there is some fun avalable afterallI like to scale horizontally tho, for me its better to do 1 action from 1000 accounts than 1000 actions from 1 account
For now, everything goes in the same pot, when I will have 1k accounts running at the same time and actively advertising - then I will start to track the performance, now its just testing things out and finally finishing what I have started because of discord automation was done about half year ago but I never implemented it in full. same as for Instagram - fully working prototype is ready to be scaled up. I have tendencies to build quick PoC, understand that I can do it and then lose interest, its a big issue that I have to deal with constantly and I plan to fix it this year by finally finishing all started PoCs and scaling up them to the maximum.Any update about the new earnings?
Thanks but what do you mean by budget? the journey was started with a budget of 50$, - 8 for the first domain, 20 for the first dongle, and 20 for VPS server.An Amazing journey to follow, your budget and target is really big.
Every method, trick, hidden stuff that got told got leaked and patched shortly after.