-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.py
134 lines (110 loc) · 3.8 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
import aminoli
from pyfiglet import figlet_format
from colored import fore, style
from tqdm import tqdm
print(
f"""
Multi Transfer
Script by Lucas Day
Github : https://github.com/LucasAlgerDay"""
)
print(figlet_format("Multi Transfer", font="fourtops"))
email = input("email: ")
password = input("password: ")
client = aminoli.Client()
client.login(email, password)
disponibles = client.get_wallet_info().totalCoins
print(f"Coins disponibles: {disponibles}")
def vip():
link = input("Link: ")
fok=client.get_from_code(link)
communityid=fok.path[1:fok.path.index("/")]
total =int(input("Cantidad a donar: "))
count = 0
objeto=fok.objectId
try:
client.join_community(comId = communityid)
except:
print("Asegurate de que la comunidad sea publica, si la cuenta ya se encuentra dentro de la comunidad ignora este mensaje xd")
sub_client = aminoli.SubClient(comId=communityid, profile=client.profile)
for i in tqdm(range(total // 500)):
try:
sub_client.subscribe(userId= objeto, autoRenew= False)
count += 500
except Exception as e:
print(e)
print(f"Coins enviadas {count}")
def blogs():
link = input("Link: ")
fok=client.get_from_code(link)
communityid=fok.path[1:fok.path.index("/")]
total =int(input("Cantidad a donar: "))
count = 0
objeto=fok.objectId
try:
client.join_community(comId = communityid)
except:
print("Asegurate de que la comunidad sea publica, si la cuenta ya se encuentra dentro de la comunidad ignora este mensaje xd")
sub_client = aminoli.SubClient(comId=communityid, profile=client.profile)
for i in tqdm(range(total // 500)):
try:
sub_client.send_coins(coins= 500, blogId= objeto)
count += 500
except Exception as e:
print(e)
print(f"Coins enviadas {count}")
def wikis():
link = input("Link de la wiki: ")
fok=client.get_from_code(link)
communityid=fok.path[1:fok.path.index("/")]
total =int(input("Cantidad a donar: "))
count = 0
objeto=fok.objectId
try:
client.join_community(comId = communityid)
except:
print("Asegurate de que la comunidad sea publica, si la cuenta ya se encuentra dentro de la comunidad ignora este mensaje xd")
sub_client = aminoli.SubClient(comId=communityid, profile=client.profile)
for i in tqdm(range(total // 500)):
try:
sub_client.send_coins(coins= 500, objectId= objeto)
count += 500
except Exception as e:
print(e)
print(f"Coins enviadas {count}")
def chats():
link = input("Link del chat: ")
fok=client.get_from_code(link)
communityid=fok.path[1:fok.path.index("/")]
total =int(input("Cantidad a donar: "))
print("\nSugerencia: Para evitar error a la hora de donar no se sugiere bajar de 2 segundos")
count = 0
objeto=fok.objectId
try:
client.join_community(comId = communityid)
except:
print("Asegurate de que la comunidad sea publica, si la cuenta ya se encuentra dentro de la comunidad ignora este mensaje xd")
sub_client = aminoli.SubClient(comId=communityid, profile=client.profile)
for i in tqdm(range(total // 500)):
try:
sub_client.send_coins(coins= 500, chatId= objeto)
count += 500
except Exception as e:
print(e)
print(f"Coins enviadas {count}")
print("1.Transfer Vip")
print("2.Transfer blog")
print("3.Transfer Wiki")
print("4.Transfer Chat")
select = input("Type Number: ")
if select == "1":
vip()
elif select == "2":
print("SOLO CON VALORES MULTIPLOS DE 500")
blogs()
elif select == "3":
print("SOLO CON VALORES MULTIPLOS DE 500")
wikis()
elif select == "4":
print("SOLO CON VALORES MULTIPLOS DE 500")
chats()