Jump to content
UBot Underground

MT - Yahoo Account Creater Problem


Recommended Posts

Hello,

 

I have a problem by the creation of a yahoo account creator with multi threading.

 

By the attached bot, ubot works with 8 browser windows but use the same account details in all windows. Also it doesnt click on the "create account" button.

 

Any ideas?

yahoo u4.ubot

Link to post
Share on other sites

Here is the code:

 

clear list(%accounts)
loop(8) {
   reset account("Any")
   thread {
       in new browser {
           clear cookies
           reset account("Any")
           navigate("http://de.yahoo.com/?p=us", "Wait")
           click(<innertext="Registrieren">, "Left Click", "No")
           wait for browser event("Everything Loaded", "")
           wait for element(<id="disclaimer">, "", "Appear")
           type text(<first name field>, $account data("First Name"), "Standard")
           type text(<name="secondname">, $account data("Last Name"), "Standard")
           change dropdown(<sex dropdown>, 1)
           type text(<name="dd">, $account data("Birth Day"), "Standard")
           change dropdown(<name="mm">, "Random")
           type text(<name="yyyy">, $account data("Birth Year"), "Standard")
           type text(<name="postalcode">, $account data("Zip Code"), "Standard")
           type text(<name="yahooid">, $account data("Username"), "Standard")
           type text($element offset(<password field>, 0), $account data("Password"), "Standard")
           type text($element offset(<password field>, 1), $account data("Password"), "Standard")
           change dropdown(<name="secquestion">, 1)
           type text(<name="secquestionanswer">, "Bernhart", "Standard")
           change dropdown(<name="secquestion2">, 1)
           type text(<name="secquestionanswer2">, "Schmitz", "Standard")
           type text(<name="captchaAnswer">, $solve captcha($element offset(<id="captchaV5ClassicCaptchaImg">, 0)), "Standard")
           click(<name="IAgreeBtn">, "Left Click", "No")
           wait(10)
           add item to list(%accounts, "{$page scrape("</span><span class=\"value\">", ".de")}.de;{$account data("Username")}", "Delete", "Global")
       }
   }
}
wait(45)
save to file("{$special folder("Desktop")}\\accounts.txt", %accounts)

 

Praney

Link to post
Share on other sites

Sorry my bad maybe I put the command in the wrong place.

Try this:

 

clear list(%accounts)
loop(8) {
   thread {
       in new browser {
           reset account("Any")
           clear cookies
           reset account("Any")
           navigate("http://de.yahoo.com/?p=us", "Wait")
           click(<innertext="Registrieren">, "Left Click", "No")
           wait for browser event("Everything Loaded", "")
           wait for element(<id="disclaimer">, "", "Appear")
           type text(<first name field>, $account data("First Name"), "Standard")
           type text(<name="secondname">, $account data("Last Name"), "Standard")
           change dropdown(<sex dropdown>, 1)
           type text(<name="dd">, $account data("Birth Day"), "Standard")
           change dropdown(<name="mm">, "Random")
           type text(<name="yyyy">, $account data("Birth Year"), "Standard")
           type text(<name="postalcode">, $account data("Zip Code"), "Standard")
           type text(<name="yahooid">, $account data("Username"), "Standard")
           type text($element offset(<password field>, 0), $account data("Password"), "Standard")
           type text($element offset(<password field>, 1), $account data("Password"), "Standard")
           change dropdown(<name="secquestion">, 1)
           type text(<name="secquestionanswer">, "Bernhart", "Standard")
           change dropdown(<name="secquestion2">, 1)
           type text(<name="secquestionanswer2">, "Schmitz", "Standard")
           type text(<name="captchaAnswer">, $solve captcha($element offset(<id="captchaV5ClassicCaptchaImg">, 0)), "Standard")
           click(<name="IAgreeBtn">, "Left Click", "No")
           wait(10)
           add item to list(%accounts, "{$page scrape("</span><span class=\"value\">", ".de")}.de;{$account data("Username")}", "Delete", "Global")
       }
   }
}
wait(45)
save to file("{$special folder("Desktop")}\\accounts.txt", %accounts)

Link to post
Share on other sites

I have also try out this code. It's the same error. You can check it if you click though the browser windows in the sidebar. From the logical your codes and my code should work. So I think its a bug in ubot.

Link to post
Share on other sites

I have also try out this code. It's the same error. You can check it if you click though the browser windows in the sidebar. From the logical your codes and my code should work. So I think its a bug in ubot.

 

This could be considered a bug, $account data is shared across your entire script at the moment.

 

Would you like it to be separate per browser? Would you like it to be separate per custom command? Let me know how you expect it to work :).

Link to post
Share on other sites

Instead of a single thread account creator for yahoo I want to create a multithreaded bot.

 

So in each thread/seperate browser it must be possible to use new account details which are only local in the thread/browser.

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...