Jump to content
UBot Underground

Search the Community

Showing results for tags 'multithreading'.

  • 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 14 results

  1. Hi everyone, I want to click on submit button in google page after solving captcha images but it fails to click on submit button.I think before solving captcha image i have to run javascript code that is missing and i am using 2captcha services for solving captcha's. plz give any solution i stuck at this point since 2 days. i attach screenshot of that page which i have to solve. Thanks in advance
  2. Hi, I stuck in one point when i make bot in exbrowser in multithread ,how i increment table data in multithreading? Before i usually take data from csv file i used throgh list and in exbrowser i want to take through list it is not working fine in all thread bcz i take almost 7 field to fill it and when try to increment through table data it works fine but take same data in all thread ,i want to increment that csv data which i taken. plz suggest me solution how can i increment data through table cell. Thanks
  3. Hello! I stuck at a point as i usually use shared browser command in ubot inbuilt browser when i want only first time login and after that it pass the cookies in shared browser and am still logged in. And then i can do the rest of stuff like some data inserting and posting without login again and again but am bit confused with exbrowser to do that.I have used save cookies and load cookies command but that not worked. I want to login the site only first time and after that i want to posting data in multi threading how can i used as like shared browser command in exb or anything else like tha
  4. Hi there, I have multithreading working well in my bot, but I'm trying to enhance the functionality to allow for a user to cancel the process before the multithreading completes and having some issues. This is some code from the multithreaded proxy checker part of the bot, as it's the most simple threading, and wanted to get it working first before trying to implement the same enhancements on the main bot process. Approach #1: First i tried changing it from looping through the number of proxies to check to using a loop while #cancelProxyTesting = false, and added a button that sets #canc
  5. Hello All, Been trying to get multi threading working for some time now and have yet to be able to do it. I have watched several videos and tried using several frameworks available on these forums, but still have yet to be able to accomplish what I am looking to do. The main goal of my bot is to login to gmail then click on the spam folder and choose not spam on emails. I need to be able to run multiple threads, with multiple accounts. Each thread would run its own, search phase and login details. Can anyone point me in the right direction? I have tried Code Docta Advanced Threading, and sev
  6. 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),"
  7. 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
  8. Hi Recently i build socket bot, it works good. (single threading) Now i want to make it multithreading. But it always gives me error Object reference not set to an instance of on object What i want to do is socket navigate from a list (more than 100 url) and save each "socket page html" to .txt file. Here is the code clear all data add list to list(%multi,$list from file("C:\\html test\\listURL.txt"),"Delete","Global") set(#row,0,"Global") set(#filename,1,"Global") thread spawn($list total(%multi),4) { launch socket() increment(#row) wait(2) } define launch socket { pl
  9. Hey guys, I have read through a bunch of threads on list/variable scope and multi-threading but still can't figure this out. I have 3 .txt lists (c:\list1.txt, c:\list2.txt, c:\list3.txt) each with 20 items, list1.txt is user1-1 to user1-20, list2.txt is user2-1 to user2-20 and so on... I'm incrementing and passing the IDMARKER variable to the define function so it loads list{IDMARKER}.txt each time the function is called which seems to be working correctly, however when i return the list %templist from the function to the main body of the bot it either overwrites the existing %locallilst
  10. I have no idea how to mulithread wtih Aymen's plugin! I've got $http post and $http get down, and it would help me a lot if I could multithread my bots. Does anyone know of any tutorial threads out there? I tried searching, but I didn't find any for Aymen's http plugin. If you don't have an idea, do you have a bot that you could share the layout of? Paste the code or something so the structure can be seen. Thank you If I learn, i'll do my best to share another tutorial
  11. Hello! Can you please help me guys with this code. The threads remain open and bot dosent stop or close threads when the list total is reached. create table from file("{$special folder("Application")}/table.csv", &table) add list to list($plugin function("TableCommands.dll", "$list from table", &table, "Column", 2), %url, "Delete", "Global") loop(5) { thread { in shared browser { loop($list total(%url)) { } } } }
  12. Hello , I have some doubts related to multi threading-- could Some advanced user who understands multi threading well.. please take a look and let me know if my logic is correct or not? Thanks a lot. How do I save data from inside of a thread -in a multi threading scenario..? Below I have written down what I think should be the right way to go about saving data from inside of a thread which uses local list and variables to process data - Could you please tell me if my logic is correct or not? --------------------------------------------------------------------------------------------------
  13. please have a lokk at the code that i am trying to implement, I want to have different proxies in different browsers please advice where i am missing something or where my code is wrong define Ini threading { if($comparison($list total(%Proxy List), "<", #JobsCount)) { then { alert("The Proxies are loaded Less then Jobs to do") stop script } else { } } increment(#numCount) increment(#Tcount) Rutine to thread() increment(#Proxy List Counter) } define Rutine to thread { thread { in new browser {
  14. Hi, I was thinking to have a different proxies so that i can speed up the account creation in each browser. Is that possible using HMA VPN. I think it is not but just want to know if it is? Also i want to know a method to do different proxies in different browser when multi threading. And also Please Tell me tables or list which one is the best for multithreading? I generally use tables. Thanks in advance Utsav
×
×
  • Create New...