Jump to content
UBot Underground

Sanjeev

Fellow UBotter
  • Content Count

    356
  • Joined

  • Last visited

  • Days Won

    9

Everything posted by Sanjeev

  1. So clearing lists and tables setting variables to 'nothing' clears the memory space(RAM) occupied by those variables and lists? Thanks
  2. Abbas, Thanks for the reply,But I think I guess I did not phrase my question properly. What I want to know specificlly is - regarding the 'run encrypted ubot code' node of your plugin - One of the major benefits of using this functionality would be that we can now load our code into the bot 'on demand' ,as needed - saving us from creating a huge bot which then becomes slow and sometimes unstable.. 1. Are there any limits to the 'size of the code', inside this node? 2. Won't loading the external code use up more Ram? And does this node free up the memory used once the external code
  3. Abbas, Could you tell me how does 'Run encrypted Ubot script function' work with the computer's memory (RAM)? Is the memory released after a define/code executes? Thanks.
  4. Guys? All of you who purchased this plugin, did you receive some 'license file' with your downloads? I received a zip file containing one '.dll ' file and an instructions text , that's it. I have emailed Abbas about this, but I thought I may be misunderstanding his instructions. so I thought someone here could clarify this for me Thanks.
  5. Thanks for replying. The possibilities with Ubot never cease to amaze me! If only a few major issues with Ubot studio could be resolved - like memory usage issues , better UI support , browser stability - there would be no looking around for other solutions for any of us.
  6. Thanks for your reply. Though I don't fully understand how this would be useful..?
  7. Hello dan, kev123. I am curious to know of what use a network listener plugin would be to Ubotters? Could you please tell me how and where this can help? Thanks .
  8. Hi Fellas, If I use a table with say 10 columns to store my data vs a table with 5 columns and 5 variables - is the memory usage more or less the same in both cases? I would think a table with 10 columns might take up less Ram than using another 5 variables. What would you advise? Thanks.
  9. Hello Guys, I am unable to log in to Ubot Studio - I keep getting this message! ------------------------------------------------------------ Unable to connect to license server the remote server returned an error (403) ------------------------------------------------------------- I was able to log in without any problems till yesterday night, But today morning when I opened My PC and tried logging in - I get the above error. I tried re-entering My log in details too, re-booting the PC - Both didn't work . Please help.
  10. Task scheduler can trigger tasks on event - can folder creation be set as one such events?
  11. I hope this is happening only to those who are subscribed (paying) for updates?
  12. looks like some how - set(#startrow, 0, "Global") is not being recognized as a number. If you need to start from -- zero , why not set set(#startrow, "-1", "Global") and then increment(#startrow) change attribute(<name="tsk5">, "value", $table cell(&reportingdata, #startrow, 0)) I think the math manipulation conversion makes it look like a legit number to Ubot.. ?
  13. THREAD START(#PROXIES ROW, #RESULTS ROW) increment(#PROXIES ROW) increment(#RESULTS ROW) decrement(#COUNT) would it be possible to use your 'threads counter plugin' to also decrement #count variable? Thanks.
  14. Therefore we pass a #row variable into the define before thread start - to track which table cell or list index to write back data into? This also ensures that data is written back in its proper order of processing back into the list/table?
  15. Wow ! UbotDev - this looks like a foolproof approach to threading! I was always used to thinking of commands and functions as being containers to be called from inside of a thread - to isolate local vars from each other/on a per thread basis. - which is correct. But calling a command/function and then initiating a thread from within that define- Not only guarantees that the variables will not be altered by the main thread -but also by succeeding threads! I guess this clears up all my doubts regarding the following. -------------------------------------------------------------- You mentio
  16. UbotDev, Thanks for taking out the time to share your Knowledge! You mean pass on the global variables required by the thread into defines/functions as parameters - as soon as the thread starts - so the data gets secured - as they get converted to local? If that's what you mean I knew that. What I did not know,(and I now realize in hindsight -that it was quite stupid on my part) is that global variables coming in as parameters via a function or command are automatically converted to local for that thread. I was under the impression that we needed to then store the passed global vari
  17. Hi guys In the code below - I created a list from text , and then call a define from within a thread. Inside the define - I am simply adding the list item at index 0 - 5 times to a new list (I have set the new list to - 'do not delete duplicates'). clear list(%Numbers) clear list(%NewNumbers) add list to list(%Numbers, $list from text("1,2,3,4,5,6,7,8,9", ","), "Delete", "Global") set(#NumberRow, 0, "Global") thread { getNumbers(#NumberRow) } load html(%NewNumbers) stop script define getNumbers(#NumberRow) { loop(5) { add item to list(%NewNumbers, $list item(%Numbers, #Numbe
×
×
  • Create New...