Jump to content
UBot Underground

a2mateit

Fellow UBotter
  • Content Count

    1673
  • Joined

  • Last visited

  • Days Won

    60

Posts posted by a2mateit

  1. This update is Awesome! I really think that the value you guys offer is possibly the best I have purchased, and I own EVERY software on the market.

     

    Just one question though? Any plans on adding commands for after registration? Like posting to the sites, it would really speed things up by not having to code that part.

     

    But once again, great job. Anybody using UBot without this is really wasting alot of time and money! ;)

  2. Okay WTF,

     

    I saved my bot, went to eat some dinner and now I come back and I am getting the following error whenever I try to run it.

     

    The cell you requested is outside the range of the table.

     

    Anyone know what could be causing this as it was working literally like twenty minutes ago and I haven't changed anything.

  3. Thanks TJ,

     

    I am familiar with saving the url, the problem I am having is navigating to the url.

     

    After you submit the bookmark it takes you to a page like:

    http://52.co.nz/upcoming.php

     

    And say my bookmark was the one that says Bing is Awesome.

     

    You have to click on that and then it takes you to the url to save.

     

    The problem is selecting the right story. I tried to click on the bookmark title variable but it says invalid integer. Totally clueless on how to implement this correctly.

  4. Alright so I am running into another issue and decided to post it here instead of creating a new topic.

     

    I cannot figure out how to save the url of my bookmark after I bookmark it.

     

    Is there anyone familiar with pligg sites that has coded this before and can help me out.

     

    Some example of the sites are:

    http://52.co.nz/

    http://acoolwaytoshop.com

    http://actorscams.com/

    http://africanlolo.com/africanlolo

     

    I would like to be able to save the bookmark url's for further indexing purposes (pinging, rss, etc. etc.)

     

    Anyone that can help it would be greatly appreciated.

     

    Justin

  5. Thanks guys but I am still stuck.

     

    Before my loop I have the following:

     

    ui open file("Load Campaign", #campaign)

    create table from file(#campaign, &account info)

    set(#url, $table cell(&account info, 0, 0), "Global") <-- URL of site

    set(#username, $table cell(&account info, 0, 1), "Global") <-- Username

    set(#pass, $table cell(&account info, 0, 2), "Global") <-- Password

    set(#row, $table cell(&account info, 1, 0), "Global")

     

    Then I have loop with my commands inside. (still not sure what to put in as list total to have it go through the entire .csv as it's got over 3,000 sites)

     

    Then at the very end of my loop I have the following:

    increment(#url)

    increment(#username)

    increment(#password)

    increment(#campaign)

    increment(#row)

     

     

    Hopefully you guys can help me trouble shoot it easier by me giving you specifics of what I have so far.

     

    Justin

  6. Hello,

     

    I am creating a bot to bookmark websites to pligg sites.

     

    When it signs-up it saves the following info into a .csv file: Website Url in first column, username in second column, and password in third column.

     

    So how do I pull that info from the .csv to log-in to the site.

     

    For example: navigate to website in column 1, use username info from column 2, use password info from column 3, then after it bookmarks it will move on to Row 2 then 3 etc. etc.

     

    Justin

  7. Hey Ninja,

     

    This is actually relatively easy.

     

    Create a UI dropdown command and put in however many times you want to be able to retry.

     

    Then use that variable in a if/then statement.

     

    I have attached a very simple bot to this post as reference.

     

    Keep in mind that you might have to change the $search page based on the type of site you are posting to.

     

    HTH

    Justin

     

    ui drop down("Captcha Re-trys", "1,2,3,4,5", #captcha)

    if($search page("Please try again.")) {

    then {

    loop(#captcha) {

    type text(<name="recaptcha_response_field">, $solve captcha(<style="display:block;">), "Standard")

    click(<name="submit">, "Left Click", "No")

    }

    }

    }

    • Like 1
  8. Just placed my order on fiverr.com order #73248661

     

    I hope you can enjoy it. I encourage everyone else who you have helped to give you a nice little tip if possible, you seem to respond to everyone with a great solution.

     

    Maybe you should really be pushing a gig on fiverr for a nice $4 tip.

     

    Just a suggestion.

     

    -Justin

  9. Hey UbotBuddy,

     

    That way is definitely simpler and works like a charm. Both ways are good of course, but this seems to be simpler.

     

    You and John both definitely know your stuff.

     

    I thank both of you and look forward to asking more questions and receiving more answers.

     

    Oh and UbotBuddy, I am going to place a fiverr order because I feel like you just gave me a Free Gig.

     

    Justin

  10. Hello all,

     

    I have searched around the forum for the last hour and have not been able to figure out how to solve this math captcha.

     

    The website the captcha is on is http://www.bytesocial.info/register

     

    I am trying to scrape page using text on left: What is the answer to this question: What is

     

    And text on the right as: =

     

    Then using the eval command to try and give the correct answer.

     

    Can anyone help me with this one?

×
×
  • Create New...