Jump to content
UBot Underground

The450Man

Fellow UBotter
  • Content Count

    110
  • Joined

  • Last visited

Everything posted by The450Man

  1. has any progress been made in this area? I recently came accross a bot where http requests are necesary.
  2. I just tested this. The $date is correct, january; the javascript still outputs dec. I wonder if something is up with the script.
  3. Thanks BotBoy. One question, I have this script that returns the month of the year, for some reason today it is returning December when it is January. Do you know what is going on here? My date is set properly on my computer. var d=new Date(); var month=new Array(); month[0]="Jan"; month[1]="Feb"; month[2]="Mar"; month[3]="Apr"; month[4]="May"; month[5]="Jun"; month[6]="Jul"; month[7]="Aug"; month[8]="Sep"; month[9]="Oct"; month[10]="Nov"; month[11]="Dec"; var n = month[d.getMonth()];
  4. I have a table in the fallowing format: name,url I want to create a .html file that displays the name hyperlinked with the link. Inside a variable I have prepped the appropriate .html website structure. This is where I am stumped, I cant figure out how to do this outside of creating hundreds of variables (I dont know how to make variables themselves dynamic). The output would obviously be: <a href="URL0">NAME0</a> <a href="URL1">NAME1</a> <a href="URL2">NAME2</a> <a href="URL3">NAME3</a> The list itself is dynamic, so one run its
  5. thanks! i really gota learn javascript.
  6. I am having a hard time grasping javascript, simple scripts are not a problem but getting them to work with ubot is another. I would like to set a variable to the day of the money, ex. today is december 31 so it should output 31. Javascript luckily has an object method, getDate() How can I place this inside a variable that contains the $eval parameter. I wish it was as simple as placing getDate() inside $eval
  7. yes, im aware of that. I should of worded it better. Im trying to get the code to run in the run javascript command
  8. How can this be done? so you dont have to deal with ubot being finicky clicking certain buttons? ex, hotmails butons have a href that is set to "#". This calls a javascript code. Ex, send email Control.invoke('Toolbar','onclick',event,Control.lookup(event.srcElement,'aId'));return false; aid="newMessage" i want to run a javascript command that will bring up the hotmail send email page. Im no javascript junkie but im slowly learning, so if someone could educate me that would be great! BTW, anyone feel like sharing some form of instant messaging?
  9. ive always had problems with the change proxy command. In my case the first proxy would be set right, the fallowing would crash. To get around this, ive used the "in new browser" command. Ive brought this up many times the past 2-3 months and there still does not seem to be a solution as it dosnt always fail but when it does its always the second change.
  10. Would starting compiled bots minimized help increase any performance? ex, less cpu usage?
  11. maybe my description was not clear. i am runing multiple instances of ubot 24/7. this means i CANT delete the temporary files that may be needed in the future (each bot has 10 loops). In order to overcome this, i have to delete them if they are older than 60 minutes. I could probably get away with something that deletes if they are older than 6 hours. I dont have control over what ubot saves as a temporary file nor can i tell what is saved; therefore i cant really code up anything and must use a dynamic script external of ubot.
  12. ubot automatically creates the temp file folder and does not removed it.
  13. yes but ubot creates unique folders and files so i cant use a static command to delete the ones no longer used.
  14. I have a folder that is constantly increasing in size (temp). I cant delete the temp files all at once as some are still needed and this causes ubot to crash. CCleaner is stuck at 24 hours so that isnt an option. I need something that i can run frequently and deletes files older than a specific amount of time. Right now i just delete them once a day BUT that means all instances of ubot must not be running, giving me down time.
  15. Found out the problem. So many instances with new browsers that tons of temp files were being created. I moved my temp files to a ram disk. That seems to of solved that problem. Though i think there are problems recalling the files now as some pages are loading without formatting.
  16. When one is running multiple bots, the appdata folder tends to get hit pretty hard with activity. I recently had to upgrade to a ssd drive due to a massive bottle neck with a hard drive. Is there anyway to cut this use? Its temporary files, local and roaming. My ssd drive is currently taking a pounding. I have a feeling flash is the issue...
  17. Example: File A contains 1 2 3 4 5 6 7 8 9 File B contains 3 5 6 Id want to delete 3,5 and 6 from file A. How can i do this? I did read a post here that said to Combine files and deleting duplicates, that would just leave me back to square one, unless im missing something.
  18. I left my computer for 3 hours and came back to 3 instances of ubot crashed all at different locations within a loop. so im here to let out some of my anger. Its very frustrating and this instability issue needs to be resolved. Seems like many others are having stability issues. Ubot would be the bomb if it would just "run" right, it has potential but isnt there yet. Doesnt the ubot coding team get reports of all crashed bots sent to them? They gota have a boatload from me alone.
  19. yea, i avoided the clear cookie crash by using "close page" before. I dont use image recognition. my machine has 16 gigs of ram so it rarely even goes about 30% Ive noticed hangs on "change proxy" Other crashes seem to be random and i can seem to fix them.
  20. I am still having an issue regarding browser crashes. Its almost always within a loop. Is there anything scripting wise that can be done to improve this issue?
  21. use netlimiter to simulate a slow loading webpage.
  22. I have verified this issue repeatedly. It cannot be as simple as google blocking the IP. This is VERY frustrating as I am no longer in "motion". My tests: Ubot using a proxy internally results in google "temporarily banning the ip", no recaptcha available to solve. Run firefox or internet explorer through THE SAME proxy and it works fine, captchas appear every time, google does not temporarily block the ip. Im also having issues with my bots crashing, most notabily after clearing cookies which is another hair pulling event when dealing with accounts as there is no way around it.
×
×
  • Create New...