Jump to content
UBot Underground

Recommended Posts

Hi i am trying to create a bot to login to a game and create accounts. It requires an email address that doesnt have to be real and a password.

I wanted to start for example with the email address "a1@mail.com" and then the password to be the same everytime. The only thing i want to change every time is the number after the a "a#@mail.com" so it would go to a2@mail.com and stop at 100. The first problem i am facing is the @ symbol that is not recognized on the html page and it gives me an output of "2". The second problem i have is that i have no idea how to make the bot to autogenerate the email adresses and input the same password.

If anybody can help me please do because i am lost :(.

Thank you and i hope i explained my problem clearly.

 

 

 

*****************************************************************************************************************

SOS I HOPE YOU READ THIS

It wont let me reply for some reason.

 

The webpage is 149.evony.com and after you login i wanted to see if lets say the email address is (a1@mail.com) if its possible to have the user name "a1" and if it can pick a state to port. I am really lost and thank you so much for your quick reply

 

**************************************************************************

 

Sorry for editing this thread again but i dont know how to reply i get an error whenver i try too.

 

The code doesnt seem to work for some reason and i am running the pro version :(

and i cant open the file.ubot form: evony account creator.ubot (835bytes)

i get an error message again

Please help

Edited by nicole
Link to post
Share on other sites

Hello Nicole,

 

Here is a little code to get you started:

 

ui text box("Number Accounts to Create", #accounts)

ui text box("password", #password)

ui save file("Save Accounts", #accountinfo)

loop(#accounts) {

reset account("Any")

navigate("http://user.evony.com/index.do?PageModule=UsersAccountSecurity", "Wait")

click($element offset(<login link>, 0), "Left Click", "No")

wait for element(<innertext="Confirm password: ">, "", "Appear")

change attribute($element offset(<username field>, 1), "value", $account data("Email"))

change attribute($element offset(<password field>, 1), "value", #password)

change attribute($element offset(<password field>, 2), "value", #password)

click(<src="Dhtml/images/NewThemes/regplay.gif">, "Left Click", "No")

wait for element(<id="flash_client_frame">, "", "Appear")

add item to list(%accounts, "{$account data("Email")},{#password}", "Delete", "Global")

save to file(#accountinfo, %accounts)

}

 

 

Enter in how many accounts you need created, choose a place to save them, and set your password. It's just a really basic start that you can customize however.

 

Just noticed your using standard version, so here it is in .ubot form:

evony account creator.ubot

 

HTH,

Justin

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...