emilix85 0 Posted April 13, 2013 Report Share Posted April 13, 2013 Hi guys i have a list of 10 email and password in a txt file (username@hotmail.com,password)the program must enter in a box a different mail whenever the bot restart the process: Run>>>Type text: "select email in line1" >>>end processRun>>>Type text: "select email in line2" >>>end processRun>>>Type text: "select email in line3" >>>end process Whenthe bot use all email the "loop" finish. How do it? Quote Link to post Share on other sites
merkaba 36 Posted April 13, 2013 Report Share Posted April 13, 2013 create table from file("Location of your file", &emails) set(#row, 0, "Global") loop($table total rows(&emails)) { set(#email, $table cell(&emails, #row, 0), "Global") set(#password, $table cell(&emails, #row, 1), "Global") increment(#row) } Something along those lines 1 Quote Link to post Share on other sites
gavind 6 Posted April 13, 2013 Report Share Posted April 13, 2013 Thanks. By the way, whuch file is it that we're suppose to edit? Quote Link to post Share on other sites
merkaba 36 Posted April 13, 2013 Report Share Posted April 13, 2013 Thanks. By the way, whuch file is it that we're suppose to edit? If you mean 'Location of your file', it just means where ever your email/password file is (alternative, ui open file and set that variable in place of 'location of your file'). All this does is change it into a table and makes it where you can just enter your required actions per account (between last set command and increment row). Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.