Advertisement
antonio_pedro

Bot CheckName AQW

Jan 26th, 2025
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 1.36 KB | Source Code | 0 0
  1. // script by Tonny/Pep
  2.  
  3. const nicks = [
  4.     "H4CK3R", "H4CKER", "PEDRO", "TONI", "ANTONIO", "ANTONIOPEDRO"
  5. ];
  6.  
  7. const verificarNick = async (nick) => {
  8.     const resposta = await fetch(`https://account.aq.com/CharPage?id=${nick}`);
  9.     const texto = await resposta.text();
  10.  
  11.     if (texto.includes("Not Found")) {
  12.         console.log(`${nick} não existe.`);
  13.     }
  14. };
  15.  
  16. const testarLetras = async () => {
  17.     // Testa combinações de letras de 3 caracteres (de AAA até ZZZ)
  18.     const alfabeto = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
  19.     for (let i = 0; i < alfabeto.length; i++) {
  20.         for (let j = 0; j < alfabeto.length; j++) {
  21.             for (let k = 0; k < alfabeto.length; k++) {
  22.                 let letra = `${alfabeto[i]}${alfabeto[j]}${alfabeto[k]}`;
  23.                 await verificarNick(letra);
  24.                 await new Promise(resolve => setTimeout(resolve, 3000)); // Atraso de 3 segundos entre as verificações
  25.             }
  26.         }
  27.     }
  28. };
  29.  
  30. const tonny = async (index = 0) => {
  31.     if (index < nicks.length) {
  32.         await verificarNick(nicks[index]);
  33.         setTimeout(() => tonny(index + 1), 3000); // espera 3 segundos antes de testar o próximo nick
  34.     } else {
  35.         // Quando acabar a lista de nicks, começa a testar combinações de letras
  36.         await testarLetras();
  37.     }
  38. };
  39.  
  40. // Inicializando a execução da função
  41. tonny();
  42.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement