** UPDATE **
The script now sends a corny joke to any of your new matches and runs on an endless loop:
This tool is an automated script for swiping right on every single tinder user that it encounters. I just made it as a proof of concept to my friends on how I can tinder while sleeping if I wanted to.
Video of it in action:
Looking for girls to match...
#############################################
NO MORE GIRLS :(
CHECKING MESSAGES
#############################################
Hey..somebody farted. Let's get out of here.
Is your last name Gillete cause your the best a man can get.
So what haven't you been told tonight?
I was so enchanted by your beauty that I ran into that wall over there. So I am going to need your name and number for insurance purposes..
You must be a sargeant, because you have my private standing in attention.
I've just moved you to the top of my 'to do' list.
Go up to a girl, ask her: "Do you know what winks and screws like a tiger?" [No] Then wink..
The only reason I would kick you out of bed would be to fuck you on the floor.
#############################################
NO MORE MATCHES :(
#############################################
First off this is only working on android phones because they behave better on real devices but you can easily do this in the cloud on iOS devices and even mock your geolocation to anywhere you like. if you don't have it already:
brew install npm
You will also need the android developers toolkit: http://developer.android.com/sdk/index.html and follow the steps to setup android here: http://appium.io/slate/en/tutorial/android.html?ruby#toc_12
Then install appium (tool for automating mobile devives) and run it
npm install appium -g
appium &
You can download tinder from any trustworthy site: http://www38.zippyshare.com/d/75420186/46934/com.tinder-3.2.0-APK4Fun.com.apk or use an apk extractor to get it from your phone
clone this repo
bundle
ruby tindermation.rb
Here is a general example of the code:
i=0
while true do
begin
puts "Looking for girls to match..."
like_button.click
puts "Liked Girl #: #{i+=1}"
rescue Selenium::WebDriver::Error::NoSuchElementError
puts "#############################################"
puts "NO MORE GIRLS :("
puts "CHECKING MESSAGES"
puts "#############################################"
click_msgs_btn
begin
match = text("Matched on")
puts match
match.click
send_message(get_corny_joke)
go_to_tinder_home
rescue Selenium::WebDriver::Error::NoSuchElementError
puts "#############################################"
puts "NO MORE MATCHES :("
puts "#############################################"
go_to_tinder_home
end
end
end