All tools have been verified to ensure your safety and security.
Uploaded by: Moo
Langauge: Python
Changes the status of your Discord Profile every 2 seconds!
See CodeUploaded by: Moo
Langauge: Python
An amazing multi-tool for Cybersecurity inside Discord!
Being DevelopedUploaded by: Unknown
Langauge: Unknown
This is placeholder, expect something new here...
See Code
import requests
import time
TOKEN = 'TOKEN HERE'
API_ENDPOINT = 'https://discord.com/api/v9'
statuses = [
"Made By Moo",
"Cow Tool On Top",
"Hello Everyone!"
# you can add more!!!
]
def changestatus(status):
url = f"{API_ENDPOINT}/users/@me/settings"
headers = {
"Authorization": f"{TOKEN}",
"Content-Type": "application/json"
}
data = {
"custom_status": {
"text": status
}
}
response = requests.patch(url, headers=headers, json=data)
while True:
for status in statuses:
changestatus(status)
time.sleep(2)