Jump to content
UBot Underground

Leaderboard

Popular Content

Showing content with the highest reputation on 04/19/19 in all areas

  1. It is easier than learning any object oriented language (probably) and syntactically it's also probably easier than most "traditional" kind of languages due to the node system. That being said you still need to understand some basic programming concepts. If you're looking for a place to start I made a video that would be a good intro to Ubot: https://www.youtube.com/watch?v=SiIm7ZLO5J4
    1 point
  2. UNBELIEVABLE! This resolves a whole mount everest of strange bugs (compiled bots behaving differently than in UBot itself). Most JavaScript in UI HTML Panel will cause major headaches without using this unconventional work around. Holy Cow.. now all the JS really works inside the Panel as expected. Many thanks for sharing this info @darryl561
    1 point
  3. You are loading three pages, one after the other, in a single thread, in a single browser, so it is acting just as it should. If you want them to load separately, each link in a separate thread in a separate browser, you need to put them, one by one, in a separate thread (so you code 3 threads there, not only one, like you did now) If you want to write this even smarter, you store the URLs to navigate in a list, you build a define that navigates to the URL you feed to it as a parameter, then you LOOP n times through the list of URLs and code the instructions within the LOOP to open a new t
    1 point
×
×
  • Create New...