Advertisement
MrBIMC

Abusing Fleksy Referrals

Apr 4th, 2018
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.54 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. function sleepOneSec() {
  4.     echo "sleeping for 1 sec"
  5.     sleep 0.3
  6. }
  7.  
  8. function tapGetMoreCoins() {
  9.     echo "taping Earn Some Coins"
  10.     adb shell input tap 940 630
  11. }
  12.  
  13. function tapShowMore() {
  14.     echo "taping Show More"
  15.     adb shell input tap 535 2250
  16. }
  17.  
  18. function tapCopyToClipBoard() {
  19.     echo "taping Copy To Clipboard"
  20.     adb shell input tap 600 1900
  21. }
  22.  
  23. function loop() {
  24.     for a in {0..480}
  25.     do
  26.         echo "iteration $a"
  27.         tapGetMoreCoins
  28.         sleepOneSec
  29.         tapShowMore
  30.         sleepOneSec
  31.         tapCopyToClipBoard
  32.     done
  33. }
  34.  
  35.  
  36. loop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement