diff options
author | GeckoEidechse <gecko.eidechse+gitbook@protonmail.com> | 2021-12-29 12:38:01 +0000 |
---|---|---|
committer | gitbook-bot <ghost@gitbook.com> | 2021-12-29 12:38:01 +0000 |
commit | 039a85f24a69b4ee17965a8a20607dae456b5ea8 (patch) | |
tree | d4ccdc1d8927d8426429a67b268f0f603a11b087 /using-northstar/commands.md | |
parent | 67efed10d96f63cdc0f3cda4bc3aeeb16bc45a78 (diff) | |
download | NorthstarWiki-039a85f24a69b4ee17965a8a20607dae456b5ea8.tar.gz NorthstarWiki-039a85f24a69b4ee17965a8a20607dae456b5ea8.zip |
GitBook: [#17] Add content to "Commands" section
Diffstat (limited to 'using-northstar/commands.md')
-rw-r--r-- | using-northstar/commands.md | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/using-northstar/commands.md b/using-northstar/commands.md index 61c515e..41fc983 100644 --- a/using-northstar/commands.md +++ b/using-northstar/commands.md @@ -1 +1,36 @@ # Commands + +### Opening the Console + +Commands are run on the console. To open it, press `` ` `` (the key above `TAB`).\ +Note that this key generally only exists in this form on English keybords (ANSI US, ISO UK, ...). + +If you for example have a German keyboard you'll notice that this key is located left of `BACKSPACE` but won't open the console when you press it. + +To open your console you'll either have to switch to the English (US) layout **before** starting the game or rebinding the key to open console. + +To rebind it make sure neither Titanfall nor Northstar are running, then go to `My Documents\Respawn\Titanfall2\local\` and open `settings.cfg`.\ +Look for the line containing `toggleconsole`, i.e. + +``` +bind "`" "toggleconsole" +``` + +and replace the `` ` `` key with your prefered key to open console. So if you want to open console with `F5`, change the line to + +``` +bind "F5" "toggleconsole" +``` + +{% hint style="info" %} +In the future this keybind should hopefully be adjustable via `Controls > Settings > Key Binds` from within Titanfall.\ +**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 + +| Command | Result | +| ----------------------- | -------------- | +| `sv_cheats 1` | Enable cheats | +| `sv_cheats 0` | Disable cheats | +| TODO more commands here | | |