How can this player controller client function get the gamemode?

This is some blueprint from Unreal’s multiplayer shootout demo which I’m trying to replicate in C++. How does this work?:

A client function called in the player controller class.

I thought that clients can’t get the gamemode, so “Get Game Mode” should fail. Why doesn’t it?

Edit: the link to the demo I’m talking about.

k, this confused the hell out of me for a second,
the answer is it doesn’t
Cast to MyGameMode fails and respawn player event is never called

the second player is just spawned over the default player spawn mechanic
try to disconnect the second player spawn in Respawn Player Event


and the second player is still spawned

Isn’t ClientPostLogin called on the Server side, from the Client?

Client post login isn’t an overridden function.

Huh… well that’s… weird. Guess there’s something else wrong with my project. Thanks!

actually, you’re right. that does feel weird. it’s calling a reliable server function inside gamemode, but since gamemode doesn’t exist on the client, how does that work?

Unless the event also fires on the server, then it doesn’t work – it’s dead code.

Start it, put a breakpoint there. I bet it either doesn’t fire, or it’s invoked on the server.

1 Like

Hey, sorry to necro, but I was quite intrigued by your comment.

Is there any way to make the server tell a client to execute something?
I have the opposite situation of OP, where I want my game mode to tell each client to run a “kill player” function in their player controller. I’ve found that this gets skipped for all clients that aren’t the listen server owner.

The issue is quite obvious, as you stated, the context is wrong. But there does not seem to be any way to get the context right? Server to Client RPCs are unusable in most sane scenarios because then can’t then make Client to Server RPCs back. It’s hard to figure out how exactly to handle this, routing the function call via the game state seems like the most reasonable approach, but this should still cause the context to be wrong, right?

Update: repnotifies.

You either invoke a “run on owning client” event on the PlayerController of the client in question, or you invoke a “broadcast to everyone” event on some object that every client sees.

1 Like