Advanced Sessions Plugin

[quote=“KwakadogGames, post:2083, topic:30020”]

Hey i have cooked a dedicated server and when i run the server i get this error (AdvancedSessionsLog: Warning: GetSessionSettings couldn’t get the session settings!) would anyone know where this is coming from Cheers. Kind regard

[quote=“RoosterFather, post:2084, topic:30020”]

Hello guys.
I have troubles with Extra Settings, when i am creating session i am put an array with 9 items in it.
Later, when i am found session and trying to extract settings, i am getting an array with only one item.

I am checked twice, array have 9 elements when enter at “Create advanced session node”, and only one, at exit from “Get extra settings”

Dedicated servers have a maximum length of string that they can send on in Steam. The default property names are huge that Epic uses and floods the string pretty quickly so you are left with very little space left.

Might want to cut down extra setting names to abreviations (IE: MapName = MN) and even run enums or some other identifier instead of raw data where possible (IE: cast a gamemode to a byte enum and pas the byte on instead of the game mode string name).