Skip to content

Commit 82f3c4e

Browse files
authored
Merge pull request #27 from ToeKneeRED/main
Update Vortex UI, Local server setup, Remove rest of AES-NI references
2 parents dea134b + 8905074 commit 82f3c4e

File tree

8 files changed

+144
-77
lines changed

8 files changed

+144
-77
lines changed
1.27 MB
Loading

SUMMARY.md

+3
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@
6666
* [Configuring ZeroTier network](guides/server-guide/windows-setup/zerotier-setup/configuring-zerotier-network.md)
6767
* [Authorizing users in ZeroTier network](guides/server-guide/windows-setup/zerotier-setup/authorizing-users-in-zerotier-network.md)
6868
* [Connecting to your server](guides/server-guide/windows-setup/zerotier-setup/connecting-to-your-server.md)
69+
* [Local setup](guides/server-guide/windows-setup/local-setup/README.md)
70+
* [Locating the STServer.ini](guides/server-guide/windows-setup/local-setup/locating-the-stserver.ini.md)
71+
* [Editing STServer.ini](guides/server-guide/windows-setup/local-setup/editing-stserver.ini.md)
6972
* [Linux setup](guides/server-guide/linux-setup/README.md)
7073
* [Docker setup](guides/server-guide/linux-setup/docker-setup.md)
7174
* [Locating your IP address](guides/server-guide/linux-setup/locating-your-ip-address.md)

guides/client-setup/using-vortex-mod-manager-vmm/skyrim-together-reborn/making-a-custom-launch-option-in-vmm.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
## Making a custom launch option in VMM
44

55
1. Open Vortex
6-
2. Go to the `Dashboard`
7-
3. Press the `Add Tool` button and then `New..`
6+
2. Go to the `Dashboard` and locate the `Tools` section
7+
3. Scroll the scrollbar on the right down to the bottom and click the `+` button then `New...`
88
4. In the `Name` field, type `Skyrim Together Reborn`
99
5. In the `Target` field, use this path:\
1010
`C:\Program Files (x86)\Steam\steamapps\common\Skyrim Special Edition\Data\SkyrimTogetherReborn\SkyrimTogether.exe`
1111
6. Press `Save`
1212
7. Now the custom launcher is ready!
1313

