Updated user blacklist to a button. Added donation command.

This commit is contained in:
2026-01-12 17:11:03 -03:00
parent 29e6093714
commit 0e91353e37
5 changed files with 97 additions and 28 deletions

View File

@@ -21,21 +21,6 @@ module Commands
extend self
def register(bot)
cmd_key = :blacklist
cmd_desc = "Blacklist yourself from the trigger DMs (using the command again will whitelist you.)"
bot.register_application_command(cmd_key, cmd_desc, server_id: ENV['SERVER_ID'])
bot.application_command(cmd_key) do |event|
added = Database.toggle_user_blacklist(event.user.id)
if added
event.respond(content: "You have been added to the blacklist. You will no longer receive DMs.")
else
event.respond(content: "You have been removed from the blacklist. You will now receive DMs.")
end
end
cmd_key_server = :server_blacklist
cmd_desc_server = "Blacklist the server from the trigger DMs (using the command again will whitelist the server.)"

View File

@@ -0,0 +1,32 @@
# cheeseBot
# Copyright (C) 2026 Eri (csxkdv/nxkdv) nxkdv@thenight.club
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
module Commands
module Donation
extend self
def register(bot)
cmd_key = :donation
cmd_desc = "Only if you can and want, of course."
bot.register_application_command(cmd_key, cmd_desc, server_id: ENV['SERVER_ID'])
bot.application_command(cmd_key) do |event|
event.respond(content:"[Donate a ko-fi](https://ko-fi.com/reicore) to my creator if you can, and want.")
end
end
end
end