Neo68X
16-03-2009, 11:04
Hi everybody,
I am using the following Script to access TeamSpeak-Servers:
@Echo Off
Title Connect to TeamSpeak XYZ.COM
SET IP=127.0.0.1
SET PORT=1234
SET ANONYMOUS=True
SET LOGIN=UserName
SET PASSWD=Password
SET NICK=Nicky
If "%ANONYMOUS%" == "True" (
Start TeamSpeak.exe %IP%:%PORT%?anonymous=%ANONYMOUS%?password=%PASSWD %?nickname=%NICK%
) Else (
Start TeamSpeak.exe %IP%:%PORT%?loginname=%LOGIN%?password=%PASSWD%?ni ckname=%NICK%
)
Please ignore the blanks behind ...%PASSWD and ...?ni.
Now my question: Under the Adress Book, one has the option to enable the "Auto-Reconnect" fuction! Is there a way to implement this option as a parameter in scripts e.g. ...?autorecon=1 !?!?
Cheers
Frank
I am using the following Script to access TeamSpeak-Servers:
@Echo Off
Title Connect to TeamSpeak XYZ.COM
SET IP=127.0.0.1
SET PORT=1234
SET ANONYMOUS=True
SET LOGIN=UserName
SET PASSWD=Password
SET NICK=Nicky
If "%ANONYMOUS%" == "True" (
Start TeamSpeak.exe %IP%:%PORT%?anonymous=%ANONYMOUS%?password=%PASSWD %?nickname=%NICK%
) Else (
Start TeamSpeak.exe %IP%:%PORT%?loginname=%LOGIN%?password=%PASSWD%?ni ckname=%NICK%
)
Please ignore the blanks behind ...%PASSWD and ...?ni.
Now my question: Under the Adress Book, one has the option to enable the "Auto-Reconnect" fuction! Is there a way to implement this option as a parameter in scripts e.g. ...?autorecon=1 !?!?
Cheers
Frank