soumyadeep/ReactItBotPublic · Bot Template

A Telegram bot that automatically replies to keywords with text or media in groups. Easy to set up and perfect for FAQs, community management, and automated responses.

ProfileTelegram
8 commands0 envUpdated 14h agoCreated Jun 7, 2026
Back to folder

commands/@.js

javascript · 32 lines · click line # to share

1/**#command2name: @3answer: 4keyboard: 5parse_mode: 6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12async function isAdmin() {13 14  if (chat.type == "private") {15    return true;16  }17 18  let member = await Api.getChatMember({19    chat_id: chat.id,20    user_id: user.id21  });22 23  if (!member.ok) {24    return false;25  }26 27  return (28    member.result.status == "administrator" ||29    member.result.status == "creator"30  );31 32}