wasd.tv-bot

1.0.3 • Public • Published

wasd.tv-bot

Npm Version Downloads

Install

Node

$ 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
});

TODO

  • 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

Community

Package Sidebar

Install

npm i wasd.tv-bot

Weekly Downloads

1

Version

1.0.3

License

ISC

Unpacked Size

19.2 kB

Total Files

4

Last publish

Collaborators

  • idaspin