Jump to content
UBot Underground

Recommended Posts

hello i want to make a email creator for zoho.eu

 

navigate("https://www.zoho.eu/mail/","Wait")
reset account("Any")
change checkbox(<id="personal">,"Checked")
type text(<username field>,$account data("Username"),"Standard")
type text(<password field>,$account data("Password"),"Standard")
type text(<first name field>,$account data("First Name"),"Standard")
type text(<last name field>,$account data("Last Name"),"Standard")
change checkbox(<name="tos">,"Checked")
type text($element offset(<email field>,0),$account data("Email"),"Standard")
click(<create account button>,"Left Click","No")

 

thats the script             but i need help to save the dates               would be good it can save 3 times 

 

1 time username / pw    2 time username  3 time pw          

 

 

if someone can help me pls 

Link to post
Share on other sites
navigate("https://www.zoho.eu/mail/","Wait")
clear list(%Accounts)
reset account("Any")
change checkbox(<id="personal">,"Checked")
type text(<username field>,$account data("Username"),"Standard")
type text(<password field>,$account data("Password"),"Standard")
type text(<first name field>,$account data("First Name"),"Standard")
type text(<last name field>,$account data("Last Name"),"Standard")
change checkbox(<name="tos">,"Checked")
type text($element offset(<email field>,0),$account data("Email"),"Standard")
add item to list(%Accounts,"{$account data("Username")},{$account data("Password")},{$account data("First Name")},{$account data("Last Name")},{$account data("Email")}","Don\'t Delete","Global")
click(<create account button>,"Left Click","No")
save to file("{$special folder("Desktop")}\\accounts.txt",%Accounts)

i think thats what you are looking for

Link to post
Share on other sites
add item to list(%Accounts,"{$account data("Username")},{$account data("Password")},{$account data("First Name")},{$account data("Last Name")},{$account data("Username")}@zoho.eu","Don\'t Delete","Global")

just edit the add to list

Link to post
Share on other sites

it works now but on the txt file it only saves the last email it dont   makes a list with more then 1 account . it generates the accounts but only save the last account :-/ 

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