How can I figure out who is the owner of an actor?

Anything is own by server by default, only 1 player controller (PC) is owned by controlled client, so anything you SetOwner to this PC or any actor owned by PC is owned by client, anything not is server owned.

For GameInstance is not replicated, it different with each client and server.

The lot of lack in documentation, all this i learn when doing an actual project, by making everything from the scratch, then what you don’t know, you will learn on the way from answer hub, forum, from source code, from other project like Unreal Tournament.

If you want learn from the source code just about owner, just looking for SetOwner, to see where is called, and track more from there, no easy way though.

Hello!

As I get further in the development of my online game and the more I learn about networking in UE4, I am starting to get confused as to how I am supposed to figure out who owns what actor. Or things such as, is the GameInstance class replicated? This isn’t shown anywhere in the documentation as far as I’ve seen. Is there anywhere in the source code where I could look up to figure it out?

Thanks for the clarifications!