unixoide / 5th-echelon

https://unixoide.github.io/5th-echelon/
76 stars 2 forks source link

Where do we update the IP at? #1

Closed JordanLeich closed 8 months ago

JordanLeich commented 8 months ago

also, do we use our IPv4 or 6 IP address? @unixoide

unixoide commented 8 months ago

In the service.toml and the uplay.toml (will be generated in the game directory) file. But if you run the server on the same machine, you can keep everything as is (127.0.0.1).

I've only tested it with IPv4 so far. Not sure if the game supports v6 tbh.

JordanLeich commented 8 months ago

Still cannot get it to work. @unixoide https://youtu.be/UaKveo90Gy4

K4CZP3R commented 8 months ago

After looking at your video, it seems like the credentials are not valid.

bluec0re commented 8 months ago

Had the same issue. Looks like they forgot to change the defaults. The db setup uses a different username/password: https://github.com/unixoide/5th-echelon/blob/02019aa9ff5f7d4ba8ff97d83a8a7bb863605d6e/dedicated_server/src/storage/migrations/20230917230530_init.sql#L46

The hash matches CCCCDDDD.

Using this in the uplay.toml worked for me:

[User]
# Username for the community server
Username = "AAAABBBB"
# Password for the community server
Password = "CCCCDDDD"
Sylwester1766 commented 8 months ago

Hello, everything related to "dedicated_server.exe" works fine, but no matter what and where i will change i keep stuck on "Host process was modified/is not supported" Error.. How can i fix that? It's something with this uplay_r1_loader, without it my game runs.

JordanLeich commented 8 months ago

Had the same issue. Looks like they forgot to change the defaults. The db setup uses a different username/password:

https://github.com/unixoide/5th-echelon/blob/02019aa9ff5f7d4ba8ff97d83a8a7bb863605d6e/dedicated_server/src/storage/migrations/20230917230530_init.sql#L46

The hash matches CCCCDDDD.

Using this in the uplay.toml worked for me:

[User]
# Username for the community server
Username = "AAAABBBB"
# Password for the community server
Password = "CCCCDDDD"

@bluec0re Thanks for clarifying the issue and stating how to fix it, this worked for me.