Jump to content
UBot Underground

affilategod

Fellow UBotter
  • Content Count

    14
  • Joined

  • Last visited

Community Reputation

0 Neutral

About affilategod

  • Rank
    Member

Profile Information

  • Gender
    Not Telling

System Specs

  • OS
    Windows 8
  • Total Memory
    2Gb
  • Framework
    v3.5
  • License
    Professional Edition

Recent Profile Visitors

1165 profile views
  1. exactly what I was looking for. Thank you! How woeorduld I reorganize the list so that each word is on a seperate line, so that it's a verticle list?
  2. Instead of deleting the duplicates in a txt file, I would like to display them. I'm trying to extract the duplicates to compare txt files. Any ideas of how to do this with ubot 4? Any help would be appreciated!
  3. Okay, so my strategy worked with an idea influenced by you! Thank you This is what I did. Lets say you want multiple threads with the same exact loop in it, but want your variables to work in their specific thread alone without having to have separate threads with renamed variables. Define command[named command] loop[number] Script here(make sure to set all variables and/or lists to local) Loop[Number] thread in new browser [named command]
  4. I just bought the program. Is there a way to use 4?
  5. Thanks for the reply. I'm trying to copy paste your code into ubot to get a better visual, but every time I copy paste the code and switch to node view, I get "assertion failed". Then ubot closes. Also, would this give each thread the same variables, but with unique names? For example: Thread 1 Set Variable A1 Set Variable B1 Thread 2 Set Variable A2 Set Variable B2 Thread 3 Set Variable A3 Set Variable B3 etc The reason I need them to have different name is because some of the variables scrape the html for an ID that changes every time a thread loops and this ID is needed to per
  6. I need multiple threads that perform the same exact loop. The only difference is that each loop needs its own unique variable names so that they do not interfere with each other. Took me 12 hours to figure out this problem by the way -.- I know that generally setting up multiple threads would be like this: Loop # thread Loop# Script but, this duplicates it exactly and I don't have the ability to put variables in variable names to increment the id's by 1 each time. I really want to be able to give the user the ability to choose the amount of threads he/she would want running at once, but
  7. I'm not really getting how this define function/command and return command works. Lets say my code is something like this Main thread: loop 9999 do action if b = 1 then stop and re-loop else continue do action if b = 1 then stop and re-loop else continue etc Monitor thread loop 9999 do action scrape word set a to scraped word if var a = this then do action set var b = 1 wait 15 seconds else continue This is what I am trying to accomplish.
  8. I have my bot open X amount of threads. I have an if then statement if a certain element appears. I want the loop to stop if the if statement is true, instead of continueing the rest of the loop, then re-loop. Is this possible?
  9. ui text box("Number of browsers?", #browsers) ui open file("Proxies", #uproxies) ui open file("Topics", #utopics) ui open file("Response1", #uresponse1) ui open file("Response2", #uresponse2) ui open file("Response3", #uresponse3) ui open file("Wait1", #uwait1) ui open file("wait2", #uwait2) ui open file("wait3", #uwait3) set(#chats, 0, "Global") loop(#browsers) { thread { loop(9999) { in new browser { add list to list(%proxies, $list from file(#uproxies), "Don\'t Delete", "Global") add list to list(%topics, $list from file(#utopics), "Do
  10. I can't find a thread with the search function on this. When I open my ubot which is 1 fairly simple loop, 4 browsers open up. Is this suppose to happen?
  11. I set up my bot to rotate through a proxy list randomly with the Random List Item feature. My purpose was to avoid creating a pattern just incase the website I'm automating has a filter that can pick up on patterns. Well, every time I open my bot, it runs the same pattern of proxies. Is there any way to make what I'm trying to do completely random? This is how I do it. Create List from List -%test -List from file .txt file 1 2 3 Set Variable -#test -Random List Item --%test ui stat monitor -#test Please and Thank you
  12. I'm having the same problem with $random list item.
×
×
  • Create New...