English   German
  #1  
Old 17-03-2003, 00:21
juliusbk juliusbk is offline
-= TeamSpeak User =-
 
Join Date: Mar 2003
Location: Denmark
Posts: 5
juliusbk is on a distinguished road
Connect from the web!

Okay, I need a script there can connect to my TeamSpeak server from my website!
It shall NOT be the Webpost/script because I only have one server...

So you when you come in to my homepage, you Shall write you name, Chanal you wanna join and Password for the chanal!
Like this:

Nickname:
Chanal:
Chanal password:

Then it connect to my server!
Can someone help me with that?

Maybe if you make a link like this:

teamspeak://MyIP -nick +nick+ -chanal +chanal+ -pass +chanalpass+

(I dont know the right parameter, can someone also tell me those?)
Reply With Quote
  #2  
Old 17-03-2003, 00:27
korn korn is offline
-= TeamSpeak User =-
 
Join Date: Mar 2003
Location: NL
Posts: 3
korn is on a distinguished road
I would also like to know the parameters ... if it is a option .... let's hope so
Reply With Quote
  #3  
Old 18-03-2003, 15:42
Dark-mixer's Avatar
Dark-mixer Dark-mixer is offline
-= TeamSpeak Lover =-
 
Join Date: Oct 2002
Location: Denmark
Posts: 31
Dark-mixer is on a distinguished road
Send a message via ICQ to Dark-mixer Send a message via MSN to Dark-mixer
Should the script be written in ASP or PHP????
Or do you want it written in a Java Applet?
Reply With Quote
  #4  
Old 18-03-2003, 18:04
juliusbk juliusbk is offline
-= TeamSpeak User =-
 
Join Date: Mar 2003
Location: Denmark
Posts: 5
juliusbk is on a distinguished road
Just forget it...

I find the parameters my self,
and maid a script self...

A very simple Javascript!!!
But it works..., and that is what I need!
Reply With Quote
  #5  
Old 21-03-2003, 14:03
Stebs Stebs is offline
-= TeamSpeak User =-
 
Join Date: Sep 2002
Location: Germany
Posts: 6
Stebs is on a distinguished road
The Parameters can be found here:
http://forum.teamspeak.com/show...&threadid=1135
Its in the sticky FAQ of the German Windows Server Forum.
Here the most important line:
teamspeak://xxx.xxx.xxx.xxx/?channel=Channelname&loginname=CHEFTEST&password=t est&nickname=TESTER
Reply With Quote
  #6  
Old 20-06-2003, 05:07
Hybrid
Guest
 
Posts: n/a
Great, that is just what I was looking for. But I have a question about that. Is it possible to have them enter their information into some empty fields and then when they click ok, that they will join the desired channelwith their desired username?

Any information on this would be greatly appreciated.

Thank You In Advance,

Hybrid
Reply With Quote
  #7  
Old 25-01-2007, 13:04
in2secs in2secs is offline
-= TeamSpeak User =-
 
Join Date: Jan 2007
Location: Germany
Posts: 1
in2secs is on a distinguished road
Use the following code in your webpage, replace www.yourtsserver.com with the URL of your TS Server.Change Appearance using the .style sections

Paste this into the HEAD section:

Quote:
<style type="text/css">
<!--
.style1 {
font-family: Arial, Helvetica, sans-serif;
font-size: x-small;
}
.style3 {font-family: Arial, Helvetica, sans-serif; font-size: xx-small; }
body {
background-color: #000000;
}
.style4 {
color: #FFFFFF;
font-weight: bold;
}
.style5 {color: #FFFFFF}
-->
</style>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
Paste this into the BODY section:

Quote:
<FORM>
<p><br>
</p>
<table width="497" border="0" align="center" bgcolor="#000000">
<tr>
<td colspan="3"><div align="center">
<p class="style1"><span class="style4">Input your Name and Password and press the Button to connect<br>
</span><span class="style5">The connection to the Team Speak server will be automatic <br>
</span><br>
</div></td>
</tr>
<tr bordercolor="#FFFFFF" bgcolor="#FF9900">
<td width="144" height="17"><div align="center" class="style3">Name </div></td>
<td width="144"><div align="center" class="style3">Password</div></td>
<td width="215"><div align="center" class="style3">Connect</div></td>
</tr>
<tr bgcolor="#FF9900">
<td><div align="center">
<input name="text1" type=Text>
</div></td>
<td><div align="center">
<input name="pw" type=Text>
</div></td>
<td><div align="center">
<input name="submit" type=Button value="Connect to TS" onClick="window.location='teamspeak://www.yourtsserver.com:31105/nickname='+form.text1.value+'?password='+form.pw.v alue">
</div></td>
</tr>
</table>
<p><br>
</p>
</FORM>

Last edited by in2secs; 25-01-2007 at 13:11. Reason: Added Head section
Reply With Quote
  #8  
Old 25-01-2007, 23:13
Reedy Boy's Avatar
Reedy Boy Reedy Boy is offline
-= TeamSpeak Fanatic =-
 
Join Date: Oct 2006
Location: UK
Posts: 1,114
Reedy Boy is a splendid one to beholdReedy Boy is a splendid one to beholdReedy Boy is a splendid one to beholdReedy Boy is a splendid one to beholdReedy Boy is a splendid one to beholdReedy Boy is a splendid one to beholdReedy Boy is a splendid one to beholdReedy Boy is a splendid one to behold
Code:
<html>
<body>

<script type="text/JavaScript">
<!--
function func_ts(){
  var nickname = document.TS_Form.nickname.value;
  var login = document.TS_Form.login.value;
  var password = document.TS_Form.password.value;
  var gotothispagenow=window.setTimeout(location.href="teamspeak://scserver.no-ip.org:8767/nickname="+nickname+"?loginname="+login+"?password="+password, 1);
  document.write('<script type="text/JavaScript"> this_window = window.open("teamspeak://scserver.no-ip.org:8767/nickname='+nickname+'?loginname='+login+'?password='+password+'"); this_window.close(); </script>');
//teamspeak://Address: Port/nickname=?loginname=?password=
}
-->
</script>

<form onSubmit="func_ts()" name="TS_Form" action="ts.html" method="post">
Nickname: <input type="text" name="nickname"><br>
Login: <input type="text" name="login"><br>
Password: <input type="password" name="password"><br>
<input type="submit" value="Submit">
</form>

</body>
</html>

Someone made the above up for me before for a similar function
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 21:32.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Add to Bookmarks   |   Printview   |   Contact Us   |   Legal Notices