Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken header links in Wiki section #68

Merged
merged 15 commits into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ services:
restart: always
```

A list of all the CONVARs are [here](../../hosting-a-server-with-northstar/dedicated-server/README.md#convars)
A list of all the CONVARs are [here](../../hosting-a-server-with-northstar/server-settings/convars.md)

A more complex docker-compose example for hosting a server can be found [here](https://github.com/pg9182/northstar-dedicated#container), along with some extra information.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ They allow the server admin to set server's properties like the name, port, and
| `ns_private_match_only_host_can_change_settings` | If 0 Players can change all match settings. If 1 Players can only change map and gamemode. If 2 Players can change nothing | `0` | `0-2` |
| `ns_private_match_countdown_length` | Length is seconds before the match is started after the start button in the lobby | `15` | `int` |
| `ns_private_match_only_host_can_start` | If 1 only the host can press the *start match* button, if 0 anyone can press the *start match* button | `0` | `0-1` |
| `ns_private_match_last_mode` | Forces the lobby to a specific Gamemode | `tdm` | Any [Gamemode](./#gamemodes) |
| `ns_private_match_last_map` | Forces the lobby to a specific map | `mp_forwardbase_kodai` | Any [Map](./#maps) |
| `ns_disallowed_weapons` | Blacklists weapons | | List of [Weapons](./#weapons) separated by a comma |
| `ns_private_match_last_mode` | Forces the lobby to a specific Gamemode | `tdm` | Any [Gamemode](../server-settings/file-names.md#gamemodes) |
| `ns_private_match_last_map` | Forces the lobby to a specific map | `mp_forwardbase_kodai` | Any [Map](../server-settings/file-names.md#maps) |
| `ns_disallowed_weapons` | Blacklists weapons | | List of [Weapons](../server-settings/file-names.md#weapons) separated by a comma |
| `ns_allow_kill_commands` | Enables the use of `kill` in the console | `0` | `0-1` |
| `ns_disallowed_weapon_primary_replacement` | Replaces blacklisted weapons by one weapon | | a [Weapon](./#weapons) |
| `ns_disallowed_weapon_primary_replacement` | Replaces blacklisted weapons by one weapon | | a [Weapon](../server-settings/file-names.md#weapons) |
| `ns_should_log_unknown_clientcommands` | Whether unknown clientcommands should be printed in the console, worth disabling if they get on your nerves | `1` | `0-1` |
| `net_chan_limit_mode` | If 0, don't limit the netchannel processing time individual clients are allowed. If 1, kick clients that go over the limit. If 2, log clients that go over the limit in console | `2` | `0-2` |
| `net_chan_limit_msec_per_sec` | The number of milliseconds of server netchan processing time clients can use per second before triggering the response set in net\_chan\_limit\_mode | `30` | `int` |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,9 @@ mp_weapon_defender|Charge Rifle

## Maps

Maps can be set on autorotation using [`ns_should_return_to_lobby 0`](./#Convars-returntolobby)
Maps can be set on autorotation using [`ns_should_return_to_lobby 0`](convars.md)

First map of autorotation can be set using [`ns_private_match_last_map`](./#Convars-lastmap)
First map of autorotation can be set using [`ns_private_match_last_map`](convars.md)

A way to blacklist maps with autorotation does not exist.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Example: `+setplaylistvaroverrides "run_epilogue 0 featured_mode_amped_tacticals

| PlaylistOverrides | Accepted Values | Default Value | Description |
| -------------------------------------------- | --------------- | ------------- | ------------------------------------------------------------------------------------------------------------------- |
| `max_players` | `int` | | Needs to be in combination with the [`-maxplayersplaylist`](./#Startup\_flags-maxplrplst) flag |
| `max_players` | `int` | | Needs to be in combination with the [`-maxplayersplaylist`](startup-args.md) flag |
| `custom_air_accel_pilot` | | | |
| `pilot_health_multiplier` | | | |
| `run_epilogue` | `0-1` | `1` | Enables escape dropship |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ Example: `+setplaylist private_match +mp_gamemode ps`

| Arguments | Accepted Values | Description |
| -------------------------- | -------------------------------------------------------------- | ------------------------------------------------------------------------- |
| `+setplaylist` | see [Gamemodes](./#gamemodes) (Should be the same as `mp_gamemode` unless you want a private match) | Set the server type (If it is not `private_match`, make sure you have also included `+map` and NOT `mp_lobby` or else you can't search your server in the game) |
| `+setplaylistvaroverrides` | see [PlaylistOverrides](./#playlist-overrides) | Edits the behaviour of the server |
| `+setplaylist` | see [Gamemodes](../server-settings/file-names.md#gamemodes) (Should be the same as `mp_gamemode` unless you want a private match) | Set the server type (If it is not `private_match`, make sure you have also included `+map` and NOT `mp_lobby` or else you can't search your server in the game) |
| `+setplaylistvaroverrides` | see [PlaylistOverrides](playlistvar.md) | Edits the behaviour of the server |
| `-port` | int beteween `1-65535` | Determines which UDP port the server will listen to |
| `+mp_gamemode` | see [Gamemodes](./#gamemodes) | Forces the gamemode of the server |
| `+map` | see [Maps](./#maps) (`mp_lobby` is the default if not included) | Forces the map of the server at the first start |
| `+mp_gamemode` | see [Gamemodes](../server-settings/file-names.md#gamemodes) | Forces the gamemode of the server |
| `+map` | see [Maps](../server-settings/file-names.md#maps) (`mp_lobby` is the default if not included) | Forces the map of the server at the first start |

| Flags | Description |
| --------------------- | ------------------------------------------------------------------------------ |
| `-maxplayersplaylist` | Allows [PlaylistOverrides](./#playlist-overrides) to override max player count |
| `-maxplayersplaylist` | Allows [PlaylistOverrides](playlistvar.md) to override max player count |
| `-enablechathooks` | Allows send the commands using in-game chat |
| `-allowdupeaccounts` | Allows the same account joining multiple times |
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ It is normal for the _"Restart_As_Admin"_ button to appear untoggled. This is al

The third settings tab on VTOL is the _"Skins"_ tab. VTOL has support for DDS format skins (the skins with the numbered folders in them), which are commonly used for Vanilla Titanfall 2, with Northstar generally opting to convert them to mods.

This format is older and less consistent than converting them to a mod to be used with Northstar (see [Advocate](./#advocate)).
This format is older and less consistent than converting them to a mod to be used with Northstar (see [Advocate](#advocate)).
It can still be used on Vanilla by playing [Vanilla via Northstar](../../using-northstar/vanilla.md#vanilla-with-mods).

However, if you want you can still install skins like this for use with Northstar.
Expand Down
2 changes: 1 addition & 1 deletion docs/Wiki/steamdeck-and-linux/linux-troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ For more info and proposed fixes, refer to [this issue thread on Github](https:/

## Game crashes on launch with Cause: Access Violation Data Execution Prevention (DEP) at: 0x00000000

**Steam/Steam Deck:** Ensure your installation matches the latest [install guide](installing-on-steamdeck-and-linux.md#steam-and-steam-deck-northstarproton).
**Steam/Steam Deck:** Ensure your installation matches the latest [install guide](installing-on-steamdeck-and-linux.md#steam-steam-deck-northstarproton).

**Lutris**: Ensure your installation matches the latest [install guide](installing-on-steamdeck-and-linux.md#lutris-wine). If that fails, you may optionally try the latest release of [Wine-TKG](https://github.com/Frogging-Family/wine-tkg-git/releases/latest).

Expand Down