yes, see the file attached.
didn't notice it, because I only have one program in the whitelist
edit:
I just noticed, that my addon actually got approved:...
Type: Posts; User: Goreki; Keyword(s):
yes, see the file attached.
didn't notice it, because I only have one program in the whitelist
edit:
I just noticed, that my addon actually got approved:...
I am not the author on the myteamspeak page and my new upload is under review for three weeks.
So I guess the answer to your questions is: No
as far as my limited knowledge of this audio stuff on windows is now, I think it it's just a matter of defining the audio output of your software under the "communication" category.
then the...
api update
Sorry for the late reply. I dont get email notifications for some reason, although I have enabled them.
I bumped the API version in an update, unfortunately I lost my project files so I had to use...
This is just not true, because I use Windows10 myself.
My plugin is not the problem for your crashes. In your original thread you even posted a crash dump without my plugin in use...???
It's not about being my hobby as in "I use my spare time", but more like "I learned it by myself, so I could miss some information, because I just don't know how to fully use VisualStudio right".
...
It doesn't crash in my plugin though.
I made another picture for you to see what it looks like. Bear in mind, that this is only my hobby and I only know so much about using Visual Studio, but I...
Mhh it doesn't seem, that my plugin is loaded.
This is what it looks like, if you open the crash dump with visual studio:
13517
I think, there is no plugin loaded at all.
Glad that you found it yourself, but honestly that shouldn't happen at all.
As soon as you or someone else starts and stops speaking after you restarted everything, all volume sliders should have...
I currently have Windows 8.1 installed, but i guess it will be the same for Win7.
I guess you tried google just like me without actual results, so I got the name by debugging my project and trigger...
i dont know who "all the others" are, but can you try out version 1.7 instead of the latest version 1.8? I always felt like I implemented the delay option in non-optimal way, so perhaps this causes...
I think the TS3 Client would have to set the specific flag while creating the audiosessions (for recording and output).
I could imagine, that the devs are using some platform independent libraries...
What i meant is, that if your lua code is for example changing channel properties, then the guy, who wants to do this has to have the permission to do that. And you as the server-admin are the one...
sure if they have the permissions to do whatver you are doing with those commands there shouldn't be a problem
no.
they have to install it themselves.
what you CAN do is the following: you edit your lua plugin to listen to whisper messages and execute your work, if someone whispers you the command and is...
updated the first post with version 1.8:
added a delay option
it seems that there is no functionality to connect or disconnect from a server.
in the example where the python programm is connecting to a server it doesn't even use the clientquery for it. instead...
No, because VS says I need the debug information for ts3client_win64.exe.
And I also searched on the internet how to debug based on dump files and everywhere it tells me that I need the debug...
can anyone one of you tell me what you did before it crashed? "crash for no reason" and the dump files dont help me, because I dont have the debug information for ts3
I hope you all have the...
Those dump files don't help me. Do you have the latest version of my plugin and can you reproduce the crash on your own will?
First: pretty much all functions return a value which indicates if the call was successful or not. you could have done this to check if the "request" was actually executed. from the documentation:
...
Ok I updated the first post.
I switched to the new Visual Studio 2013 some time ago. There is no particular reason for it other than it's new and shiny and it was for free, so unfortunately you have...
Sure but I have to restructure my code a little bit for this, so it could get more complex than it seems.
The thing is that "ts3Functions.getConfigPath" writes the string in a char array, but the WinAPI functions to get or write data from/in ini-files expects a LPCWSTR, which stands for "Long Pointer to...
this shouldn't be a problem.
does the file exist? if not, can you create an empty "foolower.ini" yourself in the folder?
1. I opened the project with Visual Studio
2. Find API version code in foolower.cpp and change it to 20:
int ts3plugin_apiVersion()
{
return 20;
}
3. Find the plugin header includes in...
I don't have foobar, so I cant test it.
but I compiled it successful and it loads fine for me, so see yourself whether it works or not
did you register the event?
-- rename your local function to "localOnClientPokeEvent" or something
-- put this code somewhere after the definition of your function
local registeredEvents = {...
all those servergroup functions are not really mentioned in the ClientLib SDK, but I found this one here in the public_rare_definitions.h:
enum ClientPropertiesRare {
...
CLIENT_SERVERGROUPS, ...
Ok i'm not familiar with LUA myself, so dont take this as a masterpiece :D
download the attachment, extract it to
TS3Folder/plugins/lua_plugin
so you have...
if you dont create a thread yourself, then no, it doesnt run in it's own thread.
It works like this:
You implement all the functions, which are necessary to have a ts3 plugin (they are listed as...
You should avoid using TerminateThread(), because you cannot free any allocated resources inside the thread. It will just get forced to end.
Also, you already use some kind of variable to ensure...
There is no big magic happening :confused:
This is taken from plugin.c
There is one function in the code, which returns the API version:
// Plugin API version. Must be the same as the...
I strongly advise you to start you plugin project upon the sample plugin in the SDK.
There is pretty much every function and event commented with a short explaination:
int...