Jump to content
UBot Underground

Overcoked Productions

Members
  • Content Count

    4
  • Joined

  • Last visited

Community Reputation

0 Neutral

About Overcoked Productions

  • Rank
    Newbie

System Specs

  • OS
    Windows 8
  • Total Memory
    More Than 9Gb
  • Framework
    v3.5 & v4.0
  • License
    Developer Edition

Recent Profile Visitors

1074 profile views
  1. Hey guys I got it working and I feel like a programming god I won't paste the code but I'll write the logic. The purpose of the bot is to navigate through a classified ads web/social network and send messages to the authors to add me as a friend. There are X amount of pages with Y amount of ads on each page. To go from X1 to X2 I can click the classic NEXT button and when there are no more ads the NEXT button disappears. I have a while loop checking if there is a NEXT button, if there is one it scrapes its URL to a variable. After that I create a list with all the Y URLs and start visit
  2. I'm testing scraping the "next page" URL as a variable and putting it at the end of the loop, so after visiting the profiles it will go to the next page directly. So far I think it can be a great way to design the bot but I'm getting JSON errors for some reason.
  3. Haha, I was on the library and I didn't want to open my laptop Yes all those tasks work flawlessly but I can't manage to make them work together, the thing is, in order to make this happen I need some sort of looping right? I'll paste some code in a moment. Edit: Here is the basic code for the page flipping part of the bot: loop while($exists(<innertext="Siguiente">)) { click(<innertext="Siguiente">,"Left Click","No") wait(10) } And here is the one for the friend requests: clear list(%anuncios) add list to list(%anuncios,$scrape attribute(<class="cti">,
  4. Hi, I've been trying to develop a bot that would go through member listings, checking profiles and sending friend requests. It (should) works like this: The bot loads the first of many (hundreds) pages. Copy profile URLs into a list. Visits each profile one by one in a new browser and sends a friend request. Checks if there is a "Next page" button and if it finds it it continues. But I can't make it work completely, I can visit the profiles or go through the pages but I can't figure out how to do both. I tried nesting loops but it doesn't work. I can't paste code because I'm writin
×
×
  • Create New...