Giter VIP home page Giter VIP logo

wasd.tv-bot's Introduction

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

wasd.tv-bot's People

Contributors

idaspin avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.