ID:266067
 
While testing a game, I always use the handy CTRL-R to start it up. However, I'm not sure how I can connect additional clients to that world to test multiplayer effects. Any pointers?

Thanks!
On 8/27/00 8:48 am Guy T. wrote:
While testing a game, I always use the handy CTRL-R to start it up. However, I'm not sure how I can connect additional clients to that world to test multiplayer effects. Any pointers?

In general, you can use the client as a client-server by setting the "default-port" setting to 0 or some available port # (like 2000). Then you can connect another client to that port by running it and typing it in (as "2000" or "localhost://2000" on the command line. The default "default-port" is LOCAL, which disables network access.

Of course, if you are testing multiple clients you'll want to disable the new "auto-login" feature to allow you to pick different keys every time.

Does that answer your question?
In response to Tom H. (#1)
Does that answer your question?

Sounds like it does! I'll try it out. Thanks.