-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWordwallBot.py
More file actions
73 lines (61 loc) · 3.4 KB
/
WordwallBot.py
File metadata and controls
73 lines (61 loc) · 3.4 KB
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
import requests
import os
import random
import time
os.system("cls")
print("""
__ __ __ __ __
/ | _ / | / | / |/ |
$$ | / \ $$ | ______ ______ ____$$ | __ __ __ ______ $$ |$$ |
$$ |/$ \$$ | / \ / \ / $$ |/ | / | / | / \ $$ |$$ |
$$ /$$$ $$ |/$$$$$$ |/$$$$$$ |/$$$$$$$ |$$ | $$ | $$ | $$$$$$ |$$ |$$ |
$$ $$/$$ $$ |$$ | $$ |$$ | $$/ $$ | $$ |$$ | $$ | $$ | / $$ |$$ |$$ |
$$$$/ $$$$ |$$ \__$$ |$$ | $$ \__$$ |$$ \_$$ \_$$ |/$$$$$$$ |$$ |$$ |
$$$/ $$$ |$$ $$/ $$ | $$ $$ |$$ $$ $$/ $$ $$ |$$ |$$ |
$$/ $$/ $$$$$$/ $$/ $$$$$$$/ $$$$$/$$$$/ $$$$$$$/ $$/ $$/
__ __ discord.gg/FgM4zAw4qP
/ | / |
$$ |____ ______ _$$ |_
$$ \ / \ / $$ |
$$$$$$$ |/$$$$$$ |$$$$$$/
$$ | $$ |$$ | $$ | $$ | __
$$ |__$$ |$$ \__$$ | $$ |/ |
$$ $$/ $$ $$/ $$ $$/
$$$$$$$/ $$$$$$/ $$$$/
made by Ohno
""")
score = int(input("Enter your desired score 💯: "))
time_ms = int(input("Enter your desired time ⌛ (ms): "))
bot_name = input("Enter the name of your bot 🏷️(s): ")
bot_count = int(input("Enter amount of bots 🔟: "))
activity_id = int(input("Enter the activity ID(type 'help' if you don't know what this is)🆔: "))
template_id = int(input("Enter the template ID(type 'help' if you don't know what this is)🆔: "))
print("\n🚀================================================================🚀\n")
for x in range(bot_count):
payload = {
"score": score,
"time": time_ms,
# If the bot required is 1 it will not add a random number
"name": bot_name if bot_count == 1 else f"{bot_name}{random.randint(1, 1000)}",
"mode": bot_count,
"activityId": activity_id,
"templateId": template_id,
}
print("Creating...")
print("...")
time.sleep(1)
print("...")
# Request and posts ☠️
response = requests.post("https://wordwall.net/leaderboardajax/addentry", data=payload)
if response.status_code != 200:
print(f"Bot {x+1}: Something went wrong.")
else:
print(f"🤖 Bot {x+1}: Successfully made a bot called {payload['name']}🤖")
print("\nThank you for using this tool and feel free to support me on my GitHub and Discord ツ")
print(" 👇👇👇👇")
print("")
time.sleep(1)
print("💪 =======> https://github.com/OhnoMain <======= 💪")
print("🎮 =======> https://discord.gg/FgM4zAw4qP <======= 🎮")
time.sleep(2)
input("Press enter to exit❌: ")