11.6.2 • Published 4 years ago

zerodayz v11.6.2

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
4 years ago

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');