Questions tagged [teamspeak]

A VoIP software package from TeamSpeak Software.

TeamSpeak is a VoIP software package from TeamSpeak Software primarily targeted at gamers.

Use this tag when asking about using the TeamSpeak SDK or otherwise programmatically interfacing with TeamSpeak.

Links

85 questions
0
votes
1 answer

Process finished with exit code -1073741819 (0xC0000005) (Cython, TeamSpeak3)

My aim for now is creating team speak 3 manager service (that switches the users by channels an others): So I created wrapper of TS3 SDK lib (wrapped with Cython for Python): https://mega.nz/#!pQdFjIwD!1vg8DPsFtYR4icVqWXzvpdbAQ47-n-aPz2niRkTU4fY…
Artem Selivanov
  • 1,867
  • 1
  • 27
  • 45
0
votes
1 answer

Cannot connect to TS3 server after migration

I try to migrate a TS3 server from an UNIX server to another one, but after putting the ts3server.sqlitedb file, I cannot connect to my server. I try to look at the DB, but there is nothing about IP or things like that. Ports are opened, and…
Treast
  • 1,095
  • 1
  • 9
  • 20
0
votes
1 answer

Padding when sorting categories fails and mis-sorts

I'm trying to code a channel viewer for my Teamspeak 3 server (which has parent and child channels/categories, and child channels to the child channels and so on), but when trying to style it and add padding depends on where it is, it fails and…
Ron Melkhior
  • 435
  • 2
  • 4
  • 13
0
votes
1 answer

Team speak SDK server

I want to integrate TeamSpeak into my Unity 5 project. I downloaded TeamSpeak SDK for Unity from their website and everything worked great. I created my own TS server, but when I put adress, port and password into unity plugin, it said, that It…
xtrontross
  • 191
  • 5
  • 20
0
votes
1 answer

Compiling .dylib for Mac

I have a plugin.cpp, plugin.h and pluginversion.h. I need to compile into a .dylib file for the TeamSpeak MassMove plugin. I've tried multiple methods of compiling a C++ files and headers into a .dylib, but none have worked. Running OS X El Capitan.
Zylem
  • 11
  • 1
0
votes
3 answers

php formatting new lines and spacing

This is a little complicated to explain but I'll try my hardest, I'm trying to create a tool to edit channel descriptions for TeamSpeak 3, to do this you use a feature called channeledit. example usage: channeledit…
Patrick
  • 45
  • 7
0
votes
1 answer

Ts3 telnet connection with C#

I try to connect to my TeamSpeak 3 server using telnet in a C# application. By the way, im not very experienced using telnet ^^', so I showed up the telnet Code at the…
Gonios
  • 95
  • 14
0
votes
1 answer

Simple Bash Online-time-counting Script for Teamspeak 3 via log?

So, I'm trying to count the time a user has been online on a Teamspeak 3 server via log. The log format is something like 2015-10-14 23:30:29.676932|INFO |VirtualServerBase| 1| client connected 'clientX'(id:XY) from…
TestTab
  • 1
  • 1
0
votes
1 answer

TeamSpeak3 server status

I have big problem because, when I'm trying to show status of my ts3 server I have blank page... What am I doing wrong? require_once('libraries/TeamSpeak3/TeamSpeak3.php'); try { // connect to server, authenticate and grab info …
pusty
  • 45
  • 7
0
votes
1 answer

Load Teamspeak dynamic linked library with JNI in Java

Is it possible to load the Teamspeak.so library by System.loadLibrary in java and access the methods declared in the .h files? (sources are the files from the ts3_sdk_3.0.3.2 - .h files from /include/teamspeak/serverlib.h; .so files from…
BenniR6
  • 3
  • 1
0
votes
1 answer

How to run TeamSpeak3 server on boot?

I'm trying to run TeamSpeak3 server on boot. I have ts3server script put in /etc/init.d. It works if I type ts3server start but it doesn't work on boot. What's more it shuts down on reboot so only starting does work. To set it I've used: update-rc.d…
Wobbly
  • 175
  • 1
  • 11
0
votes
1 answer

Automating Telnet Scripts from .bat with a teamspeak instance

Functional part of the script: telnet 62.141.39.173 10011 login serveradmin passwordredactedforsecurityreasons gm msg=test Message\\sAll This works when I paste it directly into CMD, but not when I execute it from a .bat file. I'm not sure why…
0
votes
1 answer

Connecting to TeamSpeak server query with sockets (C++)

At the moment I'm trying to write a program (C++) to connect to my TS3 server and run a query. To accomplish this task, I'm using a socket. The socket itself is working fine as I tested it with the SocketTest program…
Daniel
  • 83
  • 1
  • 2
  • 13
0
votes
0 answers

Trying to set up an Autoresponder for Teamspeak via lua

I have asked on the TeamSpeak community forums and either received very rude or cold comments. This is what I have far and have had no success. function onTextMessageEvent(serverConnectionHandlerID, targetMode, toID, fromID, fromName,…
-1
votes
1 answer

Lua script to poke clients in TS3 explanation

This is a working TS3 poke script, which pokes all of the users: function pokeall(serverConnectionHandlerID) local clients, error = ts3.getClientList(serverConnectionHandlerID) for i=1, #clients do local clname, clientNameError =…
Know-nothing
  • 132
  • 10