PDA

View Full Version : Batch File (Script) and Auto-Reconnect


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

BHKai
17-03-2009, 22:24
None that I know of.

Neo68X
18-03-2009, 11:24
Hi BHKai,

I suspected that :( but I wasn't willing to face the truth as long I didn't ask the question here in this Forum ... Maybe a Developer consider this to be a command-line parameter for the next release of the TeamSpeak-Client :D !?!?

Cheers
Frank