Add admin server query to client [3.9.1]

ivar

Member
Oct 14, 2017
3
1
35
Hi,

I am looking for a way to add a client to admin server query.

While there are couple tutorials, they are no longer working after 3.7

There are also couple tutorial but are not in English and pretty impossible to understand for me.

This is a question that is not answered in teamspeak forums as adding client to admin server query group is against the teamspeak wishes/wants.

I do not want to create a new group with same permissions as admin server querry. I want to add a client to the default admin server query.

Sorry for the long-ish post.

Thanks in advance.
 
E

ewenjo

Doesn't work anymore. Only way is to downgrade server, add the server group and update it again.
 

Asphyxia

Owner
Administrator
Apr 25, 2015
1,844
2
2,197
327
I am looking for a way to add a client to admin server query.

I am slightly confused by the question.

Can you give me a slightly more clear example in a story-mode? Sorry to be difficult.

For example: James11 enters my TeamSpeak 3 server, how do I grant him access to the server admin query? <--- is this what you want?
 

daemon52rus

Member
Jun 2, 2015
4
4
35
This working for my database :)

Select current admins:
SQL:
SELECT `clients`.`client_id`,`clients`.`client_nickname`
FROM `group_server_to_client`, `groups_server`, `clients`
WHERE `group_server_to_client`.`group_id`=`groups_server`.`group_id` AND
`group_server_to_client`.`id1`=`clients`.`client_id` AND
`groups_server`.`name`='Admin Server Query'

Insert new admin after authorization on server:
SQL:
INSERT INTO `group_server_to_client`
SELECT `groups_server`.`group_id`,0 as `server_id`,`clients`.`client_id` as `id1`,0 as `id2`
FROM `clients`,`groups_server`
WHERE `clients`.`client_nickname`='Your NICKNAME'
AND `clients`.`client_lastip`='Your IP address'
AND `groups_server`.`name`='Admin Server Query'
 
Last edited:
U

User_38581

Hi,

I am looking for a way to add a client to admin server query.

While there are couple tutorials, they are no longer working after 3.7

There are also couple tutorial but are not in English and pretty impossible to understand for me.

This is a question that is not answered in teamspeak forums as adding client to admin server query group is against the teamspeak wishes/wants.

I do not want to create a new group with same permissions as admin server querry. I want to add a client to the default admin server query.

Sorry for the long-ish post.

Thanks in advance.
If you just want 100 Power instead 75, just copy [Q] Admin Server Query from Query group to Normal Group.
You can do that through Yatqa
 
Top