Skip to content

Commit 476e761

Browse files
authored
Add files via upload
1 parent ae758a9 commit 476e761

File tree

4 files changed

+98
-0
lines changed

4 files changed

+98
-0
lines changed

AutoSetup.bat

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
@echo off
2+
pip install ctypes
3+
pip install requests
4+
pip install random
5+
pip install string
6+
pip install time
7+
pip install sys
8+
pip install os
9+
10+
Setup is finished now start the run.bat

RainBow.py

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
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")

rainbow.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
https://discord.gift/pmuRvrzQrDGCLUxT
2+
https://discord.gift/3db9MBSBbXMp0LYn
3+
https://discord.gift/Git9BNaUUGJiCedp
4+
https://discord.gift/dxzP3DyBr9Fg02Wx
5+
https://discord.gift/NDXWaSn02zdVMucs
6+
https://discord.gift/vjh0BGOXRXeLR3ig
7+
https://discord.gift/EZGmVVINWbSAbild
8+
https://discord.gift/xPsyOXDkQfRf2gHG
9+
https://discord.gift/rtrGQRcsYQNAOkRI
10+
https://discord.gift/eAA9Iib6bnCXZ8PQ
11+
https://discord.gift/56AIhihYB1ibH3YB
12+
https://discord.gift/m6A5cBB1wpFlvqG1
13+
https://discord.gift/YWmFDs8A3MqvVSLW
14+
https://discord.gift/akm3BQdVo881y8V1
15+
https://discord.gift/Rr4kmvSced8adQC5

run.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
@echo off
2+
python RainBow.py

0 commit comments

Comments
 (0)