Jump to content
UBot Underground

denrich

Fellow UBotter
  • Content Count

    58
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by denrich

  1. I'm pretty sure Ubot is 32 bit so having 16 gigs of memory won't save you from the fact that Ubot wouldn't be able to use any more than a quarter of that.

     

    The workaround would be to process whatever it is you are doing in chunks. If you need to do 5000 of something maybe try to limit it to 1000 at a time.

    Thanks Helloinsomnia, that makes sense. I did use the ubot free memory and OS Free memory plugin also, that didn't make any difference.

  2. Hi Ubotters,

    Maybe someone can help me with this problem I've had for awhile,

    I have a dual processor and 16 Gigs Memory but I still get 'System.OutOfMemoryException was thrown." message even when I use 'Large Files' plugin and the 'free os memory' plugin. when I reached about 5000 data bits to my computer file. Thanks

     

    Denrich.

  3. I find this define command works well.
     
     

     

     

    Try this:

    add list to list(%NewData,$find regular expression("green
    
    blue
    red
    
    yellow","\\w+"),"Delete","Global")
    

    With Helloinsomnia example:

    add list to list(%NewData,$find regular expression("green, ,blue,red,  ,yellow,   ,purple","\\w+"),"Delete","Global")
    

     

    define Remove blanks from list {
        set(#listtotal,$list total(%PROXY_LIST),"Global")
        decrement(#listtotal)
        remove from list(%PROXY_LIST,#listtotal)
    }
     
     
     
     
    Den.
  4.  

    loop(100) {
        change proxy("PROXYDETAILS")
        if($comparison($list position(%PROXYDETAILS), "=", $list total(%PROXYDETAILS))) {
            then {
                set list position(%PROXYDETAILS, 0)
            }
            else {
            }
        }
    }
     
     
     
     
    Attached is an image as well.

     

    Hope this helps ;)

     

     

    Thanks ubotbuilders,

     

    It helped and solved my problem. 

  5. Hello Ubotters,

     

    I have a question and I hope it's understandable :) Is there any way to increment a Large list(plugin) list with ubot without having to add it to a ubot list to reduce memory. Incrementing a list outside ubot from Large Lists plugin. Those lists are not visible in the debuger.

×
×
  • Create New...