Jump to content
UBot Underground

CryptoBot

Members
  • Content Count

    21
  • Joined

  • Last visited

Posts posted by CryptoBot

  1. Hey guys,

     

    I built a bot that scrapes values off a real estate site and every couple of months or so the page's url changes.

     

    Is it possible to implement a patch to my bot or bots that I've already sold that reflects the new url of the page I want it to scrape? Like an update which automatically downloads when the bot starts.

     

     

    Thanks!

  2. Hi guys,

     

    Is there a way to customize error message popups?

     

    I have a bot that fires a process or executes a task every hour. My problem is that if I get disconnected from the internet and the bot tries to do its round of tasks, it fires an error message that shows (like a path) to which part of the process has fired the error. I want to customize that message and tell the user that they're experiencing net connection issues.

     

    Has anyone tried this? Please share with me. Thanks!

  3. Hi again,

     

    I was blown by how Ubot can use the onclick event that triggers a defined function in the bot. But do we also have an onload event that can be triggered whenever my bot first starts?

     

    I wanted the bot to log the users into my members area and scrape their details while the splash page is still flashing. That way I can focus on loading other resources that the bot needs and minimize the clicks needed for the bot to get the job done. 

     

    Or maybe we have an alternative for the onload that I can use?

     

     

    Many thanks!

  4. Hi guys,

     

    I created my UI in the UI HTML Panel and I have about 8 processes for the bot to complete before looping for another round. Currently all I have is a variable that outputs text that lets me know what process is currently being done. It would be awesome if I could also manipulate the animation of Bootstrap's progress bar so that it animates after each process has been completed.

     

    This is my html code for the progress bar :

     

    <div class="progress mx-auto px-0 col-11">
      <div class="progress-bar progress-bar-animated" role="progressbar" style="width: 0%" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" id="game_progress"></div>
    </div>
     
    I need to control the value of the width (in percentage) that's inside the style attribute. I tried using the command "run javascript" but couldn't get it to work. Is this feat even possible?  :D 
     
    Thanks much!
  5. Hello fellow uBotters,

     

    My bot creates a settings file which is saved in the same root folder as the bot. One of the settings in this file is suppose to check the checkbox when I read the file and import all user-defined settings before the bot starts working. The variable that handles this checkbox value is being populated correctly, but I want the checkbox to be checked from the UI as well. I am using the UI HTML Panel.

     

    Any thoughts you could share?

     

     

    Thanks!  :)

  6. Hi All,

     

    I have this text scraped from a webpage "4Hours47Minutes23Seconds", and I wanted to put a space at the end of each number. So far I am only able to group them like this  (\d{1,2}.{1,5})+(\d{1,2}.{1,7})+(\d{1,2}.{1,7}). Which outputs :
     

    4Hours
    47Minutes
    23Seconds

     

    My question is, how do I perform the adding of this space character? Output should be 4 Hours 47 Minutes 23 Seconds.

     

     

    Thanks!

  7. Hi guys,

     

    I created a custom UI using the UI HTML Panel. But I needed to extract the dynamic value from a textbox that's using the code below:
    <input type="text" class="form-control" variable="#age_limit" fillwith="value">

    This value will be used in javascript so I wanted to show a popup or a modal if the dynamic value reaches a certain limit. Has anyone done this? Please share your thoughts.

     

     

    Thank you.

  8. Hello fellow botters,

     

    I got a newbie question. Is it possible to convert system date/time to something like Unix epoch (f.x. 1548209365)? I want to use this to save a file with the unix date/time as the filename. Can you share your code with me? 

     

     

    Thanks!

×
×
  • Create New...