File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -65,28 +65,30 @@ terminal.
6565
6666### Multiplayer
6767
68- Register for an account!
69-
70- https://craft.michaelfogleman.com/
68+ After many years, craft.michaelfogleman.com has been taken down. See the [ Server] ( #server ) section for info on self-hosting.
7169
7270#### Client
7371
7472You can connect to a server with command line arguments...
7573
76- ./craft craft.michaelfogleman.com
74+ ``` bash
75+ ./craft [HOST [PORT]]
76+ ` ` `
7777
7878Or, with the " /online" command in the game itself.
79-
80- /online craft.michaelfogleman.com
79+
80+ /online [HOST [PORT]]
8181
8282# ### Server
8383
8484You can run your own server or connect to mine. The server is written in Python
8585but requires a compiled DLL so it can perform the terrain generation just like
8686the client.
8787
88- gcc -std=c99 -O3 -fPIC -shared -o world -I src -I deps/noise deps/noise/noise.c src/world.c
89- python server.py [HOST [PORT]]
88+ ` ` ` bash
89+ gcc -std=c99 -O3 -fPIC -shared -o world -I src -I deps/noise deps/noise/noise.c src/world.c
90+ python server.py [HOST [PORT]]
91+ ` ` `
9092
9193# ## Controls
9294
You can’t perform that action at this time.
0 commit comments