-
Notifications
You must be signed in to change notification settings - Fork 0
/
Selfbot.py
47 lines (39 loc) · 1.54 KB
/
Selfbot.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
import os
import asyncio
import discord
from discord.ext import commands
from discord.ext import tasks
from dotenv import load_dotenv
import json
import re
print("MADE BY Galactic-Kurisu#7132")
print("Also, in config.json, make sure to customize it before use or you'll look dumb as hell lmao")
print("EDIT ME TO YOUR TOKEN")
with open('./config.json', 'r') as cjson:
config = json.load(cjson)
load_dotenv()
TOKEN = os.getenv('DISCORD_TOKEN')
ACTIVITY1 = config["Activity1"]
ACTIVITY2 = config["Activity2"]
ACTIVITY3 = config["Activity3"]
bot = commands.Bot(command_prefix=(">>>"), self_bot=True)
client = discord.Client()
@bot.event
async def on_ready():
await bot.wait_until_ready()
if config["activity"] == True:
my_background_task.start()
print("Logged in as %s#%s" % (bot.user.name, bot.user.discriminator))
print("ID: " + str(bot.user.id))
if config["activity"] == True:
@tasks.loop(seconds=120)
async def my_background_task():
await bot.change_presence(status=discord.Status.dnd, activity=discord.Activity(type=discord.ActivityType.watching, name=(ACTIVITY1)))
await asyncio.sleep(40)
await bot.change_presence(status=discord.Status.dnd, activity=discord.Activity(type=discord.ActivityType.watching, name=(ACTIVITY2)))
await asyncio.sleep(40)
await bot.change_presence(status=discord.Status.dnd, activity=discord.Activity(type=discord.ActivityType.watching, name=(ACTIVITY3)))
await asyncio.sleep(40)
else:
print("Not using activity")
bot.run(TOKEN, bot=False)