-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.py
More file actions
26 lines (19 loc) · 728 Bytes
/
constants.py
File metadata and controls
26 lines (19 loc) · 728 Bytes
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
# Put all your constants like discord / google tokens here
DISCORDTOKEN = " "
GOOGLESHEETSKEYFILE = " "
SPREADSHEET_ID = " "
SCORES = "ranking" # name of a worksheet with summed up scores
LOG = "fbclog" # name of a worksheet with all the records
# constants with worksheet columns naming convention
DISCORDNAME = 'discord name' # column with discord usernames
DISCORDID = 'id'
TOTALUSERSCORE = 'SUM of ile' # pivot table column with summed scores
NEWENTRYSTATUS = 'nowy' # default status of a new entry
# command names - make sure to start with sign like $
ADDPOINTS = '$dodaj'
SUBTRACTPOINTS = '$wydaj'
TOP5 = '$top5'
USERSCORE = '$moje'
HELP = '$pomoc'
# custom messages
NOPMREPLY = "The bot is not accepting PMs"