Skip to content
This repository has been archived by the owner on Nov 4, 2022. It is now read-only.

iamnotacoder-djs/wasd.tv-bot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Sponsor this project

Packages

No packages published