14-
![So far so good!](https://i.imgur.com/bArrIXh.gif)
14+
![So far so good!](../../../../.gitbook/assets/vortex\_custom\_launch\_option.gif)
1515

1616
#### Onwards to the next step!

guides/server-guide/windows-setup/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ It's all about your personal preference. If you're not experienced with port for
77
### [Option 1: Regular setup](regular-setup/) (with port forwarding)
88

99
### [Option 2: ZeroTier setup](zerotier-setup/) (without port forwarding)
10+
11+
### [Option 3: Local setup](local-setup/) (same network)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
description: >-
3+
For those who are on the same network with no port forwarding or ZeroTier
4+
needed.
5+
---
6+
7+
# Local setup
8+
9+
### Host machine
10+
11+
1. Open the command prompt (on the host machine)
12+
2. Enter `ipconfig`
13+
3. Note the IPv4 Address, this will be given to other players on the network to connect with
14+
4. The server address that the host machine (and only the host machine) uses is: `127.0.0.1` 
15+
16+
17+
18+
### Other players on the network
19+
20+
1. The server address that any other player joining from the same network as the host machine uses is the IPv4 Address from the above Host machine steps
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
# Editing STServer.ini
2+
3+
## First look at `STServer.ini`
4+
5+
The default `STServer.ini` config file will look like this:
6+
7+
```
8+
[general]
9+
sLogLevel=info
10+
bConsole=true
11+
12+
13+
[LiveServices]
14+
bAnnounceServer=true
15+
16+
17+
[Gameplay]
18+
fGoldLossFactor=0
19+
bEnablePvp=false
20+
bEnableGreetings=false
21+
uDifficulty=4
22+
23+
24+
[ModPolicy]
25+
bAllowMO2=true
26+
bAllowSKSE=true
27+
bEnableModCheck=false
28+
29+
30+
[GameServer]
31+
sPassword=
32+
sAdminPassword=
33+
sServerName=Dedicated Together Server
34+
bPremiumMode=true
35+
uPort=10578
36+
```
37+
38+
To learn more about what each line does, visit [this page](../../server-configuration.md), which goes over each parameter in detail.
39+
40+
On the following page, the guide will explain what the `bEnableModCheck` is and how to properly configure it.
41+
42+
## Example of how a config file can look
43+
44+
We'll give you **an example** of how to set up a config file in this section. If you require further explanation of the parameters, we will refer you to [this page](../../server-configuration.md).
45+
46+
```
47+
[general]
48+
sLogLevel=info # Logs everything
49+
bConsole=true # Enables interactive console is enabled or not
50+
51+
52+
[LiveServices]
53+
bAnnounceServer=true # Makes it show on the global server list
54+
55+
56+
[Gameplay]
57+
fGoldLossFactor=0 # Disables players losing gold on deaths
58+
bEnablePvp=true # Enables PVP
59+
bEnableGreetings=false # Disables NPCs greeting
60+
uDifficulty=5 # Setting the difficulty level at Legendary
61+
62+
63+
[ModPolicy]
64+
bAllowMO2=true # Allows using ModOrganizer2
65+
bAllowSKSE=true # Allows SKSE
66+
bEnableModCheck=false # Disables verifying connecting users loadorder.txt (more on that later)
67+
68+
69+
[GameServer]
70+
sPassword=mySuperServerPassword # Setting the password to mySuperServerPassword
71+
sAdminPassword=thisdoesntmatter # Setting the admin password to thisdoesntmatter
72+
sServerName=My Very Best Server # Setting the server name to be "My Very Best Server"
73+
bPremiumMode=true # Setting the tickrate to 60
74+
uPort=10578 # Setting the port to 10578 (important!)
75+
```
76+
77+
#### Onwards to learn about the `bEnableModCheck`!
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Locating the STServer.ini
2+
3+
## Locating the `STServer.ini` to configure our server
4+
5+
Now that our server is shut down and we've created the inbound firewall rules, we can look at the `STServer.ini` config file, which allows us to configure a few parameters.
6+
7+
## [Option 1: Using MO2](locating-the-stserver.ini.md#using-modorganizer2) | [Option 2: Using VMM](locating-the-stserver.ini.md#using-vortex-mod-manager)
8+
9+
### **Using ModOrganizer2**
10+
11+
1. Open MO2
12+
2. Find the mod `Skyrim Together Reborn`
13+
3. Right-click it, and select `Open in Explorer`
14+
4. ![](https://i.imgur.com/Q3HE73V.png)
15+
5. Inside there, select the folder named `Skyrim Together Reborn`
16+
6. Now find the folder named `config` and enter it.
17+
7. Inside there will be the config file named `STServer.ini`
18+
8. Open that with a text-editor of your choice. In my case I'll use good ol' `Notepad++`.
19+
20+
![It's pretty easy finding the STServer.ini](https://i.imgur.com/1Oql1gk.gif)
21+
22+
### **Using Vortex Mod Manager**
23+
24+
1. Open Vortex
25+
2. Go to the `Mods` menu
26+
3. Make sure `Skyrim Together Reborn` is installed and `Enabled`
27+
4. Press `Windows Key + R` and enter this path in the `Run` window:\
28+
`C:\Program Files (x86)\Steam\steamapps\common\Skyrim Special Edition\Data\SkyrimTogetherReborn`
29+
5. In that folder, open the `config` folder
30+
6. In there will be the `STServer.ini` file
31+
7. Open that with a text-editor of your choice. In my case I'll use good ol' `Notepad++`.
32+
33+
![](https://i.imgur.com/QavLhh9.gif)
34+
35+
#### Onwards to the next step!

guides/troubleshooting/my-game-crashes-when-i-open-it-or-connect-to-a-server.md

+4-74
Original file line numberDiff line numberDiff line change
@@ -1,86 +1,16 @@
11
# My game crashes when I open it or connect to a server
22

3-
{% hint style="warning" %}
4-
**This guide is only relevant for Skyrim Together Version 1.2.0 and below! (with one exception)**
5-
{% endhint %}
6-
73
## Q: My game crashes when I open it, or when I connect to a server
84

95
**A:** Your CPU needs support for AES-NI (AES New Instructions). The reason why this is needed in the client and server is because they depend on libsodium lib, which relies on AES. Therefore, we need to wait until libsodium stops relying on AES (which is unlikely) or reimplement some parts with OpenSSL (time-consuming).
106

11-
**A:** If you are experiencing this issue on an older AMD Phenom processor (users reporting the issue were using either an AMD Phenom II X4 or X6), unfortunately, it seems that line of CPUs is not supported.
12-
13-
## How do I know if my CPU supports AES-NI? (Intel only)
14-
15-
1. Find the name of your CPU, using this method:
16-
2. Press your `Windows key` and search for `System information`
17-
3. Find the line where it says `Processors` and write down the name.
18-
4. Then visit [this page](https://ark.intel.com) from Intel.
19-
5. Use the search function:\
20-
![](https://i.imgur.com/O6kYkjc.png)
21-
6. Type in your CPU, e.g. `i7-9700K` and select it:\
22-
![](https://i.imgur.com/7lCuc6P.png)
23-
7. Search for `AES New Instructions` on the page that opens
24-
8. If it says `Yes`, it's supported on your CPU. If it says `No`, it's not supported on your CPU.
25-
26-
## How do I know if `AES-NI` enabled?
27-
28-
We need to download a tool named `CPU-Z`.
29-
30-
1. Download CPU-Z [here](https://www.cpuid.com/softwares/cpu-z.html).
31-
2. Select the version you prefer (setup or portable version)
32-
3. Download and install it
33-
4. Open CPU-Z and look for `AES` under `Instructions`:\
34-
![](https://i.imgur.com/s2SjWnq.png)
35-
5. If you can find `AES`, it should be enabled.
36-
37-
## How do I enable it in my BIOS?
7+
**A:** If you are experiencing this issue on an older AMD Phenom processor (users reporting the issue were using either an AMD Phenom II X4, AMD Phenom II X6, or an AMD Phenom Athlon II X4), unfortunately, it seems that line of CPUs is not supported.
388

39-
**A:** You could try turning on `AES-NI` in your BIOS. This appears to be especially important for Intel CPUs. This is difficult to walk you through because practically every BIOS looks different.
9+
**A:** If you are on a version earlier than 1.3.0, you **must** update your game as these versions are no longer supported.
4010

41-
#### Windows 10
42-
43-
If you're running Windows 10, follow these steps to access your BIOS:
44-
45-
1. Go to `Settings`
46-
2. Select `Update and Security`
47-
3. Select `Recovery`
48-
4. Click `Restart`
49-
5. Click `Troubleshoot`
50-
6. Select `Advanced Options`
51-
7. Select `UEFI Firmware Settings`
52-
8. You should now enter your BIOS
53-
9. Use whatever search function you have to find something related to `AES-NI`.
54-
10. You can use the following keywords:\
55-
`AES`\
56-
`AES-NI`\
57-
`Data Protection Technology`\
58-
`Advanced Encryption Standard`
59-
11. Enable `AES`/`AES-NI`
60-
12. Save your settings and restart your PC - usually use the `F10` key.
61-
62-
#### Windows 11
63-
64-
If you're running Windows 11, follow these steps to access your BIOS:
65-
66-
1. Go to `Settings`
67-
2. Select `System`
68-
3. Select `Recovery`
69-
4. Select `Restart now` right beside `Advanced startup`
70-
5. Click `Troubleshoot`
71-
6. Select `Advanced Options`
72-
7. Select `UEFI Firmware Settings`
73-
8. You should now enter your BIOS
74-
9. Use whatever search function you have to find something related to `AES-NI`.
75-
10. You can use the following keywords:\
76-
`AES`\
77-
`AES-NI`\
78-
`Data Protection Technology`\
79-
`Advanced Encryption Standard`
80-
11. Enable `AES`/`AES-NI`
81-
12. Save your settings and restart your PC - usually use the `F10` key.
11+
##
8212

83-
## I have AES-NI enabled, but the issue still persists. What do I do?
13+
## The issue still persists. What do I do?
8414

8515
**A:** When connecting, make sure you're using the correct IP address and port. It's a little detail, but I mistakenly misspelled my IP address, which crashed me to my desktop (CTD).
8616

0 commit comments

Comments
 (0)