How to trigger an event in Character blueprint from AI controller blueprint?

You need to cast the controlled pawn to the BP class where you defined the event so it goes in the target. Basically you need the same class or a subclass of the BP that defined the event.
Get controlled pawn gives you an APawn object which as far as compiler is concerned does not have the event you defined…

2 Likes