Jump to content
UBot Underground

emilix85

Members
  • Content Count

    35
  • Joined

  • Last visited

Community Reputation

0 Neutral

About emilix85

  • Rank
    Advanced Member

System Specs

  • OS
    Windows Vista
  • Total Memory
    4Gb
  • Framework
    v3.5 & v4.0
  • License
    Professional Edition

Recent Profile Visitors

1936 profile views
  1. Hi guys is possilble run the command "delete cookies" every 30 minutes, without stop script? ( as if they were two different programs: 1 bot >>>executes the instructions, 2bot >>>clear cookies every 30 minutes) in practice must do this: I start my bot, during the bot work I want that the bot executes the "delete cookies" command every 30 minutes without stop the script... Thanks
  2. in this folder there is a dll files where is a cache? Thanks
  3. Hi guys there is a way to clear the browser cache during Ubot Run? know that if I open a new window, the cache is clean but I don't want to do this... I need to clear the ubot browser cache while my bot is active for example every 30 minutes Thanks
  4. Hi guys, in what folder are uploaded the temporary files of the browser.exe process?in practice, when a ubot program run are loaded process browser.exe, all temporary files of internet browsing in what folder are saved? Thanks
  5. my bot don't store any information, I'll show you an example: open ubot4 and go on this page: http://www [dot]prezzipazzi[dot]com/prodotto/iphone-5.php?id=164667 open tskmanager and view the memory usage of the process ubotbrowser.exe the memory grows exponentially compared to other processI want that the process (ubotbrowser.exe) should never exceed 70.000kb even if my script is active is possible whit your plugin? Thanks
  6. Hi Botguru i have a question about this plugin, I want to buy it especially for the "Free up memory function" for ubot browser.exe process....my bot use a sites with alot of scripting and so the memory occupied by the browser.exe process in a few hours will increase a lot and ubot crash... I tried to use programs like cleanmem but when my ubot script is active but this happens to me: if the browser.exe uses memory for example arrives to 250.000kb the process is cleaned and restart to 50.000KB but after a few seconds the memory usage (for this process) returns to 250.000kb and continues to ri
  7. Hi nuc63 i have installed CleanMem but i have a problem after i have clean a ubot process "browser.exe" i have set a rule with command (Evey 2min check; if memory is used more than 50.000KB then clean process >>> browser.exe) if the browser.exe uses memory for example arrives to 250.000kb the process is cleaned and restart to 50.000KB but after a few seconds the memory usage (for this process) returns to 250.000kb and continues to rise until it is again cleaned. It is as if they were permanently clean where I am wrong? Thanks
  8. where can I find a memory plugin for ubot?
  9. Hi Guys my last bot work fine for the first 1:30/2hours after this time even if the "run" button is selected the bot crashes and the browser which displays the events crashes. When this happens the bot executes commands but does't set variables, and therefore is no longer her work! depends on perhaps by the fact that my program must continually verify the variables?How can I solve this problem? UPDATE: the problem don't is in my code or variables, I made this test: open ubot and go on this page: www[dot]prezzipazzi[dot]com/prodotto/mac-book-pro-13.php?id=153273 (for example) without doing an
  10. Yes Thanks this is just what I want As for the loop I think I've figured out the problem...the value that the variabile #username extract whit $scrapeattribute is this: set(#Username, $trim($scrape attribute(<outerhtml=w"<span id=\"*\">Offerta più alta:<br>*</span>">, "innertext")), "Global") the tag "<br>" don't call a space but enter line breaks, then the function $trim don't need; for this reason does not recognize the value in the loop while I need a function that removes the tag <br> What can I use? Thanks
  11. yes thanks but my problem is this: i have 2 loop (Loop and Loop2): Loop() define Loop { set(#Contatore, $trim($scrape attribute(<outerhtml=w"<span id=\"*\"><span class=\"*\"> * </span></span>">, "innertext")), "Global") loop while($comparison(#Contatore, ">", 80)) { set(#Contatore, $trim($scrape attribute(<outerhtml=w"<span id=\"*\"><span class=\"*\"> * </span></span>">, "innertext")), "Global") } if($both($comparison(#Contatore, "<=", 80), $comparison(#Username, "!=", "Offerta più alta:{#Account}")))
  12. you're right Lazy! was wrong the entire structure
  13. Hi guys i have to make a $comparision in a loop while: the "equal" value is "=" or "=="? run the loop while until $comparision >>> (#variabile is equal ( "=" or "==" ?) a "name") is true If the $comparision is true stay in loop and follow the instructionsIf it is false exit loop. Thanks
  14. in practice, the loop should continue until both conditions are true:if the both conditions are true (the loop stops) then >>> run command "Clicca"if the both conditions are false (the loop stops) then >>> stay in the loop as long as the conditions are true ( How can I do this?) must take the action only if the two conditions are true. use the loop while because I need to follow 2 variables: a timer(#contatore), and usernames(#Username): Loop() define Loop { loop while($either($comparison(#Contatore, "<=", 80), $comparison(#Username, "=!", "Offerta più alta:{#Account}
  15. what is the difference between $both anf $either?
×
×
  • Create New...