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)

当前为 2022-04-12 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Free and unlimited (NO Captcha) Zero Coin script (zerofaucet.com)
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.7
  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. // @grant none
  13. // ==/UserScript==
  14.  
  15. /*
  16. ================================================================================================================================================== |
  17. | This script requires a ZeroChain wallet, you can create one by following this link: https://zerochain.info/. |
  18. | Finally go on this page: https://zerofaucet.com/?ref=t1avshB344ztnX8id9B7pKtGYA8EyztDN8o and login with your wallet address. |
  19. ==================================================================================================================================================
  20. */
  21.  
  22. (function() {
  23. 'use strict';
  24.  
  25. // Remove animated background from website - optional. document.querySelector("body > center > form > input.submit")
  26. //Object.assign(document.getElementsByTagName('body')[0].style, { backgroundImage: 'none' });
  27. //login
  28. var zer= "t1avshB344ztnX8id9B7pKtGYA8EyztDN8o"/////EXAMPLE/////
  29. var address = false;
  30. setInterval(function() {
  31. if (document.querySelector("body > center > font > form > input[type=text]:nth-child(8)")) {
  32. document.getElementsByName("loginwallet")[0].value = zer;
  33. address = true;
  34. if ((address == true)) {
  35. document.querySelector("body > center > font > form > input.submit").click();
  36. }
  37. }}, 1000);
  38. setInterval(function() {
  39. //resolve error 404
  40. if (document.querySelector("body > p:nth-child(3)")) {
  41. window.open("https://zerofaucet.com","_self");
  42. document.querySelector("body > center > a > img").click();
  43. }
  44. }, 60000 );
  45. setInterval(function() {
  46. //sai da pagina de bonus.
  47. if (document.getElementsByClassName("shadow1")[0]) {
  48. window.open("https://zerofaucet.com/index.php?refresh=658","_self");
  49. }
  50. }, 10000 );
  51. setInterval(function() {
  52. //Collect bonus
  53. if (document.querySelector("body > center > font > table > tbody > tr > td:nth-child(3) > center > table:nth-child(1) > tbody > tr > td > a > font")) {
  54. document.querySelector("body > center > font > table > tbody > tr > td:nth-child(3) > center > table:nth-child(1) > tbody > tr > td > a > font").click();
  55. }
  56. /*
  57. //sai da pagina de bonusdocument.
  58. if (document.querySelector("body > center > table > tbody > tr > td > center > div1 > img")) {
  59. document.querySelector("body > center > a > img").click();
  60.  
  61. }*/
  62. }, 3000);
  63. setInterval(function() {
  64. if (document.querySelector("body > center > form > input.submit")) {
  65. document.querySelector("body > center > form > input.submit").click();
  66. }
  67. // Click on claim buttons.
  68. if (document.getElementById('button1')) {
  69. document.getElementById('button1').click();
  70. }
  71. // Click on 1link skip button.
  72. if (document.getElementsByClassName('skipbutton')[0]) {
  73. document.getElementsByClassName('skipbutton')[0].click();
  74. }
  75. }, 3000);
  76.  
  77. })();