meowcord
Meowcord, is a powerful library/module/package that is made for making bots in discord & managing them.
Links
- Note: Support server is a codesharing guild, if u want help u can type to .exeKuznetsov or hello bsod.
Announcement
Package/module is currently in maintaning, we making it. We will share a new version when it gets ready.
Features
- ETU(Easy To use): Meowcord is easy to use, and also like discord.js, but its more simple(etc. basicCommand, advancedCommand)
- Its ur customization: U can use <client>.advancedCommand() for creating commands that is just ur code, we dont touch. U can make custom commands with that!
- Discord.js client structures: We also added the structures like <client>.ws.ping to the client.
- Its like other libraries: If your using aoi.js, then its gonna be good to pass meowcord, because it is like aoi.js & discord.js so while you using you can learn some discord.js.
To use:
const {Meow, Intents} = require("meowcord")
const bot = new Meow({
intents: [Intents.Guilds, Intents.GuildMessages, Intents.MessageContent], //intents of the bot
prefix: "!",
meowSettings: {
mobileStatus: false, //false but u can make it true, also comes with not enabled.
returnBotInfosInConsole: true //optional
},
})
bot.start("token");
bot.basicCommand({
cmdName: "ping",
cmdCode: async (message) => {
const ping = Date.now() - message.createdTimestamp;
message.reply(`🏓 Pong! My ping is currently ${ping}ms`);
}
});
Current Status
meowcord works good in version 0.1.6.
Current Features
- Importing commands: Now allowing you to import commands, or any etc. from a folder/file.
- Event Support: Now allows you to use <client>.on or <client>.once.
- Command Listing: With command listing, you can now reload commands & clear all commands, and get list.
- For More: Check our docs!
Changelog
Check website for changelog. Go To Website