Last active
April 22, 2024 14:56
-
-
Save iGlitch/8ede38e4643bc474ef55465a8ea58d7f to your computer and use it in GitHub Desktop.
Bumble, Tinder Auto-Swipe for macOS using AppleScript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "System Events" | |
repeat | |
key code 124 -- Key code for the right arrow key (Like) | |
-- key code 123 -- Key code for the left arrow key (Dislike) | |
-- delay 2 | |
set randomDelay to random number from 1 to 3 -- Generates a random number between 1 and 3 | |
delay randomDelay -- Waits for the randomly generated number of seconds | |
end repeat | |
end tell |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "System Events" | |
repeat | |
set randomNumber to random number from 1 to 100 -- Generates a random number between 1 and 100 | |
if randomNumber ≤ 2 then | |
key code 123 -- Key code for the left arrow key (Dislike), 2% chance | |
else | |
key code 124 -- Key code for the right arrow key (Like), 98% chance | |
end if | |
set randomDelay to random number from 1 to 3 -- Generates a random number between 1 and 3 | |
delay randomDelay -- Waits for the randomly generated number of seconds | |
end repeat | |
end tell |
Author
iGlitch
commented
Apr 21, 2024
•
- This is to be used on browser version of the apps
- Press the Play button in Script Editor, and focus on the browser tab
- randomDelay added for the (unlikely) possibility of bot detection on these sites, idfk
- Use v2 if you want to add random dislikes for also the (unlikely) possibility of bot detection on these sites, idfk
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment