zerodayz.js
v11.6.2
Published
A powerful library for interacting with the Discord API
Downloads
1
Maintainers
Readme
Example usage
const ZeroDayz = require('ZeroDayz');
const selfbot = new ZeroDayz.Client();
selfbot.on('ready', () => {
console.log(`Logged in as ${client.user.tag}!`);
});
selfbot.on('message', msg => {
//fixed issue with discord api crashing after a groupchat is created or updated.
if (msg.content === 'ping') {
msg.reply('pong');
}
});
selfbot.login('token');