i tried to ping that adress in cmd and it all fine
Code:
Opt("TCPTimeout", 100) ;100 milliseconds
TCPStartup()
$ip = TCPNameToIP("login.justac.net") ; = 192.200.116.253
$port = 11000
$socket = TCPConnect($ip, $port)
If $socket = -1 Then
ToolTip("The connection to the server could not be established!", 0, 0)
Else
ToolTip("Connection established", 0, 0)
EndIf
While 1
Sleep(100)
WEnd






