Git Product home page Git Product logo

sinusbot_ts3query's Introduction

Sinusbot TS3Query

This Library allows you to connect via the https://sinusbot.com Scripting Engine to any TeamSpeak Query Interface

I used some functions and Ideas from the NodeJS Library https://github.com/gwTumm/node-teamspeak as help. Dont forget to require the "net" module in your config.ini The usage is nearly the same as the above mentioned Library

Here is a simple example:

var engine = require("engine") 
var ts3 = new TS3Query({ host: "127.0.0.1", port: 9987})

ts3.on("notifycliententerview", function(event){
  engine.log(JSON.stringify(event))
})
  
ts3.on("connect", function() {
  engine.log("CONNECTED!")
  ts3.send("login", {client_login_name: "queryusername", client_login_password: "querypassword"}, function(err) {
    if (err) return engine.log(JSON.stringify(err))
    ts3.send("use", {port: 9987}, function(err) {
      if (err) return engine.log(JSON.stringify(err))
      ts3.send("whoami", function(err, res) {
        if (err) return engine.log(JSON.stringify(err))
        engine.log(JSON.stringify(res))
      })
      ts3.send("servernotifyregister", {event: "server"}, function(err){
        if (err) return engine.log(JSON.stringify(err))
      })
    })
  })
})

Valid events are:
connect -> gets fired when the connection to the TCP Socket was successfull
close -> gets fired when the connection to the TeamSpeak gets closed
error
notify -> gets called when you receive a TeamSpeak Event

sinusbot_ts3query's People

Contributors

multivit4min avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

nestor

sinusbot_ts3query's Issues

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.