-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot.py
70 lines (52 loc) · 1.64 KB
/
bot.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import os
import discord
from discord.ext import commands
from dotenv import load_dotenv
import requests
import asyncio
load_dotenv()
TOKEN = os.getenv("DISCORD_TOKEN")
API_LOCATION = os.getenv("API_LOCATION")
DELAY = 60
help_command = commands.DefaultHelpCommand(no_category="Commands")
intents = discord.Intents.default()
intents.message_content = True
bot = commands.Bot(command_prefix="$", intents=intents,
help_command=help_command)
def getEndpoint(endpoint):
return requests.get(API_LOCATION + endpoint)
async def setStatus():
res = getEndpoint("/players")
if res.status_code == 200:
players = res.json()
await bot.change_presence(
activity=discord.CustomActivity(
"🟢 {} players online".format(len(players["online"]))
)
)
async def job():
while 1:
await setStatus()
await asyncio.sleep(DELAY)
@bot.event
async def on_ready():
print(f"{bot.user} has connected on Discord")
# set up scheduler job
print(f"setting status every {DELAY} seconds...")
bot.loop.create_task(job())
@bot.command(name="online", help="Responds with the players currently online")
async def check_online(ctx):
res = getEndpoint("/players")
if res.status_code != 200:
await ctx.send("an error occurred")
else:
players = res.json()
msg = "```SaseCRAFT:\n--------------------\nOnline Players: {} \
\nTotal Players: {}\n--------------------```".format(
players["online"], len(players["all_players"])
)
await ctx.send(msg)
if TOKEN:
bot.run(TOKEN)
else:
print("Missing Token")