-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
77 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[universal] | ||
githubToken = "" | ||
|
||
[discord] | ||
botToken = "" | ||
adminIDs = [ 000000000000000000, 000000000000000000, 000000000000000000 ] # replace this with whoever you want to be able to use administrative commands w/ the bot | ||
homeGuildID = 000000000000000000 # replace this with your discord server's ID | ||
activityType = "LISTENING" # valid types are PLAYING, STREAMING, LISTENING, WATCHING, CUSTOM_STATUS and COMPETING | ||
activityStatus = "" # status text after the type | ||
|
||
[database] | ||
host = "localhost" | ||
port = 5432 | ||
username = "postgres" | ||
password = "postgres" | ||
db = "yiski" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[moderation] | ||
muteRoleID = 000000000000000000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
[images] | ||
[images.static] | ||
devtools = "assets/images/devtoolsconfig.png" | ||
devtoolsfile = "devtoolsconfig.png" | ||
ims = "assets/images/dreadfulims.png" | ||
imsfile = "dreadfulims.png" | ||
token = "assets/images/token.png" | ||
tokenfile = "token.png" | ||
|
||
[images.gif] | ||
headcrabsuccess = "assets/images/headcrab_fail.gif" | ||
headcrabsuccessfile = "headcrab_fail.gif" | ||
headcrabfail = "assets/images/headcrab_fail.gif" | ||
headcrabfailfile = "headcrab_fail.gif" | ||
|
||
[videos] | ||
antihorny = "assets/videos/antihorny.mp4" | ||
antihornyfile = "antihorny.mp4" | ||
gasp = "assets/videos/gasp.mp4" | ||
gaspfile = "gasp.mp4" | ||
memoryleak = "assets/videos/memoryleak.mp4" | ||
memoryleakfile = "memoryleak.mp4" | ||
rtx = "assets/videos/rtx.mp4" | ||
rtxfile = "rtx.mp4" | ||
whatareyoudoing = "assets/videos/whatareyoudoing.mp4" | ||
whatareyoudoingfile = "whatareyoudoing.mp4" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
[bot] # Essential settings for the bot. | ||
# Timezone your are basing the reset on. | ||
timezone = "America/Los_Angeles" | ||
# How many days into the future do you want this to initially start on, if doing a midnight | ||
# I recommend 1 (else you select the previous and it starts instantly) | ||
daysAhead = 1 | ||
# Interval you want the bot to be reset at in minutes. | ||
resetInterval = 1440 | ||
# Time you want the initial reset to occour at, in 24 hour time. | ||
initialResetHour = 0 | ||
initialResetMinute = 0 | ||
|
||
[channels] # Channel related settings. | ||
# Your vent channel ID. | ||
vent = "000000000000000000" | ||
# The channel ID for vent logs to be sent to. | ||
ventLog = "000000000000000000" | ||
# The channel ID for vent attachments (uploaded files) to be sent to. | ||
ventAttachments = "000000000000000000" | ||
|
||
[filters] # Message types the bot will filter out of the wipe (true = not removed). | ||
# Webhook messages. | ||
webhooks = false | ||
# Bot messages. | ||
bots = false | ||
# System messages. | ||
system = true | ||
# Pinned messages. | ||
pinned = true | ||
# A list of message IDs to not be removed. Use if you have any messages to be never wiped. | ||
messages = [ 000000000000000000, 000000000000000000 ] | ||
# A list of user IDs to not remove the messages of. | ||
authors = [ 000000000000000000 ] |