cryptof

Claim 78904 satoshi (0.0003 USD) every minute

  1. // ==UserScript==
  2. // @name cryptof
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Claim 78904 satoshi (0.0003 USD) every minute
  6. // @author Dinolino
  7. // @match https://cryptofuture.co.in/ripple/
  8. // @match https://cryptofuture.co.in/ripple/?r=dinolino2014@gmail.com
  9. // @icon https://www.google.com/s2/favicons?sz=64&domain=cryptofuture.co.in
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. var adress = "dinolino2014@gmail.com";//Edit whith your faucetpay email,go to "https://cryptofuture.co.in/ripple/" and leave IT open, recaptcha and ABlink
  17.  
  18.  
  19. setTimeout (() => {
  20. if ( document.URL =="https://cryptofuture.co.in/ripple/")
  21. { window.location.replace("https://cryptofuture.co.in/ripple/?r=dinolino2014@gmail.com");
  22. }},1000)
  23.  
  24. setInterval (() => {if (document.querySelector("#address")){
  25. document.querySelector("#address").value = adress; }},1000);
  26.  
  27. setTimeout(function(){if (document.querySelector("#faucet_form > div:nth-child(4) > button")){
  28. document.querySelector("#faucet_form > div:nth-child(4) > button").click()}},3000);
  29.  
  30. let Ripple = setInterval(function XRP() {
  31. let btn = document.querySelector("#login")
  32. let antibotsolved = document.querySelector("#antibotlinks_reset")
  33. if (window.grecaptcha.getResponse().length > 0
  34. && btn && btn.value == 'Verify Captcha' && antibotsolved && antibotsolved.style.display !== 'none') {
  35. btn.click()
  36. clearInterval(Ripple);
  37. }}, 10000)
  38.  
  39. setTimeout(function ablink() {
  40. let antibot = document.querySelector("#antibotlinks_reset")
  41. if (antibot && antibot.style.display == 'none') {
  42. window.location.replace("https://cryptofuture.co.in/ripple/?r=dinolino2014@gmail.com")
  43. }}, 5*60000)
  44. setTimeout(function succeessclaime() {
  45. let succ = document.querySelector("body > div.container.flex-grow.my-4 > div.row.my-2 > div.col-12.col-md-8.col-lg-6.order-md-2.mb-4.text-center > div.form > div.alert.alert-success.fade.show > i")
  46. if (succ && succ.innerText.includes("was sent")) {
  47. window.location.replace("https://cryptofuture.co.in/ripple/?r=dinolino2014@gmail.com")
  48. }}, 60000)
  49. setTimeout(function succeessclaime() {
  50. let sleep = document.querySelector("body > div.container.flex-grow.my-4 > div.row.my-2 > div.col-12.col-md-8.col-lg-6.order-md-2.mb-4.text-center > div.form > div.alert.alert-danger.fade.show")
  51. if (sleep && sleep.innerText.includes("wait")) {
  52. window.location.replace("https://cryptofuture.co.in/ripple/?r=dinolino2014@gmail.com")
  53. }}, 60000)
  54. setTimeout(function stuck() {
  55. window.location.replace("https://cryptofuture.co.in/ripple/?r=dinolino2014@gmail.com")
  56. }, 10*60000)
  57. })();