Jump to content
UBot Underground

maBOT

Fellow UBotter
  • Content Count

    60
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by maBOT

  1. I've returned to botting, tried this new plugin version and I'm also unable to launch the Chrome. I matched the version of Chrome with the version of chromedriver. Could it be because of the updated plugin?
  2. I'm looking forward to it! 👍👍
  3. Hi Daemon, I was able to automate Gmail/Youtube login with this plugin, using the plugin cookies function. It's pretty easy and straightforward. As far as I understand, you would normally use the software compiled with the plugin even after your license expired. But if you try to compile a new software, the plugin won't allow you until you renew the license. In simple words, you won't be able to change any single piece of the code in your compiled software as the plugin won't allow you to compile it again. Hopefully I'm right about it.
  4. I'm sorry, but I have another question.. is it possible to use the "wildcard" when trying to scrape some elements on the page? I can't seem to figure out and it doesn't seem it works the way it worked with the element selector. Or I'm missing something..? P.S. If possible, please paste an example of a code using a "wildcard".. I'm not very convenient using the regex. Thanks in advance.
  5. Sure, I'll do an upgrade. Yes, I've just subscribed. One question, though, since I've started re-adapting the code with this plugin, I noticed the "Browser User Agent" can set the UA only after fresh browser launch. If you do some actions with the browser, you will no longer able to change the UA and you would have to close and start the browser again. I believe it would be a lot better (if possible) to change the UA w/o restarting the browser. Is that possible? (this is the process flow with inbuilt browser on uBOT) Wishing You a great weekend.
  6. Great! I'm diving slowly into it. From what I've seen thus far, it's a great plugin!
  7. It should be just temporary. 😉 For how long you can't access the uBOT? I've been trying for the last 30 mins and been getting the uBOT server license is down..
  8. maBOT

    The server is down, @pash. PLease fix it, thanks!

  9. Hey guys, I'm happy to let you know that the issue has been solved by the help from @LoWrIdErTJ - BotGuru ! He checked the code and recommended removal of the browser's "crash checkers", precisely "auto close browser crash" from Advanced Ubot plugin. Please pay attention to it if you use it. It might eat up half or more of your CPU power. For some reason, the Ubot Studio was ignoring this plugin when running opposite to when it was running as a compiled bot. So, the bot is now running like a charm with 1-2% of CPU usage most of the time! Thanks you all for the
  10. Gave it a try yesterday by hard-coding the variables. Unluckily, it didn't help.
  11. Exactly. Clean install is the best to start with. Don't forget to delete everything from App Data. Start --> type in "%appdata%' in search, ENTER on your keyboard, then open the "UBot Studio" folder and delete everything from it just in case. Once done, install a clean uBOT 6.1.14, which is in my opinion a most stable uBOT 6 version. Otherwise, let us know if you need to downgrade to uBOT 5, use 5.9.55 version. This is the version which works for me for years now.
  12. Not, un/fortunately. There are 23 checkboxes in total. The bot interacts with them upon starting only or if I do a manual interaction. It's a few seconds process which reads the selections from the local .txt file and then stop. I will hardcode the variables I need for it to start and try it out w/o UI. Tried already. It gives the same issue. What I also tested is the older code w/o the new patches to reduce CPU. I've ran the uBOT Studio and standalone BOT, and the CPU was similar in both instances, between 13-20% (pretty high but I got used to it since start). *The
  13. Hello, What is the uBOT version you are having troubles with? If you are on any of the latest versions of uBOT 6., I suggest you downgrade to 6.1.14 Hope it helps.
  14. Hi Kojak, Thank you for replying. As far as I know it's a basic HTML and CSS and some JS scripts which I can see. There are 4 tabbed panels. Btw, the UI html starts with the following: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> The size of it, it is 237kb in .txt file. The same is loaded fine and fast in uBOT Studio 5.9.55 and works flawlessly as shown in the video. However in recent versions of uBOT 6 it lags a lot in
  15. Hello guys, I'm encountering quite unusual issue with CPU consumption for a while now. In my venture to make the code less aggressive, I did literally everything I could thought off, but as it seems to no avail. I did a few additional patches and went to checking the bot's running process in the uBOT Studio software and thought I've resolved the issue given that uBOT was consuming up to 10% of CPU max. but usually it maintains just a few percent of CPU like 3-5%. When I proceeded to compile the same and run as a standalone BOT, the CPU consumption went up and kept it constantly ove
  16. I have the same problem in 6.3.9. Any solution for this?
  17. Hello Ubotters, After spending some hours to get it work, I decided to consult with you regarding an issue that I'm getting with some basic things. It could be that I'm just tired, but I can't determine what causes the problem.. Let's get to the point. I have such code: if($contains(#currentBotModule,"module1") OR $contains(#currentBotModule,"#module2") OR $contains(#currentBotModule,"#module3") OR $contains(#currentBotModule,"#module4") OR $contains(#currentBotModule,"#module5")) { then { module basic() } else if(ANOTHER MODULE FUNCTION)
  18. Hi, Nick. Thanks for replying. I'm not sure if I understood what you want me to do? Basically, above JS code is used in the site on which I'm trying to break this captcha. The JS rotate the images on a random base (i.e. https://prnt.sc/qnz0xa)and I need a way to somehow reset the images to its original state so I can pass the captcha. As I can see each image is temporarily generated and it retain the same link regardless how may times you refresh it. This is how it looks like when you don't click, when the captcha image is loaded: <a onclick="rotateImage('images0');"><img id="i
  19. Hello all, I stumbled across a Javascript code last week which might help me in what I'm doing now, however, I have had hard times to use the same in bot I'm working with -- mainly because I had no experience with handling the Javascript code, except using simple JS code to scroll or refresh the page. I'm aware that I need to pass certain scraped parameters from the image I wish to apply JS on, but regardless of many attempts I couldn't get it done. I'm pasting the JS code and the code from the page which I'd like to run JS. // VERSION: 2.3 LAST UPDATE: 11.07.2013 /* * Licensed under the MI
  20. This is the last one, I referred exactly to it. I don't use any User Agent when navigating, just left it to the one Chrome 49 returns. However, I'm forcing it to 'load html()' before it does any navigation in either main browser or shared browser. I'm also using clear cookies define with reset browser - I recently added reset browser since Chrome 49 supports it. So these are the only two changes I made with Chrome 49, the rest of the code is left intact. Everything works our well, Pi nt ere st, G +, Y T, S C, F b, I nst a gr@m... You may try to delete older uBOT in apps folder, uninstall all
  21. Chrome 49 appears to be almost stable as Chrome 21 I did an upgrade day before yesterday, desperately to be honest since no update has solved my problems till now. I upgraded let's say 4 or 5 times - 6 months pack.. The results which Chrome 49 gave amazed me. My bots are running as before with Chrome 21. Just for the record, with previous update I was able to get to the uBOT 5.9.44 and Chrome inside it didn't work well like with the latest uBOT version (5.9.50) Things appear to be fixed although no mentioning on update logs were made. I'm testing my bots 48+ hours so far and trust me, they
  22. As far as I know it works only with newer Chromium browsers, newer than Chrome 21..
×
×
  • Create New...