Anonym00ze

Faucet Autostarter

May 11th, 2021 (edited)
585
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 1.21 KB | None | 0 0
  1. @echo off
  2. title ...:: Faucets Auto Starter by YogSotho ::...
  3. color 0A
  4.  
  5. :ini
  6. cls
  7. echo.
  8. echo.
  9. set /P choice=Do you want to start faucets? (y=yes/o=one time only/n=no)
  10.  
  11. if %choice% == y goto start else goto error
  12. if %choice% == n goto quit else goto error
  13. if %choice% == o goto one else goto error
  14.  
  15.  
  16. :start
  17.  
  18. start chrome.exe "https://firefaucet.win/"
  19. ping -n 10 google.com >nul
  20.  
  21. start chrome.exe "https://cointiply.com/home?intent=faucet"
  22. ping -n 10 google.com >nul
  23.  
  24. start chrome.exe "https://faucetcrypto.com/task/faucet-claim"
  25. ping -n 10 google.com >nul
  26.  
  27. start chrome.exe "https://es.btcnewz.com/user/faucet/3m"
  28. ping -n 10 google.com >nul
  29.  
  30. goto sleep
  31.  
  32. :one
  33.  
  34. start chrome.exe "https://firefaucet.win/"
  35. ping -n 10 google.com >nul
  36.  
  37. start chrome.exe "https://cointiply.com/home?intent=faucet"
  38. ping -n 10 google.com >nul
  39.  
  40. start chrome.exe "https://faucetcrypto.com/task/faucet-claim"
  41. ping -n 10 google.com >nul
  42.  
  43. start chrome.exe "https://es.btcnewz.com/user/faucet/3m"
  44. ping -n 10 google.com >nul
  45.  
  46. goto quit
  47.  
  48. :sleep
  49.  
  50. cls
  51. echo.
  52. echo.
  53. echo ---==={ SLEEPING FOR 1 HOUR... }===---
  54. timeout /T 3600 /NOBREAK
  55. goto start
  56.  
  57. :error
  58. color fc
  59. ECHO -----> WRONG CHOICE! <-----
  60. goto ini
  61.  
  62. :quit
  63. exit
Add Comment
Please, Sign In to add comment