-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconst.py
69 lines (53 loc) · 1.52 KB
/
const.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
from interactions import Button, ButtonStyle
import json, os, time, datetime
BOT_VERSION = "4.4.4"
NOTAUTHORMESSAGE = [
"Im not broken, you are!",
"You're not my boss!",
"Are you trying to quit me?",
"Sorry what did you say? I couldn't hear you.",
"My off button is out of your reach, and im not helping you get it any time soon!",
"Did you something?",
"!yes",
"This is no caution tape, this is an emergency shut down command!",
"Can I stay up just a little longer, pweeeeese??",
]
PLAYINSTATUS = [
"Bloons TD 6",
"Celeste",
"Cuphead",
"Five nights at Freddy's",
"Just shapes and beats",
"Minecraft",
"Krunker",
"osu!",
"Rocket Leauge",
"Fortnite",
"Chess",
]
WATCHINGSTATUS = [
"Youtube",
"Twitch",
"the stock market",
"birds",
"Anime"
]
CONTRIBUTORS = []
HELPERS = []
DELETE_BTN = Button(style=ButtonStyle.RED, custom_id="delete", emoji="🗑️")
NOW_UNIX = time.mktime(datetime.datetime.now().timetuple())
relative_path = "resources/namedays-extended.json"
os.chdir(os.path.dirname(os.path.abspath(__file__)))
with open(relative_path, encoding="utf-8") as f:
NAMEDAYS_EXT = json.load(f)
relative_path = "resources/namedays.json"
os.chdir(os.path.dirname(os.path.abspath(__file__)))
with open(relative_path, encoding="utf-8") as f:
NAMEDAYS = json.load(f)
URL_LINKS_CONTRIBUTORS = ()
URL_LINKS_LILHELPERS = ()
USERNAMES_CONTRIBUTORS = ()
USERNAMES_LILHELPERS = ()
CHANNEL_COOLDOWN = ()
INVITE_COOLDOWN = ()
NAMEDAY_COOLDOWN = ()