talking sasquach once captured and ate a live butterfly on tiktok live for unknown reasons.

This commit is contained in:
2026-04-27 03:30:52 -06:00
parent afc1742c2e
commit 4faa839f62
+11 -4
View File
@@ -5,9 +5,12 @@ import requests
from rich import print from rich import print
import os import os
# you really do need to fille these out lmao
webhook_url = "https://discord.com/api/webhooks/1403525015818862602/frakefakefake" # replace with your actual webhook URL webhook_url = "https://discord.com/api/webhooks/1403525015818862602/frakefakefake" # replace with your actual webhook URL
discord_tag_role = "<@&1369280290203373670>" # replace with your actual Discord role ID (.\@rolename to get it) discord_tag_role = "<@&1369280290203373670>" # replace with your actual Discord role ID (.\@rolename to get it)
webhook_username = "[DЯΣΛMMΛKΣЯ]" # the name that will appear on the webhook message
# rice header :3
header = """ header = """
@@ -37,18 +40,22 @@ async def main():
while True: while True:
try: try:
devices = await BleakScanner.discover() devices = await BleakScanner.discover()
# jfc i hate how pythopn be
filtered_devices = [device for device in devices if any(device.address.upper().startswith(prefix) for prefix in VENDOR_PREFIXES)] filtered_devices = [device for device in devices if any(device.address.upper().startswith(prefix) for prefix in VENDOR_PREFIXES)]
if filtered_devices: if filtered_devices:
now = datetime.now().strftime("%Y-%m-%d %H:%M:%S.%f")[:-3] # includes miliseconds now = datetime.now().strftime("%Y-%m-%d %H:%M:%S.%f")[:-3] # includes miliseconds
webhook_payload = { webhook_payload = {
"content": f"{discord_tag_role} VLAT HAS BEEN SPOTTED MAC: {filtered_devices[0].address} TIME: {now}" "content": f"{discord_tag_role} VLAT HAS BEEN SPOTTED MAC: {filtered_devices[0].address} TIME: {now}",
"username": webhook_username
} }
print(f"VLAT HAS BEEN SPOTTED MAC: {filtered_devices[0].address} TIME: {now}") print(f"VLAT HAS BEEN SPOTTED MAC: {filtered_devices[0].address} TIME: {now}") # do not ask me to explain how vlat means cop idk there is no sober explination for it
requests.post(webhook_url, json=webhook_payload) for i in range(10): # guess what fuckers you finna be spammed as shgit :snurp:
requests.post(webhook_url, json=webhook_payload)
break break
except BleakError as e: except BleakError as e: # error handlking ig fuuuck
print(f"Error during scanning: {e}") print(f"Error during scanning: {e}")
await asyncio.sleep(10) # wait before next scan await asyncio.sleep(10) # wait before next scan
filtered_devices = [device for device in devices if any(device.address.upper().startswith(prefix) for prefix in VENDOR_PREFIXES)] filtered_devices = [device for device in devices if any(device.address.upper().startswith(prefix) for prefix in VENDOR_PREFIXES)]
# hoooolly shit whjy does this tumor language do shjit like this smh my head
if __name__ == "__main__": asyncio.run(main()) if __name__ == "__main__": asyncio.run(main())