JaBa/commands/Fun/lmg.js
2022-01-04 02:18:28 +05:00

28 lines
No EOL
694 B
JavaScript

const Command = require("../../base/Command.js");
class Lmg extends Command {
constructor(client) {
super(client, {
name: "lmg",
dirname: __dirname,
enabled: true,
guildOnly: false,
aliases: ["lmgtfy"],
memberPermissions: [],
botPermissions: ["SEND_MESSAGES", "EMBED_LINKS"],
nsfw: false,
ownerOnly: false,
cooldown: 1000
});
}
async run(message, args) {
const question = args.join(" ");
if (!question) return message.error("fun/lmg:MISSING");
const encodedQuestion = question.replace(/[' '_]/g, "+");
await message.channel.send(`https://google.gik-team.com/?q=${encodedQuestion}`);
message.delete().catch(() => {});
}
};
module.exports = Lmg;