Jump to content
UBot Underground

daveconor

Members
  • Content Count

    47
  • Joined

  • Last visited

Community Reputation

1 Neutral

About daveconor

  • Rank
    Advanced Member
  • Birthday 01/01/1980

Profile Information

  • Gender
    Male

Contact Methods

  • Skype
    Dave.Coner

System Specs

  • OS
    Windows 8
  • Total Memory
    More Than 9Gb
  • Framework
    v3.5
  • License
    Professional Edition

Recent Profile Visitors

2688 profile views
  1. Hi fellas, I'm trying to scrape a list of websites for a specific word, say "test drive" for example. Is it possible for ubot to extract a particular's site home page html code without having to go there and then scrape the <body> tag which takes a relatively long time. thank in advance
  2. Trying to scrape text that appears between an <address> and </address> but when I use <address>.*</address> it finds the text and duplicates it into another line below. I tested it with another tag "</a>" and it does the same thing, seems like it only duplicates it when I use tags, is it the brackets that throw it off? thanks in advance
  3. I believe this code would create a dynamic table but what I am trying to do is determine the actual name of the list dynamically, not its content. Im getting the feeling its not possible though.
  4. We are in need of a uBot developer, must be at least intermediate level (beginners please do not waste my time) Please send a PM with the following details: - Skype ID - Experience with uBot (years/months) - Rate / Hour - When can you start?
  5. Here is what Im trying to do: add list to list(%GET THE NAME FROM A VARIABLE, $plugin function("TableCommands.dll", "$list from table", &data, "Column", #column number), "Don\'t Delete", "Global") Why: I want to create 10 lists from 1 CSV file but there are certain commands I use on all columns: Add list to list set lists position clear list the set variable to the first list item If I could choose the name of the list from a variable that would be set from another list I could then just loop everything Im open to ideas, thanks
  6. Trying to figure out how to increment ex: 35.66 to 35.67 Thanks, hope I'm not asking much
  7. Im trying to have four buttons each controlling the pausing and unpausing of a particular open thread. Here's what I've got so far: Using 4 threads Each ui button has a different variable for pause: #pause1, #pause2, #pause3, #pause4 There is a thread counter that assigns each thread a number ( 1 - 4 and then resets back to one ) which is then set locally within the thread, with that I set that thread to work with its corresponding #pause number and button. if($comparison(#thread number, "=", 1)) { then { loop while($comparison(#pause1, "=", "Pause")
  8. I created a new CSV file and still got the extra line, used notepad++ and it was fine. I just don't get why it does that. Update: used notepad++ to open the CSV file and yea theres the empty line, excel...
  9. Should have seen it coming, Doh But still I wanted to know if else could be removed when not needed which you answered yes, thanks.
  10. Thanks for enlightening us on this ubotdev, got a question about IFs, isnt the else part of it mostly redundant, I mean the bot is just going to do the same thing with both examples of code: if($both($exists(<innertext="Somthing1">), $exists(<innertext="Somthing2">))) { then { alert("Tada!") } else { alert("Oops") } OR if($both($exists(<innertext="Somthing1">), $exists(<innertext="Somthing2">))) { then { alert("Tada!") } alert("Oops") and then it would just continue with the next l
  11. I'm fairly new to coding, around 4 months. I was wondering if its justified to add fail guards along the way as the bot runs through the code, just an example: Say I want to log into a site, is it too much to add a safe guard that would check for successful log in and so forth with every major step after that. thanks for sharing your wisdom
  12. Thanks TJ for the quick reply, what if I want to be able to pause and unpause 4 threads independently using 4 x 2 (one pause one unpause) different buttons each with a pushed variable value from the thread as the buttons name, is it possible?
  13. I'm trying to pause script for each thread independently but the pause script command seems to be global, any way around this, thanks a bunch.
×
×
  • Create New...