Vinyzu / DiscordGenerator

Dislock, the most advanced Discord Browser Generator. Powered by hCaptcha Solving AI.
GNU General Public License v3.0
214 stars 55 forks source link

Discord token login #4

Closed hoangthangbk51 closed 2 years ago

hoangthangbk51 commented 2 years ago

Please suport for discord token login . Thanks for nice project .

Vinyzu commented 2 years ago

It is already code up. (You can see i commented out at the end of the Generator Class) I wonder ehy you would want to use it tho? (You wouldnt be able to do anything with it)

hoangthangbk51 commented 2 years ago

It is already code up. (You can see i commented out at the end of the Generator Class) I wonder ehy you would want to use it tho? (You wouldnt be able to do anything with it)

Thanks for your reply. Im a amateur program . and would like to learn how to web automation. I was try some project with captcha slover . But your project very smooth. Somthing i want to do also is sent data from txt and from line by line not on random data. Do you give me some suggestions. This is Multithreading and very new to me .Thanks for support. .

Vinyzu commented 2 years ago

Sorry, i couldnt 100% understand your comment 😅. (For example what you mean with the line from line reading and "execution"?) But i would recommend you to start with selenium, because its easier to learn and had a larger community/more code to work/lean on.

hoangthangbk51 commented 2 years ago

Hi. What i mean is if you have the "proxy.txt" file . And i would like to use : thread1 use proxy on line number 1 on the "proxy.txt" Thread2 use proxy on line number 2 on the "proxy.txt"

Something like that. Thanks you so much.

Vinyzu commented 2 years ago

Yes, thats possible of course

hoangthangbk51 commented 2 years ago

Can you give me some samples code . Thanks . Im stuck on that now.

Vinyzu commented 2 years ago

Well, it depends on the code ur working with already ofc. in my code, it would look something like

while True:
        threadz = []
        for _ in range(threads):
            proxy = proxies[_] # See the edit here
            threadz.append(Generator().initialize(
                proxy, mode, output_file, email, humanize))

        await asyncio.gather(*threadz)
        await asyncio.sleep(2)

However, ill close this issue with this, because this is not a coding helping/learning platform.