BoosterBots
Fellow UBotter-
Content Count
107 -
Joined
-
Last visited
-
Days Won
5
BoosterBots last won the day on July 7 2017
BoosterBots had the most liked content!
Community Reputation
23 ExcellentAbout BoosterBots
-
Rank
Advanced Member
Contact Methods
-
Website URL
http://www.boosterbots.com
-
Skype
boosterbots
Profile Information
-
Gender
Not Telling
System Specs
-
OS
Windows 7
-
Total Memory
More Than 9Gb
-
Framework
v3.5 & v4.0
-
License
Developer Edition
Recent Profile Visitors
5211 profile views
-
Need a license reset please sent you a pm and mail through your site. Edit: Just did some research and found the license reset link if anyone also needs it: http://lazylocker.com/lock/PublicResetLicense.php
- 732 replies
-
- SSUB
- Super Simple UI Builder
- (and 4 more)
-
You have to also do a http post and pass the credentials/cookies over. There is a user on the forums here (Dan I think it was) who was selling a great little course on how to use these functions effectively. He goes over how to use them for logging into sites, etc.
-
You can use regular expressions for this. Set a var to find regular expression from the doctext you are searching. Here is a way to pull out just the number from this text: <span class="stats-row">15 Items Avaible</span> Regular Expression: (?<=class="stats-row">)\d+(?=\s) To grab the number from this text: <a href="#reviews" class="gig-ratings-count js-gtm-event-auto" data-gtm-category="gig-page-triple" data-gtm-action="click" data-gtm-label="buyer-reviews">(205)</a> Regular Expression: (?<=buyer-reviews">\()\d+(?=\)<) Also, remember to check t
-
Awesome plugin going to have to think of some ideas and then pick this one up! Thanks!!
- 207 replies
-
- video
- advanced video
-
(and 2 more)
Tagged with:
-
[Sell] Freenom Domain Registration Bot! ~Source Code~
BoosterBots replied to Ptrick125's topic in Bots and Scripts
Just picked it up, looking forward to diving into this one. Thanks for the great offer and sorry someone flaked on you like that, not cool at all. -
Can this mod also work with the regular ubot locker and not unleased?
- 16 replies
-
- Bundle Sales
- Sell More
-
(and 8 more)
Tagged with:
-
Can you find regular expressions via doctext with this? If not any change you would add that parameter?
-
Great share! Very useful
-
My twitter logins are working fine using v4. Have not noticed any issues with logging in.
-
Scraping Usernames Using Keywords On Twitter
BoosterBots replied to polavotex's topic in General Discussion
Sounds like you are going to need to build a table and navigate to each profile then scrape the information you are looking for and put it into a table. Username, Bio Then you can analyze the data you are looking for that way. Or, you could build the filter right into the bot it's self. For example, navigate to the profile then scrape the bio and create an if statement which see's if that current users bio contains and of the words you choose. If the keyword exists then save those usernames to a list. Play around with different features and you can do what you are asking fairly easy. The -
Also be very careful following that many people at once and especially if you are doing that over and over good way to get the ban hammer fast on IG.
-
Scraping Usernames Using Keywords On Twitter
BoosterBots replied to polavotex's topic in General Discussion
Well you would want to use the run javascript to scroll down which would be: window.scrollTo(0,document.body.scrollHeight);Then I would recommend using regex to scrape out the usernames and add those to a list. Then just loop it for as many times you want to scroll down. -
Scraping Usernames Using Keywords On Twitter
BoosterBots replied to polavotex's topic in General Discussion
Doing some testing on that site you can see the url structure is as follows: https://twitter.com/search?f=users&vertical=default&q=baking&src=typdreplace the keyword baking with the keyword you want to search then perform your scraping. -
Recaptcha/no Captcha Plugin By Abbas Was Really Cool
BoosterBots replied to sunny9495's topic in General Discussion
Very nice, I have been looking for a solution like this.