TeamSpeak PHP Framework for normal clients

EPEffects

Member
Apr 23, 2016
19
1
35
As many of you know, there are PHP Frameworks for teamspeak Server queries, like the Framework of planetteamspeak... I wanted to ask you, if there is a similar Framework for normal Clients... A Framework with functions like sendmessages, change nickname, etc...

Kind regrads,
Simon
 

Norvik

Retired Staff
Contributor
Jul 18, 2015
635
588
157
I'm not sure if you got what i wanted. I want a Framework for php with which you can control some time of "bot", which is not a serverquery client, but a normal one. A client like you and me as you join the teamspeak server.
Disadvantages of having a query client?
 

EPEffects

Member
Apr 23, 2016
19
1
35
Can't send sounds to channel, is not visible to normal users of the teamspeak
 

EPEffects

Member
Apr 23, 2016
19
1
35
Example for sending sounds to a channel with php?
That's exactly what i asked for! Is there a framework which gives you the possibility to control a normal ts3 client, so you could for example code a music bot or something similar?
 

Alligatoras

Administrator
Mar 31, 2016
2,570
12
2,857
381
That's exactly what i asked for! Is there a framework which gives you the possibility to control a normal ts3 client, so you could for example code a music bot or something similar?
As far as i know, you can't manage a client from a php code (and by that i don't mean stuff like change client's uid description) i mean mute mic or sounds and stuff
 

LeU5er

Security Researcher
Aug 6, 2016
448
45
118
@EPEffects
It should work, try to connect over telnet to your localhost where your TS3-Client is running.
Code:
telnet 127.0.0.1 25639
Then type in there: help
With the command:
Code:
help clientupdate
you will get a lot of options, as example you can mute and unmute your microphone with the commands:
Code:
clientupdate client_output_muted=1 #This will disable your mic.
clientupdate client_output_muted=0 #This will enable your mic.
You can edit the settings for the TS3 Client Query in your TeamSpeak 3 Client under "Options --> Plugins --> Query Plugin --> Settings"
All this also can be written on PHP. :)
I hope this is what you were searching for.
 

Alligatoras

Administrator
Mar 31, 2016
2,570
12
2,857
381
@EPEffects
It should work, try to connect over telnet to your localhost where your TS3-Client is running.
Code:
telnet 127.0.0.1 25639
Then type in there: help
With the command:
Code:
help clientupdate
you will get a lot of options, as example you can mute and unmute your microphone with the commands:
Code:
clientupdate client_output_muted=1 #This will disable your mic.
clientupdate client_output_muted=0 #This will enable your mic.
You can edit the settings for the TS3 Client Query in your TeamSpeak 3 Client under "Options --> Plugins --> Query Plugin --> Settings"
All this also can be written on PHP. :)
I hope this is what you were searching for.
i really think he meant for other clients ;)
 
Top