Thank you so much for the replies. I'm sure this say function is what I really needed, but I can't get it to work. Coud you please take a look? I really know nothing about scripts, but I would like to attach it to the actor base form...
Scriptname BleedoutDialogue extends Actor
Topic Property pHello Auto Const mandatory ;If I want to use hello topic, should the topic property be pHello or Hello?
GlobalVariable Property pHelloValue Auto Const Mandatory
Event OnEnterBleedout()
Self.AllowBleedoutDialogue(true) ;This function still works
Actor Player = Game.GetPlayer()
pHelloValue.SetValue(1)
Self.Say(pHello, akActorToSpeakAs = None, abSpeakInPlayersHead = false, akTarget = Player)
Utility.WaitMenuMode(1.0)
pHelloValue.SetValue(0)
EndEvent