@nuxil
Thanks for helping. i don't know the right settings, but i make not many settings... use the "example names"
Thats my Ts3Settings.py
# These variables are to tell the Ts3 plugin which settings to use for the different server querys.
SERVER1 = "a2.cfg" # This would be Bec.exe -f a2.cfg
#SERVER2 = "a3.cfg" # This would be Bec.exe -f a3.cfg
#SERVER3 = "foobar.cfg" # This would be Bec.exe -f foobar.cfg
# list of config names that will be used in the __init__ file
SERVERS = [ SERVER1 ]
# You will also need to create a code block for each server. as seen below. "uncomment them out if needed"
def Ts3Servers(config_name):
'''
* config_name is the name of the config file Bec is started up with.
'''
if config_name == SERVER1: # or use if config_name == SERVERS[0]
Host = "127.0.0.1" # change if needed
Port = 10011
User = "serveradmin"
and it doesn't start! only the normal startup without any Plugin...
it WORKS the config file NAME will start the Plugin! if you use "config" you need to rename SERVER1 = "a2.cfg" to SERVER1 = "config.cfg"... N1