Get Player State From Unique Net ID is a new engine node using a new unique net id wrapper. AFAIK its the only engine node using it for that matter.
I will need to provide a conversion node from my unique net id BP struct to that one.
I don’t know which engine version you are on but I added it to the master branch on github (5.3). In that latest version you should be able to directly pull the FBPUniqueNetID pin to the other one and it will auto convert in place for you.
Do you happen to know if, in fact, that UniqueID relates to a player state? I have assumed it would but maybe it doesn’t… Good to have the conversion nonetheless! Thanks for such a quick turnaround. Will try it ASAP.
It doesn’t really “relate”, its a multiplayer ID for the player so the player state stores it. That function you had there is just reverse looking up the player state by it.
AS already had the other version in it of getting the unique net id from the player state itself. I honestly should have had a function like this already but no-one ever needed it, now that its in the engine natively the pin conversion should just work with it and any other nodes they add in the future.
Hi! I created the game with this plugin, but when I test the game on my second computer, I can’t find any active sessions at all. How do I can fix that?
If you are on steam, it can’t be the same steam account. If you enabled steam auth, the other account has to also own the game. Other than that, it should mostly work.
I have heard a few people having issues with steam sockets in 5.3, I don’t personally have much experience with that module beyond what the documentation says. Its unrelated to AS.
How do I can set this session in variable?
Also if you want, you can help me - I want to create a lobby, so, if maximum of players reaached, then everyone will teleport to game level. I making lobby logic in level blueprint, and to get current session players I need variable.
You can get session, but you don’t need to get the session info to start from within the server.
Server has events like PostLogin and the current player array that are live indicators of players joining / the count. You don’t need to try and derive that off of session settings.