Skip to content

VIP & Admin Management Commands

KourvA edited this page Aug 28, 2024 · 5 revisions

🔰 AddVIP

AddVIP allows adding a user to the VIP list in the group or supergroup. Users on the VIP list can send media even if the media type is restricted in the group.

addvip_command: List[str] = [
    "add vip", "addvip", "добавить vip", "تنظیم ویژه"
]

🚫 DelVIP

DelVIP is used to remove a user from the VIP list in the group or supergroup. Users not on the VIP list won't be able to send media if media content is restricted in the group.

delvip_command: List[str] = [
    "del vip", "delvip", "удалить vip", "حذف ویژه"
]

💎 Promote

Promote elevates a user to bot admin status, granting them access to bot commands similar to other admins.

promote_command: List[str] = [
    "promote", "продвигать", "ترفیع"
]

📵 Demote

Demote lowers a user from bot admin status, revoking their ability to use bot commands.

demote_command: List[str] = [
    "demote", "понижать в должности", "تنزل"
]

Previous page: Statistics and Bot-related Commands

Clone this wiki locally