-
Content Count
47 -
Joined
-
Last visited
Community Reputation
1 NeutralAbout 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
2753 profile views
-
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
-
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.
-
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?
-
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
-
Trying to figure out how to increment ex: 35.66 to 35.67 Thanks, hope I'm not asking much
-
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")
-
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...
-
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.
-
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
-
thanks for the reply UbotDev
-
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
-
thanks for the help, will do
-
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?
-
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.