Jump to content
UBot Underground

ubotusold

Fellow UBotter
  • Content Count

    127
  • Joined

  • Last visited

  • Days Won

    6

ubotusold last won the day on January 12 2013

ubotusold had the most liked content!

Community Reputation

28 Excellent

About ubotusold

  • Rank
    Advanced Member

Profile Information

  • Gender
    Not Telling

System Specs

  • OS
    Windows 8
  • Total Memory
    8Gb
  • Framework
    v4.0
  • License
    Professional Edition

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Read this and see if this would help your situation in the future, especially post #7 in the thread: http://www.ubotstudio.com/forum/index.php?/topic/10810-library-files/
  2. To those that are stuck using dial-up, I feel for you. Why not use Satellite Internet from like Dish or Hughes instead?
  3. Ok so here's the deal. You are working in generalities and leaving out the important details. The way you worded your problem in the first post suggested Ubot has a problem in loop handling after the first cycle. In particular, when it runs a custom command that invokes the browser, you said it locked up. And as I mentioned, if that were the only clues given to us, 99% of Ubot owners would be having this problem. In fact, we all would be having our bots crash on this kind of code: define MyCustomCommand { loop(5) { navigate("http://www.yahoo.com/", "Wait") } } MyCustomCommand() } T
  4. you use alerts to help follow the path of execution to help determine where the problem lies
  5. Local commands within defines? Not catching you here zap (do you mean variables instead?) RAT: Your problem as defined is too general. Reason why I say this is that I would think that if this were the case, everyone on here would be having a problem. Most people run bots in loops and they do call custom commands. So its likely something you are doing wrong in the loop to cause this. Best way to do this is to debug your code. Do this by placing alert boxes in the loop at various points: define MyCustomCommand { alert("At start of custom command") blah1 blah2 alert("Before blah 3")
  6. Use AutoHotKey. Google it.
  7. Sorry, cant release the bot. Its because presently there is a bug in the way the RETURN statement works. It keeps on looping, choosing older women! My UI drop down boxes are flawed too! Ubot always chooses the first item in the lists by default (Smokes 4 packs of cigarettes a day, Has 10 kids, Divorced 3 times, Criminal Record)! Worse yet! All the women are local and I cant see them in the Debugger! Even with multithreading!
  8. I use it to get dates on match.com. I multithreaded myself to a date every night for the next 6 months!
  9. I'm asking about implementation of the Wait Command for Ubot when it comes to multi threading. Wait and Sleep are two different things. I want to understand which one UBot is using before I go out and build some bots I have in mind. A Sleep to me means that when a thread goes to sleep, it gives other threads scheduled in the waiting, a piece of the CPU time slice. Under .NET, Thread.Sleep causes the calling thread to not schedule itself. This is good because we can go out and create threads that do other tasks while Thread A is asleep. For example, if Thread A is responsible for scraping o
  10. Does the Wait command Sleep in a multi-threaded bot?
  11. So all I see in the debugger window are global variables. No local variables are shown. No local variables to a thread are shown. This is like giving a drummer one stick to play drums with. The other? His bruised head.
  12. First, if you have any inclination to do this at home, don't. You are doing a crapload of scraping and sooner or later your ISP is going to ban you. Then you are royally screwed. Do this right - on leased Windows servers. Try VPS at the start. Split the workload up to start. Host them on different vendors and spec them as need be (Quad core, 2GB+ memory, 100Mpbs line, etc). If throughput is slow, you can always tweak the hardware by scaling up and out (i.e. add more memory, add another core, add another server). Don't use public proxies. That will be a huge bottleneck. Always go with high
  13. On an Apache SSL server create a website that has: A registration page A login page A reconsideration page Keep client side information in Windows registry: registeredState licensekey SecretParaphrase (encrypted) When your bot runs, check a Windows registry variable (registeredState): If value is yes, take them to the login page (https://www.bot.com/mybot/login) If the account has been flagged, take them to the reconsideration page (https://www.bot.com/mybot/reconsideration) In the reconsideration page, have them revalidate themselves: username password
  14. You can do it. But before you start, you need to define EXACTLY how the data is going to be scraped, stored, retrieved, and compared. Only you know those little details. A lot of this is going to be how the data is laid out on the afilliate sales page. If they use some sort of navigation scheme (like the google search footer) and you happen to make lots of sales everyday, its going to be a little more complicated as you have to navigate those links. If so, you probably need a UI drop down where you specify how many pages to scrape. What it will boil down to is you opening up the previous
×
×
  • Create New...