-
Notifications
You must be signed in to change notification settings - Fork 4
Moderation Commands
KourvA edited this page Aug 28, 2024
·
4 revisions
Warn and unWarn commands allow issuing and revoking warnings to users. The maximum warning limit is 5, and a user will be muted after reaching this limit.
warn_command: List[str] = [
"warn", "предупреждение", "اخطار"
]
unwarn_command: List[str] = [
"unwarn", "удалить предупреждение", "حذف اخطار"
]Mute and unMute commands enable admins to silence or restore a user. Admins can mute users for durations between 1 minute and 366 minutes, or indefinitely.
mute_command: List[str] = [
"mute", "заглушить", "سکوت"
]
unmute_command: List[str] = [
"unmute", "снять заглушку", "حذف سکوت"
]Ban and unBan commands allow banning and unbanning users from the group. A banned user cannot return unless they are unbanned first.
ban_command: List[str] = [
"ban", "исключить", "بن"
]
unban_command: List[str] = [
"unban", "добавитьдобавить", "حذف بن"
]Note: you can also ban/unban with chat-id: ban 1234567890 | unban 1234567890
Previous page: Information and Help Commands | Next page: Pin and unPin Commands