tangarela

gfgfgfgfkkk

  1. // ==UserScript==
  2. // @name tangarela
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.4
  5. // @description gfgfgfgfkkk
  6. // @author everaldo
  7. // @match https://bithub.win/*
  8. // @match https://ouo.io/*
  9. // @match https://ouo.press/*
  10. // @icon https://www.google.com/s2/favicons?sz=64&domain=bithub.win
  11. // @require https://greasyfork.org/scripts/461948-fbase-lib/code/FBase%20Lib.js?version=1222667
  12. // @grant GM_setValue
  13. // @grant GM_getValue
  14. // ==/UserScript==
  15. //
  16. //
  17. // READ CAREFULLY:
  18. // I don't give you any permission to copy, modify, merge, publish, distribute,
  19. // sublicense, and/or sell copies of this script.
  20. //
  21. // REQUIREMENTS:
  22. // You will need a gpcaptcha solver:
  23. // LINK => https://greasyfork.org/scripts/461805-gp-captcha-sover/code/GP%20Captcha%20Sover.user.js
  24. //
  25. //
  26. // Edit lines 42 and 43 with your email and password
  27. //
  28. // If you want to check for updates visit link in line 11
  29. //
  30. // THANK YOU FOR YOUR SUPPORT!
  31.  
  32. (function() {
  33. 'use strict';
  34.  
  35. var email = "kenoclarog18@gmail.com" // Type here your email address
  36. var password = "kevenkauan12" // Type here your password
  37.  
  38. let achievements = GM_getValue('achievements')
  39. let viewedptc = GM_getValue('viewedptc')
  40. let ahora = GM_getValue('ahora')
  41.  
  42. GM_setValue('ahora', new Date().getTime())
  43. if(location.hostname == 'bithub.win') {
  44. if (window.location.href.includes("bithub.win/ptc") && !window.location.href.includes("view")) {
  45. setTimeout(function goptc() {
  46. let ahora1 = new Date()
  47. let boton = document.querySelector('button.btn.btn-one')
  48. let noptc = document.querySelector('div.alert-warning')
  49. if (window.location.href.includes("bithub.win/ptc") && boton) {
  50. boton.click()
  51. }
  52. if (window.location.href.includes("bithub.win/ptc") && !boton && ((ahora - achievements > 86400000) || achievements == null)){
  53. GM_setValue('viewedptc', ahora1.getTime())
  54. setTimeout(function() {window.location.href = "https://bithub.win/achievements"}, 2000)
  55. }
  56. else {
  57. GM_setValue('viewedptc', ahora1.getTime())
  58. setTimeout(function() {window.location.href = "https://bithub.win/faucet"}, 2000)
  59. }}, 10000)
  60. }
  61.  
  62. if (window.location.href.includes("bithub.win/achievements")) {
  63. setTimeout(function claimahieve() {
  64. let ahora = new Date()
  65. let boton = document.querySelector("button[type='submit']")
  66. if (window.location.href.includes("bithub.win/achievements") && boton) {
  67. boton.click()
  68. }
  69. if (window.location.href.includes("bithub.win/achievements") && boton && boton.disabled == true) {
  70. GM_setValue('achievements', ahora.getTime())
  71. window.location.href = "https://bithub.win/auto"
  72. }}, 10000)
  73. }
  74.  
  75. setTimeout(function exitauto() {
  76. let noenergy = document.querySelector("div.alert-danger")
  77. if (window.location.href.includes("bithub.win/auto") && noenergy && noenergy.innerText.includes("Enough")) {
  78. window.location.href = "https://bithub.win/faucet"
  79. }
  80. }, 8000)
  81.  
  82. if (window.location.href.includes("bithub.win/ptc/view")) {
  83. let claim = setInterval(function() {
  84. let gpcaptcha = document.querySelector('input#captcha_choosen')
  85. let boton = document.querySelector("button#verify")
  86. let time = document.querySelector("span#ptcCountdown")
  87. if (gpcaptcha && gpcaptcha.value.length > 0 && boton && time && time.innerText == '0 second') {
  88. boton.click()
  89. clearInterval(claim)
  90. }}, 5000)
  91. }
  92.  
  93. if (window.location.href.includes("firewall")) {
  94. let firewall = setInterval(function() {
  95. let gpcaptcha = document.querySelector('input#captcha_choosen')
  96. let boton = document.querySelector("button[type='submit']")
  97. let hcaptcha = document.querySelector('.h-captcha > iframe')
  98. if ((hcaptcha && hcaptcha.hasAttribute('data-hcaptcha-response') && hcaptcha.getAttribute('data-hcaptcha-response').length > 0)
  99. || (gpcaptcha && gpcaptcha.value.length > 0)
  100. || window.grecaptcha.getResponse().length > 0) {
  101. boton.click()
  102. clearInterval(firewall);
  103. }}, 10000)
  104. }
  105.  
  106. if (window.location.href.includes("bithub.win/login")) {
  107. let login = setInterval(function() {
  108. let mailform = document.querySelector('input#email')
  109. let passform = document.querySelector('input#password')
  110. let boton = document.querySelector("button[type='submit']")
  111. if (window.location.href.includes("login") && mailform && passform
  112. && mailform.value!== email && passform.value !== password) {
  113. mailform.value = email
  114. passform.value = password
  115. }
  116. if (window.location.href.includes("login") && boton && grecaptcha.getResponse().length > 0
  117. && mailform.value == email && passform.value == password) {
  118. boton.click()
  119. clearInterval(login)
  120. }}, 5000)
  121. }
  122.  
  123. if (window.location.href.includes("dashboard")) {
  124. setTimeout(function redir() {
  125. window.location.href = "https://bithub.win/faucet"
  126. }, 12000)
  127.  
  128. setTimeout(function redir2() {
  129. if ((ahora - viewedptc > 28800000) || viewedptc == null) {
  130. window.location.href = "https://bithub.win/ptc"
  131. }}, 3000)
  132. }
  133.  
  134. if (window.location.href.includes("bithub.win/faucet")) {
  135. let claim = setInterval(function() {
  136. let gpcaptcha = document.querySelector('input#captcha_choosen')
  137. let boton = document.querySelector("button.claim-button")
  138. if (gpcaptcha && gpcaptcha.value.length > 0 && boton) {
  139. boton.click()
  140. clearInterval(claim)
  141. }}, 5000)
  142.  
  143. setTimeout(function() {
  144. if ((ahora - viewedptc > 28800000) || viewedptc == null) {
  145. window.location.href = "https://bithub.win/ptc"
  146. }}, 3000)
  147.  
  148. setTimeout(function() {
  149. if (((ahora - achievements > 86400000) || achievements == null)){
  150. setTimeout(function() {window.location.href = "https://bithub.win/achievements"}, 2000)
  151. }}, 3000)
  152.  
  153. setTimeout(function() {
  154. window.location.reload()
  155. }, 3*60000 + 20000)
  156. }
  157.  
  158. if (window.location.href == "https://bithub.win/" || window.location.href == "https://bithub.win") {
  159. window.location.href = "https://bithub.win/?r=353615"
  160. }
  161.  
  162. setTimeout(function() {
  163. if (window.location.href == "https://bithub.win/?r=353615") {
  164. window.location.href = "https://ouo.io/NOiT22"
  165. }}, 12000)
  166.  
  167. setInterval(function() {
  168. let ok = document.querySelector("button[type='button'][class='swal2-confirm swal2-styled']")
  169. let oktext = document.querySelector("h2#swal2-title")
  170. let error = document.querySelector("span.swal2-x-mark")
  171. if ((ok && !error) || (ok && error && !window.location.href.includes("withdraw"))) {
  172. ok.click();
  173. }
  174. if (ok && error && window.location.href.includes("withdraw")) {
  175. window.location.replace("https://bithub.win/leaderboard");
  176. }}, 3000) //CLICK OK
  177. }
  178. if (location.hostname == 'ouo.io' || location.hostname == 'ouo.press') {
  179. setTimeout(() => {
  180. (new OuoSolver()).start();
  181. }, rndInt(1000, 3000));
  182. }
  183. // Your code here...
  184. })();