Jump to content
UBot Underground

danoctav

Fellow UBotter
  • Content Count

    90
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by danoctav

  1. I'm not using ubotstudio anymore because of this browser.exe crashes (awesomium). On XP both x32 and x64 the browser crash like crazy from the loading ubotstudio or compiled bots. I have talking with support almost 2 weeks about this problem...but it seems there are no solutions. I have uninstalled and installed ubotstudio,.net framework,all plugins,but nothing stopped this crashes unfortunately and I was surprised how so few peoples complained about this problems. The ultimate solution received from support was to use a PC with other operating system: Windows 7 or 8 ,but seeing now this problems...

     

    Ok the browser problems with awesomium were there from the beginning but now, ubotstudio (without httppost or other things which not require a browser) is useless on Windows XP (at least) !

  2. for the guys who have open support tickets can you share any fix provided thanks

    There is no fix provided yet... I have talk with support from 4-5 days ...

     

    The browser crash is also an very old problem. . I don't know why other not taled too much about this earlier,just now when is critical. I have talked with support for almost 1 year and nothing solved. Ok, at that time the brower crash occured after a number of steps in a loop (at least I was able to run bots to do some action around 40-50 steps multithreading/or not),but now the whatever compiled bot I run ,it crash the browser.... and when I open ubostudio the error with browser crash, appear instantly. 

     

    I'm also not agreed with "workaround" because we are paying a monthly fee. Old customers and users of ubotstudio v4.... not even asked for other updates ... just TO BE SOLVED AN "VERY" OLD PROBLEM !!!

  3. ok im make backup my virtual machine ( before VM working an ubot) but i have still this same problem ;/

     

    so im need realy help ;/

     

    this kind of problem  http://p0kerfree.blox.pl/resource/qwe.jpg

     

     

    Im can't do nothing ;/ this error show after when i run ubot.exe

    When im try to close error after that im have restsrt ubot ;/

     

    Exactly the same problem for me (I want to make a screenshot too).... really frustrating... compiled bots or running bots inside ubotstudio are unusable for now. I hope the support to find a solution....

  4. Hey everyone,

     

    First I want to thanks all for support,and apologies that I'm not writing earlier, about the solution (busy now with mobile apps).

     

    At the time when I start to write about this problem, my facebook testing account was using the old style.

     

    After updating the FB account ,the bot posting perfect to groups (no duplicate message anymore)! 

     

    Thanks again !

    Dan

  5. If  your database is on hostgator,then this actions are required to connect to your database:

     

    1. Go to "Database" in your cPanel and click "Remote MySQL" then add your computer IP on Remote Database Access Hosts ->  Add Access Host

     

    If the IP is dynamic and some numbers not change from this IP, you can use a wildcard : "%"  (like 92.123.%.%)

    .

    2.On UbotStudio, this snippet work for connection to database:

    plugin command("DatabaseCommands.dll", "connect to database", "server=X.X.X.X;uid=userdb ; pwd=userpassword; database=yourdatabase; port=3306; pooling=false") {
    }
    

    * where X.X.X.X is IP (from hosting account)

     

    Also it works the same with main domain instead hosting acc. IP.

    • Like 1
  6. I was having the same error,taking some free ico's from net and trying to compile bot....  "Offset and length were out of bounds for the array or count is greater than the number of elements from index to the end of the source collection" .

     

    I have found this cool site: icoconverter.com a simple online .ico image converter which take an image and convert it to a proper ICO file (good .ico for ubotstudio at compiling). 

     

    I have used :

    32 pixels with 32 bits (16.7M colors with alpha transparency)

    and after compiling with different .ico converted on this site from other pictures, everything was OK !

     

    I think something similar should be included in the ubotstudio....to avoid this kind of problems.

    • Like 1
  7. 2 simple examples:

     

    Example nr. 1:

    ui stat monitor("Generate random numbers", #generaterandomnumbers)
    comment("---generating random numbers until press <Stop Script> button ------")
    ui button("Run") {
        set(#stop, $false, "Global")
        set(#i, 0, "Global")
        loop while($comparison(#stop, "!=", $true)) {
            set(#generaterandomnumbers, $rand(0, 100000), "Global")
            increment(#i)
        }
    }
    ui button("Stop Script") {
        set(#stop, $true, "Global")
    }
    

    Example nr. 2:

    ui stat monitor("Generate random numbers", #generaterandomnumbers)
    ui stat monitor("Generate random numbers", #generaterandomletters)
    comment("---generating random numbers and words until press <Stop Script> button ------")
    ui button("Run") {
        set(#stop, $false, "Global")
        set(#i, 0, "Global")
        loop($rand(25, 50)) {
            if($comparison(#stop, "=", $true)) {
                then {
                    stop script
                }
                else {
                }
            }
            set(#generaterandomnumbers, $rand(0, 100000), "Global")
            set(#generaterandomletters, $random text($rand(3, 5)), "Global")
            increment(#i)
            wait(1)
        }
    }
    ui button("Stop Script") {
        set(#stop, $true, "Global")
    }
    
    • Like 1

  8. set(#i, 0, "Global")
    comment("---generating 2 lists with keyword and numbers-----")
    loop(10) {
    add item to list(%list1, "keyword{#i}", "Delete", "Global")
    add item to list(%list2, #i, "Delete", "Global")
    increment(#i)
    }
    comment("---- merge list --------")
    loop($list total(%list1)) {
    add item to list(%mergelist, "{$next list item(%list1)}:{$next list item(%list2)}", "Delete", "Global")
    }
    comment("---- saving list --------")
    save to file("{$special folder("Application")}\\mergelist.txt", %mergelist)

    • Like 1
  9. ui text box("Enter data:", #var)
    set(#var, $find regular expression(#var, "[-+]?\\b[0-9]+(\\.[0-9]+)?\\b"), "Global")
    if($comparison(#var, "!=", $nothing)) {
        then {
            set(#isnumber, "true", "Global")
        }
        else {
            set(#isnumber, "false", "Global")
        }
    }
    ui stat monitor("Number? ", #isnumber)
    
    

    where regex is for an integer or a floating point number, positive or negative . For a simple integer (with sign .... positive or negative) :

    ^[-+]?\d+$ 
  10. clear list(%mylist)
    set(#i, 1, "Global")
    ui stat monitor("Creating list with links:", %mylist)
    loop(10) {
        add item to list(%mylist, "link_{#i}", "Delete", "Global")
        increment(#i)
        wait(1)
    }
    set list position(%mylist, 0)
    loop($list total(%mylist)) {
        set(#position, $next list item(%mylist), "Global")
        wait(1)
    }
    ui stat monitor("Spamming :", #position)
    ui stat monitor("List position :", $list position(%mylist))
    
    

    generating a list with 10 elements,looping through this links,showing the link from actual position and the list positions

  11. Solution nr 2:

    ui text box("Nr. of pages:", #nr_of_pages)
    clear list(%titles)
    set(#i, 1, "Global")
    loop(#nr_of_pages) {
        navigate("http://www.copyblogger.com/blog/page/{#i}/", "Wait")
        wait for browser event("Everything Loaded", "")
        wait(3)
        add list to list(%titles, $scrape attribute(<class="entry-title">, "innertext"), "Delete", "Global")
        increment(#i)
    }
    
    

    for this particular case,can be used also this...

    If you want to scrape all pages for titles,without to introduce a number, scrape the maximum number, <193> in this case ,as total nr_of_pages)

  12. Solution nr. 1:

    navigate("http://www.copyblogger.com/blog/", "Wait")
    wait for browser event("Everything Loaded", "")
    clear list(%titles)
    loop while($exists(<innertext="Next Page»">)) {
        add list to list(%titles, $scrape attribute(<class="entry-title">, "innertext"), "Delete", "Global")
        click(<innertext="Next Page»">, "Left Click", "No")
        wait for browser event("Everything Loaded", "")
        wait(3)
    }
    
    

    If exists Next Page» then click it until not exist....

×
×
  • Create New...