How can I add multiple commands to a TS3 soundpack? (E.g. Play("example.wav") + Say("User has left servername")

Hi, I was wondering in the file settings.ini in a TeamSpeak 3 Addon soundpack, if you can make a noise prompt have multiple commands?

Example: I want default female voice to say “Connected.wav”, then text to speech, “To [server name]”.
It would read out like: Connected to [Server Name]

How would I go about doing this?

PS. Is there also a ‘or’ command? Like If someone connects, there is 3 possible .wavs or say: commands that could be said?

Below is what the settings looks like;

CONNECTION_CONNECTED = play(“connected.wav”)

Here are some things I tried::

CONNECTION_CONNECTED = play(“connected.wav”)+say(“to ${servername}”)
CONNECTION_CONNECTED = play(“connected.wav”);say(“to ${servername}”)
CONNECTION_CONNECTED = play(“connected.wav”)-say(“to ${servername}”)

As you can see I’m pretty illiterate when it comes to this stuff. Any advice as to if this is possible, and if so, how?

Let me know if I wasn’t clear enough. Thank you!

1 Like