// ==UserScript== // @name SpaceShooter // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author Venas // @match https://spaceshooter.net/* // @icon https://www.google.com/s2/favicons?sz=64&domain=spaceshooter.net // @grant none // @grant GM_setValue // @grant GM_getValue // @license MIT // ==/UserScript== (function() { 'use strict'; var email = "seua-email@gmail.com";////EXAMPLE//// var password = "sua-senha";////EXAMPLE//// function isCaptchaChecked() { return grecaptcha && grecaptcha.getResponse().length !== 0; } if(window.location.href === "https://spaceshooter.net/"){ window.location.replace("https://spaceshooter.net/login")} if(window.location.href.includes("https://spaceshooter.net/login")){ setInterval(function() { if (document.querySelector("#email")) { document.querySelector("#email").value = email; } if (document.querySelector("#password")) { document.querySelector("#password").value = password; } if (document.querySelector("button[type='submit']")) { document.querySelector("button[type='submit']").click(); } }, 15000); } if(window.location.href.includes("https://spaceshooter.net/dashboard")){ window.location.replace("https://ouo.io/xDyyOMQ")} if (window.location.href ==="https://spaceshooter.net/ptc" && document.body.innerHTML.includes("Daily Limit Reached")){ window.location.replace("https://ouo.io/PfpLub")} function removeAreasByNames(names) { var elements = document.querySelectorAll('div[class="welcome-card px-3"]'); elements.forEach(function(element) { var elementText = element.textContent.trim(); names.forEach(function(name) { if (elementText.includes(name)) { element.parentElement.remove(); } }); }); } var namesToRemove = [ 'Rs Short', // Adicione mais nomes à array para remover áreas adicionais ]; removeAreasByNames(namesToRemove); // Aguarde um pouco para garantir que a página tenha carregado completamente setTimeout(function() { // Localize e clique no elemento usando o seletor CSS fornecido document.querySelector('.col-lg-4:nth-child(2) .claim-btn').click(); }, 2000); // Função para simular um clique em um elemento com base em seu seletor CSS function clickElement(selector) { const element = document.querySelector(selector); if (element) { element.click(); } } // Clique no primeiro elemento com o seletor CSS ".col-sm-3:nth-child(1) .btn" após 3 segundos setTimeout(() => { clickElement(".col-lg-6:nth-child(2) .claim-btn"); }, 3000); // Função para selecionar a segunda opção do select function selecionarRecaptcha() { const selectElement = document.getElementById('selectCaptcha'); if (selectElement) { if (selectElement.options.length >= 2) { selectElement.selectedIndex = 1; // Seleciona a segunda opção (índice 1) } } } // Executar a função quando a página carregar window.addEventListener('load', selecionarRecaptcha); // Clique no segundo elemento com o seletor CSS "#verify" após 5 segundos setTimeout(() => { clickElement("#verify"); }, 50000); })();