const moment = require("moment-timezone"); module.exports = { config: { name: "info", version: "2.5.3", author: "ST | Sheikh Tamim", role: 0, countDown: 20, shortDescription: { en: "Owner & bot information" }, longDescription: { en: "Show detailed information about the bot, owner, uptime and socials" }, category: "owner", guide: { en: "{pn}" } }, onStart: async function ({ message }) { const ownerName = "STARBOY APHELION"; const ownerAge = "N/A"; const ownerFB = "https://facebook.com/star.boy.aphelion"; const ownerNumber = "+88019XXXXXXX"; const status = "Active"; const botName = global.GoatBot?.config?.nickNameBot || "GoatBot"; const prefix = global.GoatBot?.config?.prefix || "/"; // 🧠 TOTAL COMMANDS const totalCommands = global.GoatBot?.commands?.size || 0; const images = [ "https://i.postimg.cc/tgcKQdnL/file-00000000c604820ea44a1f191f074088.png" ]; const image = images[Math.floor(Math.random() * images.length)]; const now = moment().tz("Asia/Dhaka"); const date = now.format("MMMM Do YYYY"); const time = now.format("h:mm:ss A"); const uptime = process.uptime(); const days = Math.floor(uptime / 86400); const hours = Math.floor((uptime % 86400) / 3600); const minutes = Math.floor((uptime % 3600) / 60); const seconds = Math.floor(uptime % 60); const uptimeString = `${days}d ${hours}h ${minutes}m ${seconds}s`; return message.reply({ body: ` ╔═《 ✨ 𝗢𝗪𝗡𝗘𝗥 & 𝗕𝗢𝗧 𝗜𝗡𝗙𝗢 ✨ 》═╗ ⭓ 🤖 𝗕𝗼𝘁 𝗡𝗮𝗺𝗲 : 『 ${botName} 』 ⭓ ☄️ 𝗣𝗿𝗲𝗳𝗶𝘅 : 『 ${prefix} 』 ⭓ 🧠 𝗖𝗼𝗺𝗺𝗮𝗻𝗱𝘀 : 『 ${totalCommands} 』 ⭓ ⚡ 𝗨𝗽𝘁𝗶𝗺𝗲 : 『 ${uptimeString} 』 ⭓ 🗓️ 𝗗𝗮𝘁𝗲 : 『 ${date} 』 ⭓ ⏰ 𝗧𝗶𝗺𝗲 : 『 ${time} 』 ⭓ 👑 𝗢𝘄𝗻𝗲𝗿 : 『 𝐌𝐔𝐍𝐓𝐀𝐒𝐈𝐑 𝐀𝐒𝐈𝐅 』 ⭓ 🎂 𝗔𝗴𝗲 : 『 𝟏𝟕+ 』 ⭓ ❤️ 𝗦𝘁𝗮𝘁𝘂𝘀 : 『 𝐒𝐢𝐧𝐠𝐥𝐞 𝐁𝐨𝐲 』 ⭓ 📱 𝗪𝗵𝗮𝘁𝘀𝗔𝗽𝗽 : 『 𝟬𝟭𝟵𝟯𝟬𝟮𝟯𝟳𝟴𝟬𝟱 』 ⭓ 🌐 𝗙𝗮𝗰𝗲𝗯𝗼𝗼𝗸 : 『 𝐀𝐒 𝐈𝐅 』 ╚══════════════════════════╝ `, attachment: await global.utils.getStreamFromURL(image) }); } };