Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- let alphabet = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
- const tryName = async () => {
- let a = alphabet.charAt(Math.floor(Math.random() * 62));
- let b = alphabet.charAt(Math.floor(Math.random() * 62));
- let c = alphabet.charAt(Math.floor(Math.random() * 62));
- await new Promise(r => setTimeout(r, 30000));
- let res = await fetch(`https://www.habbo.com.br/api/user/avatars/check-name?name=${a}${b}${c}`, {
- "headers": {
- "content-type": "application/json;charset=UTF-8",
- },
- "mode": "cors",
- "credentials": "include"
- });
- if ((await res.json()).isAvailable) {
- console.log(`Conta Disponível: ${a}${b}${c}`);
- } else {
- }
- tryName();
- }
- tryName();
Add Comment
Please, Sign In to add comment