Jump to content
UBot Underground

ed08724

Members
  • Content Count

    81
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by ed08724

  1. Has anyone been able to get ubot 5.9.55 to work with windows 11?

    After disabling virus and security I finally got it installed and entered my license info.

    It then downloads its support files, verifies license info, then just stops at "Starting Ubot Studio" with the ubot icon displayed.

  2. On 12/19/2020 at 9:34 AM, Kev said:

    I’m using two version: 6.3.1 and 6.3.5. I can compile in 6.3.5 but not in the other. Also, 6.3.5 still has issues with the lists so when I need to run list required bots I use 6.3.1 in the studio itself. Other bots that don’t use lists I compile and they work ok. 

    Kev do you have problems wit the ui and or browser not working in 6.3.1?
    Sometimes it works fine with both, sometimes I get the browser with no UI and sometimes I get the UI with no browser.

  3. I installed ubot 6.3.3 and have had too many issues to even document.

    These examples are not new code. They have worked for years up until after 6.3.3 update.
    The 2 easiest to nail down are
    add list to list(%files,$get files("C:/Users/ed087/Downloads","No"),"Delete","Global")
    returns no files. Tried different folders but all return nothing.

    if($search page("any text")) {
    returns true even if the item is not on the page which I have verified by checking the source.
    The opposite happens also returning false when the text is on the page.
     

    other non specific issues are.
    View generated source either locks up ubot or doesn't do anything.
    Browser locks up or seems to work but does not display new page in browser.

    view debugger crashes and closes ubot sometimes.

     

    can't even send in a support ticket because it says "Captcha verification failed, try again!"
    even though it only asks for me to click I'm not a robot.

     

    How can I get a download link for 6.2.9
    And instructions how to revert to the older version.

    All the 6.3 versions have issues as well like sometimes the browser works but does not display or sometimes the browser displays but the gui does not.n

    • Like 1
  4. in Ubot Studio X I want to sort a list but the resulting list is ending up in scientific notation

     

    add list to list(%sorted,$sort list(%myposts,"Descending"),"Delete","Global")

     

    %myposts

    10156238019934531
    10156239823899531
    10156240530969531
    10156238848409531
    10156236482544531
    10156760025704031
    10156235105739531
    10156233189979531
    10156232720419531
    10156232175324531
    10156230650744531
     
    %sorted
    1.0156760025704E+16
    1.01562405309695E+16
    1.01562398238995E+16
    1.01562388484095E+16
    1.01562380199345E+16
    1.01562364825445E+16
    1.01562351057395E+16
    1.01562331899795E+16
    1.01562327204195E+16
    1.01562321753245E+16
    1.01562306507445E+16

     

    How can't I prevent that?

     

  5. My Dell laptop just updated its bios and now ubot studio won't load because ultimate captcha plugin hardware id is not correct.

    I contacted them but is there any way to run ubot without this plugin until I hear back from them.

    Ubot won't even load to be able to disable it.

     

  6. I have fixed the issue although don't know why its all of a sudden an issue.
    load the file in as a table then convert to list

     

    create table from file("{$special folder("My Documents")}\\test.csv",&test)
    clear list(%test)

    add list to list(%test,$plugin function("TableCommands.dll", "$list from table", &test, "Column", 0),"Delete","Global").

  7. really beating my head against a wall here.

    my code was working fine now all of a sudden I can't load a list from file and get empty

     

    clear list(%test)
    save to file("{$special folder("My Documents")}\\test.csv",%test)
    add list to list(%test,$list from file("{$special folder("My Documents")}\\test.csv"),"Delete","Global")

     

    when I run that I end up with a list with 1 blank item instead of a list with 0 items

     

    https://www.screencast.com/t/6LhZ6eRmh

     

    this messes up all the rest of the code.

    this is just a new snipit of code I wrote to test my issue.

     

     

    thanks and happy holidays!

     

×
×
  • Create New...