Jump to content
UBot Underground

Search the Community

Showing results for tags 'thread spawn'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Announcements and News
    • Join the UBot Community
  • General
    • General Discussion
    • Mac and UBot Studio
    • Journeys
    • Buy, Sell, Free
    • Scripting

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 5 results

  1. Hello I am using thread spawn command but it uses same accounts in each thread. Here is my code:- ui open file("browse",#uiopen csv) ui stat monitor("Loop counter",#row) ui text box("Link",#websitelink) create table from file(#uiopen csv,&csvtable) set(#row,0,"Global") thread spawn($table total rows(&csvtable),5) { in new browser { allow images("No") navigate("#websitelink","Wait") wait for browser event("Everything Loaded",10) wait for element(<email field>,10,"Appear") type text(<email field>,$table cell(&csvtable,#row,0),"
  2. Hello to all I am getting a little frustrated, and wondered if someone can confirm is working or not?! Ubot 4 and normal multithread is fine and working for me. Ubot 4 and Smart Threading is also working fine. Now I want to move to Ubot 5, mainly due to the fact it is faster to work with.... Up until now I have been writing bots in Ubot 5, and moving code to ubot 4 after written most code... So with the new Spawn Thread thought would do some testing... And testing not too good There is no designated thread ID, meaning can not control the threads properly Setting thread ID within t
  3. Ok so im having a big issue, ive been trying to use thread spawn to make accounts but when i use the account data to generate usernames, passwords, emails it uses the same info on each thread, ive also tried changing it to local instead of global but no luck, even used account reset but maybe im placing it in the wrong position idk, but what i am trying to do is make a simple account creator with the account data parameters via thread spawn. Ive been stuck on this for hours now and its driving me crazy!!!!!!!!!
  4. HI All, This is the first time I ask to ubot community. my bot is feeding a lot of url from mysql, do filtering and mark it as DONE in mysql. plugin command("DatabaseCommands.dll", "connect to database", "server=127.0.0.1;uid=myid; pwd=mypass; database=mydb; port=3306; pooling=false") { plugin command("DatabaseCommands.dll", "query with results", "SELECT * FROM table_name WHERE status = \'\';", &my_table) } loop while($comparison($table total rows(&my_table),"> Greater than",0)) { set(#id,$table cell(&my_table,0,0),"Global") navigate($table cell(&my_table,0,1),
  5. Hi there, I am wondering what everyone else is doing to cycle through rows of a table with the new thread spawn command? For instance, if you have a table which has a username and password. How are you handling this with the Thread Spawn command? It's not clear to me how the command works behind the scenes to know when to increment the #position variable for table rows. Any insight anyone can offer would be great. Thanks, Cnotey
×
×
  • Create New...