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
ProfileTelegram
112 commands3 envUpdated 2h agoCreated Aug 27, 2026
Back to folder

commands/_rank.js

javascript · 36 lines

Raw
1/**#command2name: /rank3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12// ===============================13// RANK COMMAND14// ===============================15 16var chatId = request.chat.id;17var userId = request.from.id;18var name = request.from.first_name || "User";19 20var key = "POINTS_" + chatId + "_" + userId;21 22var points = Bot.getProperty(key) || 0;23 24// Level system25var level = Math.floor(points / 10) + 1;26 27var nextLevel = level * 10;28var needed = nextLevel - points;29 30Bot.sendMessage(31  "👤 <b>" + name + "</b>\n\n" +32  "⭐ Points: <b>" + points + "</b>\n" +33  "🏆 Level: <b>" + level + "</b>\n" +34  "📈 Next level: <b>" + needed + "</b> more points",35  { parse_mode: "HTML" }36);