forked from Cliffbreak/tsviewer
viewer v1.0
This commit is contained in:
parent
db7bc0f2e3
commit
5673204105
1 changed files with 29 additions and 0 deletions
29
js/viewer.js
Normal file
29
js/viewer.js
Normal file
|
@ -0,0 +1,29 @@
|
|||
const TeamSpeak3 = require("ts3-nodejs-library")
|
||||
|
||||
var ts3conn = new TeamSpeak3({
|
||||
host: "localhost",
|
||||
queryport: 10011,
|
||||
serverport: 9987,
|
||||
username: "serveradmin",
|
||||
password: "R0cHL6tb",
|
||||
nickname: "NodeJS Query Framework",
|
||||
})
|
||||
|
||||
ts3conn.on("ready", () => {
|
||||
ts3conn.clientList({client_type:0}).then(clients => {
|
||||
clients.forEach(client => {
|
||||
console.log("Online: ", client.getCache().client_nickname)
|
||||
})
|
||||
}).catch(e => console.log("CATCHED", e.message))
|
||||
|
||||
ts3conn.channelList({}).then(channel => {
|
||||
channel.forEach(channel => {
|
||||
console.log("Channel: ", channel.getCache().channel_name)
|
||||
})
|
||||
}).catch(e => console.log("CATCHED", e.message))
|
||||
})
|
||||
|
||||
|
||||
|
||||
ts3conn.on("error", e => console.log("Error", e.message))
|
||||
ts3conn.on("close", e => console.log("Connection has been closed!", e))
|
Loading…
Reference in a new issue