Jump to content
UBot Underground

Use a CSV Source to create multiple account Simultaneously


Recommended Posts

Hi

 

I'm trying to write a script that will create several accounts in parallel. The data is created in a CSV file, and I want ubot to use one row per thread. My code isn't quite working however (the row off set variable doesn't increment for each thread, but stays at the same value for all threads, so the same row is used on each thread), could someone point me in the right direction please? Here is an example of what I have thus far:

 

ui open file("File", #file)

create table from file(#file, &database)

set(#rownumber, 0, "Global")

loop($table total rows(&database)) {

thread {

in new browser {

set(#thisrownumber, #rownumber, "Local")

increment(#rownumber)

navigate("http://ausi.mail.everyone.net/email/scripts/serviceMenu.pl?user=new&EV1=13315611512215007", "Wait")

wait(1)

click(<create account link>, "Left Click", "Yes")

wait(3)

type text(<username field>, $table cell(&database, #thisrownumber, 0), "Standard")

Link to post
Share on other sites

Well I am no sure I understand but have you try list and then add list as a row

 

I'm after the opposite really, make a list from a row or column in the CSV file, save it to a unique variable, and then run the same signups on multiple accounts simultaneously. Does that make sense?

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