discord.zen
v1.0.3
Published
A Powerful Discord API Coding Language Written In JS Inspired by Discord.js, coming SOON!
Downloads
1
Readme
Welcome To Discord.Zen
What is Discord.Zen? Well Discord.Zen is a powerful discord bot coding language fully inspired by discord.js!
What Is The Status Well The Status Is still Under Construction so its not fully working but here is a short code some stuff may not work correctly!
Code:
const DiscordZen = require('discord.zen');
const BOT_TOKEN = '';
const bot = new DiscordZen(BOT_TOKEN);
bot.login();
console.log(`Successfully Logged In`)
bot.on('message', (message) => {
if (message.content === '!!hi') {
bot.sendMessage(message.channelId, 'hi');
}
});