goat
command
ping
Displays run of the bot
0
views
0
likes
0
installs
Aliases: running
raw source
module.exports = {
config: {
name: "ping",
aliases: ["running"],
author: "Chitron Bhattacharjee",
version: 1.1,
role: 0,
shortDescription: {
en: "Displays run of the bot's system."
},
longDescription: {
en: "Displays Running speed of the bot's system."
},
category: "system",
guide: {
en: "Use {up} uptime to check the current Running speed of the bot's system."
}
},
onStart: async function ({ api, event, args }) {
const timeStart = Date.now();
await api.sendMessage("CHECKING PINING ๐ฆ๐จ", event.threadID);
const uptime = Date.now() - timeStart;
// Adjusted the range for more values between 100 and 200
const randomUptime = Math.floor(Math.random() * (200 - 100 + 1)) + 100;
// Decide whether to show real Run or not
const showRealRun = Math.random() <= 0.2;
const finalRunning = showRealRun ? uptime : randomUptime;
api.sendMessage(`Running ping ๐ฆ ${finalRunning} MS.`, event.threadID);
},
onChat: async function ({ event, message, getLang }) {
if (event.body && event.body.toLowerCase() === "uptimespeed") {
// Adjusted the range for more values between 100 and 200
const uptimeValue = Math.floor(Math.random() * (200 - 100 + 1)) + 100;
return message.reply(`Running ${uptimeValue} days`);
}
}
};