// ==UserScript== // @name bagi.co.in // @namespace http://tampermonkey.net/ // @version 1.8 // @description try to take over the world! // @author MrBug // @match https://bagi.co.in/* // @icon https://www.google.com/s2/favicons?sz=64&domain=bagi.co.in // @updateURL https://sharetext.me/gmudwvlfqq // @downloadURL https://sharetext.me/gmudwvlfqq // @grant window.close // ==/UserScript== // // READ CAREFULLY: // I don't give you any permission to copy, modify, merge, publish, distribute, // sublicense, and/or sell copies of this script. // // SUPPORT THE AUTHOR: // // If you want to support my work, visit this shortener: https://cuty.io/SupportMrBug // THANK YOU FOR YOUR SUPPORT! // // REQUIREMENTS // // You will need a faucetpay account. // You can create one here ==> https://faucetpay.io/?r=5093460 // // You will need to check the cloudflare turnstile challenge: CLOUDFLARE SCRIPT ==> https://sharetext.me/3mdagzudkt // // DESCRIPTION: // // Edit line 43 with your faucetpay email address, // Edit line 44 with the coin you want to claim // Then go to https://bagi.co.in/?ref=752 // If the selected coin has no funds, the window will close // // If you want to check for updates visit link in line 9 // (function() { 'use strict'; var mailaddressFP = 'seuemail@gmail.com' // Type here your faucetpay email address var coin = 'LTC' // OPTIONS: 'ETH', 'DOGE', 'LTC', 'BCH' var intervalclaim = 10 // Don't change it unless the faucet changes the time between intervals (in minutes) let coins = ['ETH', 'DOGE', 'LTC', 'BCH'] function login() { let addressform = document.querySelector("input[type='email']") let boton = document.querySelector("button[type='submit']") let hcaptcha = document.querySelector('.h-captcha > iframe') let turnstile = document.querySelector("input[name='cf-turnstile-response']") if (addressform && addressform.value !== mailaddressFP){ addressform.value = mailaddressFP } if (boton && addressform.value == mailaddressFP && (hcaptcha && hcaptcha.hasAttribute('data-hcaptcha-response') && hcaptcha.getAttribute('data-hcaptcha-response').length > 0)) { setTimeout(function() { window.location.reload() }, 50000) boton.click() clearInterval(login) } if (boton && addressform.value == mailaddressFP && turnstile && turnstile.value.length > 0) { setTimeout(function() { window.location.reload() }, 50000) boton.click() clearInterval(login) } } function login2() { let boton = document.querySelector("button[type='submit']") if (boton && addressform.value == mailaddressFP && (grecaptcha && grecaptcha.getResponse().length > 0)) { setTimeout(function() { window.location.reload() }, 50000) boton.click() clearInterval(login2) } } function claim() { let addressform = document.querySelector("input[type='email']") let hcaptcha = document.querySelector('.h-captcha > iframe') let boton = document.querySelector("button[type='submit']") let turnstile = document.querySelector("input[name='cf-turnstile-response']") if (boton && (hcaptcha && hcaptcha.hasAttribute('data-hcaptcha-response') && hcaptcha.getAttribute('data-hcaptcha-response').length > 0)) { setTimeout(function() { window.location.reload() }, 50000) boton.click() clearInterval(claim) } if (boton && turnstile && turnstile.value.length >0) { setTimeout(function() { window.location.reload() }, 50000) boton.click() clearInterval(claim) } } function claim2() { let boton = document.querySelector("button[type='submit']") if (boton && grecaptcha.getResponse().length > 0) { setTimeout(function() { window.location.reload() }, 50000) boton.click() clearInterval(claim2) } } if (window.location.href == 'https://bagi.co.in/' || window.location.href == 'https://bagi.co.in' || window.location.href == 'https://bagi.co.in/index.php') { setTimeout(function() { if (location.search !== '?ref=752') { location.search = '?ref=752' }}, 1000) } if (location.search == '?ref=752') { setTimeout(function() { let botonlogin = document.querySelector("button[data-target='#myModal']") if (botonlogin) { botonlogin.click() setTimeout(function() { window.location.reload() }, 60000) setInterval(login, 10000) setInterval(login2, 10000) }}, 10000) } if (window.location.href.includes('dashboard')) { setTimeout(function() { if (coin == coins[0]) { location.href = 'ethereum' } if (coin == coins[1]) { location.href = 'dogecoin' } if (coin == coins[2]) { location.href = 'litecoin' } if (coin == coins[3]) { location.href = 'bitcoincash' } }, 10000) } if (window.location.href.includes('ethereum') || window.location.href.includes('dogecoin') || window.location.href.includes('litecoin') || window.location.href.includes('bitcoincash')) { setTimeout(function() { let boton = document.querySelector("button.button") if (boton) { boton.click() setTimeout(function() { window.location.reload() }, 60000) setInterval(claim, 10000) setInterval(claim2, 10000) }}, 10000) setTimeout(function refresh() { window.location.reload() }, intervalclaim*60000 + Math.floor(Math.random()*60000) + 5000) } setTimeout(function() { let cartel = document.querySelector("div.message-body") if (cartel && cartel.innerText.includes("was sent")) { window.location.reload() }}, (intervalclaim+1)*60000 + Math.floor(Math.random()*60000) + 20000) setTimeout(function() { let cartel = document.querySelector("div.alert.alert-danger") if (cartel && cartel.innerText.includes("funds")) { window.close() }}, 10000) // Your code here... })();