Skip to content

Commit

Permalink
📝 added toml resources
Browse files Browse the repository at this point in the history
  • Loading branch information
asoji committed Aug 4, 2024
1 parent bf98107 commit da7643a
Show file tree
Hide file tree
Showing 4 changed files with 77 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Writerside/resources/config.toml
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"
2 changes: 2 additions & 0 deletions Writerside/resources/yiski1.config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[moderation]
muteRoleID = 000000000000000000
26 changes: 26 additions & 0 deletions Writerside/resources/yiski3.config.toml
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"
33 changes: 33 additions & 0 deletions Writerside/resources/yiski5.config.toml
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 ]

0 comments on commit da7643a

Please sign in to comment.