$ npm i wasd.tv-bot
const WASD = require('wasd.tv-bot');
WASD.init(`channel_name`, `access_token`); // ACCESS_TOKEN: https://wasd.tv/general-settings/API
WASD.event.on('ready', async (status) => {
if (label == "APIConnect") {
await WASD.getChannelInfo();
await WASD.getChannelInfo();
await WASD.getChannelSubs();
await WASD.setChatMode(chatRoleLimitMode, chatDelayLimitMode);
await WASD.addModerator(userId);
await WASD.removeModerator(userId);
await WASD.banUser(userId, keepMessages, minutes);
await WASD.unbanUser(userId);
await WASD.getChannelModerators(userId);
await WASD.getChannelBans(userId)
.then((result) => {
// do nothing
});
}
});
WASD.event.on('message', (message) => {
// BadWords Ban
if (['badword1', 'badword2'].some(bw => message.message.includes(bw))) {
WASD.banUser(message.user_id, false, 10);
}
});
WASD.event.on('follow', (event) => {
// do nothing
});
WASD.event.on('subscribe', (event) => {
// do nothing
});
WASD.event.on('error', (label, err) => {
// do nothing
});
- Check and auto connect to the current stream
- By analogy with dscord.js - move all JSON from API to classes
- Cache of users/channels/messages
- Found a bug: submit an issue.
- Discussion and help about wasd.tv-bot: 🇷🇺 Discord Server