Welcome,
Guest
. Please
login
or
register
.
February 10, 2025, 10:31:50 AM
Home
Help
Search
Login
Register
Tasharen Entertainment Forum
»
Support
»
TNet 3 Support
»
Looping add server
« previous
next »
Print
Pages: [
1
]
Author
Topic: Looping add server (Read 1847 times)
ibaanb
Newbie
Thank You
-Given: 3
-Receive: 0
Posts: 17
Looping add server
«
on:
October 09, 2014, 03:11:51 AM »
I use this code
TNServerInstance
.
Start
(
int
tcpPort,
int
udpPort,
string
fileName, Type type, IPEndPoint remoteLobby
)
.
and I get this in server console image in attachment.
And if this problem occur because UDPLobby so how to open TCPlobby?
«
Last Edit: October 09, 2014, 04:53:48 AM by ibaanb
»
Logged
Alphavladim
Newbie
Thank You
-Given: 3
-Receive: 2
Posts: 4
Re: Looping add server
«
Reply #1 on:
October 09, 2014, 07:11:21 AM »
See this :
http://www.tasharen.com/forum/index.php?topic=11386.msg53013#msg53013
.
I had the same question. Is because you use UDP, not TCP.
To open TCP Server :
TNServerInstance
.
serverName
=
"My Server"
;
TNServerInstance
.
Start
(
5127
,
0
,
null
, TNServerInstance
.
Type
.
Tcp
,
Tools
.
ResolveEndPoint
(
"your.lobbyServer.com:5129"
)
)
;
To open TCP Lobby :
TNServer
.
exe
-
name
"Lobby Server"
-
tcpLobby
5129
Open cmd, cd /pathtoserver.exe then paste the code above.
Logged
Print
Pages: [
1
]
« previous
next »
Tasharen Entertainment Forum
»
Support
»
TNet 3 Support
»
Looping add server