I'm currently working on a dialog where 2 NPC's are talking to each other, and then turn to the PC and say one line. I've left the Listener box empty (so it would look at the PC by default), but the Speaker is still looking at the other NPC. Is there a tag for the PC to put in the Listener box?
Thanks!
Player?
otherwise this script seems to work for setting my pc to face the speaking NPC after he starts talking..so at the beginning of that dialog
void main()
{
vector vNPC_IACEN = GetPosition( OBJECT_SELF );
AssignCommand( GetPCSpeaker(), SetFacingPoint( vNPC_IACEN ) );
}
Wasn't sure if that was a guess or not, but it worked perfectly. Thanks a lot mate.
oh that worked?? cool, I remember trying it a long time ago but I think it crashed my game?? :)
Saw your script as well, thanks for that too. I'll be sure to keep that close by in case I get your crashes :)
Oh it was probably something else that crashed my game..it should be fine. :)