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?
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?
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.