iniz
This commit is contained in:
23
bot.py
Executable file
23
bot.py
Executable file
@@ -0,0 +1,23 @@
|
|||||||
|
from discord.ext import commands
|
||||||
|
import asyncio
|
||||||
|
|
||||||
|
client = commands.Bot(command_prefix="$")
|
||||||
|
|
||||||
|
|
||||||
|
@client.event
|
||||||
|
async def on_ready():
|
||||||
|
print("Potato is ready.")
|
||||||
|
|
||||||
|
|
||||||
|
@client.command(help='(what to spam) (interval(sec)) (how many times spam)')
|
||||||
|
@commands.has_permissions(administrator=True)
|
||||||
|
async def spamhere(ctx, what, interval, times):
|
||||||
|
try:
|
||||||
|
for i in range(int(times)):
|
||||||
|
await ctx.send(what)
|
||||||
|
await asyncio.sleep(int(interval))
|
||||||
|
except Exception as e:
|
||||||
|
await ctx.send(e)
|
||||||
|
|
||||||
|
|
||||||
|
client.run("NzgyNTEzMDYwNDM4OTk5MDQw.X8NSEw.5E-XMAGSaceiEmqiCnWORGi1q18")
|
Reference in New Issue
Block a user