eric-drifter
Member
- Joined
- Nov 12, 2020
Hey all,
New here. Nice to meet you.
I wrote a little automation script for auto-swiping on Tinder, which I'll put below.
Basically it right swipes between 5-20 times, then waits a for a second or three. The waiting bit is randomized so it seems like more human behavior.
Then it left swipes between 1 and 3 times, and again waits a randomized moment. You can change these numbers as you see fit. This cycle repeats 60 (or whatever number I put) times.
My aim was to have it emulate human behavior, not just right-swipe rapidly on every girl. I'm wondering what you guys think of this. I just can't be bothered to swipe for more than 5-10 minutes a day. However, even though this script is trying to emulate human behavior, of course it could fuck up my ELO score or whatever because I'm right-swiping on non-attractive girls.
Since I really hate swiping, I hope it doesn't fuck up my account. Tinder is a numbers game as we know, but I just don't have the time to swipe on hundreds of girls a day. Any thoughts?
If you have a Mac, just open the default Script Editor program, press Cmd + N to create a new script, paste the code in there and hit play. Have Chrome already open and ready to swipe on Tinder.
activate application "Chrome"
repeat 60 times
repeat (random number from 5 to 20) times
tell application "System Events" to keystroke (key code 124)
delay (random number from 0.55 to 2.75)
end repeat
repeat (random number from 1 to 3) times
tell application "System Events" to keystroke (key code 123)
delay (random number from 0.55 to 2.15)
end repeat
end repeat
New here. Nice to meet you.
I wrote a little automation script for auto-swiping on Tinder, which I'll put below.
Basically it right swipes between 5-20 times, then waits a for a second or three. The waiting bit is randomized so it seems like more human behavior.
Then it left swipes between 1 and 3 times, and again waits a randomized moment. You can change these numbers as you see fit. This cycle repeats 60 (or whatever number I put) times.
My aim was to have it emulate human behavior, not just right-swipe rapidly on every girl. I'm wondering what you guys think of this. I just can't be bothered to swipe for more than 5-10 minutes a day. However, even though this script is trying to emulate human behavior, of course it could fuck up my ELO score or whatever because I'm right-swiping on non-attractive girls.
Since I really hate swiping, I hope it doesn't fuck up my account. Tinder is a numbers game as we know, but I just don't have the time to swipe on hundreds of girls a day. Any thoughts?
If you have a Mac, just open the default Script Editor program, press Cmd + N to create a new script, paste the code in there and hit play. Have Chrome already open and ready to swipe on Tinder.
activate application "Chrome"
repeat 60 times
repeat (random number from 5 to 20) times
tell application "System Events" to keystroke (key code 124)
delay (random number from 0.55 to 2.75)
end repeat
repeat (random number from 1 to 3) times
tell application "System Events" to keystroke (key code 123)
delay (random number from 0.55 to 2.15)
end repeat
end repeat