sorry but this dosent work for me...
i want to whister to clients from other channels...
i also like the red dot when whipsering to anyone
We are migrating towards a new forum system located at community.teamspeak.com, as such this forum will become read-only on January 29, 2020
sorry but this dosent work for me...
i want to whister to clients from other channels...
i also like the red dot when whipsering to anyone
Last edited by obithereal; September 17th, 2012 at 11:07 PM.
When i upgraded to v3.0.9, it broke the G-key plugin. I am getting the "plugin failed to load: API version is not compatible" API version = 18 Required = 19
Thanks for the awesome plugin. This is very useful in combination with my G510.
Sojolly
Yep, it hasn't been updated for the current API version.
The new version is online and is compatible with the new SQLite settings database.
I'm afraid in the new version 0.5.7 the TS3_PTT_DEACTIVATE debug message isn't working anymore. My voice status will be activated for ever. For now in my script I use a workaround TS3_PTT_TOGGLE but now I have to press the button again for deactivating the voice.
I'm using the G15 Keyboard (blue one)
Last edited by lamdacore; October 28th, 2012 at 01:57 AM.
Hmm, mine seems to be working but I have the G930. Here's what I would use if I had the keyboard: (I'm sure there's a cleaner way)
Code:function OnEvent(event, gkey, family) mkey = GetMKeyState() if family == "kbd" then if gkey == KEY_NUMBER then if event == "G_PRESSED" then OutputDebugMessage("TS3_PTT_ACTIVATE") end if event == "G_RELEASED" then OutputDebugMessage("TS3_PTT_DEACTIVATE") end end end end
It probably has to do with the new SQLite database. It looks like it's failing to turn PTT off after the PTT delay even though there are plenty of error handlers that should turn off PTT if anything fails.
lamdacore, please post a recent client log as outlined in the first post so I can determine where the problem is.
'Capture/Default/PreProcessing' wants to be 'Capture/Standard/PreProcessing' on the query, at least here it's under that opinion![]()
same Problem here.
Voice status is activated and only deactivates if i push the configurated PTT key that i chosed in TS3.
Activation with G key is possible but no Deactivation.
There is no entry at the Clientlog. - oh seams not to be right one information is there..
2012-10-27 19:02:28.419307|INFO |G-Key Plugin | | Debugger attached to Logitech software
but i think its good to get that information
All other entrys comes from the G15 LCD Plugin - wich does not work anymore too.
I hope that helps to find the problem.
PS: I use a G510 on Windows7 64. (G key and G15 LCD worked with API 18 verry good - not one Problem)
Thank you for the feedback. I'll implement proper detection of the default capture profile, I hope that will fix the problem for everyone. And I will improve the error handlers, because there's obviously something going wrong there also.
A temporary workaround would be to use TS3_PTT_TOGGLE instead of TS3_PTT_DEACTIVATE in the simple PTT script, but still using TS3_PTT_ACTIVATE in the G_PRESSED event. It should have full PTT then.
The new version fixes the problem as outlined by Philosound and improves error handling. This should fix any problems regarding PTT not deactivating.
Yes it works again, Thank You! :-D
Time for a new beta version. I rewrote some code to make it cleaner and fixed a few mistakes in the process. I also added two new commands.
I added TS3_BOOKMARK_CONNECT to connect to a bookmarked server and the much requested TS3_PLUGIN_COMMAND. That last one allows you to send commands to other enabled plugins as you would from the console. So if you use the soundboard plugin you are now able to do this:
Just make sure you put TS3_PLUGIN_COMMAND in front of it:
The implementation was a bit hacky since there is no official support for it (thanks to Meelkee for the workaround!). Coupled with the code rewrites I don't feel safe releasing this as a stable version yet.Code:OutputDebugMessage("TS3_PLUGIN_COMMAND /soundboard sound D:\wow.mp3")
You can download the beta here:
Download G-Key 0.6.0beta
Don't forget to provide some feedback so I can move this version to stable.
Last edited by Armada651; October 28th, 2012 at 09:51 PM.
I've tried to get this working with my G15 but it just doesn't seem to want to function correctly with my G keys. I've tried both 0.5.8 and 0.6.0beta. No luck.
http://www.clan-tkcfiles.com/files/t..._33.261000.log
Well I may of fixed it. I guess the plugin installs the 32-bit and 64-bit dll? Once I removed the 32-bit dll it started to work for me.
Well, press to talk is working, but that's about it.. other stuff acts all weird. Lights not coming on until you release the button, etc. The problem appears to be happening with whisper lists, which is unfortunate since the reason I got this plugin was to use it for whispers. What is it that I am not doing that needs to be done? I'm using the examples in the pdf but it doesn't seem to work properly.
function OnEvent(event, gkey, family)
mkey = GetMKeyState()
if gkey == 6 and mkey == 1 then
if event == "G_PRESSED" then
OutputDebugMessage("TS3_WHISPER_CLIENTID ZCkbDjqv4zVPD/uA+fza3L1Fyrk=")
OutputDebugMessage("TS3_WHISPER_ACTIVATE")
OutputDebugMessage("TS3_PTT_ACTIVATE")
end
if event == "G_RELEASED" then
OutputDebugMessage("TS3_PTT_DEACTIVATE")
OutputDebugMessage("TS3_WHISPER_CLEAR")
end
end
end
Last edited by nbtc971; November 2nd, 2012 at 05:49 PM.
There are currently 1 users browsing this thread. (0 members and 1 guests)