455 commands2 envUpdated 7h agoCreated Aug 26, 2026
commands/age.js
javascript · 31 lines
1/**#command2name: age3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12/**#command13name: age14answer: 15keyboard: 16parse_mode: markdown17aliases: 18allow_only_group: false19need_reply: false20is_web: 021#command**/22 23try {24var y = 0;25if (typeof params !== "undefined" && params) y = parseInt(String(params).replace(/[^0-9]/g, "")) || 0;26if (y < 1300 || y > 1405) { Bot.sendMessage("سن شمسی:\n/age 1379"); return; }27var now = 1405;28Bot.sendMessage("🎂 حدود " + (now - y) + " سال (سال " + y + ")");29} catch (e) {30 Bot.sendMessage("خطا age");31}