Game Development Community

Connect on internet

by Howard Dortch · in Torque Game Engine · 07/01/2004 (4:26 pm) · 2 replies

I'm trying to connect to another computer on the internet for a test. I use mygame.exe -connect xxx.xxx.xxx.xxx:xxxx in the console log it says can't find function setAutoConnect()

How do I connect to a private game on the internet?

#1
07/01/2004 (9:28 pm)
Open console.

Type:

$foo = new GameConnection();
$foo.connect("xxx.xxx.xxx.xxx:xxx");
#2
07/02/2004 (4:35 am)
Thanks Ben I'll give that a try.