diff options
-rw-r--r-- | docs/using-northstar/advanced.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/using-northstar/advanced.md b/docs/using-northstar/advanced.md index bf3971b..4710e9a 100644 --- a/docs/using-northstar/advanced.md +++ b/docs/using-northstar/advanced.md @@ -32,12 +32,12 @@ Double clicking the `.bat` or right clicking on it and hitting `open` will launc ## Setting levels using console commands <a href="#set-level" id="set-level"></a> {% hint style="warning" %} -This section here can cause you to mess up your persistence (multiplayer user data) on Northstar if you set your levels too high! Make sure to read carefully! +This section can cause you to mess up your persistence (multiplayer user data) on Northstar if you set your levels too high! Make sure to read carefully! {% endhint %} With everything unlocked, there is no need to set your level to a higher level, but some users may still want to do so. In order to this, you'll need to open the in-game console with the `~` button on your keyboard and type in/copy and paste the relevant commands. Both of these require `sv_cheats 1` to be enabled on the server you're playing on, easily done by using `sv_cheats 1` in the console in a private match. -`script GetPlayerArray()[0].SetPersistentVar("gen", INSERT_GEN_COUNT)` this command sets the Generation level of the player. You want to replace `INSERT_GEN_COUNT` with the number you want. Setting this number too high should work for levling up, however it will display `g103` on your kill card. +`script GetPlayerArray()[0].SetPersistentVar("gen", INSERT_GEN_COUNT)` this command sets the Generation level of the player. You want to replace `INSERT_GEN_COUNT` with the number you want. Setting this number too high should work for leveling up, however it will display `g103` on your kill card. `script GetPlayerArray()[0].SetPersistentVar("xp", INSERT_XP_COUNT)` this command sets the xp count of the player (meaning, the amount of kills required per level in order to level up). You want to replace `INSERT_XP_COUNT` with the number you want. Setting this number lower than 472 is recommended, as to not encounter issues. |