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

C++ CLI / TS3 Client crashes on plugin

Sooo... I have written a plugin, and the whole plugin works fine. ONLY PROBLEM: My TS3 Client crashes. To give a context: (Warning: That code is just poorly pasted. On GitHub, it crashes at line 270 and 285) // Helper Function String^…
J.Horr
  • 117
  • 1
  • 13
0
votes
0 answers

Bash into telnet session with variables and log the output

We'd like to use the following bash variables into an telnet session and work with the output of the telnet in the bash: Bash: $me=Tester111 $myid=XXXWWWZZZ Telnet: login serveradmin PW msg OK (output) use sid=1 msg OK (output) clientgetids…
0
votes
3 answers

Emulate C datatypes in C#

Is there a way to emulate special C datatypes, like uint64 (_int64), anyID (_int16) in C#? I defined the special datatypes in C like this: typedef unsigned _int16 anyID; typedef unsigned _int64 uint64; Its for using the TS3 Plugin API. It has to be…
J.Horr
  • 117
  • 1
  • 13
0
votes
0 answers

Create a C# Wrapper class for the TS3 SDK

How can I create a wrapper class in C# that basically wraps around the newest version of the TS3 SDK? (API version 21 - https://www.teamspeak.com/downloads#sdk) There actually is an existing wrapper, but it's too old. Its TS3 Version 3.0.3... I have…
J.Horr
  • 117
  • 1
  • 13
0
votes
1 answer

Teamspeak 3 module API "Cannot GET /"

I am trying to setup a teamspeak 3 module for my WHMCS website. I've did everything right according to the tutorial. But I also have an API coded in node that works with the module. When I access 0.0.0.0:3000 I get the error "Cannot GET /" My…
Bin Flaxx
  • 11
  • 5
0
votes
2 answers

Teamspeak 3 Framework

I'm trying to get all clients database id, but I've been unable to using foreach etc as it always returns the value as NULL. I need to get a foreach with the database ids and put it in an array $userchannel =…
MAH3R
  • 27
  • 6
0
votes
0 answers

TeamSpeak 3 program stopped working after add own plugin

I've made a ts3 plugin this is code: int ts3plugin_onTextMessageEvent(uint64 serverConnectionHandlerID, anyID targetMode, anyID toID, anyID fromID, const char* fromName, const char* fromUniqueIdentifier, const char* message, int ffIgnored) { …
Konrad
  • 25
  • 1
  • 8
0
votes
0 answers

How to create 64 bit teamspeak 3 plugin?

i've just started a story with creating plugins but i have a problem with example plugin that i've downloaded from here TeamSpeak3 plugin sdk It doesn't work on 64bit version of teamspeak 3. How can i make it works?
Konrad
  • 25
  • 1
  • 8
0
votes
1 answer

500 Internal Server Error - TS3 Module WHMCS

I am running a WHMCS website, we are going to offer Teamspeak 3 servers soon, we are using CPanel to host the website. Our current version of WHMCS is 7.0, it is licensed. We are using a Windows VPS with a firewall that is currently turned off to…
Bin Flaxx
  • 11
  • 5
0
votes
2 answers

Is there a more efficient way to run this function?

Is there a tidier way to format the function I created to get Client IP addresses for something on my TeamSpeak that this? function getClientIp() { if (!empty($_SERVER['HTTP_CLIENT_IP'])) return $_SERVER['HTTP_CLIENT_IP']; else…
RachMcrae
  • 123
  • 2
  • 10
0
votes
1 answer

Issue while connecting to a server via TcpClient

I'm testing a application where I connect to a server with a TcpClient, sending strings and waiting for a response. This works when stepping through the app but when running it without breakpoints, the result is empty. To be specific: I want to…
Radinator
  • 1,048
  • 18
  • 58
0
votes
1 answer

Teamspeak hierarchy permission configuration

I'm trying to configure my teamspeak server and I don't know how to do some things, so I'm asking help to configure it... here is what i wanted to do: I have some categories like 'Minecraft' or 'Planetside 2' or 'Devlopment' and each categorie…
Grégory L
  • 612
  • 6
  • 17
0
votes
1 answer

Custom TeamSpeak IP no longer working after adding SSL

I am currently using CloudFlare and recently added an SSL certificate to my script. Before hand, I added an A record (proxied with CloudFlare) that pointed to my TS IP. It worked like this: ts.domain.net:PORT However, after I added the SSL cert, it…
Pistachios
  • 67
  • 1
  • 1
  • 6
0
votes
0 answers

Java create temporary file throught Lua execution

i have problems creating a temporary file with java through lua. The code works if i start the jav program through the command line but if the program is started by the Lua-plugin it does not create a file. Cases: Command Line> java Bot…
0
votes
1 answer

TeamSpeak3 Client SDK -- defaultChannelArray argument for ts3client_startConnection()

I am trying to connect to my TeamSpeak3 server using a different channel from the default. The docs say: -defaultChannelArray String array defining the path to a channel on the TeamSpeak 3 server. If the channel exists and the user has sufficient…
Galastun
  • 130
  • 7