Jump to content
UBot Underground

earthlingj

Fellow UBotter
  • Content Count

    244
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by earthlingj

  1. You are not using the plugin from the title, instead you are using the plugin that Blumi 40 keeps posting here (Blumi40, can you please open another thread for that plugin instead of discussing it here? ...you are only confusing people).

     

    I've had the exact same problem with the plugin you are using, that's why I created this new plugin called "Threads Counter".

     

    Earthlingj, please use my plugin instead and let me know if it solved the problems for you.

     

    I've tested with both. It seems to happen only when using 'in new browser'. that threw off the thread count as well as the tmp error. when i removed in new browser it worked without error.

  2. Ran some more tests. 

     

    seems like if you use 'in new browser' you get that local tmp file error... once i removed it i didnt get that error anymore. 

     

    secondly, check out this code below. all i did was add a variable "jesus" and an increment. at the end of the run jesus should = whatever COUNT you set, but when running with 100 threads its way off. i then tried adding thread safe container to the increment jesus and still off. so thread safe container is not working 100% i dont think as other people have stated. 

     

     

     

    ui drop down("COUNT""100,1000,10000"#Input Count)
    ui drop down("Threads""10,20,30,40,50,100,250"#INPUT Threads)
    ui stat monitor("Threads (Active/Total):""<b>{#THREADS Active}/{#THREADS Max}</b>")
    ui stat monitor("COUNT:"#COUNT)
    set(#COUNT#Input Count"Global")
    set(#THREADS Max#INPUT Threads"Global")
    comment("Reset counter to 0.")
    set(#THREADS Active$plugin function("Threads Counter.dll""threads counter""reset"), "Global")
    comment("Main Threading Loop")
    plugin command("HTTP post.dll""http cookies folder""C:\\Cookies")
    set(#jesus, 0, "Global")
    loop while($comparison(#COUNT">", 0)) {
        if($comparison(#THREADS Active"<"#THREADS Max)) {
            then {
                comment("Increment Number Of Threads And Store Value to UBot Variable.")
                set(#THREADS Active$plugin function("Threads Counter.dll""threads counter""increment"), "Global")
                THREAD START()
                decrement(#COUNT)
            }
            else {
                wait(0.2)
            }
        }
    }
    comment("Thread Command")
    define THREAD START {
        thread {
            wait(0.5)
            comment("Decrement Number Of Threads And Store Value to UBot Variable.")
            set(#THREADS Active$plugin function("Threads Counter.dll""threads counter""decrement"), "Global")
            plugin command("Open.Framework.dll""Thread safe container") {
                increment(#jesus)
            }
        }
    }
    comment("Wait For Threads To Close Or Timeout After 20 seconds.")
    set(#THREADS Active$plugin function("Threads Counter.dll""threads counter""read"), "Global")
    set(#WAIT Count, 0, "Global")
    loop while($both($comparison(#THREADS Active">", 0), $comparison(#WAIT Count"<", 10))) {
        set(#THREADS Active$plugin function("Threads Counter.dll""threads counter""read"), "Global")
        increment(#WAIT Count)
        wait(2)
    }
    comment("Check How Many Threads UBot Sees.")
    if($comparison(#THREADS Active">", 0)) {
        then {
            alert("Some threads were not closed/decremented properly.")
        }
        else {
            alert("All threads were closed")
        }
    }
  3. So im going crazy trying to figure out WHY my threads die and dont come back. If i start with 20 threads, after an hour ill be down to like 10 threads.. after 2 hours ill be down to 3.. etc etc

     

    ive tried getting support from ubot 100 times but its too slow getting 1 reply a day that doesnt help at all. I've been going back and forth with support for over a week now, but they are really slow and its not getting anywhere.. 

     

     

    I am willing to give someone $100 if they can solve my problem.

     

    if you are interested i guess DM or post here your skype

     

    Thanks

  4. Is it possible to add list to list without having the list position set back to 0?

     

    basically im creating a bot that will scraper GLOBAL users per thread and then DM them. I want to use a global list so it doesnt send to duplicate people. problem is.. itll work going to next list item etc etc per thread, but once it does another scrape and adds to the list, the list position goes back to 0 which messes up the order. 

     

    Help plz :D

  5. someoen told me all i do is complain and never help out :) so i will help out lol..

     

    not sure if this si the best way but it works

     

    it wouldnt be ' clicking ' but you can navigate

     

     

     

     

    clear list(%Categories)
    navigate("http://www.amazon.com/s/ref=sr_st?bbn=133141011&qid=1359826260&rh=n%3A133140011%2Cn%3A!133141011%2Cn%3A154606011&sort=popularity-rank", "Wait")
    wait for element(<id="ref_154606011">, "", "Appear")
    load html($scrape attribute(<id="ref_154606011">, "outerhtml"))
    add list to list(%Categories, $scrape attribute(<href=w"/s/ref=*">, "href"), "Delete", "Global")
    • Like 1
×
×
  • Create New...