Aller au contenu

Photo

Conversation Help - Conversation with yourself


1 réponse à ce sujet

#1
nn125

nn125
  • Members
  • 42 messages
How would I set up a musing with yourself from a script  such as

"Um What should I do today?" - Screen focus's on face looking bemused

Shall I:

1) Read a book

2) Kill that Dragon.....
....
Depending on which outcome run a script

#2
DavidSims

DavidSims
  • BioWare Employees
  • 196 messages
Try UT_Talk(GetHero(), GetHero(), R"my_conv.dlg");



Make sure all the NPC lines are assigned to the owner so the player will say them, pc lines for choices, npc lines for things the player just says or narative text. I can't promise it will work as I can't test it right now, but that's the first thing I'd try. Where the camera is pointing can be modified using a stage.



If that doesn't work, the second thing I'd try is using an invisible placeable as the owner of the conversation. Pretty much the same as above, but use GetObjectByTag("my_placeable") instead of the first GetHero() in the above. Doing this, or using a stage, restricts where the conversation can happen however.