How to Cast/get my PlayerController<>MyCharacter

Hey and hello,

how do I correctly cast / get the MyCharacter from the PlayerController and vice versa within Multiplayer?

Using “Get Player Index/Controller” with 0 gives me always the 1st Player Character / Mesh and not my own.

Thanks for help!

if you want to get proper controller, you need to send event to your controller and then let controller to send it’s own message.
To get this pawn’s controller, there is a “GetController” node inside pawn’s event graph that you can use.
Try avoid GetPlayerController with index as much as possible unless your are doing single player game.

Also check the respawn tutorial that I wrote on wiki.