You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
await client.change_presence(activity=discord.Activity(type=discord.ActivityType.watching, name="Izumi and Kazuki sparring! (s!help)"))
await asyncio.sleep(30)
await client.change_presence(activity=discord.Game(name="poker with Wryin! (s!help)"))
await asyncio.sleep(30)
await client.change_presence(activity=discord.Activity(type=discord.ActivityType.watching, name="the moon with Tsuki! (s!help)"))
await asyncio.sleep(30)
@client.event
async def on_ready():
print("Spark, active!")
print("Logged in as:", client.user.name, "(", client.user.id, ")")
client.loop.create_task(status_task())
@client.command()
async def ping(ctx):
"""Test the bot's skills on ping-pong."""
await ctx.send("Pong!")
@client.command()
async def about(ctx):
"""Learn more about this bot."""
await ctx.send("```SparkBot™, a small quarantine project created by the loud-mouthed, purple-haired guy with little knowledge in programming - A.K.A Ichiki Hayaite#1111!\n\nSpecial thanks to Lexi#2249!```")
@client.command(name="secret",hidden=True)
async def heeho(ctx):
await ctx.send("Super command yo - It's a secret to everybody!")