|
| 1 | +import ctypes |
| 2 | +import requests |
| 3 | +import random |
| 4 | +import string |
| 5 | +import time |
| 6 | +import os |
| 7 | +import sys |
| 8 | +import colorama |
| 9 | +from colorama import init |
| 10 | +init() |
| 11 | +from colorama import Fore, Back, Style |
| 12 | +print(Fore.MAGENTA + '╦═╗╔═╗╦╔╗╔╔╗ ╔═╗╦ ╦╔═╗╔═╗╔╗╔') |
| 13 | +print(Fore.BLUE + '╠╦╝╠═╣║║║║╠╩╗║ ║║║║║ ╦║╣ ║║║') |
| 14 | +print(Fore.CYAN + '╩╚═╩ ╩╩╝╚╝╚═╝╚═╝╚╩╝╚═╝╚═╝╝╚╝') |
| 15 | +print(Fore.BLUE + '╔══════════════════════════════════════════════╗') |
| 16 | +print(Fore.CYAN + '║ Dev:T0XICDEV#2686 Name: rainbowdog#6114 ║') |
| 17 | +print(Fore.BLUE + '║ Host This gen at batcore.eu/affiliate/Toxic ║') |
| 18 | +print(Fore.CYAN + '║ !! THIS IS NOT OFFICIAL BATCORE GEN XD !! ║') |
| 19 | +print(Fore.BLUE + '╚══════════════════════════════════════════════╝') |
| 20 | +animation = ["[■□□□□□□□□□]","[■■□□□□□□□□]", "[■■■□□□□□□□]", "[■■■■□□□□□□]", "[■■■■■□□□□□]", "[■■■■■■□□□□]", "[■■■■■■■□□□]", "[■■■■■■■■□□]", "[■■■■■■■■■□]", "[■■■■■■■■■■]"] |
| 21 | + |
| 22 | +for i in range(10): |
| 23 | + time.sleep(0.4) |
| 24 | + sys.stdout.write("\rLoading RainBowGEN " + animation[i % len(animation)]) |
| 25 | + sys.stdout.flush() |
| 26 | +print('') |
| 27 | +print(Back.MAGENTA + Fore.BLUE + 'Welcome To RainbowGEN') |
| 28 | +print(Style.RESET_ALL) |
| 29 | +time.sleep(1.0) |
| 30 | + |
| 31 | +print(Back.CYAN + Fore.WHITE + '') |
| 32 | +num = int(input('Amount of codes ?')) |
| 33 | + |
| 34 | +with open("rainbow.txt", "w", encoding='utf-8') as file: |
| 35 | + print("Reading txt ...") |
| 36 | + |
| 37 | + start = time.time() |
| 38 | + |
| 39 | + for i in range(num): |
| 40 | + code = "".join(random.choices( |
| 41 | + string.ascii_uppercase + string.digits + string.ascii_lowercase, |
| 42 | + k = 16 |
| 43 | + )) |
| 44 | + |
| 45 | + file.write(f"https://discord.gift/{code}\n") |
| 46 | + |
| 47 | + print(Back.MAGENTA + Fore.BLUE + '>>>| RAINBOW GEN |<<<') |
| 48 | + time.sleep(1.0) |
| 49 | + print(Back.BLUE + Fore.MAGENTA + '') |
| 50 | + print(f"Starting generating {num} codes!") |
| 51 | + print(Style.RESET_ALL) |
| 52 | +with open("rainbow.txt") as file: |
| 53 | + for line in file.readlines(): |
| 54 | + nitro = line.strip("\n") |
| 55 | + |
| 56 | + url = "https://discordapp.com/api/v6/entitlements/gift-codes/" + nitro + "?with_application=false&with_subscription_plan=true" |
| 57 | + |
| 58 | + r = requests.get(url) |
| 59 | + |
| 60 | + if r.status_code == 200: |
| 61 | + print(f" WORKS | {nitro} ") |
| 62 | + break |
| 63 | + else: |
| 64 | + print(Fore.RED + f"It work?,ne! | {nitro} ") |
| 65 | + |
| 66 | + |
| 67 | +print(Back.RED + Fore.WHITE +"Join BATCORE FOR HAVING BETTER LIFE ! : https://discord.gg/batcore And use https://batcore.eu/affiliate/Toxic\n") |
| 68 | + |
| 69 | +time.sleep(0.6) |
| 70 | + |
| 71 | +input("I like spending your time of thinking you get nitro HAHA") |
0 commit comments