Jump to content
UBot Underground

Harisc1990

Fellow UBotter
  • Content Count

    15
  • Joined

  • Last visited

Posts posted by Harisc1990

  1. Is it possible to download all emails and sort them based on subject line etc?

    For example: If 5 out of 10 emails have the same subject like, i want to see a table like this:

     

    <SUBJECT LINE>

    -emailaddress 1

    -emailaddress 2

    -emailaddress 3

    -emailaddress 4

    -emailaddress 5

     

    Clicking emailaddress 1 should show me the downloaded email in text format or so. ( no fancy graphics)

     

     

    After knowing what the subject line is, i want the script to go through all emails with a certain subject line and save certain text of the email to a file. (append to file)

     

    What do I need to make this happen?

  2. I would stay away from hotmail since there was some huge "security thing" going on where customers lost all their emails since you had to use phone verification for all of them to make use of the email. (it wasn't possible to restore them)

    It might happen again.

     

    When I asked them for refund, they (buyaccs.com) said that they are trying to restore them. I asked them for updates on the matter weekly and they just responded "no updates yet".... so yeah, make up ur mind.

    Maybe they solved it by now. I stopped caring.

  3. Harisc1990,

    From what you are describing, I would be tempted to load all the onclick= commands you find on the page into a UBOT list.

    Then I would loop thru the list,

          parse out the numbers to a table with two columns,

             then loop thru the table checking each row with an IF statement to see if it is what I am looking for

                 and if one is found then call a define to do something with it.

     

    I want it to click something that might not exist on the page

     

    loop -> navigate page -> click element <onclick="Whatever.close(*, =<50000);"> -> repeat

  4. I don't think you can use greater or equal to inside element selector.

     

    If you need something more complex than wildcard, you should use regular expression for matching...

     

    Is there really no simple solution? Does anyone know what i have to add to the regular expression to get this done..?

    I don't want to spend days/hours learning regular expressions to solve a problem that should be much easier to solve :wacko:

     

    onclick command looks like this without changing it: <onclick="Whatever.close(553262, 50000);">

    the first value (553262) should be wildcard OR greater than 1 and the second value (50000) should be smaller than x or a number from x-x(not random, i want it to search the page for any number from x to x) ... whatever is easier to solve.

     

    :unsure:

  5. I used click and then i selected an element i wanted it to click.

    after selecting, it shows me  this code: 

     

    <onclick="Whatever.close(553262, 50000);">

     

    and i want to change it to something like this (using the cogwheel thing)

     

    <onclick="Whatever.close(*, =>50000);">

     

    i want the first value to be wildcard and it works fine but when i add the => to the second value, it doesn't work (can't find it)

     

    How can I solve this?

     

    I just want to add a simple "if smaller/greater than.." basically: click everything where the second value is greater/equal 50000

  6. uBot slows down after a certain time.... currently I have to use a third party tool (mouse recorder) to restart uBot for me. It basically clicks "stop" and "run" after a certain time.

    Is there really no other way to solve this? If I use mouse recorder it won't allow me to do anything else on my computer since my mouse is controlled.

     

    Would it be too difficult to implement something which solves this issue?

  7. Get an id or class or something on the popup and then execute some javascript :

     

    var popup = document.getElementById("popupId");   // In case of id

    var popup = document.getElementsByClassName("popupClassName") // In case of class as the selector.

    and then:

    popup.scrollTo(0, this.scrollHeight); 

     

     

    like say for this page here your post (#1) has an id of "post_id_99088" now assume if it was the popup and you needed to scroll down to the bottom of this post here is the code you'll use:

     

    var popup = document.getElementById("post_id_99088");

    popup.scrollTo(0, this.scrollHeight);

     

    It would works like a charm :)

    Hope it helps ;)

    For example it's: <class="input-wrapper">

     

    I have to change it to this, right?: var popup = document.getElementsByClassName("input-wrapper")

     

    If so, it's not working for me :(

     

    does the popup have a menu bar on the right? you could try clicking the down arrow element a few times, or normally just waiting for the popup to load, and actually clicking the agree button can sometimes work too.

     

    It has a slider and down/up arrows but I think that solution will slow my bot down by a lot :wacko:

     

    Sorry for late reply, I was really busy.

  8. I'm using 6 threads in the following order:
     

    Thread->In new window->loop

     

    It's super annoying.. how do I get rid of it?

    Once a loop is finished, should I add something to the end of it? Clearing cookies would slow it down since it's faster when I'm logged in.

     

    My task manager says I have 12 Browser.exe open.

    How many threads can an i7 4820k handle?

     

    It starts normally, then browser.exe crashes and I use http://www.ubotstudio.com/forum/index.php?/topic/13968-free-automatically-close-ubot-browserexe-crashes-fix/page-2

    to shut it down.

     

    At some point Ubot crashes...

     

    I'm doing very simple tasks, disable javascript etc, navigate, login, if already logged in go to and do this and that, else login and do this and that...

    It's not fun :|

     

    Is it possible for me to download Ubot v4?  Will I miss out on anything? I have ubot 5 pro license

×
×
  • Create New...