/
kewerborliert
/
Computer-15
Обзор
Документация
Войти
/
kewerborliert
/
Computer-15
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
TelegramBot/Bot/Commands/cmd_remove.lua
17 строк
609 B
afyyar
upload
29 дек 2024, 08:26
29 дек 2024, 08:26
099515e
Код
Авторство
О чём код?
local Cs = require "Bot.Service.CmdService" local Us = require "Bot.Service.UsersService" local Tg = require "Bot.Service.TelegramService" require "const" return function(actions, chat_id) if Us.CheckAdmin(chat_id) then Tg.SendMessage(chat_id, "Enter the command name") actions[chat_id] = function (msg_text) actions[chat_id] = nil Cs.CmdRemove(chat_id, msg_text) Tg.SendMessage(chat_id, "You have failed me at the last time, command "..string.gsub(msg_text, "%/", "")) end else Tg.SendMessage(chat_id, MSG_NOT_ADMIN) end end