-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathautopfp.py
56 lines (40 loc) · 1.27 KB
/
autopfp.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
from asyncore import loop
import random
import time
import discord
from discord.ext import commands
tostop = 0
intents = discord.Intents.all()
TOKEN = "Your Token here"
rh = commands.Bot(command_prefix=".", intents=intents)
def randnum(fname):
lines = open(fname).read().splitlines()
return random.choice(lines)
@rh.event
async def on_ready():
print(f"Connected to {rh.user}")
print(f"Bot ID : {rh.user.id}")
allowed = ["790662380052283444"]
@rh.command()
async def stop(ctx):
global tostop
if ctx.author.id == 790662380052283444 or ctx.author.id == 743431588599038003:
tostop += 1
await ctx.reply("**stopping pfps**")
else:
await ctx.reply("unauthorised")
@rh.command()
async def sendpfps(ctx):
global tostop
if ctx.author.id == 790662380052283444 or ctx.author.id == 743431588599038003: #kindly change the id names to your id's.
tostop = 0
await ctx.reply("**Sending pfps**")
while tostop == 0:
embed = discord.Embed(title=f"TITLE", description="a description", color=0x6509f5)
embed.set_image(url=randnum('scraped.txt'))
embed.set_footer(text="discord.gg/")
await ctx.send(embed=embed)
time.sleep(3)
else:
await ctx.send("unauthorised")
rh.run(TOKEN)