From 43fc2d8f8c789cf9ef6155b78f08015be601bb41 Mon Sep 17 00:00:00 2001 From: Remy Raes Date: Wed, 13 Nov 2024 00:37:08 +0100 Subject: [PATCH] feat: add warning message --- .../hosting-a-server-with-northstar/basic-listen-server.md | 3 +++ .../hosting-a-server-with-northstar/dedicated-server/README.md | 3 +++ 2 files changed, 6 insertions(+) diff --git a/docs/Wiki/hosting-a-server-with-northstar/basic-listen-server.md b/docs/Wiki/hosting-a-server-with-northstar/basic-listen-server.md index 52e37e31..a1447015 100644 --- a/docs/Wiki/hosting-a-server-with-northstar/basic-listen-server.md +++ b/docs/Wiki/hosting-a-server-with-northstar/basic-listen-server.md @@ -12,6 +12,9 @@ To host a listen server on Northstar, go to the lobby and press the `Private Mat If this works correctly, this should result in your server being displayed on the server browser, and other clients being able to connect to it.\ ![screenshot select private match](../images/lobbyprivatematch.png) +!!! warning + Hosting a port-forwarded server that appears in the server browser will show the names of all of the currently enabled mods to clients. + ## Server Configuration Whether you're running a listen or dedicated server, you'll generally want to mess with the configuration at least a bit. While I do think the default configuration settings are pretty ok, being able to change your server's name or password, or increasing your server's tickrate is often something you'll want to do. Server configuration can be modified in the file `R2Northstar/mods/Northstar.CustomServers/mod/cfg/autoexec_ns_server.cfg`, which will be executed on server startup.\ diff --git a/docs/Wiki/hosting-a-server-with-northstar/dedicated-server/README.md b/docs/Wiki/hosting-a-server-with-northstar/dedicated-server/README.md index 0f5ecd44..2fddb273 100644 --- a/docs/Wiki/hosting-a-server-with-northstar/dedicated-server/README.md +++ b/docs/Wiki/hosting-a-server-with-northstar/dedicated-server/README.md @@ -8,6 +8,9 @@ Dedicated servers allow you to host a Northstar server without having to use a f To start a dedicated server on Northstar, launch NorthstarLauncher.exe with the argument `-dedicated`, this can be done manually, but releases also provide the batch file `r2ds.bat`, which will also do this.\ When using a dedicated server, arguments are read from `ns_startup_args_dedi.txt`, rather than `ns_startup_args.txt`. +!!! warning + Hosting a port-forwarded server that appears in the server browser will show the names of all of the currently enabled mods to clients. + ### Dedicated Server Caveats At the moment, dedicated servers still require DirectX 11 to work, which typically requires a physical GPU, though they use almost no GPU processing power while in use, this can be an issue especially on GPU-less setups, so the launch argument `-softwared3d11` can be used to force DirectX to run in software mode.\