Free and unlimited (NO Captcha) Zero Coin script (zerofaucet.com)

Earn unlimited and free Zero Coin on zerofaucet.com using this script.(Part of this code I took from Maksyme, I added login. get bonuses, and go through the level upgrade page. part of the credits goes to him.https://greasyfork.org/en/scripts?locale_override=1&q=zero+faucet)

  1. // ==UserScript==
  2. // @name Free and unlimited (NO Captcha) Zero Coin script (zerofaucet.com)
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.9
  5. // @description Earn unlimited and free Zero Coin on zerofaucet.com using this script.(Part of this code I took from Maksyme, I added login. get bonuses, and go through the level upgrade page. part of the credits goes to him.https://greasyfork.org/en/scripts?locale_override=1&q=zero+faucet)
  6. // @author JEGMASTER
  7. // @license MIT
  8. // @match https://zerofaucet.com
  9. // @match https://zerofaucet.com/*
  10. // @match https://1ink.cc/*
  11. // @match https://donaldco.in/*
  12. // @match https://zerocoin.online/*
  13. // @match https://69faucet.online/*
  14. // @grant none
  15. // ==/UserScript==
  16.  
  17. /*
  18. ================================================================================================================================================== |
  19. | This script requires a ZeroChain wallet, you can create one by following this link: https://zerochain.info/. |
  20. | Finally go on this page: https://zerofaucet.com/?ref=t1avshB344ztnX8id9B7pKtGYA8EyztDN8o and login with your wallet address. |
  21. ==================================================================================================================================================
  22. */
  23.  
  24. (function() {
  25. 'use strict';
  26.  
  27. // Remove animated background from website - optional. document.querySelector("body > center > form > input.submit")
  28. //Object.assign(document.getElementsByTagName('body')[0].style, { backgroundImage: 'none' });
  29. //login
  30. var zer= "t1avshB344ztnX8id9B7pKtGYA8EyztDN8o"/////EXAMPLE/////
  31. var address = false;
  32. setInterval(function() {
  33. if (document.querySelector("body > center > font > form > input[type=text]:nth-child(8)")) {
  34. document.getElementsByName("loginwallet")[0].value = zer;
  35. address = true;
  36. if ((address == true)) {
  37. document.querySelector("body > center > font > form > input.submit").click();
  38. }
  39. }}, 1000);
  40. setInterval(function() {
  41. //resolve error 404
  42. if (document.querySelector("body > p:nth-child(3)")) {
  43. window.open("https://zerofaucet.com","_self");
  44. document.querySelector("body > center > a > img").click();
  45. }
  46. }, 60000 );
  47. setInterval(function() {
  48. //sai da pagina de bonus.
  49. if (document.getElementsByClassName("shadow1")[0]) {
  50. window.open("https://zerofaucet.com/index.php?refresh=658","_self");
  51. }
  52. }, 10000 );
  53. setInterval(function() {
  54. //Collect bonus
  55. if (document.querySelector("body > center > font > table > tbody > tr > td:nth-child(3) > center > table:nth-child(1) > tbody > tr > td > a > font")) {
  56. document.querySelector("body > center > font > table > tbody > tr > td:nth-child(3) > center > table:nth-child(1) > tbody > tr > td > a > font").click();
  57. }
  58. /*
  59. //sai da pagina de bonusdocument.
  60. if (document.querySelector("body > center > table > tbody > tr > td > center > div1 > img")) {
  61. document.querySelector("body > center > a > img").click();
  62.  
  63. }*/
  64. }, 3000);
  65. setInterval(function() {
  66. if (document.querySelector("body > center > form > input.submit")) {
  67. document.querySelector("body > center > form > input.submit").click();
  68. }
  69. // Click on claim buttons.
  70. if (document.getElementById('button1')) {
  71. document.getElementById('button1').click();
  72. }
  73. // Click on 1link skip button.
  74. if (document.getElementsByClassName('skipbutton')[0]) {
  75. document.getElementsByClassName('skipbutton')[0].click();
  76. }
  77. }, 3000);
  78. setInterval(function() {
  79. //sai da pagina de bonus.
  80. if (document.querySelector("#form_id > input.submit2")) {
  81. document.querySelector("#form_id > input.submit2").click();
  82. }
  83. }, 6000 );
  84.  
  85. })();