You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
caveman/bot.py

29 lines
774 B
Python

import discord,os
from discord.ext import commands
from task import Packages
bot = commands.Bot(";")
bot.add_cog(Packages(bot))
@bot.command()
async def distrohop(ctx, *, count=None):
"""Count another miku distrohop"""
if os.path.exists("miku_distrohops.txt"):
with open("miku_distrohops.txt", "r") as f:
distrohops = int(f.read())
else:
distrohops = 0
3 years ago
if count != None:
distrohops += count
with open("miku_distrohops.txt", "w") as f:
f.write(str(distrohops))
await ctx.send("Miku distrohops: " + str(distrohops))
if not os.path.exists(os.environ["HOME"] + "/.cavetoken"):
print("No token found")
exit()
else:
token = open(os.environ["HOME"] + "/.cavetoken", "r").read()
bot.run(token)