diff options
author | Legonzaur <34353603+Legonzaur@users.noreply.github.com> | 2022-01-13 16:15:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-13 16:15:29 +0100 |
commit | e7400b6d34f44ffec66332cf60d5a1547c3c101e (patch) | |
tree | d3a2d43dbcdd7ec58ea3f1e4f950704bdefb64cd /docs | |
parent | 1c8cb05aa9da57a44c10243dfcef1ad875ebb400 (diff) | |
parent | f5cde93a753bbd99a34f09682b99af052c542659 (diff) | |
download | NorthstarWiki-e7400b6d34f44ffec66332cf60d5a1547c3c101e.tar.gz NorthstarWiki-e7400b6d34f44ffec66332cf60d5a1547c3c101e.zip |
Merge branch 'R2Northstar:main' into patch-3
Diffstat (limited to 'docs')
-rw-r--r-- | docs/hosting-a-server-with-northstar/dedicated-server/README.md | 2 | ||||
-rw-r--r-- | docs/modding/localisation_files.md | 2 | ||||
-rw-r--r-- | docs/using-northstar/commands.md | 16 |
3 files changed, 17 insertions, 3 deletions
diff --git a/docs/hosting-a-server-with-northstar/dedicated-server/README.md b/docs/hosting-a-server-with-northstar/dedicated-server/README.md index dc1ccf1..8818e7b 100644 --- a/docs/hosting-a-server-with-northstar/dedicated-server/README.md +++ b/docs/hosting-a-server-with-northstar/dedicated-server/README.md @@ -146,7 +146,7 @@ If ran on a server with the [`ns_should_return_to_lobby 0`](#Convars-returntolob # <a name="Maps">Maps</a> Maps can be set on autorotation using [`ns_should_return_to_lobby 0`](#Convars-returntolobby) -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-lastmap) A way to blacklist maps with autorotation do not exists. diff --git a/docs/modding/localisation_files.md b/docs/modding/localisation_files.md index f6212ec..cfe25aa 100644 --- a/docs/modding/localisation_files.md +++ b/docs/modding/localisation_files.md @@ -8,3 +8,5 @@ There are the two files that need to be translated, use the English version as a 1. [Northstar.Client/mod/resource/northstar_client_localisation_english.txt](https://github.com/R2Northstar/NorthstarMods/blob/main/Northstar.Client/mod/resource/northstar_client_localisation_english.txt) 2. [Northstar.Custom/mod/resource/northstar_custom_english.txt](https://github.com/R2Northstar/NorthstarMods/blob/main/Northstar.Custom/mod/resource/northstar_custom_english.txt) + +To test your modifications go to `Origin (My games library) -> Titanfall 2 (right click) -> Game Properties -> Advanced Launch Options` and select the language you modified from the dropdown. diff --git a/docs/using-northstar/commands.md b/docs/using-northstar/commands.md index 00fee65..6b48a12 100644 --- a/docs/using-northstar/commands.md +++ b/docs/using-northstar/commands.md @@ -27,13 +27,18 @@ In the future this keybind should hopefully be adjustable via `Controls > Settin **Note** that if you're using the [Enhanced Menu Mod](https://github.com/taskinoz/Enhanced-Menu-Mod) this might already be the case {% endhint %} -### List of commands +## List of commands + +### Northstar Commands | Command | Result | | ----------------------- | -------------- | | `ns_masterserver_hostname` | Masterserver URL, default: `https://northstar.tf` | | `ns_auth_allow_insecure 1` | Allows clients to connect without masterserver authorization | | `connect <ip address>:<port>` | Directly connect to a Northstar gameserver | +| `reload_mods` | Reload mods | +| `ns_disallowed_tacticals` | String list of disallowed tactical abilities, ex: `"mp_ability_grapple,mp_ability_heal"` | +| `ns_disallowed_tactical_replacement` | Optional replacement ability for disallowed tacticals | ### Server commands @@ -162,4 +167,11 @@ In the future this keybind should hopefully be adjustable via `Controls > Settin | `sv_voiceenable` | | 1 | | `sv_warnAboutCmdNumJumps` | | 20 | | `sv_weapon_despawn_time` | | 90 | -| `sv_writeSendTableStreamFile` | | |
\ No newline at end of file +| `sv_writeSendTableStreamFile` | | | + +### Useful dev scripts + +|Command|Result| +|-|-| +|`script CreateTitanForPlayerAndHotdrop( GetPlayerArray()[0], GetTitanReplacementPoint( GetPlayerArray()[0], false ) )`|Sets your titan as available to call for Titanfall| +|`script ForcePilotToBecomeTitan( GetPlayerArray()[0] )`|Transforms you into a titan| |