millswelbeck148/SireimadeBotPublic · Bot Template
AISireImade appears to be a Telegram automation bot. Commands include /start, /about, /support, /id, /admin, /ban, /unban, /x. Observed in code: messaging, keyboards, games.
Utilityutility
112 commands3 envUpdated 2h agoCreated Aug 27, 2026
commands/_point.js
javascript · 26 lines
1/**#command2name: /point3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12// ===============================13// SIMPLE MESSAGE POINTS14// ===============================15 16var chatId = request.chat.id;17var userId = request.from.id;18 19var key = "POINTS_" + chatId + "_" + userId;20 21var points = Bot.getProperty(key) || 0;22 23// Give 1 point per message24points += 1;25 26Bot.setProperty(key, points, "integer");